In [7]:
#Pandas importieren
import pandas as pd

#CSV über Pandas einlesen
df = pd.read_csv('muenzdaten_mit_Anm_und_NaN.csv', delimiter='|')

#5 Zufallszeilen ausgeben lassen, um zu prüfen, ob CSV korrekt eingelesen wurde
df.sample(5)
Out[7]:
Muenznummer Original Kaiser Nominal Datierung Praegestaette Referenzwerk Besonderheiten Sonderzeichen Konkordanz Anmerkungen
952 FMRD-04-03-02-3006-01-00953 1 Theodosius I. Hce 388/395 ? SALVS REIPVBLICAE (2) NaN º 16 953. Domgrabung A 982. Korrodiert, wenig abgeg...
682 FMRD-04-03-02-3006-01-00683 1 Barbarisierungen: Nr. 615.-689. (Fel Temp Repa... Cen? 353/357? Gall s. Anm. NaN NaN 415,1 683. Domgrabung A 684. Vs.: Kopf n.r. Rs.: stü...
307 FMRD-04-03-02-3006-01-00308 1 Licinius I. Fol 316 Tre RIC 121 NaN A[ ]R T F 531 308. Domgrabung A 324. Prägefrisch.
322 FMRD-04-03-02-3006-01-00323 1 Constantin I. Fol 313/315 Tre RIC 42 NaN ST[ ] T F 237,2 323. Domgrabung A 315. Wenig abgegriffen.
104 FMRD-04-03-02-3006-01-00105 1 Tetricus I. An 270/274 Col Elm. 780 NaN NaN 297,3 105. Domgrabung A 135. Korrodiert, wenig abgeg...
In [8]:
#Spalten aus der CSV in XML konvertieren
def convert_row(row):
    return """
<row>
    <cell role="Muenznummer">%s</cell>
    <cell role="Original">%s</cell>
    <cell role="Kaiser">%s</cell>
    <cell role="Nominal">%s</cell>
    <cell role="Datierung">%s</cell>
    <cell role="Praegestaette">%s</cell>
    <cell role="Referenzwerk">%s</cell>
    <cell role="Besonderheiten">%s</cell>
    <cell role="Sonderzeichen">%s</cell>
    <cell role="Konkordanz">%s</cell>
    <cell role="Anmerkungen">%s</cell>
</row>
""" % (row.Muenznummer, row.Original, row.Kaiser, row.Nominal, row.Datierung, row.Praegestaette, row.Referenzwerk, row.Besonderheiten, row.Sonderzeichen, row.Konkordanz, row.Anmerkungen)

print ("<table>"+'\n'.join(df.apply(convert_row, axis=1))+"</table>")
<table>
<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00001</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Caligula?</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">38/41?</cell>
    <cell role="Praegestaette">Rom?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">594</cell>
    <cell role="Anmerkungen">1. Domgrabung A 2. Vs.: Kopf n.r. Rs.: unkenntlich. Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00002</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 2.-3. Augustus/Augustus (für Tiberius) (Prägungen von Lugdunum)</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">7 v./14 n.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 230ff. Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">663</cell>
    <cell role="Anmerkungen">2. Domgrabung A 1. Vs.: Kopf n.r. Rs.: Altar. Schwach ausgeprägt, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00003</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius I.</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">41/54</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 94/100 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">635,1</cell>
    <cell role="Anmerkungen">3. Domgrabung A 3. Vs.: barhäupt. Kopf n.r. [    ]VSCAESAAAIMP[    ]. Rs.: Ceres sitzt n.l. CERES[ ]. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00004</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Nero</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">65/67</cell>
    <cell role="Praegestaette">Lug/Rom</cell>
    <cell role="Referenzwerk">RIC S. 157, Nr. 35</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">652</cell>
    <cell role="Anmerkungen">4. Domgrabung A 4. Vs.: Kopf n.r. (m. Lbkr.?). Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00005</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Galba</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">68/69</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">339,1</cell>
    <cell role="Anmerkungen">5. Domgrabung A 5. Vs.: Kopf n.r. m. Lbkr. Fast völlig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00006</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Vespasian</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">71</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 478</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">186</cell>
    <cell role="Anmerkungen">6. Domgrabung A 6. Vs.: Büste (m. Globus) n.r. m. Strkr. IMPCAESVESPASIANAVGCO[    ]. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00007</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Domitian</cell>
    <cell role="Nominal">Qd</cell>
    <cell role="Datierung">81/96</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 436</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">340</cell>
    <cell role="Anmerkungen">7. Domgrabung A 8. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00008</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Domitian</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">85/96</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 394?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">154</cell>
    <cell role="Anmerkungen">8. Domgrabung A 7. Vs.: IMP[  ]GGERMCOS(XV?)CE[    ]. Rs.: [    ]NAAVGVSTI SC. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00009</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Domitian</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">81/96</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">322</cell>
    <cell role="Anmerkungen">9. Domgrabung A 9. Vs.: Kopf n.r. m. Lbkr. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00010</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Trajan</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">98/99</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 395</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">458</cell>
    <cell role="Anmerkungen">10. Domgrabung A 10. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00011</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Trajan</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">98/102</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 395/434</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">193</cell>
    <cell role="Anmerkungen">11. Domgrabung A 11. Rs.: TRPOTCOS(IIII?)PPSC. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00012</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Trajan</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">98/103</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">gel.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">624</cell>
    <cell role="Anmerkungen">12. Domgrabung A 13. Vs.: Kopf n.r. [   ]TRAIANAVGGERM(P?)[   ]. Rs.: völlig abgegriffen. Mittig durchbohrt von Vs., dadurch leicht gewölbt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00013</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Trajan</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">98/103</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">514,1</cell>
    <cell role="Anmerkungen">13. Domgrabung A 12. Vs.: Kopf n.r. m. Lbkr. IMP[    ]NERVATRA-IANAVGG[    ]. Rs.:  unkenntlich. Fast völlig abgenutzt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00014</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Trajan?</cell>
    <cell role="Nominal">AE2</cell>
    <cell role="Datierung">98/117?</cell>
    <cell role="Praegestaette">gOst?</cell>
    <cell role="Referenzwerk">RPC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,11</cell>
    <cell role="Anmerkungen">14. Domgrabung A 14. Vs.: Kopf n.l. Rs.: unkenntlich. Legendenreste. Messing. Provinzialprägung? Schwach ausgeprägt, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00015</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">134/138</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 952c?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">300</cell>
    <cell role="Anmerkungen">15. Domgrabung A 15. Rs.: links weibl. Gestalt (Hispania?) n.r. kniend, rechts Hadrianus n.l. stehend. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00016</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">134/138</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 793 (a?)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">157</cell>
    <cell role="Anmerkungen">16. Domgrabung A 16. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00017</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">134/138</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 811</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">143</cell>
    <cell role="Anmerkungen">17. Domgrabung A 17. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00018</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">134/138</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 833d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">383</cell>
    <cell role="Anmerkungen">18. Domgrabung A 18. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00019</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">134/138</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,1</cell>
    <cell role="Anmerkungen">19. Domgrabung A 19. Vs.: Kopf n.r. m. Lbkr. [     ]VGC[   ]. Rs.: steh. Frau n.l. (m. Zepter?) [    ]C. Korrodiert, stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00020</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Hadrian (für Aelius)</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">137/137</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">vgl. RIC 1055</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">194</cell>
    <cell role="Anmerkungen">20. Domgrabung A 20. Rs.: Spes (?) n.l. [     ]S[     ]. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00021</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">138/139</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">vgl. RIC 520/529/545</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">645</cell>
    <cell role="Anmerkungen">21. Domgrabung A 21. Vs.: Kopf n.r. m. Lbkr. Rs.: Annona steht n.l. mit Kornähren über Modius und (Füllhorn?), rechts Schiffsvorderteil. TRPOT(X?)[     ]/SC. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00022</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">140/144</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 605</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">150</cell>
    <cell role="Anmerkungen">22. Domgrabung A 22. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00023</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">140/144</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 642a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">547</cell>
    <cell role="Anmerkungen">23. Domgrabung A 23. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00024</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">148/149</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 855</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">190</cell>
    <cell role="Anmerkungen">24. Domgrabung A 24. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00025</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">154/155</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 937</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">282,1</cell>
    <cell role="Anmerkungen">25. Domgrabung A 25. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00026</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">136/161</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">506,1</cell>
    <cell role="Anmerkungen">26. Domgrabung A 26. Vs.: Kopf n.r. m. Lbkr. ANTONINVSAVG-PIVSP[    ]. Rs.:  Frau sitzt n.l. m. Patera (?) u. Zepter. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00027</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">136/161</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">659</cell>
    <cell role="Anmerkungen">27. Domgrabung A 27. Vs.: Kopf n.r. m. Lbkr. [   ]INVS[    ]. Rs.: steh. männl. Gestalt (Kaiser/Virtus?) n.l. m. Patera (?) u. Zepter. [   ]O[   ]CO[   ]/SC. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00028</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">136/161</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT ST 8433 cf. Nr. 103</cell>
    <cell role="Anmerkungen">28. Vs.: [   ]AVG-PI[   ]. Kopf n.r. m. Lbkr. Rs.: sitz. Gestalt n.l. Domplatz. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00029</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">136/161</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">Guß</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">576,1</cell>
    <cell role="Anmerkungen">29. Domgrabung A 28. Kopf n.r. (m. Lbkr.?). [    ]-PIVSPP[     ]. Rs.: steh. Gestalt n.l. Gußzapfen. Fehlguß, Form nur zu Zweidrittel gefüllt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00030</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Antoninus Pius (Diva Faustina I.)</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">141/161</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 1103Aa</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">18,2</cell>
    <cell role="Anmerkungen">30. Domgrabung A 29. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00031</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Marc Aurel</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">161/163</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 817/843</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">236</cell>
    <cell role="Anmerkungen">31. Domgrabung A 30. Korrodiert, abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00032</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Marc Aurel</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">168/171</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 965/1010</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">45</cell>
    <cell role="Anmerkungen">32. Domgrabung A 31. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00033</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Marc Aurel</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">161/180</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">388</cell>
    <cell role="Anmerkungen">33. Domgrabung A 32. Vs.: [    ]VSAVG-[    ]. Rs.: Modius am Boden links? Im Felde links S? Annona Typ? Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00034</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Marc Aurel (für Faustina II.)</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">161/176</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 1635</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">18,1</cell>
    <cell role="Anmerkungen">34. Domgrabung A 33. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00035</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Marc Aurel (für Faustina II.)</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">161/176</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 1645/1646</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">38</cell>
    <cell role="Anmerkungen">35. Domgrabung A 34. Korrodiert, abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00036</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Commodus</cell>
    <cell role="Nominal">As</cell>
    <cell role="Datierung">192</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 644</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">29</cell>
    <cell role="Anmerkungen">36. Domgrabung A 35. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00037</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Commodus (für Crispina)</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">180/183</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 666</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">289</cell>
    <cell role="Anmerkungen">37. Domgrabung A 36. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00038</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Geta</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">211</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 173b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">351</cell>
    <cell role="Anmerkungen">38. Domgrabung A 37. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00039</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Severus Alexander</cell>
    <cell role="Nominal">S</cell>
    <cell role="Datierung">231/235</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 635d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">17</cell>
    <cell role="Anmerkungen">39. Domgrabung A 38. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00040</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valerian I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">256/257</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 128</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">49</cell>
    <cell role="Anmerkungen">40. Domgrabung A 43. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00041</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valerian I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">256/257</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 128</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">56,2</cell>
    <cell role="Anmerkungen">41. Domgrabung A 42. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00042</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Samtherrschaft) (für Saloninus)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">259/260</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 105</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,7</cell>
    <cell role="Anmerkungen">42. Domgrabung A 44. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00043</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 164K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> H  </cell>
    <cell role="Konkordanz">637,35</cell>
    <cell role="Anmerkungen">43. Domgrabung A 45. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00044</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 166</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> É  </cell>
    <cell role="Konkordanz">484</cell>
    <cell role="Anmerkungen">44. Domgrabung A 46. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00045</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 179K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> XI  </cell>
    <cell role="Konkordanz">637,4</cell>
    <cell role="Anmerkungen">45. Domgrabung A 47. Leicht korrodiert, wenig abgegfriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00046</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 193F</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     ý </cell>
    <cell role="Konkordanz">637,8</cell>
    <cell role="Anmerkungen">46. Domgrabung A 48. Wenig abgegriffen. Vgl. Brauweiler 115. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00047</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 193K var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     ý </cell>
    <cell role="Konkordanz">286,1</cell>
    <cell role="Anmerkungen">47. Domgrabung A 49. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00048</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 227K (LIBERAL)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  S    </cell>
    <cell role="Konkordanz">66</cell>
    <cell role="Anmerkungen">48. Domgrabung A 50. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00049</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 230K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> B  </cell>
    <cell role="Konkordanz">101</cell>
    <cell role="Anmerkungen">49. Domgrabung A 51. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00050</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 232K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     S </cell>
    <cell role="Konkordanz">450</cell>
    <cell role="Anmerkungen">50. Domgrabung A 52. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00051</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 245K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> N  </cell>
    <cell role="Konkordanz">28,3</cell>
    <cell role="Anmerkungen">51. Domgrabung A 53. Fast prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00052</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 249K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  Z    </cell>
    <cell role="Konkordanz">637,13</cell>
    <cell role="Anmerkungen">52. Domgrabung A 54. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00053</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 249K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  Z    </cell>
    <cell role="Konkordanz">352,2</cell>
    <cell role="Anmerkungen">53. Domgrabung A 55. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00054</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 280?</cell>
    <cell role="Besonderheiten">frag.  </cell>
    <cell role="Sonderzeichen">     H?</cell>
    <cell role="Konkordanz">380,1</cell>
    <cell role="Anmerkungen">54. Domgrabung A 56. Vs.: GALL[   ]. Rs.: steh. weibl. Gestalt (an Säule?). Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00055</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 287 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     î  </cell>
    <cell role="Konkordanz">653</cell>
    <cell role="Anmerkungen">55. Domgrabung A 57. Vs.: Kopf n.r. m. Strkr. GALLIENVSAVG. Wenig abgegriffen. vgl. Brauweiler 201ff. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00056</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 297?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  Z    </cell>
    <cell role="Konkordanz">591,14</cell>
    <cell role="Anmerkungen">56. Domgrabung A 58. Vs.: Kopf n.r. m. Strkr. [     ]LLIENVSAV[   ]. Rs.: Victoria n.l. m. Kranz. VICTO-RI[     ]. Schlecht ausgeprägt, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00057</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 330 var. (8K)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> X    </cell>
    <cell role="Konkordanz">14</cell>
    <cell role="Anmerkungen">57. Domgrabung A 59. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00058</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gallienus (Alleinherrschaft)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Med</cell>
    <cell role="Referenzwerk">RIC 468</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">8</cell>
    <cell role="Anmerkungen">58. Domgrabung A 60. Korrodiert wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00059</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 14/15K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">294</cell>
    <cell role="Anmerkungen">59. Domgrabung A 61. Korrodiert, wenig abgriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00060</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 32/33K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">629,2</cell>
    <cell role="Anmerkungen">60. Domgrabung A 62. Rs.: Felicitas m. Füllhorn. Unregelmäßig ausgeprägt. Wenig abgegriffen? Vgl. Brauweiler 313ff. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00061</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 36F</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    XI </cell>
    <cell role="Konkordanz">637,2</cell>
    <cell role="Anmerkungen">61. Domgrabung A 63. Prägefrisch. Schwach ausgeprägt, ausgebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00062</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 45K</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     â </cell>
    <cell role="Konkordanz">634,5</cell>
    <cell role="Anmerkungen">62. Domgrabung A 64. Wenig abgegriffen, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00063</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 48</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,15</cell>
    <cell role="Anmerkungen">63. Domgrabung A 65. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00064</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 55</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     N </cell>
    <cell role="Konkordanz">637,2</cell>
    <cell role="Anmerkungen">64. Domgrabung A 66. Doppelschlag, Prägungen um ca. 160° versetzt. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00065</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 66F</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">285,3</cell>
    <cell role="Anmerkungen">65. Domgrabung A 67. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00066</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 98F?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">635,3</cell>
    <cell role="Anmerkungen">66. Domgrabung A 68. Rs.: Salus(?) steht n.l. m. Patera u. Zepter (füttert Schlange?). [     ]SAVG. Kaum abgegriffen, leicht ausgebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00067</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 104F</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,3</cell>
    <cell role="Anmerkungen">67. Domgrabung A 69. Wenig abgegriffen, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00068</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 109</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">46</cell>
    <cell role="Anmerkungen">68. Domgrabung A 70. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00069</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 193</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">465,2</cell>
    <cell role="Anmerkungen">69. Domgrabung A 71. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00070</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Claudius II.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">wie RIC 104ff.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">423</cell>
    <cell role="Anmerkungen">70. Domgrabung A 72. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00071</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">53</cell>
    <cell role="Anmerkungen">71. Domgrabung A 74. Vs.: [   ]MAVRCLQVINTILLVS[   ]  Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00072</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,5</cell>
    <cell role="Anmerkungen">72. Domgrabung A 75. Kaum abgegriffen, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00073</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,1</cell>
    <cell role="Anmerkungen">73. Domgrabung A 81. Kaum abgegriffen. Schlecht ausgeprägt, ausgebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00074</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,17</cell>
    <cell role="Anmerkungen">74. Domgrabung A 80. Wenig abgegriffen, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00075</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,12</cell>
    <cell role="Anmerkungen">75. Domgrabung A 76. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00076</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,38</cell>
    <cell role="Anmerkungen">76. Domgrabung A 77. Vs.: sehr kleiner Kopf. Prägefrisch, Vs. schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00077</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">390</cell>
    <cell role="Anmerkungen">77. Domgrabung A 79. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00078</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">425,3</cell>
    <cell role="Anmerkungen">78. Domgrabung A 84. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00079</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">440</cell>
    <cell role="Anmerkungen">79. Domgrabung A 85. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00080</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">483</cell>
    <cell role="Anmerkungen">80. Domgrabung A 82. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00081</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">454,2</cell>
    <cell role="Anmerkungen">81. Domgrabung A 86. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00082</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">138</cell>
    <cell role="Anmerkungen">82. Domgrabung A 83. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00083</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 261</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">528,1</cell>
    <cell role="Anmerkungen">83. Domgrabung A 78. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00084</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,22</cell>
    <cell role="Anmerkungen">84. Domgrabung A 88. Wenig abgegriffen, zu einem Drittel ausgebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00085</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,12</cell>
    <cell role="Anmerkungen">85. Domgrabung A 93. Prägefrisch. Schlecht ausgeprägt, knapper rissiger Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00086</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">284</cell>
    <cell role="Anmerkungen">86. Domgrabung A 95. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00087</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,3</cell>
    <cell role="Anmerkungen">87. Domgrabung A 87. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00088</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">353,1</cell>
    <cell role="Anmerkungen">88. Domgrabung A 90. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00089</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">372,1</cell>
    <cell role="Anmerkungen">89. Domgrabung A 89. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00090</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">389,2</cell>
    <cell role="Anmerkungen">90. Domgrabung A 91. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00091</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">490,1</cell>
    <cell role="Anmerkungen">91. Domgrabung A 94. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00092</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 266</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">527,5</cell>
    <cell role="Anmerkungen">92. Domgrabung A 92. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00093</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 277</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">425,2</cell>
    <cell role="Anmerkungen">93. Domgrabung A 96. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00094</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Quintillus (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">296</cell>
    <cell role="Anmerkungen">94. Domgrabung A 97. Vs.: Kopf n.r. m. Strkr. [   ]DIO. Rs.: unkenntlich. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00095</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Postumus</cell>
    <cell role="Nominal">DS</cell>
    <cell role="Datierung">260/268</cell>
    <cell role="Praegestaette">Col/Tre</cell>
    <cell role="Referenzwerk">RIC 143A</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">552</cell>
    <cell role="Anmerkungen">95. Domgrabung A 124. Brandspuren? Vs. schwach ausgeprägt, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00096</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Victorinus</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">268/270</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 732</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">282,2</cell>
    <cell role="Anmerkungen">96. Domgrabung A 125. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00097</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 761</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">554,2</cell>
    <cell role="Anmerkungen">97. Domgrabung A 127. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00098</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 770/774?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">649</cell>
    <cell role="Anmerkungen">98. Domgrabung A 128. Rs.: Victoria n.l. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00099</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 771/775</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">232,1</cell>
    <cell role="Anmerkungen">99. Domgrabung A 131. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00100</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 771/775</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">316,1</cell>
    <cell role="Anmerkungen">100. Domgrabung A 130. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00101</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 771/775</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">508,2</cell>
    <cell role="Anmerkungen">101. Domgrabung A 129. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00102</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 772/776</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">650</cell>
    <cell role="Anmerkungen">102. Domgrabung A 132. Wenig abgegriffen. Schlecht ausgeprägt; kleiner, knapper Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00103</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 772/776</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT ST 6727c</cell>
    <cell role="Anmerkungen">103. FO: Domfreihof 8. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00104</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 775</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,16</cell>
    <cell role="Anmerkungen">104. Domgrabung A 133. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00105</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 780</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">297,3</cell>
    <cell role="Anmerkungen">105. Domgrabung A 135. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00106</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 780</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">329</cell>
    <cell role="Anmerkungen">106. Domgrabung A 134. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00107</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col?</cell>
    <cell role="Referenzwerk">Elm. 764/767?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">243</cell>
    <cell role="Anmerkungen">107. Domgrabung A 136. Rs.: Spes n.l. (SP)[  ](S-P-V)[    ]. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00108</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 787</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">287</cell>
    <cell role="Anmerkungen">108. Domgrabung A 138. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00109</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 787</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">56,1</cell>
    <cell role="Anmerkungen">109. Domgrabung A 137. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00110</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 787</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">226</cell>
    <cell role="Anmerkungen">110. Domgrabung A 139. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00111</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 789/790</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,6</cell>
    <cell role="Anmerkungen">111. Domgrabung A 140. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00112</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col/Tre</cell>
    <cell role="Referenzwerk">Elm. ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,23</cell>
    <cell role="Anmerkungen">112. Domgrabung A 141. Rs.: unkenntlich. Kaum abgegriffen. Gußzapfen am Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00113</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col/Tre</cell>
    <cell role="Referenzwerk">Elm. ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">353,2</cell>
    <cell role="Anmerkungen">113. Domgrabung A 142. Rs.: steh. Gestalt. n.l. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00114</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I.</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/274</cell>
    <cell role="Praegestaette">Col/Tre</cell>
    <cell role="Referenzwerk">Spes Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">224</cell>
    <cell role="Anmerkungen">114. Domgrabung A 143. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00115</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">272/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 769</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,14</cell>
    <cell role="Anmerkungen">115. Domgrabung A 182. Prägefrisch. Rs.: flaue Prägung. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00116</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">272/274</cell>
    <cell role="Praegestaette">Col</cell>
    <cell role="Referenzwerk">Elm. 769</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">527,2</cell>
    <cell role="Anmerkungen">116. Domgrabung A 183. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00117</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">272/274</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">Elm. 791</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,3</cell>
    <cell role="Anmerkungen">117. Domgrabung A 184. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00118</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Tetricus I. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">272/274</cell>
    <cell role="Praegestaette">Col/Tre</cell>
    <cell role="Referenzwerk">Elm. ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,17</cell>
    <cell role="Anmerkungen">118. Domgrabung A 185. Vs.: Kopf m. Strkr. Rs.: steh. weibl. Gestalt  n.l. Korrodiert, wenig abgegriffen. Knapper Schrötling, eher nicht barbarisiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00119</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">       C   </cell>
    <cell role="Konkordanz">249</cell>
    <cell role="Anmerkungen">119. Domgrabung A 73. Vs.: Kopf des Claudius II (?) n.r. m. Strkr. Rs.: Gestalt n.r. m. Zepter/Lanze. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00120</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">644,2</cell>
    <cell role="Anmerkungen">120. Domgrabung A 102. Vs.: Kopf n.r.m.Strkr. Rs.: Altar. [    ]ATIO. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00121</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">609</cell>
    <cell role="Anmerkungen">121. Domgrabung A 106. Rs.: Altar. Korrodiert. Dünner Schrötling, wohl barbarisiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00122</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,7</cell>
    <cell role="Anmerkungen">122. Domgrabung A 116. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Korrodiert. Eher schlecht ausgeprägt als abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00123</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,43</cell>
    <cell role="Anmerkungen">123. Domgrabung A 110. Vs.: Kopf m. Strkr.? Rs.: Altar. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00124</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,31</cell>
    <cell role="Anmerkungen">124. Domgrabung A 107. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00125</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">599,2</cell>
    <cell role="Anmerkungen">125. Domgrabung A 108. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Legendenreste. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00126</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,56</cell>
    <cell role="Anmerkungen">126. Domgrabung A 98. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Pseudolegende. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00127</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,28</cell>
    <cell role="Anmerkungen">127. Domgrabung A 101. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. [    ]EC[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00128</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,57</cell>
    <cell role="Anmerkungen">128. Domgrabung A 100. Vs.: Büste n.r. m. Strkr. Pseudolegende. Rs.: Altar. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00129</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">266</cell>
    <cell role="Anmerkungen">129. Domgrabung A 105. Vs.: unkenntlich. Rs.: Altar. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00130</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,6</cell>
    <cell role="Anmerkungen">130. Domgrabung A 99. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Buchstaben. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00131</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">205</cell>
    <cell role="Anmerkungen">131. Domgrabung A 113. Vs.: Kopf n.r. m. Strkr.  Rs.: Altar. CO[     ]. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00132</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">203</cell>
    <cell role="Anmerkungen">132. Domgrabung A 109. Vs.: Kopf n.r. m. Strkr.  Rs.: Altar. CON[    ]. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00133</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">313</cell>
    <cell role="Anmerkungen">133. Domgrabung A 103. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. [   ]ONSEC[    ]. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00134</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">133,3</cell>
    <cell role="Anmerkungen">134. Domgrabung A 104. Vs.: unkenntlich.  Rs.: Altar. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00135</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">341</cell>
    <cell role="Anmerkungen">135. Domgrabung A 115. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00136</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">438</cell>
    <cell role="Anmerkungen">136. Domgrabung A 111. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00137</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,68</cell>
    <cell role="Anmerkungen">137. Domgrabung A 117. Vs.: Kopf m. Strkr. Rs.: Altar?. Korrodiert. Dicker Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00138</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 266 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,66</cell>
    <cell role="Anmerkungen">138. Domgrabung A 120. Vs.: Kopf n.r. m. Strkr. [    ]LAVD[    ]. Rs.: Adler. CONSECR[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00139</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 266 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,53</cell>
    <cell role="Anmerkungen">139. Domgrabung A 121. Vs.: Kopf n.r. m. Strkr. [    ]LVDI[    ]. Rs.: Adler. CON[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00140</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 266 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">40</cell>
    <cell role="Anmerkungen">140. Domgrabung A 119. Vs.: Kopf n.r. m. Strkr.  [  ]OCLAVD[  ]. Rs.: Adler.  [  ]NSEC[  ]. Schwach ausgeprägt, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00141</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 266 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">279</cell>
    <cell role="Anmerkungen">141. Domgrabung A 122. Vs.: Kopf n.r. Rs.: Adler. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00142</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 266 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">81</cell>
    <cell role="Anmerkungen">142. Domgrabung A 118. Vs.: Kopf n.r. m. Strkr. [  ]SA[  ]  Rs.: Adler n.l. CON[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00143</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">302,1</cell>
    <cell role="Anmerkungen">143. Domgrabung A 114. Vs.: Büste n.r. m. Strkr. Rs.: Altar. Pseudolegende. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00144</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">304,4</cell>
    <cell role="Anmerkungen">144. Domgrabung A 112. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00145</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</cell>
    <cell role="Nominal">An?</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC 261 Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">261</cell>
    <cell role="Anmerkungen">145. Domgrabung A 123. Vs.: Kopf n.r. m. Strkr.? [    ]VG. Rs.: Altar?. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00146</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Victorinus)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 697 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,2</cell>
    <cell role="Anmerkungen">146. Domgrabung A 126. Vs.: drap. Büste n.r. m. Strkr. V[   ]PIPCITI[     ]. Rs.: steh. weibl. Gestalt n.l. m. langem Zepter (vor Altar?). Legendenreste. . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00147</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 747/768 Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">413,1</cell>
    <cell role="Anmerkungen">147. Domgrabung A 144. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: Victoria(?)  n.l. VI[   ]? Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00148</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 770/774 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">229</cell>
    <cell role="Anmerkungen">148. Domgrabung A 145. Vs.: Kopf n.r. m. Strkr. [   ]TETERICV[   ]  Rs.: Victoria n.l. m.  Kranz u. Palme.  COME[   ]. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00149</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,9</cell>
    <cell role="Anmerkungen">149. Domgrabung A 150. Vs.: Kopf n.r. m. Strkr. [    ]CT[    ]DIIVOG. Rs.: Pax n.l. m. Zepter. [    ]II[    ]. Ovaler Schrötling. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00150</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,9</cell>
    <cell role="Anmerkungen">150. Domgrabung A 147. Vs.: gepanz. Büste n.r. m. Strkr. IMPCTETRICVSPFAVG. Rs.: Pax n.l. m. Zweig u. Zepter. PA-X-AVG. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00151</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,34</cell>
    <cell role="Anmerkungen">151. Domgrabung A 148. Vs.: Kopf n.r. m. Strkr. IMPTET[    ]. Rs.: Pax n.l. m. langem Zepter. [   ]X[  ]VG. Ovaler Schrötling. Ungleichmäßig ausgeprägt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00152</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,18</cell>
    <cell role="Anmerkungen">152. Domgrabung A 149. Vs.: Büste n.r. m. Strkr. IMPTITRICVSA. Rs.: Pax n.l. m. Zweig u. langem Zepter. [    ]S-AVGG. Ovaler Schrötling. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00153</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,24</cell>
    <cell role="Anmerkungen">153. Domgrabung A 151. Vs.: bärt. Kopf n.r. m. Strkr. [    ]IICIISF[  ]. Rs.: Pax n.r. m. Zweig u. Zepter. [   ]X-[   ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00154</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,2</cell>
    <cell role="Anmerkungen">154. Domgrabung A 153. Vs.: bärt. gepanz. Büste n.r. m. Strkr. Pseudolegende. Rs.: Pax n.l. m. Zweig u. Zepter. Pseudolegende. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00155</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">297,2</cell>
    <cell role="Anmerkungen">155. Domgrabung A 146. Vs.: gepanz. Büste n.r. m. Strkr. [   ]PTETRI[   ]. Rs.: Pax n.l. m. Zweig u. Zepter. PAX-AV[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00156</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">260</cell>
    <cell role="Anmerkungen">156. Domgrabung A 152. Vs.: Kopf n.r. m. Strkr. Buchstaben. Rs.: Pax n.l. m. Zweig u. Zepter [   ]XAV[ ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00157</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 771/775 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">232,2</cell>
    <cell role="Anmerkungen">157. Domgrabung A 154. Vs.: bärt. Kopf n.r. m. Strkr.  [   ]ICVS[   ]. Rs.: Pax n.l. m. Zweig u. Zepter. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00158</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 772/776 Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">297,1</cell>
    <cell role="Anmerkungen">158. Domgrabung A 155. Vs.: bärt. Büste n.r. m. Strkr. Legendenreste.  Rs.: weibl. Gestalt (Salus?) n.l. m. Patera u. Zepter.  Buchstaben. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00159</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/786-788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">644,1</cell>
    <cell role="Anmerkungen">159. Domgrabung A 156. Vs.: bärt. Kopf n.r. m. Strkr. [   ]RICVSPF[  ]. Rs.: steh. Gestalt n.l. m. Anker. Legendenreste. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00160</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,51</cell>
    <cell role="Anmerkungen">160. Domgrabung A 162. Vs.: Kopf n.r. m. Strkr. [    ]TETRICVS[    ]. Rs.: Salus n.l. m. Anker. [    ]SAVGG. Dünner, verbogener Schrötling. Korridert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00161</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">602,1</cell>
    <cell role="Anmerkungen">161. Domgrabung A 159. Vs.: bärt. Kopf n.r. m. Strkr. IMPTE[   ]? Rs.: Salus n.l. m. Patera u. Steuerruder (?) vor Altar. Legendenreste. . Vs. schwach ausgeprägt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00162</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">661</cell>
    <cell role="Anmerkungen">162. Domgrabung A 161. Vs.: bärt. Büste n.r. m. Strkr. [  ET[    ]. Rs.: Salus n.l. m. Patera u. Anker vor Altar, füttert Schlange. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00163</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">267</cell>
    <cell role="Anmerkungen">163. Domgrabung A 158. Vs.: Büste n.r. m. Strkr. [   ]TRICVSPFA[   ]. Rs.: Salus m. Schlange  u. Anker. [   ]GG . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00164</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">292</cell>
    <cell role="Anmerkungen">164. Domgrabung A 157. Vs.: Kopf n.r. m. Strkr. [   ]ICSPFAV[   ]  Rs.: Salus m. Anker. [   ]S-AVGG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00165</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">349,1</cell>
    <cell role="Anmerkungen">165. Domgrabung A 163. Vs.: Kopf n.r. m. Strkr. [  ]ICVSEPII¨. Rs.: Salus n.l. vor Altar  m. Patera u. Anker, füttert Schlange. [   ]AVGG. Prägefrisch. Ungleichmäßig ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00166</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 779/788 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">480</cell>
    <cell role="Anmerkungen">166. Domgrabung A 160. Vs.: drap. Büste n.r. m. Strkr. Legendenreste. Rs.: Salus n.l. vor Altar m. Patera u. Anker. [   ]ALV-SA[   ]. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00167</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 780 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">298,1</cell>
    <cell role="Anmerkungen">167. Domgrabung A 164. Vs.: bärt. Büste n.r. m. Strkr. [   ]SPCIVI. Rs.: behelmte Gestalt n.l. m. Lanze. Pseudolegende. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00168</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 780 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">379,1</cell>
    <cell role="Anmerkungen">168. Domgrabung A 165. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: Virtus n.l. m. Schild u. Lanze. [   ]C[   ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00169</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 786/787 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">449</cell>
    <cell role="Anmerkungen">169. Domgrabung A 166. Vs.: gepanz. Büste n.r. m. Strkr. IMPTETRICVSAVG. Rs.: Laetitia n.l. m. Kranz u. Anker. LA[   ]AVG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00170</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 789/790 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">602,2</cell>
    <cell role="Anmerkungen">170. Domgrabung A 167. Vs.: Kopf n.r. m. Strkr. [    ]PICVSPA[    ]. Rs.: Hilaritas steht m. Zweig u. Füllhorn. [    ]ARI[    ]. . Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00171</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Spes Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,1</cell>
    <cell role="Anmerkungen">171. Domgrabung A 168. Vs.: bärt. Kopf n.r. m. Strkr. CAESTETRI[   ] . Rs.: Spes n.l.  m. Blume. [   ]S[   ]. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00172</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,24</cell>
    <cell role="Anmerkungen">172. Domgrabung A 172. Vs.: Kopf n.r. m. Strkr. [    ]TETRICVS[    ]. Rs.: Hilaritas m. Zepter u. Zweig. Wenig abgegriffen. Schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00173</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,64</cell>
    <cell role="Anmerkungen">173. Domgrabung A 179. Vs.: Kopf n.r. m. Strkr. [    ]TRICVSV. Rs.: steh. Frau n.l. m. langem Zepter. [    ]VG. Unregelmäßiger Schrötling. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00174</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,71</cell>
    <cell role="Anmerkungen">174. Domgrabung A 173. Vs.: Kopf n.r. m. Strkr. IIITE[    ]. Rs.: steh. weibl. Gestalt. Schwach und ungleichmäßig ausgeprägt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00175</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,26</cell>
    <cell role="Anmerkungen">175. Domgrabung A 180. Vs.: Kopf n.r. m. Strkr. IMPCTE[    ]. Rs.: steh. Frau n.l. m. Patera u. Zweig. . Knapper Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00176</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,28</cell>
    <cell role="Anmerkungen">176. Domgrabung A 176. Vs.: Kopf n.r. m. Strkr. IIIIIITETRICV[    ]. Rs.: Pegasus n.r. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00177</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,33</cell>
    <cell role="Anmerkungen">177. Domgrabung A 169. Vs.: Büste n.r. m. Strkr. [  ]PICI[    ]IIIS. Rs.: steh. Gestalt (m. Zweig?). [    ]IIAC. Ovaler Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00178</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,6</cell>
    <cell role="Anmerkungen">178. Domgrabung A 171. Vs.: Büste n.r. m. Strkr. [    ]RICVSPFA. Rs.: steh. weibl. Gestalt n.l. [    ]AVGG. Unregelmäßiger Schrötling. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00179</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">599,1</cell>
    <cell role="Anmerkungen">179. Domgrabung A 175. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt. [   ]-V[  ].  Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00180</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">275,2</cell>
    <cell role="Anmerkungen">180. Domgrabung A 178. Vs.: Kopf n.r. m. Strkr. [   ]ETRIC[   ]. Rs.: verwilderte Darstellung. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00181</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">298,2</cell>
    <cell role="Anmerkungen">181. Domgrabung A 170. Vs.: bärt. Büste n.r. m. Strkr. IMPTET[   ]. Rs.: weibl. Gestalt n.l. vor Altar m. Füllhorn. [   ]AVG. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00182</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">192</cell>
    <cell role="Anmerkungen">182. Domgrabung A 181. Vs.: bärt. drap. Büste n.r.  IMPTETRI[   ]PFVI. Rs.: steh. Gestalt m. Zepter. I[ ]AT[  ]. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00183</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">339,2</cell>
    <cell role="Anmerkungen">183. Domgrabung A 174. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt. n.l.  (m. Zweig?). Prägefrisch. Unregelmäßig ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00184</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">525</cell>
    <cell role="Anmerkungen">184. Domgrabung A 177. Vs.: [  ]UCTRTI[  ]. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.  l. (Spes/Victoria?). Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00185</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 778 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,1</cell>
    <cell role="Anmerkungen">185. Domgrabung A 186. Vs.: drap. Büste n.r. m. Strkr. v. hinten. [   ]V[    ]TETRICVS[     ]. Rs.: Pontifikalgerät. PIETASAVGVSO. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00186</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 778 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">178</cell>
    <cell role="Anmerkungen">186. Domgrabung A 187. Vs.: drap. Büste n.r. m. Strkr. v. hinten [  ]IV[   ]RICVSCAES. Rs.: Pontifikalgeräte. PIE[   ]STO[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00187</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Elm. 791 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">252,3</cell>
    <cell role="Anmerkungen">187. Domgrabung A 189. Vs.: drap. Büste n.r. m. Strkr. v. hinten. CPIVES[  ]SCAES. Rs.: Spes n.l.  S[  ]AVG[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00188</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">vgl. Elm. 789/790 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,3</cell>
    <cell role="Anmerkungen">188. Domgrabung A 188. Vs.: Kopf n.r. m. Strkr. [    ]ESVTETRICVSC[    ]. Rs.: Hilaritas m. Zweig u. Füllhorn. Pseudolegende. Kaum abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00189</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Laetitia Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">328,1</cell>
    <cell role="Anmerkungen">189. Domgrabung A 190. Vs.: Kopf n.r. m. Strkr. [   ]TRII[   ]. Rs.: Laetitia n.l. m.  Kranz u. Anker.  [  ]I-I[ ]. Flaue Prägung, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00190</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,65</cell>
    <cell role="Anmerkungen">190. Domgrabung A 191. Vs.: Kopf ohne Bart n.r. m. Strkr. Legendenreste. Rs.: Pax n.l. m. langem Zepter. [   ]X-AVG. Knapper Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00191</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">285,4</cell>
    <cell role="Anmerkungen">191. Domgrabung A 193. Vs.: drap. Büste n.r. m. Strkr. [   ]CVSCAES. Rs.: Pax n.l. m. Zepter. PAX[   ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00192</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">316,2</cell>
    <cell role="Anmerkungen">192. Domgrabung A 192. Vs.: Kopf n.r. m. Strkr. [   ]VCSIII. Rs.: Pax n.l. m. Zweig u.  Zepter. PA[   ]. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00193</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,4</cell>
    <cell role="Anmerkungen">193. Domgrabung A 196. Vs.: Kopf ohne Bart n.r. m. Strkr. CVTETR[   ]A. Rs.: Pax (?) m.  Zepter. Legendenreste. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00194</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">339,4</cell>
    <cell role="Anmerkungen">194. Domgrabung A 194. Vs.: Kopf n.r. m. Strkr. [   ]ICILS#¨#. Rs.: Pax (?) n.l. (m.  Zweig? ) u. Zepter. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00195</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">371</cell>
    <cell role="Anmerkungen">195. Domgrabung A 195. Vs.: Kopf n.r. m. Strkr. CPIVESVTE[ ]RIC[   ]. Rs.: Steh. Frau n.  l. m. Zepter (Pax?). Prägefrisch.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00196</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Virtus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,18</cell>
    <cell role="Anmerkungen">196. Domgrabung A 197. Vs.: Kopf n.r. m. Strkr. PIVESVT[    ]. Rs.: Virtus n.r. m. Schild. [    ]SAVG. Unregelmäßiger Schrötling. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00197</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,47</cell>
    <cell role="Anmerkungen">197. Domgrabung A 198. Vs.: Kopf ohne Bart n.r. m. Strkr. Rs.: steh. Frau n.l. m. Anker. Knapper Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00198</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,36</cell>
    <cell role="Anmerkungen">198. Domgrabung A 201. Vs.: Kopf n.r. m. Strkr. IESVTETRICVSC[   ]. Rs.: steh. Gestalt m. Kranz/Patera. OTIV-[    ]. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00199</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,46</cell>
    <cell role="Anmerkungen">199. Domgrabung A 200. Vs.: Kopf ohne Bart n.r. m. Strkr. Pseudolegende. Rs.: steh. Frau n.l. m. langem Zepter. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00200</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,4</cell>
    <cell role="Anmerkungen">200. Domgrabung A 203. Vs.: bärt. Kopf n.r. m. Strkr. [   ]CVS  Rs.: steh. Gestalt m.  Zepter. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00201</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">339,3</cell>
    <cell role="Anmerkungen">201. Domgrabung A 202. Vs.: Kopf n.r. m. Strkr. [  ]IITRICII[ ]. Rs.: steh. Gestalt. n.l.  m. Zepter.  [   ]AVG. Fast prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00202</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">374</cell>
    <cell role="Anmerkungen">202. Domgrabung A 199. Vs.: drap. Büste ohne Bart n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt (Victoria?). Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00203</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Hilaritas Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,25</cell>
    <cell role="Anmerkungen">203. Domgrabung A 204. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: Hilaritas m. Zweig u. Füllhorn. [   ]VG. Wenig abgegriffen. Schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00204</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,27</cell>
    <cell role="Anmerkungen">204. Domgrabung A 207. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: Pax n.l. m. Zweig u. langem Zepter. P[  ]X-AVG. . Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00205</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,52</cell>
    <cell role="Anmerkungen">205. Domgrabung A 210. Vs.: Büste n.r. m. Strkr. [    ]VSPIAVG. Rs.: Pax n.l. m. Zweig u. langem Zepter. PAX[    ]G. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00206</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">636</cell>
    <cell role="Anmerkungen">206. Domgrabung A 209. Vs.: Kopf n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u.  Zepter. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00207</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">658</cell>
    <cell role="Anmerkungen">207. Domgrabung A 208. Vs.: bärt. Büste n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u. langem Zepter. DAX [  ]G. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00208</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">662</cell>
    <cell role="Anmerkungen">208. Domgrabung A 211. Vs.: bärt. Büste n.r. m. Strkr. Rs.: Pax n.l. (m. Zweig) u. langem Zepter. PA[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00209</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,7</cell>
    <cell role="Anmerkungen">209. Domgrabung A 206. Vs.: gepanz. bärt. Buste n.r. m. Strkr. Rs.: Pax n.l. m.  Zepter. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00210</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">221</cell>
    <cell role="Anmerkungen">210. Domgrabung A 212. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u. Zepter. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00211</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">304,3</cell>
    <cell role="Anmerkungen">211. Domgrabung A 205. Vs.: bärt. drap. Büste n.r. m. Strkr.  Rs.: Pax n.l. PAXA[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00212</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,7</cell>
    <cell role="Anmerkungen">212. Domgrabung A 215. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l.  (Pax?) PI[   ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00213</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">225</cell>
    <cell role="Anmerkungen">213. Domgrabung A 213. Vs.: bärt. Kopf n.r. m. Strkr. Buchstaben. Rs.: steh. weibl. Gestalt (Pax?) m. Zepter(?). Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00214</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">207</cell>
    <cell role="Anmerkungen">214. Domgrabung A 214. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: steh. Gestalt (Pax ?) n.l. m. erhob. R. (L. auf Zepter gestützt ?), l. im Felde Darstellungsreste (Zepter ?). Doppelschlag?. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00215</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Pax/Spes Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">600</cell>
    <cell role="Anmerkungen">215. Domgrabung A 216. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Zweig/Blume u. ausgestreckter L. Pseudolegende. Ungleichmäßig ausgeprägt. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00216</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,67</cell>
    <cell role="Anmerkungen">216. Domgrabung A 219. Vs.: Büste n.r. m. Strkr. Rs.: Salus n.l. vor Altar. SALV[    ]. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00217</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">262,1</cell>
    <cell role="Anmerkungen">217. Domgrabung A 218. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Salus n.l. m. Schlange u. Anker. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00218</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">248,1</cell>
    <cell role="Anmerkungen">218. Domgrabung A 221. Vs.: Kopf n.r. m. Strkr. Buchstaben. Rs.: Salus n.l. vor Altar, daneben Schlange. Korrrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00219</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">80</cell>
    <cell role="Anmerkungen">219. Domgrabung A 217. Vs.: bärt. (gepanz.?) Büste n.r. m. Strkr. Rs.: Salus n.l. m. Anker vor Altar. Korrrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00220</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">369,4</cell>
    <cell role="Anmerkungen">220. Domgrabung A 222. Vs.: Kopf n.r. m. Strkr. Rs.: Salus n.l. vor Altar? SAL[  ]. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00221</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">303,2</cell>
    <cell role="Anmerkungen">221. Domgrabung A 220. Vs.: Kopf n.r. m. Strkr. Rs.: Salus n.l. vor Altar. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00222</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">372,3</cell>
    <cell role="Anmerkungen">222. Domgrabung A 223. Vs.: bärt. Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt (Salus?) n.l. (am  Altar?). Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00223</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Salus/Laetitia Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,5</cell>
    <cell role="Anmerkungen">223. Domgrabung A 224. Vs.: Kopf n.r. m. Strkr. Rs.: steh. weibl. Gestalt (Salus/Laetitia?) m. Anker. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00224</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Spes Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">379,5</cell>
    <cell role="Anmerkungen">224. Domgrabung A 225. Vs.: Kopf n.r. m. Strkr. Rs.: Spes n.l. m. Blume. Kaum abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00225</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Virtus Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">379,2</cell>
    <cell role="Anmerkungen">225. Domgrabung A 226. Vs.: Kopf n.r. m. Strkr. Rs.: Virtus n.l. m. Schild u. Lanze. Kaum abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00226</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Virtus Typ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">33</cell>
    <cell role="Anmerkungen">226. Domgrabung A 227. Vs.: drap. bärtige Büste n.r. m. Strkr.  Pseudolegende. Rs.:  steh. (männl.?) Gestalt m. Lanze (Virtus spiegelverkehrt?).  Pseudobuchstaben. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00227</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">vgl. RIC (Gallienus) 176ff.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,42</cell>
    <cell role="Anmerkungen">227. Domgrabung A 228. Vs.: Kopf n.r. m. Strkr. Rs.: Huftier (Hirsch?) n.r. . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00228</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">585</cell>
    <cell role="Anmerkungen">228. Domgrabung A 272. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Gestalt. Schwach ausgeprägt, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00229</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">564</cell>
    <cell role="Anmerkungen">229. Domgrabung A 259. Vs.: (bärt.?) Kopf n.r. (m. Strkr.?). Rs.: steh. Gestalt. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00230</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,32</cell>
    <cell role="Anmerkungen">230. Domgrabung A 238. Vs.: Kopf n.r. m. Strkr. Rs.: zwei steh. Gestalte, zwischen ihnen Buchstaben (?). Prägefrisch, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00231</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,5</cell>
    <cell role="Anmerkungen">231. Domgrabung A 256. Vs.: Kopf n.r. m. Strkr. Rs.: Hilaritas/Pax steht m. Zweig. [    ]II[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00232</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,23</cell>
    <cell role="Anmerkungen">232. Domgrabung A 244. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Zepter vor Altar. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00233</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,29</cell>
    <cell role="Anmerkungen">233. Domgrabung A 276. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau n.l. m. Blume/Zweig. Legendenreste. Wenig abgegriffen. Ovaler Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00234</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,4</cell>
    <cell role="Anmerkungen">234. Domgrabung A 251. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Legendenreste. Eher schlecht ausgeprägt als abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00235</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,37</cell>
    <cell role="Anmerkungen">235. Domgrabung A 261. Vs.: Kopf n.r. m. Strkr. [    ]IIOIU. Rs.: steh. Gestalt m. erhobenem Arm. Eher schlecht ausgeprägt als abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00236</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,55</cell>
    <cell role="Anmerkungen">236. Domgrabung A 279. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00237</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,54</cell>
    <cell role="Anmerkungen">237. Domgrabung A 284. Vs.: Kopf n.r. m. Strkr. [    ]IPIAII. Rs.: steh. Gestalt m. Blume (?). [    ]I[    ]. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00238</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">646,2</cell>
    <cell role="Anmerkungen">238. Domgrabung A 250. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau m. Zepter. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00239</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,39</cell>
    <cell role="Anmerkungen">239. Domgrabung A 242. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Flaue Prägung, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00240</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,45</cell>
    <cell role="Anmerkungen">240. Domgrabung A 254. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt (m. Zepter?). Fast prägefrish. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00241</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,44</cell>
    <cell role="Anmerkungen">241. Domgrabung A 280. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt m. Zepter. Prägefrish. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00242</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,48</cell>
    <cell role="Anmerkungen">242. Domgrabung A 277. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt. Flaue Prägung, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00243</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">605</cell>
    <cell role="Anmerkungen">243. Domgrabung A 252. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau n.l. m. Blume/Zweig. Pseudolegende. Wenig abgegriffen. Schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00244</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,61</cell>
    <cell role="Anmerkungen">244. Domgrabung A 281. Vs.: Kopf n.r. m. Strkr. III[    ]SVG. Rs.: Victoria (?) n.l. [   ]OV-TASC[    ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00245</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,29</cell>
    <cell role="Anmerkungen">245. Domgrabung A 270. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Pseudolegende. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00246</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,22</cell>
    <cell role="Anmerkungen">246. Domgrabung A 273. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt (l. Zepter?). A[    ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00247</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,13</cell>
    <cell role="Anmerkungen">247. Domgrabung A 229. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00248</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,59</cell>
    <cell role="Anmerkungen">248. Domgrabung A 264. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt (m. Blume/Zweig?). Pseudolegende. Fast prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00249</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,74</cell>
    <cell role="Anmerkungen">249. Domgrabung A 278. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00250</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,19</cell>
    <cell role="Anmerkungen">250. Domgrabung A 257. Vs.: kopf n.l. m. Strkr. Pseudolegende. Rs.: steh. Gestalt n.l. (m. Zweig?) u. Zepter. Pseudologende. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00251</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,16</cell>
    <cell role="Anmerkungen">251. Domgrabung A 237. Vs.: drap. Büste n.r. m. Strkr. [    ]CT[    ]. Rs.: steh. weibl. Gestalt n.l. m. Blume und Zepter. [    ]X-[    ]. Unregelmäßiger, ovaler schrötling mit Gußzapfen. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00252</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,19</cell>
    <cell role="Anmerkungen">252. Domgrabung A 231. Vs.: Büste n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt? Legendenreste. Sehr unregelmäßiger Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00253</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,11</cell>
    <cell role="Anmerkungen">253. Domgrabung A 239. Vs.: Büste n.r. m. Strkr. [    ]SPDVC. Rs.: steh. weibl. Gestalt n.l. m. Zweig u. langem Zepter. Pseudolegende. . Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00254</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,21</cell>
    <cell role="Anmerkungen">254. Domgrabung A 232. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: keine erkennbare Prägung. Ovaler Schrötling. Einseitig geprägt? Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00255</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,58</cell>
    <cell role="Anmerkungen">255. Domgrabung A 290. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt m. langem Zweig. PA[    ]. Dünner, ausgebrochener Schrötling. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00256</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,49</cell>
    <cell role="Anmerkungen">256. Domgrabung A 260. Vs.: Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt n.l. m. Anker. [    ]VAC. Knapper Schrötling. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00257</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,63</cell>
    <cell role="Anmerkungen">257. Domgrabung A 265. Vs.: Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt n.l. m. Anker. Knapper Schrötling. Schwach ausgeprägt. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00258</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,62</cell>
    <cell role="Anmerkungen">258. Domgrabung A 291. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Anker. Legendenreste. Dünner Schrötling. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00259</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">274,3</cell>
    <cell role="Anmerkungen">259. Domgrabung A 247. Vs.: Büste n.r. m. Strkr. Rs.: Victoria?. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00260</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,3</cell>
    <cell role="Anmerkungen">260. Domgrabung A 269. Vs.: drap. bärt. Kopf n.r. m. Strkr. Rs.: verwilderte Darstellugnng. Pseudolegende. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00261</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,5</cell>
    <cell role="Anmerkungen">261. Domgrabung A 258. Vs.: bärt. Kopf n.r. Rs.: steh. Gestalt m. Zepter. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00262</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,6</cell>
    <cell role="Anmerkungen">262. Domgrabung A 274. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00263</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,2</cell>
    <cell role="Anmerkungen">263. Domgrabung A 230. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolgende. Rs.: verwilderte  Darstellung. Buchstaben. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00264</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,3</cell>
    <cell role="Anmerkungen">264. Domgrabung A 245. Vs.: Kopf n.r. (m. Strkr.?). Rs.: verwilderte Darstellung. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00265</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,4</cell>
    <cell role="Anmerkungen">265. Domgrabung A 266. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00266</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,5</cell>
    <cell role="Anmerkungen">266. Domgrabung A 275. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl.  Gestalt. [   ]V-AV[   ] . Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00267</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,7</cell>
    <cell role="Anmerkungen">267. Domgrabung A 288. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: unkenntlich. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00268</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">281,8</cell>
    <cell role="Anmerkungen">268. Domgrabung A 271. Vs.: Kopf n.r. m. Strkr.? Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00269</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,2</cell>
    <cell role="Anmerkungen">269. Domgrabung A 246. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00270</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">286,6</cell>
    <cell role="Anmerkungen">270. Domgrabung A 262. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l. m. Zepter. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00271</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">291</cell>
    <cell role="Anmerkungen">271. Domgrabung A 285. Vs.: Kopf n.r. m. Strkr. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00272</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">262,2</cell>
    <cell role="Anmerkungen">272. Domgrabung A 236. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00273</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">199</cell>
    <cell role="Anmerkungen">273. Domgrabung A 289. Vs.: Kopf n.r. m. Strkr.  Rs.: Darstellungsreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00274</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">299</cell>
    <cell role="Anmerkungen">274. Domgrabung A 241. Vs.: Büste n.r. m. Strkr. Spiegelverkehrte Legendenreste. Rs.: verwilderte Darstellung, schlecht zentriert. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00275</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">301</cell>
    <cell role="Anmerkungen">275. Domgrabung A 233. Vs.: bärt., drap. Büste n.r. m. Strkr. Legendenreste. Rs.: verwilderte Darstellung.  [   ]IT[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00276</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">303,1</cell>
    <cell role="Anmerkungen">276. Domgrabung A 268. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l. Abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00277</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">304,2</cell>
    <cell role="Anmerkungen">277. Domgrabung A 234. Vs.: drap. Büste n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt?. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00278</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">114</cell>
    <cell role="Anmerkungen">278. Domgrabung A 249. Vs.: Kopf n.r. m. Strkr.  Rs.: steh. Gestalt. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00279</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">365</cell>
    <cell role="Anmerkungen">279. Domgrabung A 282. Vs.: bärt. Kopf n.r. (Tetricus I.?). Legendenreste. Rs.: steh.  Gestalt. Korroidert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00280</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">364,2</cell>
    <cell role="Anmerkungen">280. Domgrabung A 286. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: unkenntlich. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00281</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">346</cell>
    <cell role="Anmerkungen">281. Domgrabung A 263. Vs.: Kopf n.r. m. Strkr. Rs.: Victoria n.l. m. Kranz. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00282</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">348</cell>
    <cell role="Anmerkungen">282. Domgrabung A 235. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Legendenreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00283</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">317</cell>
    <cell role="Anmerkungen">283. Domgrabung A 243. Vs.: bärt. Kopf n.r. m. Strkr. (Tetricus I?). Rs.: unkenntliche  Darstellung CIIIDIIV[   ]. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00284</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">372,2</cell>
    <cell role="Anmerkungen">284. Domgrabung A 267. Vs. Büste n.r. (m. Strkr.?). IM[    ]IC. Rs.: steh. Gestalt.  CATE[   ]U. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00285</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">380,2</cell>
    <cell role="Anmerkungen">285. Domgrabung A 255. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00286</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">387,1</cell>
    <cell role="Anmerkungen">286. Domgrabung A 248. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt. Legendenreste. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00287</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">454,3</cell>
    <cell role="Anmerkungen">287. Domgrabung A 253. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt  m. ausgebreiteten Armen, in der R. Speer. Pseudolegende. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00288</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">482</cell>
    <cell role="Anmerkungen">288. Domgrabung A 283. Vs. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.r. vor Altar. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00289</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,41</cell>
    <cell role="Anmerkungen">289. Domgrabung A 240. Vs.: Büste n.r. m. Strkr. [   ]IIIT[ ]C. Rs.: unkenntliche, verwilderte Darstellung. Vs. schlecht zentriert. Schwach ausgeprägt, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00290</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">364,3</cell>
    <cell role="Anmerkungen">290. Domgrabung A 292. Vs.: Strkr.? Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00291</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">270/280</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">318</cell>
    <cell role="Anmerkungen">291. Domgrabung A 287. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: Victoria n.l. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00292</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser?)</cell>
    <cell role="Nominal">An?</cell>
    <cell role="Datierung">270/280?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,1</cell>
    <cell role="Anmerkungen">292. Domgrabung A 293. Vs.: Kopf m. Strkr.? Rs.: verwilderte Darstellungsreste. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00293</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">2. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">655</cell>
    <cell role="Anmerkungen">293. Domgrabung A 39. Rs.: steh. (weibl.?) Gestalt. Korrodiert, stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00294</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Dp</cell>
    <cell role="Datierung">1.Jh./1.H.3.Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">312,2</cell>
    <cell role="Anmerkungen">294. Domgrabung A 41. Vs.: Kopf?. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00295</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">S?</cell>
    <cell role="Datierung">1.Jh./1.H.3.Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">9</cell>
    <cell role="Anmerkungen">295. Domgrabung A 40. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00296</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">ca. 260/275</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,75</cell>
    <cell role="Anmerkungen">296. Domgrabung A 294. Vs.: Kopf n.r. m. Strkr. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00297</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">ca. 274/294</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">276</cell>
    <cell role="Anmerkungen">297. Domgrabung A 295. Vs.: Kopf n.r. m. Strkr. Rs.: steh Gestalt n.l. m. Globus.  (Jupiter?). Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00298</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">An</cell>
    <cell role="Datierung">2. H. 3. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">5</cell>
    <cell role="Anmerkungen">298. Domgrabung A 296. Vs.: Kopf n.r. m. Strkr. Rs.: unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00299</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Maximianus Herculius</cell>
    <cell role="Nominal">Ar</cell>
    <cell role="Datierung">295/297</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 109b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> C  </cell>
    <cell role="Konkordanz">646,1</cell>
    <cell role="Anmerkungen">299. Domgrabung A 297. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00300</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius I.</cell>
    <cell role="Nominal">VFol</cell>
    <cell role="Datierung">305/306</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 682a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">639</cell>
    <cell role="Anmerkungen">300. Domgrabung A 299. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00301</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">294/305</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     *? </cell>
    <cell role="Konkordanz">343</cell>
    <cell role="Anmerkungen">301. Domgrabung A 301. Vs.: [   ]STA[   ]NC. Rs.: Moneta n.l. m. Waage u. Füllhorn. [  ]NETA[  ]. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00302</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Galerius Maximianus</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">303/307</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 652b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR S  F </cell>
    <cell role="Konkordanz">179</cell>
    <cell role="Anmerkungen">302. Domgrabung A 298. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00303</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Diocletian/Maximias/Constantius I./Galerius?</cell>
    <cell role="Nominal">Ar?</cell>
    <cell role="Datierung">294/305?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,73</cell>
    <cell role="Anmerkungen">303. Domgrabung A 300. Vs.: Kopf n.r. (m. Lbkr.?). Rs.: unkenntlich. Zuweisung auf Grund des Porträts. Bestimmung wahrscheinlich, eher kein Denarius. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00304</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Maximinus Daia</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310/313</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 845a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR T  F </cell>
    <cell role="Konkordanz">52</cell>
    <cell role="Anmerkungen">304. Domgrabung A 306. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00305</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310/313</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 845b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR T  F </cell>
    <cell role="Konkordanz">115,1</cell>
    <cell role="Anmerkungen">305. Domgrabung A 308. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00306</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310/313</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 845b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR T  F </cell>
    <cell role="Konkordanz">431</cell>
    <cell role="Anmerkungen">306. Domgrabung A 307. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00307</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 120</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ATR T  F </cell>
    <cell role="Konkordanz">429</cell>
    <cell role="Anmerkungen">307. Domgrabung A 323. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00308</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 121</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> A[ ]R T  F </cell>
    <cell role="Konkordanz">531</cell>
    <cell role="Anmerkungen">308. Domgrabung A 324. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00309</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 259</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùPTR  </cell>
    <cell role="Konkordanz">62</cell>
    <cell role="Anmerkungen">309. Domgrabung A 341. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00310</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Licinius I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 229</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SA  </cell>
    <cell role="Konkordanz">285,2</cell>
    <cell role="Anmerkungen">310. Domgrabung A 364. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00311</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Vfol</cell>
    <cell role="Datierung">307/308</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 792</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">288</cell>
    <cell role="Anmerkungen">311. Domgrabung A 305. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00312</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310</cell>
    <cell role="Praegestaette">Lon</cell>
    <cell role="Referenzwerk">RIC 120/125</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLN  T  F </cell>
    <cell role="Konkordanz">7</cell>
    <cell role="Anmerkungen">312. Domgrabung A 302. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00313</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">310/311</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 899</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">20</cell>
    <cell role="Anmerkungen">313. Domgrabung A 311. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00314</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">310/311</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 899</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">418,2</cell>
    <cell role="Anmerkungen">314. Domgrabung A 312. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00315</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">VFol</cell>
    <cell role="Datierung">310/311</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 906</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">629,1</cell>
    <cell role="Anmerkungen">315. Domgrabung A 313. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00316</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Vfol</cell>
    <cell role="Datierung">310/311</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 911/913</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">418,4</cell>
    <cell role="Anmerkungen">316. Domgrabung A 314. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00317</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310/313</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 870</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  T  F </cell>
    <cell role="Konkordanz">349,2</cell>
    <cell role="Anmerkungen">317. Domgrabung A 309. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00318</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">310/313</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 881</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">409</cell>
    <cell role="Anmerkungen">318. Domgrabung A 310. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00319</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">312/313</cell>
    <cell role="Praegestaette">Ost</cell>
    <cell role="Referenzwerk">RIC 83</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> MOSTS  </cell>
    <cell role="Konkordanz">30</cell>
    <cell role="Anmerkungen">319. Domgrabung A 336. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00320</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">313/314</cell>
    <cell role="Praegestaette">Tic</cell>
    <cell role="Referenzwerk">RIC 7</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (T?)T *    </cell>
    <cell role="Konkordanz">591,2</cell>
    <cell role="Anmerkungen">320. Domgrabung A 335. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00321</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">313/315</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 69</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">389,1</cell>
    <cell role="Anmerkungen">321. Domgrabung A 316. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00322</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">313/315</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 69</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">377</cell>
    <cell role="Anmerkungen">322. Domgrabung A 317. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00323</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">313/315</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 42</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ST[  ] T  F </cell>
    <cell role="Konkordanz">237,2</cell>
    <cell role="Anmerkungen">323. Domgrabung A 315. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00324</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">314/315</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 18</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC T  F </cell>
    <cell role="Konkordanz">591,3</cell>
    <cell role="Anmerkungen">324. Domgrabung A 333. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00325</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">315/316</cell>
    <cell role="Praegestaette">Lon</cell>
    <cell role="Referenzwerk">RIC 45?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> M(L?)[ ] S (F?) </cell>
    <cell role="Konkordanz">517</cell>
    <cell role="Anmerkungen">325. Domgrabung A 303. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00326</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">315/316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 76</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR B  S </cell>
    <cell role="Konkordanz">591,5</cell>
    <cell role="Anmerkungen">326. Domgrabung A 318. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00327</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 105</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> BTR T  F </cell>
    <cell role="Konkordanz">223</cell>
    <cell role="Anmerkungen">327. Domgrabung A 321. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00328</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 105</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ATR T  F </cell>
    <cell role="Konkordanz">222</cell>
    <cell role="Anmerkungen">328. Domgrabung A 320. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00329</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 97</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (A?)TR T  F </cell>
    <cell role="Konkordanz">55,1</cell>
    <cell role="Anmerkungen">329. Domgrabung A 319. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00330</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 84</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SARL  T/*  </cell>
    <cell role="Konkordanz">626</cell>
    <cell role="Anmerkungen">330. Domgrabung A 334. Ungleichmäßig ausgeprägt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00331</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">316?</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 105?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> BTR? T  F </cell>
    <cell role="Konkordanz">549,2</cell>
    <cell role="Anmerkungen">331. Domgrabung A 322. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00332</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">317</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 135</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> BTR T  F </cell>
    <cell role="Konkordanz">549,1</cell>
    <cell role="Anmerkungen">332. Domgrabung A 325. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00333</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">317/318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 159</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> BTR F  T </cell>
    <cell role="Konkordanz">384,1</cell>
    <cell role="Anmerkungen">333. Domgrabung A 326. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00334</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">317/318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 162</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> BTR F  T </cell>
    <cell role="Konkordanz">347</cell>
    <cell role="Anmerkungen">334. Domgrabung A 327. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00335</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">318/319</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 148 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RT P  R </cell>
    <cell role="Konkordanz">387,3</cell>
    <cell role="Anmerkungen">335. Domgrabung A 368. Vs.: behelmte, gepanz. Büste n.r. m. Lbkr. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00336</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">318/320</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 209 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR[ ]? </cell>
    <cell role="Konkordanz">601</cell>
    <cell role="Anmerkungen">336. Domgrabung A 361. Vs.: gepanz., behelmte Büste n.r. m. Lbkr. CONSTAN[    ]VSMAXAVG.  Rs.: 2 Victorien halten Schild über Altar. VICTORIAELAETAEPRINCPERP. Stark korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00337</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">318/320</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE LAETAE PRINC PERP</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">478,1</cell>
    <cell role="Anmerkungen">337. Domgrabung A 373. Vs.: behelmte. Büste n.r. m. Speer (RIC VII = Büste H11l, vgl.  Pl. 6, 192). Rs.: 2 Victorien. Korrodiert. wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00338</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">319</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 213</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR   *   </cell>
    <cell role="Konkordanz">239</cell>
    <cell role="Anmerkungen">338. Domgrabung A 340. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00339</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">319/320</cell>
    <cell role="Praegestaette">Tic</cell>
    <cell role="Referenzwerk">RIC 114 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TT  </cell>
    <cell role="Konkordanz">506,14</cell>
    <cell role="Anmerkungen">339. Domgrabung A 370. Vs.: CONSTAN-[    ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00340</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 101</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TSâVI  </cell>
    <cell role="Konkordanz">395</cell>
    <cell role="Anmerkungen">340. Domgrabung A 372. Prägefrisch, ungleichmäßig ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00341</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320/321</cell>
    <cell role="Praegestaette">Lon</cell>
    <cell role="Referenzwerk">RIC 191</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLN  </cell>
    <cell role="Konkordanz">591,12</cell>
    <cell role="Anmerkungen">341. Domgrabung A 338. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00342</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 305</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">591,6</cell>
    <cell role="Anmerkungen">342. Domgrabung A 343. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00343</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 305</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">502</cell>
    <cell role="Anmerkungen">343. Domgrabung A 342. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00344</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 316</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR  </cell>
    <cell role="Konkordanz">338</cell>
    <cell role="Anmerkungen">344. Domgrabung A 344. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00345</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321/323</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">wie RIC (Tre) 368</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">70</cell>
    <cell role="Anmerkungen">345. Domgrabung A 375. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00346</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">322</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 342</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTRù  </cell>
    <cell role="Konkordanz">468</cell>
    <cell role="Anmerkungen">346. Domgrabung A 345. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00347</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">322/323</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 368</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ù[  ]T[  ] </cell>
    <cell role="Konkordanz">387,2</cell>
    <cell role="Anmerkungen">347. Domgrabung A 346. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00348</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">322/323</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 369</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùPTRù  </cell>
    <cell role="Konkordanz">64</cell>
    <cell role="Anmerkungen">348. Domgrabung A 347. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00349</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">322/325</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SARMATIA DEVICTA</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]P[  ]? </cell>
    <cell role="Konkordanz">424</cell>
    <cell role="Anmerkungen">349. Domgrabung A 378. Vs.: CONSTAN-[   ]. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00350</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">323</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 389</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùPTR´   </cell>
    <cell role="Konkordanz">304,1</cell>
    <cell role="Anmerkungen">350. Domgrabung A 348. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00351</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">323/324</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 435</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR´   </cell>
    <cell role="Konkordanz">606</cell>
    <cell role="Anmerkungen">351. Domgrabung A 349. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00352</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">323/324</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 435</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR´   </cell>
    <cell role="Konkordanz">4</cell>
    <cell role="Anmerkungen">352. Domgrabung A 350. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00353</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 449</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR  </cell>
    <cell role="Konkordanz">280,1</cell>
    <cell role="Anmerkungen">353. Domgrabung A 354. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00354</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 449</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR  </cell>
    <cell role="Konkordanz">344,1</cell>
    <cell role="Anmerkungen">354. Domgrabung A 353. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00355</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 225</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLG  </cell>
    <cell role="Konkordanz">6</cell>
    <cell role="Anmerkungen">355. Domgrabung A 363. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00356</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">325/326</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 461/475</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR(´ /¶ )  </cell>
    <cell role="Konkordanz">591,8</cell>
    <cell role="Anmerkungen">356. Domgrabung A 357. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00357</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">327/328</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 504</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STRE    </cell>
    <cell role="Konkordanz">344,2</cell>
    <cell role="Anmerkungen">357. Domgrabung A 358. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00358</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">328</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 321</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCONST S  F </cell>
    <cell role="Konkordanz">161</cell>
    <cell role="Anmerkungen">358. Domgrabung A 367. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00359</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 538</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP    </cell>
    <cell role="Konkordanz">210,1</cell>
    <cell role="Anmerkungen">359. Domgrabung A 390. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00360</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 370</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCONST  ¼   </cell>
    <cell role="Konkordanz">144</cell>
    <cell role="Anmerkungen">360. Domgrabung A 476. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00361</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 555?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (TRP?)    ¯    </cell>
    <cell role="Konkordanz">485</cell>
    <cell role="Anmerkungen">361. Domgrabung A 456. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00362</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 590</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]TRP•  </cell>
    <cell role="Konkordanz">589,2</cell>
    <cell role="Anmerkungen">362. Domgrabung A 414. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00363</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">336</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 394</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CONST  º   </cell>
    <cell role="Konkordanz">220</cell>
    <cell role="Anmerkungen">363. Domgrabung A 477. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00364</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 285</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ° PLC    </cell>
    <cell role="Konkordanz">79,1</cell>
    <cell role="Anmerkungen">364. Domgrabung A 469. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00365</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Claudius II.)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 207</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]TR?   </cell>
    <cell role="Konkordanz">439</cell>
    <cell role="Anmerkungen">365. Domgrabung A 332. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00366</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Maximianus Herculius)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">307/308</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 790</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">55,2</cell>
    <cell role="Anmerkungen">366. Domgrabung A 304. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00367</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Maximianus Herculius)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 204/205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR    </cell>
    <cell role="Konkordanz">427,2</cell>
    <cell role="Anmerkungen">367. Domgrabung A 328. Korrodiert, abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00368</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Maximianus Herculius)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR    </cell>
    <cell role="Konkordanz">302,2</cell>
    <cell role="Anmerkungen">368. Domgrabung A 330. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00369</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Maximianus Herculius)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR    </cell>
    <cell role="Konkordanz">441</cell>
    <cell role="Anmerkungen">369. Domgrabung A 329. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00370</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Divus Constantius I.)</cell>
    <cell role="Nominal">Hfol</cell>
    <cell role="Datierung">318</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 206</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR    </cell>
    <cell role="Konkordanz">285,1</cell>
    <cell role="Anmerkungen">370. Domgrabung A 331. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00371</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Fausta)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/326</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">wie RIC (Tre) 459/460</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">336,2</cell>
    <cell role="Anmerkungen">371. Domgrabung A 379. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00372</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Helena)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 458</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR    </cell>
    <cell role="Konkordanz">359</cell>
    <cell role="Anmerkungen">372. Domgrabung A 355. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00373</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Helena)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">327/328</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 508</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STRE    </cell>
    <cell role="Konkordanz">27</cell>
    <cell role="Anmerkungen">373. Domgrabung A 360. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00374</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Licinius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">319</cell>
    <cell role="Praegestaette">Tic</cell>
    <cell role="Referenzwerk">RIC 94</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TT   C    </cell>
    <cell role="Konkordanz">360,2</cell>
    <cell role="Anmerkungen">374. Domgrabung A 369. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00375</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Crispus)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320</cell>
    <cell role="Praegestaette">Lon</cell>
    <cell role="Referenzwerk">RIC 174</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLN    </cell>
    <cell role="Konkordanz">336,1</cell>
    <cell role="Anmerkungen">375. Domgrabung A 337. Prägefrisch. Silbersudspuren. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00376</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Crispus)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320/324</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 148/ 159 Var.</cell>
    <cell role="Besonderheiten">hyb.</cell>
    <cell role="Sonderzeichen"> ASIS(•?)    </cell>
    <cell role="Konkordanz">607</cell>
    <cell role="Anmerkungen">376. Domgrabung A 371. Vs.: Kopf n.r. m. Lbkr. CRISPVS-NOBCAES. Rs.: Kranz. DNCONSTANTINI MAXAVG/VOT/XX. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00377</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Crispus)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">325/326</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 462</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR´     </cell>
    <cell role="Konkordanz">11</cell>
    <cell role="Anmerkungen">377. Domgrabung A 356. Korrodiert, wenig abgegriffen </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00378</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321/323</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 334 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]T[  ]  </cell>
    <cell role="Konkordanz">634,4</cell>
    <cell role="Anmerkungen">378. Domgrabung A 362. Vs.: Büste n.l. m. Trabea u. Lbkr., i. d. R. Adlerzepter. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00379</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">322/324</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">CAESARVM NOSTRORVM VOT X</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">436</cell>
    <cell role="Anmerkungen">379. Domgrabung A 377. Vs.: CONS[    ], durchgehende Legende. Rs.: VOT/X im Kranz. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00380</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">323/324</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 441</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR´     </cell>
    <cell role="Konkordanz">3</cell>
    <cell role="Anmerkungen">380. Domgrabung A 352. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00381</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">323/324</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 441</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STR´     </cell>
    <cell role="Konkordanz">42</cell>
    <cell role="Anmerkungen">381. Domgrabung A 351. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00382</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Lon</cell>
    <cell role="Referenzwerk">RIC 296</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLON    </cell>
    <cell role="Konkordanz">360,1</cell>
    <cell role="Anmerkungen">382. Domgrabung A 339. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00383</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">324/325</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 274</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]*AR    </cell>
    <cell role="Konkordanz">385</cell>
    <cell role="Anmerkungen">383. Domgrabung A 365. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00384</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 336</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RBS    </cell>
    <cell role="Konkordanz">518,5</cell>
    <cell role="Anmerkungen">384. Domgrabung A 484. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00385</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">RIC 249?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ´ PLG?    </cell>
    <cell role="Konkordanz">34</cell>
    <cell role="Anmerkungen">385. Domgrabung A 472. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00386</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 539</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùS    </cell>
    <cell role="Konkordanz">415,8</cell>
    <cell role="Anmerkungen">386. Domgrabung A 391. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00387</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 539</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùS    </cell>
    <cell role="Konkordanz">518,4</cell>
    <cell role="Anmerkungen">387. Domgrabung A 392. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00388</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 545</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS*    </cell>
    <cell role="Konkordanz">28,1</cell>
    <cell role="Anmerkungen">388. Domgrabung A 400. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00389</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 263</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> *PLG    </cell>
    <cell role="Konkordanz">147</cell>
    <cell role="Anmerkungen">389. Domgrabung A 463. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00390</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/335</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 351</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R¼ S    </cell>
    <cell role="Konkordanz">489,3</cell>
    <cell role="Anmerkungen">390. Domgrabung A 486. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00391</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC Vs.: 271 Rs.: 275</cell>
    <cell role="Besonderheiten">hyb.</cell>
    <cell role="Sonderzeichen"> PLC    </cell>
    <cell role="Konkordanz">235</cell>
    <cell role="Anmerkungen">391. Domgrabung A 466. Vs.: drap. Büste n.r. m. Lbkr. CONSTANTINVSIVNNOBC. Rs.: Wölfin m. Zwillingen. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00392</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 591</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTRPù    </cell>
    <cell role="Konkordanz">28,2</cell>
    <cell role="Anmerkungen">392. Domgrabung A 415. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00393</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 591</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTRSù    </cell>
    <cell role="Konkordanz">489,9</cell>
    <cell role="Anmerkungen">393. Domgrabung A 416. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00394</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">202,3</cell>
    <cell role="Anmerkungen">394. Domgrabung A 504. Vs.: gepanz. Büste n.r. m. Lbkr. CONSTA[  ]VNNC. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00395</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">336</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 281</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> *PLC   </cell>
    <cell role="Konkordanz">401</cell>
    <cell role="Anmerkungen">395. Domgrabung A 468. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00396</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">327</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 312</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ARLQ S  F </cell>
    <cell role="Konkordanz">231</cell>
    <cell role="Anmerkungen">396. Domgrabung A 366. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00397</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">327/328</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 506</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STRE  </cell>
    <cell role="Konkordanz">579</cell>
    <cell role="Anmerkungen">397. Domgrabung A 359. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00398</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 528</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRSù  </cell>
    <cell role="Konkordanz">212,1</cell>
    <cell role="Anmerkungen">398. Domgrabung A 383. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00399</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 245</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùPLG  </cell>
    <cell role="Konkordanz">211,1</cell>
    <cell role="Anmerkungen">399. Domgrabung A 458. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00400</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/333</cell>
    <cell role="Praegestaette">Her</cell>
    <cell role="Referenzwerk">RIC 128</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMHâ  ùùù   </cell>
    <cell role="Konkordanz">489,1</cell>
    <cell role="Anmerkungen">400. Domgrabung A 497. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00401</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 521/559</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]  </cell>
    <cell role="Konkordanz">591,1</cell>
    <cell role="Anmerkungen">401. Domgrabung A 406. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00402</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 250/255</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ´ PLG  </cell>
    <cell role="Konkordanz">514,7</cell>
    <cell role="Anmerkungen">402. Domgrabung A 461. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00403</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 540</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP  </cell>
    <cell role="Konkordanz">47</cell>
    <cell role="Anmerkungen">403. Domgrabung A 393. Kaum abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00404</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> A[   ]?  </cell>
    <cell role="Konkordanz">634,25</cell>
    <cell role="Anmerkungen">404. Domgrabung A 505. Vs.: Büste n.r. m. Rosettendiadem. [    ]NTIVSNOBC. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00405</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constans)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 593</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTRS[ ] </cell>
    <cell role="Konkordanz">201</cell>
    <cell role="Anmerkungen">405. Domgrabung A 417. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00406</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constans)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/337</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 593</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTR[ ]  </cell>
    <cell role="Konkordanz">498</cell>
    <cell role="Anmerkungen">406. Domgrabung A 418. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00407</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">318/320?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE LAETAE PRINC PERP?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">333</cell>
    <cell role="Anmerkungen">407. Domgrabung A 374. Vs.: Büste n.r. [  ]INV[  ]?  Rs.: 2 Victorien?. Stark korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00408</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 556-560</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP?   ¯    </cell>
    <cell role="Konkordanz">621,3</cell>
    <cell role="Anmerkungen">408. Domgrabung A 407. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00409</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 2 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]L[ ]?  </cell>
    <cell role="Konkordanz">12,4</cell>
    <cell role="Anmerkungen">409. Domgrabung A 473. Vs.: kleiner Kopf n.r. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00410</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 529</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP•  </cell>
    <cell role="Konkordanz">591,16</cell>
    <cell role="Anmerkungen">410. Domgrabung A 384. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00411</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 529</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù  </cell>
    <cell role="Konkordanz">212,2</cell>
    <cell role="Anmerkungen">411. Domgrabung A 386. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00412</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 529</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù  </cell>
    <cell role="Konkordanz">82</cell>
    <cell role="Anmerkungen">412. Domgrabung A 387. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00413</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 529</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù  </cell>
    <cell role="Konkordanz">407</cell>
    <cell role="Anmerkungen">413. Domgrabung A 388. Korrodiert, kaum umgelaufen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00414</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 529</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù  </cell>
    <cell role="Konkordanz">430</cell>
    <cell role="Anmerkungen">414. Domgrabung A 385. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00415</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 247</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùPLC  </cell>
    <cell role="Konkordanz">78</cell>
    <cell role="Anmerkungen">415. Domgrabung A 459. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00416</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 338</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RBQ  </cell>
    <cell role="Konkordanz">597</cell>
    <cell role="Anmerkungen">416. Domgrabung A 485. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00417</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 247/275</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]PLC  </cell>
    <cell role="Konkordanz">254</cell>
    <cell role="Anmerkungen">417. Domgrabung A 467. Korrodiert, wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00418</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 252</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ´ PL[ ]  </cell>
    <cell role="Konkordanz">608</cell>
    <cell role="Anmerkungen">418. Domgrabung A 460. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00419</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 257</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ¶ PL[ ]  </cell>
    <cell role="Konkordanz">419,1</cell>
    <cell role="Anmerkungen">419. Domgrabung A 462. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00420</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 542</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP  </cell>
    <cell role="Konkordanz">427,1</cell>
    <cell role="Anmerkungen">420. Domgrabung A 395. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00421</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 542</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP  </cell>
    <cell role="Konkordanz">514,5</cell>
    <cell role="Anmerkungen">421. Domgrabung A 394. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00422</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 553</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  ¼    </cell>
    <cell role="Konkordanz">65</cell>
    <cell role="Anmerkungen">422. Domgrabung A 404. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00423</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 561</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  °    </cell>
    <cell role="Konkordanz">119</cell>
    <cell role="Anmerkungen">423. Domgrabung A 409. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00424</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 561</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  °    </cell>
    <cell role="Konkordanz">481</cell>
    <cell role="Anmerkungen">424. Domgrabung A 408. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00425</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 561</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(S?)  °    </cell>
    <cell role="Konkordanz">455,3</cell>
    <cell role="Anmerkungen">425. Domgrabung A 410. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00426</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/336</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 354/386</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R¼ [ ]  </cell>
    <cell role="Konkordanz">218</cell>
    <cell role="Anmerkungen">426. Domgrabung A 487. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00427</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/336</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 136</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> AQP   F   </cell>
    <cell role="Konkordanz">94</cell>
    <cell role="Anmerkungen">427. Domgrabung A 493. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00428</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">555,3</cell>
    <cell role="Anmerkungen">428. Domgrabung A 519. Korrodiert, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00429</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">217</cell>
    <cell role="Anmerkungen">429. Domgrabung A 521. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00430</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 523</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS  </cell>
    <cell role="Konkordanz">76,1</cell>
    <cell role="Anmerkungen">430. Domgrabung A 382. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00431</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/331</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 530</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù  </cell>
    <cell role="Konkordanz">405</cell>
    <cell role="Anmerkungen">431. Domgrabung A 389. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00432</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 241/273</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC ? </cell>
    <cell role="Konkordanz">293</cell>
    <cell role="Anmerkungen">432. Domgrabung A 465. Vs.: CONSTANT-INOPOLIS. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00433</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]L[  ]?  </cell>
    <cell role="Konkordanz">31</cell>
    <cell role="Anmerkungen">433. Domgrabung A 474. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00434</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 543</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR•P   </cell>
    <cell role="Konkordanz">591,7</cell>
    <cell role="Anmerkungen">434. Domgrabung A 398. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00435</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 543</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP   </cell>
    <cell role="Konkordanz">50</cell>
    <cell role="Anmerkungen">435. Domgrabung A 397. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00436</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 543</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP   </cell>
    <cell role="Konkordanz">68</cell>
    <cell role="Anmerkungen">436. Domgrabung A 396. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00437</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 543</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRùP   </cell>
    <cell role="Konkordanz">183,2</cell>
    <cell role="Anmerkungen">437. Domgrabung A 399. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00438</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 548</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS*   </cell>
    <cell role="Konkordanz">200</cell>
    <cell role="Anmerkungen">438. Domgrabung A 403. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00439</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 548</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS*   </cell>
    <cell role="Konkordanz">159</cell>
    <cell role="Anmerkungen">439. Domgrabung A 402. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00440</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">332/333</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 548</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP*   </cell>
    <cell role="Konkordanz">131,1</cell>
    <cell role="Anmerkungen">440. Domgrabung A 401. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00441</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 554</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS  ¼    </cell>
    <cell role="Konkordanz">634,6</cell>
    <cell role="Anmerkungen">441. Domgrabung A 405. Silbersudspuren. Gusszapfen am Schrötling. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00442</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 563</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP °      </cell>
    <cell role="Konkordanz">555,4</cell>
    <cell role="Anmerkungen">442. Domgrabung A 411. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00443</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 563</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS °      </cell>
    <cell role="Konkordanz">75,1</cell>
    <cell role="Anmerkungen">443. Domgrabung A 413. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00444</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">333/334</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 563</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]RP  °      </cell>
    <cell role="Konkordanz">158</cell>
    <cell role="Anmerkungen">444. Domgrabung A 412. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00445</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 273</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC   </cell>
    <cell role="Konkordanz">89,12</cell>
    <cell role="Anmerkungen">445. Domgrabung A 464. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00446</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen"> TR[  ]   </cell>
    <cell role="Konkordanz">5</cell>
    <cell role="Anmerkungen">446. Domgrabung A 454. Vs.: behelmter Kopf n.l.  CONST[   ]. Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00447</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">336/Apr. 340</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (VII) 408/(VIII) 26</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON[ ] X    </cell>
    <cell role="Konkordanz">250,1</cell>
    <cell role="Anmerkungen">447. Domgrabung A 478. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00448</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]LC?    </cell>
    <cell role="Konkordanz">35,5</cell>
    <cell role="Anmerkungen">448. Domgrabung A 475. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00449</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">518,12</cell>
    <cell role="Anmerkungen">449. Domgrabung A 520. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00450</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">213</cell>
    <cell role="Anmerkungen">450. Domgrabung A 522. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00451</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321/324</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">BEATA TRANQVILLITAS</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">425,1</cell>
    <cell role="Anmerkungen">451. Domgrabung A 376. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00452</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">Arl?</cell>
    <cell role="Referenzwerk">RIC 341/342?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]ON[  ]?  </cell>
    <cell role="Konkordanz">622,7</cell>
    <cell role="Anmerkungen">452. Domgrabung A 482. Stark korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00453</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 2 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,7</cell>
    <cell role="Anmerkungen">453. Domgrabung A 502. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00454</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantin I. (für Constantinsöhne)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/335</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 2 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">518,14</cell>
    <cell role="Anmerkungen">454. Domgrabung A 503. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00455</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantin II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">562</cell>
    <cell role="Anmerkungen">455. Domgrabung A 509. Vs.: drap. Büste n.r. m. Rosettendiadem. [     ]-NVSMAXAVG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00456</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(P?)   </cell>
    <cell role="Konkordanz">118</cell>
    <cell role="Anmerkungen">456. Domgrabung A 455. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00457</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    »     </cell>
    <cell role="Konkordanz">591,3</cell>
    <cell role="Anmerkungen">457. Domgrabung A 510. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00458</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    »     </cell>
    <cell role="Konkordanz">575</cell>
    <cell role="Anmerkungen">458. Domgrabung A 511. Vs.: drap. Büste n.r. m. Rosettendiadem. CONS[     ]. Kleinerer kopf, wohl Constantinsohn. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00459</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,21</cell>
    <cell role="Anmerkungen">459. Domgrabung A 512. Korrodiert, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00460</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,2</cell>
    <cell role="Anmerkungen">460. Domgrabung A 513. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00461</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">590</cell>
    <cell role="Anmerkungen">461. Domgrabung A 516. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00462</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">72</cell>
    <cell role="Anmerkungen">462. Domgrabung A 514. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00463</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">520,3</cell>
    <cell role="Anmerkungen">463. Domgrabung A 517. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00464</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">89,1</cell>
    <cell role="Anmerkungen">464. Domgrabung A 518. Wenig umgelaufen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00465</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">335/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">?    </cell>
    <cell role="Konkordanz">591,24</cell>
    <cell role="Anmerkungen">465. Domgrabung A 515. Zuweisung wahrscheinlich. Korrodiert, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00466</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin I./Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">330/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,3</cell>
    <cell role="Anmerkungen">466. Domgrabung A 1057. Vs.: Kopf n.r.  [  ]SPFAVG?  (= Constans?)  Rs.: 2 Victorien? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00467</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 49/81</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]   </cell>
    <cell role="Konkordanz">51</cell>
    <cell role="Anmerkungen">467. Domgrabung A 424. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00468</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantin II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Frühjahr 340</cell>
    <cell role="Praegestaette">Nio</cell>
    <cell role="Referenzwerk">RIC 5</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMNî    </cell>
    <cell role="Konkordanz">628,4</cell>
    <cell role="Anmerkungen">468. Domgrabung A 498. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00469</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 13</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON[ ]  ´    </cell>
    <cell role="Konkordanz">113,1</cell>
    <cell role="Anmerkungen">469. Domgrabung A 480. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00470</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 23 var.?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R*[ ]    </cell>
    <cell role="Konkordanz">255</cell>
    <cell role="Anmerkungen">470. Domgrabung A 489. Vs.: [  ]TANSAVG  Trennung wohl NS-TA = RIC Leg. Cn13. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00471</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 27</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> AQ(P?)  ¼     </cell>
    <cell role="Konkordanz">180</cell>
    <cell role="Anmerkungen">471. Domgrabung A 494. Kaum abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00472</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 103</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS´     </cell>
    <cell role="Konkordanz">523,2</cell>
    <cell role="Anmerkungen">472. Domgrabung A 440. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00473</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M   </cell>
    <cell role="Konkordanz">550</cell>
    <cell role="Anmerkungen">473. Domgrabung A 444. Schwach ausgeprägt, jedoch Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00474</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS´    M    </cell>
    <cell role="Konkordanz">598</cell>
    <cell role="Anmerkungen">474. Domgrabung A 446. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00475</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]?   M    </cell>
    <cell role="Konkordanz">589,1</cell>
    <cell role="Anmerkungen">475. Domgrabung A 448. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00476</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M    </cell>
    <cell role="Konkordanz">227,2</cell>
    <cell role="Anmerkungen">476. Domgrabung A 442. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00477</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP[ ]   M    </cell>
    <cell role="Konkordanz">95</cell>
    <cell role="Anmerkungen">477. Domgrabung A 445. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00478</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M    </cell>
    <cell role="Konkordanz">518,7</cell>
    <cell role="Anmerkungen">478. Domgrabung A 443. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00479</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 111</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS´    M    </cell>
    <cell role="Konkordanz">518,9</cell>
    <cell role="Anmerkungen">479. Domgrabung A 447. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00480</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 112</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M    </cell>
    <cell role="Konkordanz">501</cell>
    <cell role="Anmerkungen">480. Domgrabung A 449. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00481</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 113</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M    </cell>
    <cell role="Konkordanz">554,3</cell>
    <cell role="Anmerkungen">481. Domgrabung A 450. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00482</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 113 var.?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (TRP´ ?)  M  </cell>
    <cell role="Konkordanz">129,2</cell>
    <cell role="Anmerkungen">482. Domgrabung A 457. Vs.: CONSTAN-SPFAVG. Drap. Büste n.r. m. Perlendiadem. Rs.: etwas unregelmäßige Legende. Barbarisiert?. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00483</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 29</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLG   I    </cell>
    <cell role="Konkordanz">146</cell>
    <cell role="Anmerkungen">483. Domgrabung A 471. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00484</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 52</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SARL   M   </cell>
    <cell role="Konkordanz">634,11</cell>
    <cell role="Anmerkungen">484. Domgrabung A 481. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00485</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 57</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTS[ ]  </cell>
    <cell role="Konkordanz">412</cell>
    <cell role="Anmerkungen">485. Domgrabung A 496. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00486</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 182/211</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]  [  ]   </cell>
    <cell role="Konkordanz">63</cell>
    <cell role="Anmerkungen">486. Domgrabung A 599. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00487</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 182/211</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  [  ]    </cell>
    <cell role="Konkordanz">98</cell>
    <cell role="Anmerkungen">487. Domgrabung A 598. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00488</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 185</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ²    </cell>
    <cell role="Konkordanz">643</cell>
    <cell role="Anmerkungen">488. Domgrabung A 572. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00489</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 185</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ²    </cell>
    <cell role="Konkordanz">489,2</cell>
    <cell role="Anmerkungen">489. Domgrabung A 571. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00490</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 188/189?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  (*?)   </cell>
    <cell role="Konkordanz">557</cell>
    <cell role="Anmerkungen">490. Domgrabung A 574. Korrodiert, wohl abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00491</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 195</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   D    </cell>
    <cell role="Konkordanz">204</cell>
    <cell role="Anmerkungen">491. Domgrabung A 577. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00492</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 195</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(S?)   D    </cell>
    <cell role="Konkordanz">12,2</cell>
    <cell role="Anmerkungen">492. Domgrabung A 578. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00493</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 195</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   D    </cell>
    <cell role="Konkordanz">422,1</cell>
    <cell role="Anmerkungen">493. Domgrabung A 576. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00494</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 196</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(P?)   D    </cell>
    <cell role="Konkordanz">403</cell>
    <cell role="Anmerkungen">494. Domgrabung A 579. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00495</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 196</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    D    </cell>
    <cell role="Konkordanz">514,9</cell>
    <cell role="Anmerkungen">495. Domgrabung A 580. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00496</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   î     </cell>
    <cell role="Konkordanz">12,3</cell>
    <cell role="Anmerkungen">496. Domgrabung A 585. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00497</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   î      </cell>
    <cell role="Konkordanz">88,1</cell>
    <cell role="Anmerkungen">497. Domgrabung A 582. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00498</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   î      </cell>
    <cell role="Konkordanz">88,2</cell>
    <cell role="Anmerkungen">498. Domgrabung A 584. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00499</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[ ]   î      </cell>
    <cell role="Konkordanz">131,2</cell>
    <cell role="Anmerkungen">499. Domgrabung A 586. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00500</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   î      </cell>
    <cell role="Konkordanz">521,1</cell>
    <cell role="Anmerkungen">500. Domgrabung A 583. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00501</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ¯     </cell>
    <cell role="Konkordanz">36</cell>
    <cell role="Anmerkungen">501. Domgrabung A 587. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00502</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 206</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   ¯      </cell>
    <cell role="Konkordanz">271</cell>
    <cell role="Anmerkungen">502. Domgrabung A 590. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00503</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 206</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ¯      </cell>
    <cell role="Konkordanz">12,1</cell>
    <cell role="Anmerkungen">503. Domgrabung A 589. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00504</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 206</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   ¯      </cell>
    <cell role="Konkordanz">32</cell>
    <cell role="Anmerkungen">504. Domgrabung A 591. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00505</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 206</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(S?)   ¯      </cell>
    <cell role="Konkordanz">145</cell>
    <cell role="Anmerkungen">505. Domgrabung A 592. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00506</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 206/210</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP(ù)   ¯      </cell>
    <cell role="Konkordanz">489,7</cell>
    <cell role="Anmerkungen">506. Domgrabung A 597. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00507</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 210</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù   ¯      </cell>
    <cell role="Konkordanz">315</cell>
    <cell role="Anmerkungen">507. Domgrabung A 593. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00508</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 210</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù   ¯      </cell>
    <cell role="Konkordanz">511,1</cell>
    <cell role="Anmerkungen">508. Domgrabung A 594. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00509</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 210</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRSù   ¯      </cell>
    <cell role="Konkordanz">518,6</cell>
    <cell role="Anmerkungen">509. Domgrabung A 595. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00510</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 210</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]RSù   ¯      </cell>
    <cell role="Konkordanz">527,4</cell>
    <cell role="Anmerkungen">510. Domgrabung A 596. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00511</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 182?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP?   M?   </cell>
    <cell role="Konkordanz">489,5</cell>
    <cell role="Anmerkungen">511. Domgrabung A 601. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00512</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 188?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]?   *    </cell>
    <cell role="Konkordanz">635,4</cell>
    <cell role="Anmerkungen">512. Domgrabung A 602. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00513</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 47?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (S?)LC (S?)/T  </cell>
    <cell role="Konkordanz">521,3</cell>
    <cell role="Anmerkungen">513. Domgrabung A 605. Vs.: CONSTAN-SPFAVG? Drap. Büste n.r. (m. Lbkr.?). Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00514</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 58</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PL[ ]   §    </cell>
    <cell role="Konkordanz">415,7</cell>
    <cell role="Anmerkungen">514. Domgrabung A 606. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00515</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 63</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC   ¯     </cell>
    <cell role="Konkordanz">489,6</cell>
    <cell role="Anmerkungen">515. Domgrabung A 607. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00516</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 78</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RS    </cell>
    <cell role="Konkordanz">428,1</cell>
    <cell role="Anmerkungen">516. Domgrabung A 610. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00517</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">135,2</cell>
    <cell role="Anmerkungen">517. Domgrabung A 621. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00518</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    *    </cell>
    <cell role="Konkordanz">518,8</cell>
    <cell role="Anmerkungen">518. Domgrabung A 618. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00519</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">wie RIC (Tre) 205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]   ¯     </cell>
    <cell role="Konkordanz">103,3</cell>
    <cell role="Anmerkungen">519. Domgrabung A 614. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00520</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 228</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù    </cell>
    <cell role="Konkordanz">408</cell>
    <cell role="Anmerkungen">520. Domgrabung A 632. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00521</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 230</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP*    </cell>
    <cell role="Konkordanz">44</cell>
    <cell role="Anmerkungen">521. Domgrabung A 633. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00522</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 230</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS*    </cell>
    <cell role="Konkordanz">488</cell>
    <cell role="Anmerkungen">522. Domgrabung A 634. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00523</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 230</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]RS*    </cell>
    <cell role="Konkordanz">518,2</cell>
    <cell role="Anmerkungen">523. Domgrabung A 635. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00524</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 234</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP•    </cell>
    <cell role="Konkordanz">584</cell>
    <cell role="Anmerkungen">524. Domgrabung A 636. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00525</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO Galley 2   </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT 7,785</cell>
    <cell role="Anmerkungen">525. Domgrabung A 641. Verschollen. Angaben übernommen aus dem Inventar des RLMT, wo bestimmt als C2 13. Ausschachtung zwischen Dom und Liebfrauen, über den Tubuli der südlichen Abschlussmauer der Heizung. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00526</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO Phoenix 1</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">nan</cell>
    <cell role="Anmerkungen">526. Domgrabung A 642. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00527</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans?</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">507,15</cell>
    <cell role="Anmerkungen">527. Domgrabung A 507. Vs.: [      ](N?)SAVG. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00528</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 101A -104</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´     </cell>
    <cell role="Konkordanz">555,2</cell>
    <cell role="Anmerkungen">528. Domgrabung A 441. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00529</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 108/114</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´    M   </cell>
    <cell role="Konkordanz">133,1</cell>
    <cell role="Anmerkungen">529. Domgrabung A 451. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00530</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 180-182</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    M   </cell>
    <cell role="Konkordanz">461,3</cell>
    <cell role="Anmerkungen">530. Domgrabung A 568. Korrodiert, abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00531</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 183-186</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ²    </cell>
    <cell role="Konkordanz">415,6</cell>
    <cell role="Anmerkungen">531. Domgrabung A 573. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00532</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 190-192 Var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  •/C   </cell>
    <cell role="Konkordanz">622,12</cell>
    <cell role="Anmerkungen">532. Domgrabung A 575. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00533</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 197/199</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]   î     </cell>
    <cell role="Konkordanz">104,1</cell>
    <cell role="Anmerkungen">533. Domgrabung A 581. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00534</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 203/205</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[ ]   ¯     </cell>
    <cell role="Konkordanz">183,4</cell>
    <cell role="Anmerkungen">534. Domgrabung A 588. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00535</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 180-182?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">   M?   </cell>
    <cell role="Konkordanz">518,17</cell>
    <cell role="Anmerkungen">535. Domgrabung A 600. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00536</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">östl.</cell>
    <cell role="Referenzwerk">VOT/XX/ MVLT/XXX</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">88</cell>
    <cell role="Anmerkungen">536. Domgrabung A 612. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00537</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">östl.</cell>
    <cell role="Referenzwerk">VOT/XX/ MVLT/XXX</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">527,3</cell>
    <cell role="Anmerkungen">537. Domgrabung A 611. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00538</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">573</cell>
    <cell role="Anmerkungen">538. Domgrabung A 630. Vs.: Büste n.r. m. Lrbkr (?). C[     ]? Rs.: 2 Victorien?. Korrodiert. Zuweisung ziemlich sicher. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00539</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,27</cell>
    <cell role="Anmerkungen">539. Domgrabung A 627. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00540</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]   ¯     </cell>
    <cell role="Konkordanz">632</cell>
    <cell role="Anmerkungen">540. Domgrabung A 615. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00541</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,11</cell>
    <cell role="Anmerkungen">541. Domgrabung A 622. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00542</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,1</cell>
    <cell role="Anmerkungen">542. Domgrabung A 628. Verbogen. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00543</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]   *    </cell>
    <cell role="Konkordanz">73,1</cell>
    <cell role="Anmerkungen">543. Domgrabung A 619. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00544</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">73,2</cell>
    <cell role="Anmerkungen">544. Domgrabung A 629. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00545</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]  ¯ ?    </cell>
    <cell role="Konkordanz">308,2</cell>
    <cell role="Anmerkungen">545. Domgrabung A 617. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00546</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,9</cell>
    <cell role="Anmerkungen">546. Domgrabung A 625. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00547</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">489,14</cell>
    <cell role="Anmerkungen">547. Domgrabung A 623. Vs.: CONST[   ]SPFAVG. Wohl Constans. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00548</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]   ¯     </cell>
    <cell role="Konkordanz">490,2</cell>
    <cell role="Anmerkungen">548. Domgrabung A 616. Stark abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00549</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">516,3</cell>
    <cell role="Anmerkungen">549. Domgrabung A 626. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00550</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,14</cell>
    <cell role="Anmerkungen">550. Domgrabung A 624. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00551</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">348/350</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO Phoenix 1</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">512,2</cell>
    <cell role="Anmerkungen">551. Domgrabung A 643. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00552</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constans/Constantius II.?</cell>
    <cell role="Nominal">Fol?</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">östl.</cell>
    <cell role="Referenzwerk">VOTA</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,3</cell>
    <cell role="Anmerkungen">552. Domgrabung A 613. Vs.: wohl constantinischer Kopf n.r. m. Diadem. Rs.: VOT/(XX?)/ MVLT/ (XXX?). Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00553</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 53/88</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]    </cell>
    <cell role="Konkordanz">627,5</cell>
    <cell role="Anmerkungen">553. Domgrabung A 431. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00554</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP°     </cell>
    <cell role="Konkordanz">21</cell>
    <cell role="Anmerkungen">554. Domgrabung A 425. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00555</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">156</cell>
    <cell role="Anmerkungen">555. Domgrabung A 428. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00556</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">428,2</cell>
    <cell role="Anmerkungen">556. Domgrabung A 427. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00557</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">506,15</cell>
    <cell role="Anmerkungen">557. Domgrabung A 426. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00558</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">507,12</cell>
    <cell role="Anmerkungen">558. Domgrabung A 429. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00559</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 93</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> •TRP°     </cell>
    <cell role="Konkordanz">631,1</cell>
    <cell role="Anmerkungen">559. Domgrabung A 439. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00560</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 8</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SLC   »    </cell>
    <cell role="Konkordanz">634,14</cell>
    <cell role="Anmerkungen">560. Domgrabung A 470. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00561</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 12 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CONS[ ] ´   </cell>
    <cell role="Konkordanz">41</cell>
    <cell role="Anmerkungen">561. Domgrabung A 479. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00562</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 25</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R*[ ]    </cell>
    <cell role="Konkordanz">518,11</cell>
    <cell role="Anmerkungen">562. Domgrabung A 490. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00563</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 37</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R° (S?)    </cell>
    <cell role="Konkordanz">104,2</cell>
    <cell role="Anmerkungen">563. Domgrabung A 491. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00564</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">566</cell>
    <cell role="Anmerkungen">564. Domgrabung A 430. Fast prägefrisch.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00565</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">nach Apr. 340</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">RIC (Lug) 28ff.; (Are) 53/54</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ] I </cell>
    <cell role="Konkordanz">507,14</cell>
    <cell role="Anmerkungen">565. Domgrabung A 483. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00566</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 50/101A</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP[ ]    </cell>
    <cell role="Konkordanz">208,1</cell>
    <cell role="Anmerkungen">566. Domgrabung A 453. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00567</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 52/101A</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP?    </cell>
    <cell role="Konkordanz">12,5</cell>
    <cell role="Anmerkungen">567. Domgrabung A 452. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00568</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 56</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  SMTSî     </cell>
    <cell role="Konkordanz">591,31</cell>
    <cell role="Anmerkungen">568. Domgrabung A 495. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00569</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,5</cell>
    <cell role="Anmerkungen">569. Domgrabung A 506. Vs.: Büste n.r. m. Lbkr./Diadem. (FLIVL?)CONSTANTIVSAVG. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00570</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 184</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[ ]   ²    </cell>
    <cell role="Konkordanz">135,1</cell>
    <cell role="Anmerkungen">570. Domgrabung A 570. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00571</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 184</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ²    </cell>
    <cell role="Konkordanz">489,4</cell>
    <cell role="Anmerkungen">571. Domgrabung A 569. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00572</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 203ff.?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (T?)[  ]   ¯      </cell>
    <cell role="Konkordanz">124,4</cell>
    <cell role="Anmerkungen">572. Domgrabung A 603. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00573</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 45</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]  S/T   </cell>
    <cell role="Konkordanz">622,8</cell>
    <cell role="Anmerkungen">573. Domgrabung A 604. Korrodiert, angegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00574</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 78</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PAR[ ]   ¨    </cell>
    <cell role="Konkordanz">518,1</cell>
    <cell role="Anmerkungen">574. Domgrabung A 608. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00575</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 78 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]RL   ù/¨  _ </cell>
    <cell role="Konkordanz">568</cell>
    <cell role="Anmerkungen">575. Domgrabung A 609. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00576</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">347/348</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIAE DD AVGGQ NN</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,9</cell>
    <cell role="Anmerkungen">576. Domgrabung A 620. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00577</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">353</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 332/335</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR(S?)    </cell>
    <cell role="Konkordanz">591,4</cell>
    <cell role="Anmerkungen">577. Domgrabung A 639. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00578</cell>
    <cell role="Original">0</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/355</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 358</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   </cell>
    <cell role="Konkordanz">RLMT 07,792b</cell>
    <cell role="Anmerkungen">578. Domgrabung A 648. Verschollen. Angaben übernommen aus Inventar des RLMT, wo bestimmt als C² 45. Ausschachtung zwischen Dom und Liebfrauen. Im Hypokaustum in der Nähe des Präfurniums. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00579</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/355</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 358 var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> •TRP•   </cell>
    <cell role="Konkordanz">RLMT 07,784a</cell>
    <cell role="Anmerkungen">579. Domgrabung A 649. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00580</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/355</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 358?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP?   </cell>
    <cell role="Konkordanz">RLMT 7,785</cell>
    <cell role="Anmerkungen">580. Domgrabung A 650.  Verschollen. Im Inventar des RLMT bestimmt als C² 48. Ausschachtung zwischen Dom und Liebfrauen, über den Tubuli der südlichen Abschlussmauer der Heizung. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00581</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,26</cell>
    <cell role="Anmerkungen">581. Domgrabung A 656. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00582</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">23</cell>
    <cell role="Anmerkungen">582. Domgrabung A 654. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00583</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (SM?)[  ]  </cell>
    <cell role="Konkordanz">314,1</cell>
    <cell role="Anmerkungen">583. Domgrabung A 653. Vs.: Rosettendiadem. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00584</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">464</cell>
    <cell role="Anmerkungen">584. Domgrabung A 657. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00585</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">507,13</cell>
    <cell role="Anmerkungen">585. Domgrabung A 655. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00586</cell>
    <cell role="Original">0</cell>
    <cell role="Kaiser">Constantius II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3    </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT 07,792b</cell>
    <cell role="Anmerkungen">586. Domgrabung A 658. Verschollen. Angaben übernommen aus Inventar des RLMT, wo bestimmt als C2 45. Ausschachtung zwischen Dom und Liebfrauen. Im Hypokaustum in der Nähe des Präfurniums. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00587</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II. (für Constantius Gallus/Julian)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">77,2</cell>
    <cell role="Anmerkungen">587. Domgrabung A 659. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00588</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II. (für Constantius Gallus/Julian)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/360</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH (3?)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,34</cell>
    <cell role="Anmerkungen">588. Domgrabung A 660. Vs.: [   ](F/C)LIV[     ]. Korrodiert, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00589</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II. (für Julian)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">355/360</cell>
    <cell role="Praegestaette">östl.</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH4</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">183,1</cell>
    <cell role="Anmerkungen">589. Domgrabung A 652. Vs. DNCLIVLIANVSNOBCAES. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00590</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II. (für Julian)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">355/361</cell>
    <cell role="Praegestaette">Con</cell>
    <cell role="Referenzwerk">RIC 154</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">    C    </cell>
    <cell role="Konkordanz">452,1</cell>
    <cell role="Anmerkungen">590. Domgrabung A 651. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00591</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II. (für Julian)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">355/361</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES REIPVBLICE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">253,1</cell>
    <cell role="Anmerkungen">591. Domgrabung A 661. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00592</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 82/89</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">122</cell>
    <cell role="Anmerkungen">592. Domgrabung A 432. Vs.: FLIVLCON[  ]AVG. Wohl Constantius II. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00593</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">wie RIC 6-13</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">411</cell>
    <cell role="Anmerkungen">593. Domgrabung A 488. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00594</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340?</cell>
    <cell role="Praegestaette">Rom?</cell>
    <cell role="Referenzwerk">RIC (Rom) 2ff.?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]² S? </cell>
    <cell role="Konkordanz">115,2</cell>
    <cell role="Anmerkungen">594. Domgrabung A 492. Rs.: 1 Feldzeichen zw. 2 Soldaten. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00595</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantinsöhne</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/340</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">477</cell>
    <cell role="Anmerkungen">595. Domgrabung A 508. Vs.: Kopf n.r. (m. Lbkr.?). CON[   ]PFAVG. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00596</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 90</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]°     </cell>
    <cell role="Konkordanz">589,5</cell>
    <cell role="Anmerkungen">596. Domgrabung A 434. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00597</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 55/90</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP[ ]    </cell>
    <cell role="Konkordanz">202,2</cell>
    <cell role="Anmerkungen">597. Domgrabung A 435. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00598</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 63</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTRSù    </cell>
    <cell role="Konkordanz">230</cell>
    <cell role="Anmerkungen">598. Domgrabung A 421. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00599</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 90</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS°     </cell>
    <cell role="Konkordanz">506,13</cell>
    <cell role="Anmerkungen">599. Domgrabung A 433. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00600</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre/Rom/Con</cell>
    <cell role="Referenzwerk">PAX PVBLICA</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,25</cell>
    <cell role="Anmerkungen">600. Domgrabung A 499. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00601</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre/Rom/Con</cell>
    <cell role="Referenzwerk">PAX PVBLICA</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">627,3</cell>
    <cell role="Anmerkungen">601. Domgrabung A 501. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00602</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Helena</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre/Rom/Con</cell>
    <cell role="Referenzwerk">PAX PVBLICA</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">496,2</cell>
    <cell role="Anmerkungen">602. Domgrabung A 500. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00603</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 43</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   +    </cell>
    <cell role="Konkordanz">108</cell>
    <cell role="Anmerkungen">603. Domgrabung A 419. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00604</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 56</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRPù    </cell>
    <cell role="Konkordanz">97</cell>
    <cell role="Anmerkungen">604. Domgrabung A 420. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00605</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 56/65</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]TRPù  </cell>
    <cell role="Konkordanz">69</cell>
    <cell role="Anmerkungen">605. Domgrabung A 423. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00606</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 65</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùTRPù    </cell>
    <cell role="Konkordanz">130</cell>
    <cell role="Anmerkungen">606. Domgrabung A 422. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00607</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 91</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]S°   </cell>
    <cell role="Konkordanz">202,1</cell>
    <cell role="Anmerkungen">607. Domgrabung A 438. Vs.: FLMAXTHEO-DORAEAVG. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00608</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 91</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP°     </cell>
    <cell role="Konkordanz">100,4</cell>
    <cell role="Anmerkungen">608. Domgrabung A 437. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00609</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodora</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">337/Apr. 340</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 91</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP°     </cell>
    <cell role="Konkordanz">521,2</cell>
    <cell role="Anmerkungen">609. Domgrabung A 436. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00610</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnentius</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">351/352</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 312</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS    </cell>
    <cell role="Konkordanz">518,1</cell>
    <cell role="Anmerkungen">610. Domgrabung A 637. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00611</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnentius</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">352/352</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 316C</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]    </cell>
    <cell role="Konkordanz">415,4</cell>
    <cell role="Anmerkungen">611. Domgrabung A 638. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00612</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnentius</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">352/352</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 151</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RSLG Vs.: A   </cell>
    <cell role="Konkordanz">106</cell>
    <cell role="Anmerkungen">612. Domgrabung A 640. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00613</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II./Julian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">358/361</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES REIPVBLICE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">627,2</cell>
    <cell role="Anmerkungen">613. Domgrabung A 662. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00614</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Constantius II./Julian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">358/361</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES REIPVBLICE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]    </cell>
    <cell role="Konkordanz">121,8</cell>
    <cell role="Anmerkungen">614. Domgrabung A 663. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00615</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinus I.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">321</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Tre) 305 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PTR    </cell>
    <cell role="Konkordanz">87</cell>
    <cell role="Anmerkungen">615. Domgrabung A 381. Vs.: Büste n.r. m. Trabea </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00616</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (für Crispus)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">320</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Tre) 255 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> STH  *      </cell>
    <cell role="Konkordanz">391</cell>
    <cell role="Anmerkungen">616. Domgrabung A 380. Vs.: behelm., gepanz. Büste n.r. CRISPVSNOBCAES. Rs:  Tropaion/Feldzeichen, darunter zwei Gefangene. VIИTVS-[  ]RCIT. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00617</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 2 Fz. Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">487,1</cell>
    <cell role="Anmerkungen">617. Domgrabung A 524. Vs.: drap. Büste n.l. m. Lbkr. CONSTANTINOIVNN ? Rs.: 2  Soldaten m. 2 Feldzeichen. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00618</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (für Constantin II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 2 Fz. Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">460</cell>
    <cell role="Anmerkungen">618. Domgrabung A 525. Vs.: drap. Büste n.r. m. Lbkr. [   ]NVSIVNNOB[  ]. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00619</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constans)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">GLORIA EXERCITVS 1 Fz. Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">486</cell>
    <cell role="Anmerkungen">619. Domgrabung A 531. Vs.: drap. Büste n.r. m. Diadem. [    ]SPAVG. Rs.: 2 Soldaten m. 1 Feldzeichen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00620</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constans)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Tre) 185 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   ²    </cell>
    <cell role="Konkordanz">79,2</cell>
    <cell role="Anmerkungen">620. Domgrabung A 631. Vs.: drap. Büste m. Rosettendiadem n.r. CONSTA-NSPFAVG. Rs.: 2 Victorien. VICTORIAE DD AVGGQ NN. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00621</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Tre) 105 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   M    </cell>
    <cell role="Konkordanz">86</cell>
    <cell role="Anmerkungen">621. Domgrabung A 533. Vs.: drap. Büste n.r. m. Diadem CONSTANT[  ]  Rs.: 2 Soldaten m. 1 Feldzeichen GLORI-AEXER[  ]. Vs.-Legende etwas  grob. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00622</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Tre) 215/ 216 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TIIS    </cell>
    <cell role="Konkordanz">589,3</cell>
    <cell role="Anmerkungen">622. Domgrabung A 644. Vs.: drap. Büste n.r. m. Diadem. CONSTANT-IVSPFAVG. Rs.: Kaiser steht n.l. auf Galeere m. Phönix u. Labarum, am Heck Victoria. Pseudolegende. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00623</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">     IùL    </cell>
    <cell role="Konkordanz">117</cell>
    <cell role="Anmerkungen">623. Domgrabung A 664. Vs.: Büste n.r. m. Perlendiadem. CON[  ]S  Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00624</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">491</cell>
    <cell role="Anmerkungen">624. Domgrabung A 666. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter m. ausgestrecktem Arm. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00625</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">518,16</cell>
    <cell role="Anmerkungen">625. Domgrabung A 665. Vs.: drap. Büste n.r. m. Diadem. D[    ]VSFAVG. Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00626</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,3</cell>
    <cell role="Anmerkungen">626. Domgrabung A 669. Vs.: Kopf n.r. m. Diadem. Legendenreste. Rs.: stürzender Reiter m. ausgestrecktem Arm. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00627</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">247,3</cell>
    <cell role="Anmerkungen">627. Domgrabung A 668. Vs.: DNCONS[  ]  Kopf n.r. m. Lbkr(?), stürzender Reiter m. ausgestrecktem Arm. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00628</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">248,3</cell>
    <cell role="Anmerkungen">628. Domgrabung A 667. Vs.: Kopf n.r. m. Diadem.  Rs.: stürzender Reiter m. ausgestrecktem Arm. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00629</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH3 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,1</cell>
    <cell role="Anmerkungen">629. Domgrabung A 670. Vs: Kopf n.r. m. Diadem. Rs.: stürzender Reiter m. ausgestrecktem Arm. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00630</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH4 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">96</cell>
    <cell role="Anmerkungen">630. Domgrabung A 671. Vs.: drap. Büste n.r. m. Diadem. [  ]PFAVG.  Rs.: stürzender Reiter umklammert Pferd, spiegelverkehrt. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00631</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,14</cell>
    <cell role="Anmerkungen">631. Domgrabung A 672. Vs.: Kopf n.r. m. Diadem. Rs.: Fußsoldat/Virtus n.l. (stürzender Reiter?). Bestimmung wahrscheinlich. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00632</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">269</cell>
    <cell role="Anmerkungen">632. Domgrabung A 674. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00633</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">264</cell>
    <cell role="Anmerkungen">633. Domgrabung A 680. Vs.: Kopf n.r. (m. Diadem?)  Rs.: stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00634</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantius II.)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">FEL TEMP REPARATIO FH Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,2</cell>
    <cell role="Anmerkungen">634. Domgrabung A 673. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00635</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Helena)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">PAX PVBLICA Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">589,6</cell>
    <cell role="Anmerkungen">635. Domgrabung A 532. Vs.: unkenntlich. Rs.: Pax n.l. m. Zweig u. schrägem Zepter. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00636</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Lug) 236-240 Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC   </cell>
    <cell role="Konkordanz">651</cell>
    <cell role="Anmerkungen">636. Domgrabung A 523. Vs.: Büste n.r. m. Lbkr./Diadem. Rs.: 2 Soldaten m. 2 Feldzeichen. [ ]IAEXI[ ]. Stark korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00637</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">555,1</cell>
    <cell role="Anmerkungen">637. Domgrabung A 526. Vs.: Büste n.r. Rs.: 2 Soldaten m. 2 Feldzeichen. . Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00638</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">603</cell>
    <cell role="Anmerkungen">638. Domgrabung A 527. Vs.: Büste n.r. Rs. 2 Soldaten m. 2 Feldzeichen. Stark korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00639</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">323</cell>
    <cell role="Anmerkungen">639. Domgrabung A 528. Vs.: gepanz. Büste n.r. CON[  ]. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00640</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">489,8</cell>
    <cell role="Anmerkungen">640. Domgrabung A 529. Vs.: behelmte Büste n.l. CONSTAN[    ]. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00641</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">489,13</cell>
    <cell role="Anmerkungen">641. Domgrabung A 530. Vs.: behelmte Büste n.l. m. Speer. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00642</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,27</cell>
    <cell role="Anmerkungen">642. Domgrabung A 536. Vs.: Kopf n.r. CONST-ANT[   ]. Rs.: 2 Soldaten m. 1 Feldzeichen. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00643</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">311,1</cell>
    <cell role="Anmerkungen">643. Domgrabung A 543. Vs.: Kopf n.r. m. Diadem. Rs.: 2 Soldaten m. 1 Feldzeichen. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00644</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TAP   </cell>
    <cell role="Konkordanz">92</cell>
    <cell role="Anmerkungen">644. Domgrabung A 534. Vs.: Büste n.r. m. Diadem. Legendenreste. Rs.: 1 Feldzeichen zw. 2 Soldaten. Korrodiert, wenig umgelaufen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00645</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">342</cell>
    <cell role="Anmerkungen">645. Domgrabung A 542. Vs.: Kopf n.r. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00646</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">506,17</cell>
    <cell role="Anmerkungen">646. Domgrabung A 538. Vs.: drap. Büste n.l. m. Lbkr. [  ]ODSV-TDTS. Rs.: 2 Soldaten m. 1 Feldzeichen. [   ]-TVA-RCI. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00647</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> QT   </cell>
    <cell role="Konkordanz">507,17</cell>
    <cell role="Anmerkungen">647. Domgrabung A 535. Vs.: Kopf n.r. m. Diadem. Legendenreste. Rs.: 2 Soldaten m. 1  Feldzeichen. Legendenreste. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00648</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">514,1</cell>
    <cell role="Anmerkungen">648. Domgrabung A 540. Vs.: Büste n.r. m. Lbkr./Diadem. Legendenreste. Rs.: 2 Soldaten  m. 1 Feldzeichen. Legendenreste. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00649</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,35</cell>
    <cell role="Anmerkungen">649. Domgrabung A 539. Vs.: Kopf n.r. m. Diadem. Rs.: 2 Soldaten m. 1 Feldzeichen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00650</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">89,2</cell>
    <cell role="Anmerkungen">650. Domgrabung A 541. Vs.: Kopf n.r. m. Perlendiadem Rs.: 2 Soldaten m. 1 Feldzeichen. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00651</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">523,3</cell>
    <cell role="Anmerkungen">651. Domgrabung A 537. Vs.: CON[   ]? Drap. Büste n.r. Rs.: 2 Soldaten m. 1 Feldzeichen? Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00652</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">577</cell>
    <cell role="Anmerkungen">652. Domgrabung A 566. Rs.: 2 Soldaten m. 1 Feldzeichen?. Schwach ausgeprägt. Eventuell auch Halbcentenionalis, 388-403. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00653</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">12,6</cell>
    <cell role="Anmerkungen">653. Domgrabung A 545. Vs.: behelmter Kopf n.l. Legendenreste. Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00654</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen"> PLC   </cell>
    <cell role="Konkordanz">100,5</cell>
    <cell role="Anmerkungen">654. Domgrabung A 544. Vs.: behelmter Kopf n.r. CONSTAN-[  ]. Rs.: 2 Soldaten m. 1 Feldzeichen.  GLO[  ]ITVS. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00655</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr. </cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,11</cell>
    <cell role="Anmerkungen">655. Domgrabung A 546. Vs.: behelmter Kopf n.l.  Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00656</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1/2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,8</cell>
    <cell role="Anmerkungen">656. Domgrabung A 553. Vs.: behelmter Kopf n.l. CON[  ]   Rs.: 2 Soldaten?. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00657</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1/2 Fz.-Typ)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">hybr.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">211,3</cell>
    <cell role="Anmerkungen">657. Domgrabung A 565. Vs.: behelmter Kopf.  Rs.: 2 Soldaten mit (1?) Feldzeichen. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00658</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLC   </cell>
    <cell role="Konkordanz">489,1</cell>
    <cell role="Anmerkungen">658. Domgrabung A 548. Vs.: behelmte Büste n.l. VRBS[   ]. Rs.: Wölfin m. Zwillingen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00659</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS?   </cell>
    <cell role="Konkordanz">489,11</cell>
    <cell role="Anmerkungen">659. Domgrabung A 549. Vs.: behelmte Büste n.l. VRBS-RO[  ]. Rs.: Wölfin m. Zwillingen. Wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00660</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">489,15</cell>
    <cell role="Anmerkungen">660. Domgrabung A 550. Vs.: behelmte Büste n.l. Rs.: Wölfin m. Zwillingen. Korrodiert, wenig umgelaufen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00661</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">660</cell>
    <cell role="Anmerkungen">661. Domgrabung A 552. Vs.: behelmter Kopf n.l. Rs.: Wölfin m. Zwillingen. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00662</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Wölfin mit Zwillingen</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">12,7</cell>
    <cell role="Anmerkungen">662. Domgrabung A 551. Vs.: behelmter Kopf. Rs.: Wölfin m. Zwillingen. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00663</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]TO?   </cell>
    <cell role="Konkordanz">565</cell>
    <cell role="Anmerkungen">663. Domgrabung A 556. Vs.: behelmte Büste n.l. Legendenreste. Rs.: Victoria n.l. auf Prora. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00664</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ••I••   </cell>
    <cell role="Konkordanz">634,1</cell>
    <cell role="Anmerkungen">664. Domgrabung A 554. Vs.: behelmte Büste n.l. m. Thyrsos. CONSTAN[    ]. Rs.: Victoria auf Prora. . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00665</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PLG   </cell>
    <cell role="Konkordanz">12,8</cell>
    <cell role="Anmerkungen">665. Domgrabung A 555. Vs.: behelmter Kopf n.l. Rs.: Victoria auf Prora. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00666</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">91</cell>
    <cell role="Anmerkungen">666. Domgrabung A 557. Vs.: behelmter Kopf n.l. Legendenreste. Rs.: Victoria n.l. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00667</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,9</cell>
    <cell role="Anmerkungen">667. Domgrabung A 559. Vs.: behelmter Kopf n.l. Rs.: Viktoria n.l. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00668</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">489,16</cell>
    <cell role="Anmerkungen">668. Domgrabung A 564. Rs.: Victoria auf Prora. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00669</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,1</cell>
    <cell role="Anmerkungen">669. Domgrabung A 558. Vs.: behelmter Kopf n.r.? Rs.: Victoria. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00670</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">251,2</cell>
    <cell role="Anmerkungen">670. Domgrabung A 562. Vs.: Kopf n.l.? Rs.: weibl. Gestalt (wohl Victoria) m. Schild rechts. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00671</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">214</cell>
    <cell role="Anmerkungen">671. Domgrabung A 563. Vs.: behelmter Kopf n.l.  [   ]STAN[   ]. Rs.: Victoria.. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00672</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">211,2</cell>
    <cell role="Anmerkungen">672. Domgrabung A 560. Vs.: behelmter Kopf n.l.  Rs.: Victoria. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00673</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,12</cell>
    <cell role="Anmerkungen">673. Domgrabung A 561. Vs.: behelmter Kopf n.l.  Rs.: Victoria n.l.? Schlecht zentriert. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00674</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</cell>
    <cell role="Nominal">Fol</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">hyb.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">518,15</cell>
    <cell role="Anmerkungen">674. Domgrabung A 547. Vs.: Kopf n.r. m. Diadem. Rs.: Victoria auf Prora. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00675</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Constantinopolis?)</cell>
    <cell role="Nominal">Fol?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">Victoria auf Prora</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">?     </cell>
    <cell role="Konkordanz">398</cell>
    <cell role="Anmerkungen">675. Domgrabung A 567. Vs.: (behelmter?) Kopf n.r. Legendenreste. Rs.: Victoria n.l.? Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00676</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">76,2</cell>
    <cell role="Anmerkungen">676. Domgrabung A 676. Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00677</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]T[  ]  </cell>
    <cell role="Konkordanz">415,9</cell>
    <cell role="Anmerkungen">677. Domgrabung A 675. Vs: Kopf n.r. Rs.: stürzender Reiter m. ausgestrecktem Arm. Korrodiert, kaum abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00678</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">506,16</cell>
    <cell role="Anmerkungen">678. Domgrabung A 677. Rs.: stürzender Reiter. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00679</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">414,4</cell>
    <cell role="Anmerkungen">679. Domgrabung A 679. Vs.: Kopf n.r. Rs.: stürzender Reiter. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00680</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">353/357</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">414,2</cell>
    <cell role="Anmerkungen">680. Domgrabung A 678. Vs.: Kopf n.r. Rs.: stürzender Reiter. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00681</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">308,1</cell>
    <cell role="Anmerkungen">681. Domgrabung A 681. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00682</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">310,2</cell>
    <cell role="Anmerkungen">682. Domgrabung A 682. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00683</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,1</cell>
    <cell role="Anmerkungen">683. Domgrabung A 684. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00684</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">414,1</cell>
    <cell role="Anmerkungen">684. Domgrabung A 683. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00685</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">353/357?</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">414,3</cell>
    <cell role="Anmerkungen">685. Domgrabung A 685. Rs.: stürzender Reiter? Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00686</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Magnentius)</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">351/352</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">VICT DD NN AVG ET CAE (1) Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  PLC Vs.: A   </cell>
    <cell role="Konkordanz">518,3</cell>
    <cell role="Anmerkungen">686. Domgrabung A 645. Vs.: drap. Büste n.r. DNMIIGN-TIVSVIIIG. Rs.: 2 Victorien halten Schild, darin [  ]/V/MVLT/X. VICTDDNNAVG[   ]. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00687</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (Magnentius)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/352</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">VICTORIAE DD NN AVG ET CAE (2/3) Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">PPLG SV Vs.: A </cell>
    <cell role="Konkordanz">515,3</cell>
    <cell role="Anmerkungen">687. Domgrabung A 647. Vs.: drap. Büste n.r. DNMAG[    ]IVSPFAVG. Rs.: 2 Victorien halten Schild, darin VOT/MVL. VI[    ]ETCAE. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00688</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 615.-689. (für Decentius)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">351/352</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">VICTORIAE DD NN AVG ET CAE (2/3) Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">514,4</cell>
    <cell role="Anmerkungen">688. Domgrabung A 646. Vs.: drap. Büste n.r. [     ]OBCAES. Rs.: 2 Victorien halten Schild, darin Pseudobuchstaben. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00689</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">330/360</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,11</cell>
    <cell role="Anmerkungen">689. Domgrabung A 1064. Vs: Kopf n.r. Rs.: unkenntliche Darstellungsreste, stürzender Reiter? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00690</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Sil</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RP    </cell>
    <cell role="Konkordanz">141</cell>
    <cell role="Anmerkungen">690. Domgrabung A 811. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00691</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS  D/°      </cell>
    <cell role="Konkordanz">252,1</cell>
    <cell role="Anmerkungen">691. Domgrabung A 690. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00692</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CONST  OF II  </cell>
    <cell role="Konkordanz">258</cell>
    <cell role="Anmerkungen">692. Domgrabung A 753. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00693</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQP     B  </cell>
    <cell role="Konkordanz">591,9</cell>
    <cell role="Anmerkungen">693. Domgrabung A 835. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00694</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7a</cell>
    <cell role="Besonderheiten">frag.   </cell>
    <cell role="Sonderzeichen"> SMA[ ]     B/ù</cell>
    <cell role="Konkordanz">622,3</cell>
    <cell role="Anmerkungen">694. Domgrabung A 836. In zwei Teile zerbrochen. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00695</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">      ¶   </cell>
    <cell role="Konkordanz">506,1</cell>
    <cell role="Anmerkungen">695. Domgrabung A 837. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00696</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGSR   O  FII  </cell>
    <cell role="Konkordanz">270</cell>
    <cell role="Anmerkungen">696. Domgrabung A 705. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00697</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS(A?) O  FII  </cell>
    <cell role="Konkordanz">514,6</cell>
    <cell role="Anmerkungen">697. Domgrabung A 704. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00698</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (LV?)[ ]  O  FII  </cell>
    <cell role="Konkordanz">100,1</cell>
    <cell role="Anmerkungen">698. Domgrabung A 735. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00699</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS   O FII/¶  </cell>
    <cell role="Konkordanz">100,2</cell>
    <cell role="Anmerkungen">699. Domgrabung A 706. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00700</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]VG[ ]  O FII/¶  </cell>
    <cell role="Konkordanz">591,13</cell>
    <cell role="Anmerkungen">700. Domgrabung A 707. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00701</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGSù   O FII/°  </cell>
    <cell role="Konkordanz">273</cell>
    <cell role="Anmerkungen">701. Domgrabung A 709. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00702</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS    O FII/°  </cell>
    <cell role="Konkordanz">85</cell>
    <cell role="Anmerkungen">702. Domgrabung A 708. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00703</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS   O FII/S  </cell>
    <cell role="Konkordanz">503</cell>
    <cell role="Anmerkungen">703. Domgrabung A 710. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00704</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS   O FII/Rt  </cell>
    <cell role="Konkordanz">618,2</cell>
    <cell role="Anmerkungen">704. Domgrabung A 711. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00705</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 16a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">314,2</cell>
    <cell role="Anmerkungen">705. Domgrabung A 778. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00706</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCO[ ]    </cell>
    <cell role="Konkordanz">508,1</cell>
    <cell role="Anmerkungen">706. Domgrabung A 785. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00707</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">634,7</cell>
    <cell role="Anmerkungen">707. Domgrabung A 786. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00708</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON   </cell>
    <cell role="Konkordanz">RLMT ST 8433b</cell>
    <cell role="Anmerkungen">708. FO: Domplatz. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00709</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (T?)CON   </cell>
    <cell role="Konkordanz">420</cell>
    <cell role="Anmerkungen">709. Domgrabung A 787. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00710</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CON    </cell>
    <cell role="Konkordanz">514,2</cell>
    <cell role="Anmerkungen">710. Domgrabung A 788. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00711</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PC[  ]  (ù?)    </cell>
    <cell role="Konkordanz">507,1</cell>
    <cell role="Anmerkungen">711. Domgrabung A 782. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00712</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON  N      </cell>
    <cell role="Konkordanz">110,2</cell>
    <cell role="Anmerkungen">712. Domgrabung A 783. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00713</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON  N      </cell>
    <cell role="Konkordanz">516,1</cell>
    <cell role="Anmerkungen">713. Domgrabung A 784. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00714</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 23a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² R(P?)  </cell>
    <cell role="Konkordanz">111,3</cell>
    <cell role="Anmerkungen">714. Domgrabung A 812. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00715</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² RP   </cell>
    <cell role="Konkordanz">238,1</cell>
    <cell role="Anmerkungen">715. Domgrabung A 814. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00716</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² RP   </cell>
    <cell role="Konkordanz">241</cell>
    <cell role="Anmerkungen">716. Domgrabung A 813. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00717</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQ[ ]   </cell>
    <cell role="Konkordanz">507,6</cell>
    <cell role="Anmerkungen">717. Domgrabung A 838. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00718</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQ[ ]   </cell>
    <cell role="Konkordanz">507,7</cell>
    <cell role="Anmerkungen">718. Domgrabung A 839. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00719</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùSMAQP   </cell>
    <cell role="Konkordanz">132,2</cell>
    <cell role="Anmerkungen">719. Domgrabung A 840. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00720</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] ¼      </cell>
    <cell role="Konkordanz">630,1</cell>
    <cell role="Anmerkungen">720. Domgrabung A 844. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00721</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQ(P?)  </cell>
    <cell role="Konkordanz">529,4</cell>
    <cell role="Anmerkungen">721. Domgrabung A 846. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00722</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMA[  ]   </cell>
    <cell role="Konkordanz">454,1</cell>
    <cell role="Anmerkungen">722. Domgrabung A 845. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00723</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ÉSISC  */P (S?) </cell>
    <cell role="Konkordanz">121,1</cell>
    <cell role="Anmerkungen">723. Domgrabung A 860. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00724</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ÉSISC  */F  S  </cell>
    <cell role="Konkordanz">529,1</cell>
    <cell role="Anmerkungen">724. Domgrabung A 861. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00725</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SIS[ ]  R/·  F  </cell>
    <cell role="Konkordanz">511,2</cell>
    <cell role="Anmerkungen">725. Domgrabung A 863. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00726</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> âSISCú   A/·   F  </cell>
    <cell role="Konkordanz">184</cell>
    <cell role="Anmerkungen">726. Domgrabung A 862. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00727</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10a/20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG(S?)  O  FII  </cell>
    <cell role="Konkordanz">128,1</cell>
    <cell role="Anmerkungen">727. Domgrabung A 734. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00728</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10a/20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]VG(SP?)O  FII   </cell>
    <cell role="Konkordanz">39,2</cell>
    <cell role="Anmerkungen">728. Domgrabung A 736. Korrodiert, wenig abgegriffen. Gefunden Juli 1899 im "Schutte unter der Domsakristei". </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00729</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10a/20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]G?[ ]  O  FII  </cell>
    <cell role="Konkordanz">618,3</cell>
    <cell role="Anmerkungen">729. Domgrabung A 737. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00730</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10a/20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  O  FII  </cell>
    <cell role="Konkordanz">622,4</cell>
    <cell role="Anmerkungen">730. Domgrabung A 738. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00731</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10a/20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  O  FII  </cell>
    <cell role="Konkordanz">526,2</cell>
    <cell role="Anmerkungen">731. Domgrabung A 739. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00732</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 7a/16a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  OF  II  </cell>
    <cell role="Konkordanz">RLMT ST 6727a</cell>
    <cell role="Anmerkungen">732. FO: Domfreihof 8. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00733</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 7a/16a</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen"> OF [ ]   </cell>
    <cell role="Konkordanz">543</cell>
    <cell role="Anmerkungen">733. Domgrabung A 793. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00734</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 15a/23a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]RIM[ ]   </cell>
    <cell role="Konkordanz">419,2</cell>
    <cell role="Anmerkungen">734. Domgrabung A 816. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00735</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 15a/23a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]ùSECVNDA  </cell>
    <cell role="Konkordanz">325</cell>
    <cell role="Anmerkungen">735. Domgrabung A 817. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00736</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17a/24a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]ùTERTIA  </cell>
    <cell role="Konkordanz">111,2</cell>
    <cell role="Anmerkungen">736. Domgrabung A 826. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00737</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17a/24a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]TERTIA  </cell>
    <cell role="Konkordanz">516,2</cell>
    <cell role="Anmerkungen">737. Domgrabung A 827. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00738</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7a/11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQ[ ]   </cell>
    <cell role="Konkordanz">128,2</cell>
    <cell role="Anmerkungen">738. Domgrabung A 850. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00739</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7a/11a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SMAQS  </cell>
    <cell role="Konkordanz">506,2</cell>
    <cell role="Anmerkungen">739. Domgrabung A 851. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00740</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,2</cell>
    <cell role="Anmerkungen">740. Domgrabung A 873. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00741</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,3</cell>
    <cell role="Anmerkungen">741. Domgrabung A 872. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00742</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">635,2</cell>
    <cell role="Anmerkungen">742. Domgrabung A 869. Kaum abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00743</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">109</cell>
    <cell role="Anmerkungen">743. Domgrabung A 871. Abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00744</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">529,2</cell>
    <cell role="Anmerkungen">744. Domgrabung A 870. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00745</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPBVLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">620</cell>
    <cell role="Anmerkungen">745. Domgrabung A 876. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00746</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">631,2</cell>
    <cell role="Anmerkungen">746. Domgrabung A 875. Ein Viertel ausgebrochen. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00747</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">126,2</cell>
    <cell role="Anmerkungen">747. Domgrabung A 877. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00748</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">354</cell>
    <cell role="Anmerkungen">748. Domgrabung A 874. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00749</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´     </cell>
    <cell role="Konkordanz">123,1</cell>
    <cell role="Anmerkungen">749. Domgrabung A 686. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00750</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS´     </cell>
    <cell role="Konkordanz">110,1</cell>
    <cell role="Anmerkungen">750. Domgrabung A 688. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00751</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS´     </cell>
    <cell role="Konkordanz">110,3</cell>
    <cell role="Anmerkungen">751. Domgrabung A 687. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00752</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS  D   °   </cell>
    <cell role="Konkordanz">523,1</cell>
    <cell role="Anmerkungen">752. Domgrabung A 689. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00753</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP*    </cell>
    <cell role="Konkordanz">578,3</cell>
    <cell role="Anmerkungen">753. Domgrabung A 691. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00754</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´     </cell>
    <cell role="Konkordanz">295</cell>
    <cell role="Anmerkungen">754. Domgrabung A 692. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00755</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP´     </cell>
    <cell role="Konkordanz">102</cell>
    <cell role="Anmerkungen">755. Domgrabung A 693. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00756</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP  ±       </cell>
    <cell role="Konkordanz">311,2</cell>
    <cell role="Anmerkungen">756. Domgrabung A 694. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00757</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  ±       </cell>
    <cell role="Konkordanz">538</cell>
    <cell role="Anmerkungen">757. Domgrabung A 695. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00758</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 7d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON(ST?) OF  II  </cell>
    <cell role="Konkordanz">615</cell>
    <cell role="Anmerkungen">758. Domgrabung A 751. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00759</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 7d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON  OF  II/ù </cell>
    <cell role="Konkordanz">521,5</cell>
    <cell role="Anmerkungen">759. Domgrabung A 752. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00760</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CONST  OF  II </cell>
    <cell role="Konkordanz">506,5</cell>
    <cell role="Anmerkungen">760. Domgrabung A 754. Prägefrisch. Mit 506.04 zusammenklebend. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00761</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CONST  OF  II </cell>
    <cell role="Konkordanz">415,13</cell>
    <cell role="Anmerkungen">761. Domgrabung A 755. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00762</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CONST  OF [ ]  </cell>
    <cell role="Konkordanz">25</cell>
    <cell role="Anmerkungen">762. Domgrabung A 758. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00763</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON(ST?) OF? [ ] </cell>
    <cell role="Konkordanz">43</cell>
    <cell role="Anmerkungen">763. Domgrabung A 759. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00764</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> C[  ]  OF II/ù </cell>
    <cell role="Konkordanz">113,2</cell>
    <cell role="Anmerkungen">764. Domgrabung A 756. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00765</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]  OF II/ù </cell>
    <cell role="Konkordanz">253,2</cell>
    <cell role="Anmerkungen">765. Domgrabung A 757. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00766</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/367</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON   B      </cell>
    <cell role="Konkordanz">507,2</cell>
    <cell role="Anmerkungen">766. Domgrabung A 760. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00767</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 32b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRSù    </cell>
    <cell role="Konkordanz">290</cell>
    <cell role="Anmerkungen">767. Domgrabung A 698. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00768</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 32b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP   *      </cell>
    <cell role="Konkordanz">248,5</cell>
    <cell role="Anmerkungen">768. Domgrabung A 696. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00769</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]     OF/S I/R </cell>
    <cell role="Konkordanz">591,23</cell>
    <cell role="Anmerkungen">769. Domgrabung A 727. korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00770</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGPA  OF  I  </cell>
    <cell role="Konkordanz">622,1</cell>
    <cell role="Anmerkungen">770. Domgrabung A 717. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00771</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP(B/D) OF  I  </cell>
    <cell role="Konkordanz">432</cell>
    <cell role="Anmerkungen">771. Domgrabung A 718. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00772</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP OF  I   </cell>
    <cell role="Konkordanz">93</cell>
    <cell role="Anmerkungen">772. Domgrabung A 719. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00773</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP OF  I  </cell>
    <cell role="Konkordanz">514,3</cell>
    <cell role="Anmerkungen">773. Domgrabung A 720. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00774</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG(P) OF  I  </cell>
    <cell role="Konkordanz">71</cell>
    <cell role="Anmerkungen">774. Domgrabung A 722. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00775</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (L)VGP OF  (I)  </cell>
    <cell role="Konkordanz">513,2</cell>
    <cell role="Anmerkungen">775. Domgrabung A 721. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00776</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG OF  I/´  </cell>
    <cell role="Konkordanz">37</cell>
    <cell role="Anmerkungen">776. Domgrabung A 724. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00777</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP OF  I/¶  </cell>
    <cell role="Konkordanz">504</cell>
    <cell role="Anmerkungen">777. Domgrabung A 728. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00778</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ] OF  I/¶  </cell>
    <cell role="Konkordanz">121,7</cell>
    <cell role="Anmerkungen">778. Domgrabung A 725. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00779</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP OF  I/°  </cell>
    <cell role="Konkordanz">507,3</cell>
    <cell role="Anmerkungen">779. Domgrabung A 726. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00780</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP  S   ¶   </cell>
    <cell role="Konkordanz">507,11</cell>
    <cell role="Anmerkungen">780. Domgrabung A 723. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00781</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 16b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">139,1</cell>
    <cell role="Anmerkungen">781. Domgrabung A 780. Korrodiert, wenig abgegriffen. Gefunden Juli 1899 im "Schutte unter der Domsakristei". </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00782</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 16b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON  OF  II  </cell>
    <cell role="Konkordanz">507,1</cell>
    <cell role="Anmerkungen">782. Domgrabung A 779. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00783</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON  ù      </cell>
    <cell role="Konkordanz">247,1</cell>
    <cell role="Anmerkungen">783. Domgrabung A 789. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00784</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON  ù      </cell>
    <cell role="Konkordanz">506,7</cell>
    <cell role="Anmerkungen">784. Domgrabung A 790. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00785</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  ù      </cell>
    <cell role="Konkordanz">595</cell>
    <cell role="Anmerkungen">785. Domgrabung A 791. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00786</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON[ ]   </cell>
    <cell role="Konkordanz">416</cell>
    <cell role="Anmerkungen">786. Domgrabung A 792. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00787</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùSMAQP   </cell>
    <cell role="Konkordanz">399</cell>
    <cell role="Anmerkungen">787. Domgrabung A 842. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00788</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQP   </cell>
    <cell role="Konkordanz">616,1</cell>
    <cell role="Anmerkungen">788. Domgrabung A 841. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00789</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ùSMAQP   </cell>
    <cell role="Konkordanz">506,3</cell>
    <cell role="Anmerkungen">789. Domgrabung A 847. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00790</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> •SMAQS   </cell>
    <cell role="Konkordanz">558</cell>
    <cell role="Anmerkungen">790. Domgrabung A 848. Fast prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00791</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ASI[  ] */P ù/M </cell>
    <cell role="Konkordanz">507,9</cell>
    <cell role="Anmerkungen">791. Domgrabung A 864. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00792</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (A?)S[ ] */R/O ù/M </cell>
    <cell role="Konkordanz">410,2</cell>
    <cell role="Anmerkungen">792. Domgrabung A 865. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00793</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 15b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ASIS[ ] R/[ ]    </cell>
    <cell role="Konkordanz">103,1</cell>
    <cell role="Anmerkungen">793. Domgrabung A 866. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00794</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">375/378</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 23a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP  C   I  </cell>
    <cell role="Konkordanz">589,4</cell>
    <cell role="Anmerkungen">794. Domgrabung A 747. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00795</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c/30b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP[ ]    </cell>
    <cell role="Konkordanz">335,2</cell>
    <cell role="Anmerkungen">795. Domgrabung A 699. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00796</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c/30b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP(´ ?)   </cell>
    <cell role="Konkordanz">515,1</cell>
    <cell role="Anmerkungen">796. Domgrabung A 698. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00797</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b/32b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRP(*?)   </cell>
    <cell role="Konkordanz">238,4</cell>
    <cell role="Anmerkungen">797. Domgrabung A 700. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00798</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 7b/32b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]    </cell>
    <cell role="Konkordanz">616,2</cell>
    <cell role="Anmerkungen">798. Domgrabung A 701. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00799</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 5c/30b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]RS[ ]?   </cell>
    <cell role="Konkordanz">506,6</cell>
    <cell role="Anmerkungen">799. Domgrabung A 703. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00800</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10b/20b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  O FI(?)  </cell>
    <cell role="Konkordanz">510</cell>
    <cell role="Anmerkungen">800. Domgrabung A 740. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00801</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 12/21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ] OF  I  </cell>
    <cell role="Konkordanz">621,2</cell>
    <cell role="Anmerkungen">801. Domgrabung A 745. Prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00802</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 12/21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ] OF  I  </cell>
    <cell role="Konkordanz">433</cell>
    <cell role="Anmerkungen">802. Domgrabung A 744. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00803</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 12/21a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG(P?)  [ ]F  I  </cell>
    <cell role="Konkordanz">506,8</cell>
    <cell role="Anmerkungen">803. Domgrabung A 746. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00804</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b/17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  OF  II  </cell>
    <cell role="Konkordanz">512,1</cell>
    <cell role="Anmerkungen">804. Domgrabung A 794. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00805</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9b/17b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  OF [ ]  </cell>
    <cell role="Konkordanz">392,1</cell>
    <cell role="Anmerkungen">805. Domgrabung A 795. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00806</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] O  FI  </cell>
    <cell role="Konkordanz">622,2</cell>
    <cell role="Anmerkungen">806. Domgrabung A 806. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00807</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] O  FI  </cell>
    <cell role="Konkordanz">612,1</cell>
    <cell role="Anmerkungen">807. Domgrabung A 805. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00808</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] O  FI  </cell>
    <cell role="Konkordanz">627,1</cell>
    <cell role="Anmerkungen">808. Domgrabung A 807. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00809</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] OF I[ ]  </cell>
    <cell role="Konkordanz">111,1</cell>
    <cell role="Anmerkungen">809. Domgrabung A 808. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00810</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 15b/23b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]ECVND[ ]  </cell>
    <cell role="Konkordanz">134</cell>
    <cell role="Anmerkungen">810. Domgrabung A 818. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00811</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> R•PRIMA   </cell>
    <cell role="Konkordanz">628,1</cell>
    <cell role="Anmerkungen">811. Domgrabung A 819. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00812</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RùPRIMA   </cell>
    <cell role="Konkordanz">238,2</cell>
    <cell role="Anmerkungen">812. Domgrabung A 820. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00813</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]PRIMA   </cell>
    <cell role="Konkordanz">621,6</cell>
    <cell role="Anmerkungen">813. Domgrabung A 821. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00814</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]PRIM[ ]  </cell>
    <cell role="Konkordanz">335,1</cell>
    <cell role="Anmerkungen">814. Domgrabung A 822. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00815</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RSECVNDA  </cell>
    <cell role="Konkordanz">127</cell>
    <cell role="Anmerkungen">815. Domgrabung A 823. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00816</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen"> [ ]ECVNDA   </cell>
    <cell role="Konkordanz">616,3</cell>
    <cell role="Anmerkungen">816. Domgrabung A 825. Zur Hälfte weggebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00817</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen"> [ ]ECVNDA   </cell>
    <cell role="Konkordanz">149</cell>
    <cell role="Anmerkungen">817. Domgrabung A 824. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00818</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17b/24b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RùTERTIA  </cell>
    <cell role="Konkordanz">507,5</cell>
    <cell role="Anmerkungen">818. Domgrabung A 828. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00819</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 7b/12b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SMAQP[ ]  </cell>
    <cell role="Konkordanz">591,17</cell>
    <cell role="Anmerkungen">819. Domgrabung A 842. Fast Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00820</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 9b/12b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SMAQS  </cell>
    <cell role="Konkordanz">627,4</cell>
    <cell role="Anmerkungen">820. Domgrabung A 853. Prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00821</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 16b/18a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">618,1</cell>
    <cell role="Anmerkungen">821. Domgrabung A 796. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00822</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON    </cell>
    <cell role="Konkordanz">556</cell>
    <cell role="Anmerkungen">822. Domgrabung A 798. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00823</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON    </cell>
    <cell role="Konkordanz">257</cell>
    <cell role="Anmerkungen">823. Domgrabung A 799. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00824</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON    </cell>
    <cell role="Konkordanz">246,1</cell>
    <cell role="Anmerkungen">824. Domgrabung A 800. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00825</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">125</cell>
    <cell role="Anmerkungen">825. Domgrabung A 801. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00826</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">99</cell>
    <cell role="Anmerkungen">826. Domgrabung A 802. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00827</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24b/28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² RP   </cell>
    <cell role="Konkordanz">612,2</cell>
    <cell role="Anmerkungen">827. Domgrabung A 831. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00828</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24b/28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² RP   </cell>
    <cell role="Konkordanz">259,1</cell>
    <cell role="Anmerkungen">828. Domgrabung A 832. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00829</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 23b/27a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² R[ ]   </cell>
    <cell role="Konkordanz">126,1</cell>
    <cell role="Anmerkungen">829. Domgrabung A 830. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00830</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24b/28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM² R[ ]   </cell>
    <cell role="Konkordanz">623</cell>
    <cell role="Anmerkungen">830. Domgrabung A 833. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00831</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 5c/47a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">499,1</cell>
    <cell role="Anmerkungen">831. Domgrabung A 702. Rs.: Kaiser mit nach hinten wehendem Mantel. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00832</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Arl?</cell>
    <cell role="Referenzwerk">RIC 9b/ 17b/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]ON[ ]?  </cell>
    <cell role="Konkordanz">494</cell>
    <cell role="Anmerkungen">832. Domgrabung A 804. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00833</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">The</cell>
    <cell role="Referenzwerk">RIC 18b/ 27b/32</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TES(â?)   </cell>
    <cell role="Konkordanz">505,1</cell>
    <cell role="Anmerkungen">833. Domgrabung A 868. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00834</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">136</cell>
    <cell role="Anmerkungen">834. Domgrabung A 882. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00835</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">137</cell>
    <cell role="Anmerkungen">835. Domgrabung A 881. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00836</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">40</cell>
    <cell role="Anmerkungen">836. Domgrabung A 883. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00837</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">10,1</cell>
    <cell role="Anmerkungen">837. Domgrabung A 884. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00838</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">45,2</cell>
    <cell role="Anmerkungen">838. Domgrabung A 898. Vs.: [ ]LEN-[  ]? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00839</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">96</cell>
    <cell role="Anmerkungen">839. Domgrabung A 896. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00840</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">654</cell>
    <cell role="Anmerkungen">840. Domgrabung A 893. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00841</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">619,2</cell>
    <cell role="Anmerkungen">841. Domgrabung A 894. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00842</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">628,3</cell>
    <cell role="Anmerkungen">842. Domgrabung A 897. Am Rande ausgebrochen. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00843</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">123,3</cell>
    <cell role="Anmerkungen">843. Domgrabung A 895. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00844</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">312,1</cell>
    <cell role="Anmerkungen">844. Domgrabung A 889. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00845</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">410,1</cell>
    <cell role="Anmerkungen">845. Domgrabung A 891. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00846</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">497</cell>
    <cell role="Anmerkungen">846. Domgrabung A 890. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00847</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">519</cell>
    <cell role="Anmerkungen">847. Domgrabung A 892. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00848</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">506,9</cell>
    <cell role="Anmerkungen">848. Domgrabung A 906. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00849</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valens?</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,5</cell>
    <cell role="Anmerkungen">849. Domgrabung A 899. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00850</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">RIC 12/21?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (LVG?)[ ] [ ]  I  </cell>
    <cell role="Konkordanz">422,2</cell>
    <cell role="Anmerkungen">850. Domgrabung A 749. Vs.: DNVALEN[   ]. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00851</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] OF  I  </cell>
    <cell role="Konkordanz">311,3</cell>
    <cell role="Anmerkungen">851. Domgrabung A 809. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00852</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 16</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]O[ ] [  ]  II/ù </cell>
    <cell role="Konkordanz">528,4</cell>
    <cell role="Anmerkungen">852. Domgrabung A 781. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00853</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 17/19a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON    </cell>
    <cell role="Konkordanz">132,1</cell>
    <cell role="Anmerkungen">853. Domgrabung A 797. Vs.: DNVA[  ]. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00854</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">509</cell>
    <cell role="Anmerkungen">854. Domgrabung A 886. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00855</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS  O  FII  </cell>
    <cell role="Konkordanz">613,2</cell>
    <cell role="Anmerkungen">855. Domgrabung A 712. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00856</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ] O  FII  </cell>
    <cell role="Konkordanz">619,1</cell>
    <cell role="Anmerkungen">856. Domgrabung A 714. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00857</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ] O  FII  </cell>
    <cell role="Konkordanz">124,2</cell>
    <cell role="Anmerkungen">857. Domgrabung A 713. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00858</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] O  FII  </cell>
    <cell role="Konkordanz">493</cell>
    <cell role="Anmerkungen">858. Domgrabung A 715. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00859</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 20c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">123,2</cell>
    <cell role="Anmerkungen">859. Domgrabung A 716. Vs.: DNGRATIAN-VSAVGGAVG. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00860</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGPR  OF  I  </cell>
    <cell role="Konkordanz">528,2</cell>
    <cell role="Anmerkungen">860. Domgrabung A 729. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00861</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP[ ]  OF  I   </cell>
    <cell role="Konkordanz">548</cell>
    <cell role="Anmerkungen">861. Domgrabung A 730. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00862</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP  OF I/¶   </cell>
    <cell role="Konkordanz">506,12</cell>
    <cell role="Anmerkungen">862. Domgrabung A 732. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00863</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP  OF I/¶   </cell>
    <cell role="Konkordanz">506,18</cell>
    <cell role="Anmerkungen">863. Domgrabung A 731. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00864</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG(P?) OF/S I  </cell>
    <cell role="Konkordanz">121,6</cell>
    <cell role="Anmerkungen">864. Domgrabung A 733. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00865</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCONù    </cell>
    <cell role="Konkordanz">129,1</cell>
    <cell role="Anmerkungen">865. Domgrabung A 761. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00866</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON  N      </cell>
    <cell role="Konkordanz">621,1</cell>
    <cell role="Anmerkungen">866. Domgrabung A 762. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00867</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON[ ] OF  I  </cell>
    <cell role="Konkordanz">237,1</cell>
    <cell role="Anmerkungen">867. Domgrabung A 763. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00868</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> CON  OF  I  </cell>
    <cell role="Konkordanz">209</cell>
    <cell role="Anmerkungen">868. Domgrabung A 764. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00869</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] OF I[ ]  </cell>
    <cell role="Konkordanz">142</cell>
    <cell role="Anmerkungen">869. Domgrabung A 767. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00870</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] OF  III  </cell>
    <cell role="Konkordanz">124,1</cell>
    <cell role="Anmerkungen">870. Domgrabung A 766. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00871</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] OF II(I)  </cell>
    <cell role="Konkordanz">311,4</cell>
    <cell role="Anmerkungen">871. Domgrabung A 765. Abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00872</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">367</cell>
    <cell role="Anmerkungen">872. Domgrabung A 769. Korrodiert, prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00873</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">506,11</cell>
    <cell role="Anmerkungen">873. Domgrabung A 768. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00874</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">507,4</cell>
    <cell role="Anmerkungen">874. Domgrabung A 771. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00875</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">507,8</cell>
    <cell role="Anmerkungen">875. Domgrabung A 775. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00876</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">545</cell>
    <cell role="Anmerkungen">876. Domgrabung A 774. Fast prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00877</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">521,4</cell>
    <cell role="Anmerkungen">877. Domgrabung A 772. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00878</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">634,8</cell>
    <cell role="Anmerkungen">878. Domgrabung A 773. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00879</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">628,2</cell>
    <cell role="Anmerkungen">879. Domgrabung A 770. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00880</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON   </cell>
    <cell role="Konkordanz">RLMT ST 8433</cell>
    <cell role="Anmerkungen">880. FO: Domplatz. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00881</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TC[  ]    </cell>
    <cell role="Konkordanz">614</cell>
    <cell role="Anmerkungen">881. Domgrabung A 776. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00882</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 15</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">515,2</cell>
    <cell role="Anmerkungen">882. Domgrabung A 777. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00883</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 24c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]PRIMA   </cell>
    <cell role="Konkordanz">634,2</cell>
    <cell role="Anmerkungen">883. Domgrabung A 815. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00884</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 12c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> •SMAQ[ ]   </cell>
    <cell role="Konkordanz">591,22</cell>
    <cell role="Anmerkungen">884. Domgrabung A 849. Fast prägefrisch. Verbogen und ausgebrochen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00885</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 11c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMAQ(P?)  </cell>
    <cell role="Konkordanz">246,2</cell>
    <cell role="Anmerkungen">885. Domgrabung A 843. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00886</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 14c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> ÉSISC¡  F R/·   </cell>
    <cell role="Konkordanz">578,2</cell>
    <cell role="Anmerkungen">886. Domgrabung A 858. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00887</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 14c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> âSISC   M */F  </cell>
    <cell role="Konkordanz">466</cell>
    <cell role="Anmerkungen">887. Domgrabung A 857. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00888</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 14c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SISC¡  F R/¦   </cell>
    <cell role="Konkordanz">506,4</cell>
    <cell role="Anmerkungen">888. Domgrabung A 859. Prägefrisch. Mit 506.05 zusammenklebend. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00889</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">375/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 20a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CO[ ]   </cell>
    <cell role="Konkordanz">527,1</cell>
    <cell role="Anmerkungen">889. Domgrabung A 927. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00890</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Lug?</cell>
    <cell role="Referenzwerk">RIC 21b?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  OF?  [ ] </cell>
    <cell role="Konkordanz">124,3</cell>
    <cell role="Anmerkungen">890. Domgrabung A 750. Vs.: [ ]RATIAN-[  ]. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00891</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 14c/21b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]SISC[ ]   </cell>
    <cell role="Konkordanz">242,2</cell>
    <cell role="Anmerkungen">891. Domgrabung A 867. Vs.: [  ]NVSPFAVG. Stark korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00892</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">GLORIA ROMANORVM (6-8)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">505,3</cell>
    <cell role="Anmerkungen">892. Domgrabung A 880. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00893</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 68a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">465,1</cell>
    <cell role="Anmerkungen">893. Domgrabung A 911. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00894</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG(S)     S  </cell>
    <cell role="Konkordanz">1=(RLMT 2956)</cell>
    <cell role="Anmerkungen">894. Domgrabung A 919. Wenig abgegriffen? Verbogen, in zwei Teile zerbrochen. Inv. RLMT: Die wichtige Münze Gratians, welche im Mauer des Doms zu Trier gefunden wurde, vgl. Wilmowsky, Der Dom zu Trier. St. Beissel, Geschichte der Trierer Kirchen, ihrer Reliquien und Kunstschätze. I. Theil: Gründungsgeschichte. Trier 1887, 90-131 - F. Hettner, KorrBlWdZ 18, 1899, Sp. 151 Nr. 84 sowie 19, 1900, 409 u. 411. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00895</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ]       S   </cell>
    <cell role="Konkordanz">642</cell>
    <cell role="Anmerkungen">895. Domgrabung A 920. Schwach ausgeprägt. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00896</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 30a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">75</cell>
    <cell role="Anmerkungen">896. Domgrabung A 925. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00897</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratian</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Are</cell>
    <cell role="Referenzwerk">RIC 24</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON   </cell>
    <cell role="Konkordanz">RLMT 07,790b</cell>
    <cell role="Anmerkungen">897. Domgrabung A 928. 1906 im Kohlenkeller zwischen Dom und Liebfrauen in Schickt b) der Römerstraße. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00898</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10/20/22b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [   ] O  FII  </cell>
    <cell role="Konkordanz">478,2</cell>
    <cell role="Anmerkungen">898. Domgrabung A 748. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00899</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,37</cell>
    <cell role="Anmerkungen">899. Domgrabung A 887. Vs.: [     ]NVSPFAVG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00900</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/375</cell>
    <cell role="Praegestaette">Sis</cell>
    <cell role="Referenzwerk">RIC 14</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  Q? */K  </cell>
    <cell role="Konkordanz">418,3</cell>
    <cell role="Anmerkungen">900. Domgrabung A 856. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00901</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10/20</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (LVG?)[ ] O FI[ ]  </cell>
    <cell role="Konkordanz">417</cell>
    <cell role="Anmerkungen">901. Domgrabung A 741. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00902</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10/20</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]G[ ] O  FII  </cell>
    <cell role="Konkordanz">622,6</cell>
    <cell role="Anmerkungen">902. Domgrabung A 742. Kaum abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00903</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 10/20</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  O  F[ ] </cell>
    <cell role="Konkordanz">617,1</cell>
    <cell role="Anmerkungen">903. Domgrabung A 743. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00904</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom</cell>
    <cell role="Referenzwerk">RIC 17/24</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> RùPRIMA   </cell>
    <cell role="Konkordanz">10</cell>
    <cell role="Anmerkungen">904. Domgrabung A 829. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00905</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">Rom?</cell>
    <cell role="Referenzwerk">RIC (Rom) 17/24?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]ERTIA?  </cell>
    <cell role="Konkordanz">124,5</cell>
    <cell role="Anmerkungen">905. Domgrabung A 834. Vs.: Kopf n.r. m. Diadem.  Rs.: Victoria n.l.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00906</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valens/Gratian</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/375</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">335,3</cell>
    <cell role="Anmerkungen">906. Domgrabung A 878. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00907</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 68b var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">19</cell>
    <cell role="Anmerkungen">907. Domgrabung A 912. Vs.: DNVALENTINIANVSIVN(AVG?)  Sicher nicht .PFAVG. Vgl. Ú116. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00908</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 71b var.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">116</cell>
    <cell role="Anmerkungen">908. Domgrabung A 914. Vs.: DNVALENTINIANVSIVN(AVG?)  Sicher nicht .PFAVG. Vgl. Ú19. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00909</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 29a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS    </cell>
    <cell role="Konkordanz">248,6</cell>
    <cell role="Anmerkungen">909. Domgrabung A 921. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00910</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Are</cell>
    <cell role="Referenzwerk">RIC 20</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CON   </cell>
    <cell role="Konkordanz">ST 8433d</cell>
    <cell role="Anmerkungen">910. FO: Domplatz. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00911</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VIRTVS ROMANORVM</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">238,3</cell>
    <cell role="Anmerkungen">911. Domgrabung A 934. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00912</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">CONCORDIA AVGGG Roma</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">526,1</cell>
    <cell role="Anmerkungen">912. Domgrabung A 933. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00913</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">591,15</cell>
    <cell role="Anmerkungen">913. Domgrabung A 956. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00914</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ]    </cell>
    <cell role="Konkordanz">586</cell>
    <cell role="Anmerkungen">914. Domgrabung A 957. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00915</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVG[ ]    </cell>
    <cell role="Konkordanz">283,2</cell>
    <cell role="Anmerkungen">915. Domgrabung A 958. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00916</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">13,1</cell>
    <cell role="Anmerkungen">916. Domgrabung A 959. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00917</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Aqu</cell>
    <cell role="Referenzwerk">RIC 58a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> AQS    </cell>
    <cell role="Konkordanz">110,7</cell>
    <cell role="Anmerkungen">917. Domgrabung A 972. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00918</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,29</cell>
    <cell role="Anmerkungen">918. Domgrabung A 976. Vs.: durchgehende Legende?. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00919</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">104,3</cell>
    <cell role="Anmerkungen">919. Domgrabung A 975. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00920</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGGG (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">112,2</cell>
    <cell role="Anmerkungen">920. Domgrabung A 978. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00921</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGGG (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">252,6</cell>
    <cell role="Anmerkungen">921. Domgrabung A 977. Vs.: VALENTINI-ANVSPFAVG  Rs.: VICTOR-IAAVGGG. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00922</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGGG (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">185</cell>
    <cell role="Anmerkungen">922. Domgrabung A 979. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00923</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.?</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">375/378?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">628,5</cell>
    <cell role="Anmerkungen">923. Domgrabung A 879. Vs.: kleiner Kopf, durchgehende Legende. Sehr knapper Schrötling. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00924</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.?</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">559</cell>
    <cell role="Anmerkungen">924. Domgrabung A 981. Vs.: [    ]INI-[    ]?. Schwach ausgeprägt. Prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00925</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian II.?</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (1)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">505,4</cell>
    <cell role="Anmerkungen">925. Domgrabung A 980. Unregelmäßig ausgeprägt, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00926</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinian I./Valentinian II.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SECVRITAS REIPVBLICAE</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,19</cell>
    <cell role="Anmerkungen">926. Domgrabung A 888. Kleiner Kopf, eher Valentinianus II. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00927</cell>
    <cell role="Original">0</cell>
    <cell role="Kaiser">Valentinian I./Valentinian II.</cell>
    <cell role="Nominal">Mz</cell>
    <cell role="Datierung">364/393</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">2</cell>
    <cell role="Anmerkungen">927 Domgrabung -. Verschollen. „Eine Münze des Valentinians II.“: J. Wiegand, Vortrag über den Dom zu Trier (Niederschrift eines beim Trierer Philiologentag von 1921 gehaltenen Vortrags. Im Besitz des BDDM); „Eine Münze Valentinians I.“: N. Irsch, Der Dom zu Trier. (= Kunstdenkmäler der Rheinprovinz 13,1). Düsseldorf 1931 68. Zusammenfassend: W. Weber, , Der »Quadratbau« des Trierer Domes und sein polygonaler Einbau – eine »Herrenmemoria«? In: E. Aretz u.a., Der Heilige Rock zu Trier. Studien zur Geschichte und Verehrung der Tunika Christi. Trier 1995, 917 </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00928</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Gloria Romanorum-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">500</cell>
    <cell role="Anmerkungen">928. Domgrabung A 885. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00929</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Gloria Romanorum-Typ?)</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">364/378?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">528,5</cell>
    <cell role="Anmerkungen">929. Domgrabung A 907. Vs.: großer Kopf n.r. Rs.: steh. Kaiser m. Labarum?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00930</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Lug/Arl</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">frag.   </cell>
    <cell role="Sonderzeichen"> [   ] OF [ ]</cell>
    <cell role="Konkordanz">121,4</cell>
    <cell role="Anmerkungen">930. Domgrabung A 810. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00931</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 9/17/19</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,5</cell>
    <cell role="Anmerkungen">931. Domgrabung A 803. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00932</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Aqu?</cell>
    <cell role="Referenzwerk">RIC 9/12/18</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMA[ ]? [    ]  </cell>
    <cell role="Konkordanz">638</cell>
    <cell role="Anmerkungen">932. Domgrabung A 854. Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00933</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">Rom/Aqu?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SM[  ]?  </cell>
    <cell role="Konkordanz">613,1</cell>
    <cell role="Anmerkungen">933. Domgrabung A 855. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00934</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">571</cell>
    <cell role="Anmerkungen">934. Domgrabung A 904. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00935</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">540</cell>
    <cell role="Anmerkungen">935. Domgrabung A 901. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00936</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,8</cell>
    <cell role="Anmerkungen">936. Domgrabung A 900. Am Rande ausgebrochen. Korrodiert, abgegriffen?. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00937</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">183,3</cell>
    <cell role="Anmerkungen">937. Domgrabung A 902. Rs. Victoria n.l. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00938</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">630,2</cell>
    <cell role="Anmerkungen">938. Domgrabung A 903. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00939</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Securitas Reipubliace-Typ?)</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/378?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,4</cell>
    <cell role="Anmerkungen">939. Domgrabung A 905. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00940</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 68c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">274,1</cell>
    <cell role="Anmerkungen">940. Domgrabung A 913. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00941</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 28a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP     S  </cell>
    <cell role="Konkordanz">ST 6727b</cell>
    <cell role="Anmerkungen">941. FO: Domfreihof 8. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00942</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 29b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">332</cell>
    <cell role="Anmerkungen">942. Domgrabung A 923. Prägefrisch. Haftete an Mörtelklumpen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00943</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 29b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">513,1</cell>
    <cell role="Anmerkungen">943. Domgrabung A 922. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00944</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 29b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS    </cell>
    <cell role="Konkordanz">263,2</cell>
    <cell role="Anmerkungen">944. Domgrabung A 924. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00945</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">379/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VIRTVS ROMANORVM   </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT 07,790a</cell>
    <cell role="Anmerkungen">945. Domgrabung A 935. 1906 im Kohlenkeller zwischen Dom und Liebfrauen in Schickt b) der Römerstraße. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00946</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">RIC 98b?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> T[  ]    </cell>
    <cell role="Konkordanz">110,6</cell>
    <cell role="Anmerkungen">946. Domgrabung A 954. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00947</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 30d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">111,4</cell>
    <cell role="Anmerkungen">947. Domgrabung A 963. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00948</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 30d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">111,5</cell>
    <cell role="Anmerkungen">948. Domgrabung A 964. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00949</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 30d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> (T?)CON  </cell>
    <cell role="Konkordanz">206,1</cell>
    <cell role="Anmerkungen">949. Domgrabung A 966. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00950</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 30d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SCON    </cell>
    <cell role="Konkordanz">396</cell>
    <cell role="Anmerkungen">950. Domgrabung A 965. Korrodiert, kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00951</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Rom/Aqu</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">A[  ] bzw. R[  ] º   </cell>
    <cell role="Konkordanz">634,15</cell>
    <cell role="Anmerkungen">951. Domgrabung A 974. Unregelmäßiger Schrötling. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00952</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> º       </cell>
    <cell role="Konkordanz">554,1</cell>
    <cell role="Anmerkungen">952. Domgrabung A 983. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00953</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> º       </cell>
    <cell role="Konkordanz">16</cell>
    <cell role="Anmerkungen">953. Domgrabung A 982. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00954</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,32</cell>
    <cell role="Anmerkungen">954. Domgrabung A 984. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00955</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,33</cell>
    <cell role="Anmerkungen">955. Domgrabung A 986. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00956</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">13,3</cell>
    <cell role="Anmerkungen">956. Domgrabung A 985. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00957</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosius I.</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">13,2</cell>
    <cell role="Anmerkungen">957. Domgrabung A 987. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00958</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]VG[ ]  </cell>
    <cell role="Konkordanz">252,8</cell>
    <cell role="Anmerkungen">958. Domgrabung A 961. Vs.: [  ](AD)IVSPFAVG. Durchgehende Legende. Abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00959</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/392</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 44d</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGP    </cell>
    <cell role="Konkordanz">400,2</cell>
    <cell role="Anmerkungen">959. Domgrabung A 960. Kaum abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00960</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 98c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[ ]bzw.TR  </cell>
    <cell role="Konkordanz">110,5</cell>
    <cell role="Anmerkungen">960. Domgrabung A 944. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00961</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 98c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]R    </cell>
    <cell role="Konkordanz">120</cell>
    <cell role="Anmerkungen">961. Domgrabung A 945. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00962</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 98c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">259,2</cell>
    <cell role="Anmerkungen">962. Domgrabung A 943. Rs.: VICTORI-AAVGGG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00963</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX) 97c/98c/107b; (X) 1299</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR    </cell>
    <cell role="Konkordanz">170,2</cell>
    <cell role="Anmerkungen">963. Domgrabung A 946. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00964</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX)98c/107b; (X) 1299</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR    </cell>
    <cell role="Konkordanz">206,2</cell>
    <cell role="Anmerkungen">964. Domgrabung A 947. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00965</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (X)1299</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR    </cell>
    <cell role="Konkordanz">256</cell>
    <cell role="Anmerkungen">965. Domgrabung A 948. Rs.: Doppelschlag? Ziemlich sicher nur AVGG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00966</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30e; (X) 1306</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">619,3</cell>
    <cell role="Anmerkungen">966. Domgrabung A 968. Korrodiert, prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00967</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30e; (X) 1306</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">234</cell>
    <cell role="Anmerkungen">967. Domgrabung A 967. Rs.: [  ]AVGGG. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00968</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGGG (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">[ ]O[ ]?  </cell>
    <cell role="Konkordanz">505,2</cell>
    <cell role="Anmerkungen">968. Domgrabung A 988. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00969</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">544</cell>
    <cell role="Anmerkungen">969. Domgrabung A 990. Vs.: durchgehende Legende. Leicht verbogen. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00970</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">553</cell>
    <cell role="Anmerkungen">970. Domgrabung A 989. Vs.: [    ]DI-VSPFAVG. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00971</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">277</cell>
    <cell role="Anmerkungen">971. Domgrabung A 992. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00972</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">308,3</cell>
    <cell role="Anmerkungen">972. Domgrabung A 991. Vs.: [ ]CADI-[ ]. Abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00973</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">Aqu?</cell>
    <cell role="Referenzwerk">RIC (IX) 58c; (X )1237?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> AQ[ ]?    </cell>
    <cell role="Konkordanz">384,2</cell>
    <cell role="Anmerkungen">973. Domgrabung A 973. Vs.: DNARC[   ]?. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00974</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">591,28</cell>
    <cell role="Anmerkungen">974. Domgrabung A 996. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00975</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]P? º       </cell>
    <cell role="Konkordanz">574</cell>
    <cell role="Anmerkungen">975. Domgrabung A 993. Korrodiert, abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00976</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">84</cell>
    <cell role="Anmerkungen">976. Domgrabung A 994. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00977</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SALVS REIPVBLICAE (2)</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">245,1</cell>
    <cell role="Anmerkungen">977. Domgrabung A 995. Vs.: DN(A?)[  ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00978</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Arcadius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">364,1</cell>
    <cell role="Anmerkungen">978. Domgrabung A 997. Vs.: Büste m. Diadem n.r. [  ]CADIV[   ]? Durchgehende Legende. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00979</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 85</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTRP  </cell>
    <cell role="Konkordanz">560</cell>
    <cell role="Anmerkungen">979. Domgrabung A 915. Schwach ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00980</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 85</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]TRP    </cell>
    <cell role="Konkordanz">263,1</cell>
    <cell role="Anmerkungen">980. Domgrabung A 916. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00981</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 86</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">155</cell>
    <cell role="Anmerkungen">981. Domgrabung A 917. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00982</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Lug</cell>
    <cell role="Referenzwerk">RIC 32</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> LVGS    </cell>
    <cell role="Konkordanz">77,1</cell>
    <cell role="Anmerkungen">982. Domgrabung A 926. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00983</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 29a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CON    </cell>
    <cell role="Konkordanz">107</cell>
    <cell role="Anmerkungen">983. Domgrabung A 931. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00984</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 26a</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TCON    </cell>
    <cell role="Konkordanz">233</cell>
    <cell role="Anmerkungen">984. Domgrabung A 929. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00985</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC 26b</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CON    </cell>
    <cell role="Konkordanz">462</cell>
    <cell role="Anmerkungen">985. Domgrabung A 930. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00986</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">REPARATIO REIPVB</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,1</cell>
    <cell role="Anmerkungen">986. Domgrabung A 938. Schwach ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00987</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">REPARATIO REIPVB</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">495,2</cell>
    <cell role="Anmerkungen">987. Domgrabung A 937. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00988</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES ROMANORVM</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">604</cell>
    <cell role="Anmerkungen">988. Domgrabung A 939. Kaum abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00989</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Flavius Victor</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">387/388</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 87c</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> SMTR    </cell>
    <cell role="Konkordanz">522</cell>
    <cell role="Anmerkungen">989. Domgrabung A 918. Vs.: [   ]-TORPFAVG. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00990</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus/Flavius Victor</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">387/388</cell>
    <cell role="Praegestaette">Aqu?</cell>
    <cell role="Referenzwerk">RIC 55?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]AQ[ ]?  </cell>
    <cell role="Konkordanz">198,3</cell>
    <cell role="Anmerkungen">990. Domgrabung A 932. Vs.: unkenntlich. Rs.: Lagertor. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00991</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus/Flavius Victor</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES ROMANORVM</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">647</cell>
    <cell role="Anmerkungen">991. Domgrabung A 940. Eher schwach ausgeprägt als abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00992</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Magnus Maximus/Flavius Victor</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">383/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">SPES ROMANORVM</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">635,6</cell>
    <cell role="Anmerkungen">992. Domgrabung A 941. Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00993</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Honorius</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">395/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1) </cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">541,3</cell>
    <cell role="Anmerkungen">993. Domgrabung A 998. Vs.: DNHONORI-[    ]. Getrennte Legende. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00994</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">541,2</cell>
    <cell role="Anmerkungen">994. Domgrabung A 1036. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00995</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">591,36</cell>
    <cell role="Anmerkungen">995. Domgrabung A 1035. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00996</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º        </cell>
    <cell role="Konkordanz">551</cell>
    <cell role="Anmerkungen">996. Domgrabung A 1032. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00997</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">247,2</cell>
    <cell role="Anmerkungen">997. Domgrabung A 1031. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00998</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º       </cell>
    <cell role="Konkordanz">369,3</cell>
    <cell role="Anmerkungen">998. Domgrabung A 1033. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-00999</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º        </cell>
    <cell role="Konkordanz">487,2</cell>
    <cell role="Anmerkungen">999. Domgrabung A 1034. Vs.: [    ]-VSPFAVG. . Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01000</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  º        </cell>
    <cell role="Konkordanz">451</cell>
    <cell role="Anmerkungen">1000. Domgrabung A 1039. Rs.: Victoria n.l. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01001</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">426</cell>
    <cell role="Anmerkungen">1001. Domgrabung A 1037. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01002</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">160</cell>
    <cell role="Anmerkungen">1002. Domgrabung A 1038. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01003</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 97</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRS   </cell>
    <cell role="Konkordanz">RLMT 07,784a</cell>
    <cell role="Anmerkungen">1003. Domgrabung A 949. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01004</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX) 97/108; (X) 1299-1301</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR    </cell>
    <cell role="Konkordanz">589,7</cell>
    <cell role="Anmerkungen">1004. Domgrabung A 950. Korrodiert </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01005</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX) 97/108; (X) 1299-1301</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR    </cell>
    <cell role="Konkordanz">252,4</cell>
    <cell role="Anmerkungen">1005. Domgrabung A 951. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01006</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX) 97/108; (X) 1299-1301</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR[  ]    </cell>
    <cell role="Konkordanz">507,16</cell>
    <cell role="Anmerkungen">1006. Domgrabung A 952. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01007</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC (IX) 97/108; (X) 1299-1301</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> T[  ]    </cell>
    <cell role="Konkordanz">541,4</cell>
    <cell role="Anmerkungen">1007. Domgrabung A 953. Schwach ausgeprägt. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01008</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Tre?</cell>
    <cell role="Referenzwerk">wie RIC (IX) 97/108; (X) 1299-1301</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TR?    </cell>
    <cell role="Konkordanz">394</cell>
    <cell role="Anmerkungen">1008. Domgrabung A 955. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01009</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30; (X) 1306-1307</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> PCON    </cell>
    <cell role="Konkordanz">248,2</cell>
    <cell role="Anmerkungen">1009. Domgrabung A 962. Vs.: DNVALEN[  ]ANVSPFAVG?. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01010</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30; (X) 1306-1307</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]O[  ]  </cell>
    <cell role="Konkordanz">197</cell>
    <cell role="Anmerkungen">1010. Domgrabung A 970. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01011</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30; (X) 1306-1307</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [  ]ON    </cell>
    <cell role="Konkordanz">148</cell>
    <cell role="Anmerkungen">1011. Domgrabung A 969. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01012</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Arl</cell>
    <cell role="Referenzwerk">RIC (IX) 30; (X) 1306-1307</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]CO[ ]  </cell>
    <cell role="Konkordanz">541,1</cell>
    <cell role="Anmerkungen">1012. Domgrabung A 971. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01013</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">542</cell>
    <cell role="Anmerkungen">1013. Domgrabung A 1006. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01014</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT 07,784a</cell>
    <cell role="Anmerkungen">1014. Domgrabung A1000. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01015</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">567,1</cell>
    <cell role="Anmerkungen">1015. Domgrabung A 1010. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01016</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">570,2</cell>
    <cell role="Anmerkungen">1016. Domgrabung A 1015. Prägefrisch? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01017</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">619,5</cell>
    <cell role="Anmerkungen">1017. Domgrabung A 1026. Ovaler Schrötling. Einseitig geprägt? Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01018</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">546</cell>
    <cell role="Anmerkungen">1018. Domgrabung A 1003. Schwach ausgeprägt, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01019</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">268,2</cell>
    <cell role="Anmerkungen">1019. Domgrabung A 1013. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01020</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">272</cell>
    <cell role="Anmerkungen">1020. Domgrabung A 1018. Prägefrisch. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01021</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">278</cell>
    <cell role="Anmerkungen">1021. Domgrabung A 1021. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01022</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">110,4</cell>
    <cell role="Anmerkungen">1022. Domgrabung A 1022. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01023</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">242,1</cell>
    <cell role="Anmerkungen">1023. Domgrabung A 1008. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01024</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">252,2</cell>
    <cell role="Anmerkungen">1024. Domgrabung A 1007. Abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01025</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">252,5</cell>
    <cell role="Anmerkungen">1025. Domgrabung A 1002. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01026</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">252,7</cell>
    <cell role="Anmerkungen">1026. Domgrabung A 1023. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01027</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">208,2</cell>
    <cell role="Anmerkungen">1027. Domgrabung A 1005. Vs.: unkenntlich.  Rs.: Victoria n.l. VIC[   ]. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01028</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">307</cell>
    <cell role="Anmerkungen">1028. Domgrabung A 1011. Vs.: DNARC[  ]? Arcadius?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01029</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">382</cell>
    <cell role="Anmerkungen">1029. Domgrabung A 1017. Stark abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01030</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">397</cell>
    <cell role="Anmerkungen">1030. Domgrabung A 1020. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01031</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">402,2</cell>
    <cell role="Anmerkungen">1031. Domgrabung A 1016. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01032</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">376</cell>
    <cell role="Anmerkungen">1032. Domgrabung A 1025. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01033</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">406,1</cell>
    <cell role="Anmerkungen">1033. Domgrabung A 1027. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01034</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">434,2</cell>
    <cell role="Anmerkungen">1034. Domgrabung A 1019. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01035</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">461,1</cell>
    <cell role="Anmerkungen">1035. Domgrabung A 999. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01036</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">499,2</cell>
    <cell role="Anmerkungen">1036. Domgrabung A 1009. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01037</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">495,1</cell>
    <cell role="Anmerkungen">1037. Domgrabung A 1012. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01038</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">448</cell>
    <cell role="Anmerkungen">1038. Domgrabung A 1014. Vs.: [    ]-VSPF[   ]. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01039</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">459</cell>
    <cell role="Anmerkungen">1039. Domgrabung A 1024. Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01040</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,26</cell>
    <cell role="Anmerkungen">1040. Domgrabung A 1004. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01041</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,6</cell>
    <cell role="Anmerkungen">1041. Domgrabung A 1001. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01042</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ?)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">402,3</cell>
    <cell role="Anmerkungen">1042. Domgrabung A 1030. Rs.: Victoria n.l.? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01043</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ?)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">569,2</cell>
    <cell role="Anmerkungen">1043. Domgrabung A 1029. Rs.: Victoria n.l. Schwach ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01044</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Victoria Augg(g)-Typ?)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">105</cell>
    <cell role="Anmerkungen">1044. Domgrabung A 1028. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01045</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">570,1</cell>
    <cell role="Anmerkungen">1045. Domgrabung A 1049. Rs.: Victoria n.l. Ausgebrochen, schlecht ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01046</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">576,2</cell>
    <cell role="Anmerkungen">1046. Domgrabung A 1043. Rs.: Victoria n.l. Schwach ausgeprägt, wohl wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01047</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">587</cell>
    <cell role="Anmerkungen">1047. Domgrabung A 1045. Rs.: Victoria n.l.?. Schwach ausgeprägt. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01048</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">561</cell>
    <cell role="Anmerkungen">1048. Domgrabung A 1042. Rs.: Victoria n.l. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01049</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">110,8</cell>
    <cell role="Anmerkungen">1049. Domgrabung A 1047. Vs.: Büste n.r. m. Diadem.  [ ]AVG. Rs.: Victoria n.l.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01050</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">112,1</cell>
    <cell role="Anmerkungen">1050. Domgrabung A 1041. Vs.: Kopf n.r. m. Diadem. [  ]ADI[  ]? Rs.: Victoria n.l.? Schlecht zentriert. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01051</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">369,2</cell>
    <cell role="Anmerkungen">1051. Domgrabung A 1040. Vs.: Kopf n.r. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01052</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">350</cell>
    <cell role="Anmerkungen">1052. Domgrabung A 1046. Vs.: Büste m. Diadem n.r. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01053</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">461,2</cell>
    <cell role="Anmerkungen">1053. Domgrabung A 1048. Rs.: Victoria? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01054</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">RIC ?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">476</cell>
    <cell role="Anmerkungen">1054. Domgrabung A 1044. Rs.: Victoria n.l. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01055</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt (Vota Typ)</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">378/388</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">Vota</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">578,1</cell>
    <cell role="Anmerkungen">1055. Domgrabung A 936. Vs.: kleiner Kopf n.r. Rs.: Kranz, darin VOT?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01056</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Iovinus</cell>
    <cell role="Nominal">Sil</cell>
    <cell role="Datierung">411/413</cell>
    <cell role="Praegestaette">Tre</cell>
    <cell role="Referenzwerk">RIC 1711; DOC 810, 811</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> TRMS    </cell>
    <cell role="Konkordanz">392,2</cell>
    <cell role="Anmerkungen">1056. Domgrabung A 1056. Vs.: drap. Büste n.r. m. Diadem. DNIOVIN-VSPFAVG. Rs.: Roma  thront n.l. m. Victoriola u. Zepter. VICTOR-IAAVGG. Wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01057</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Gratianus</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">367/378</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Aqu) 11c/ 17b-Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> [ ]MAQ[ ]  </cell>
    <cell role="Konkordanz">520,2</cell>
    <cell role="Anmerkungen">1057. Domgrabung A 910. Vs.: drap. Büste n.r. m. Diadem. DNGRATI-VSPIIVVG. Rs.: Kaiser m. Gefangenem u. Labarum. GLOIIIAI-IIINORVM. Wenig abgegriffen.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01058</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Valentinianus II.</cell>
    <cell role="Nominal">Mai</cell>
    <cell role="Datierung">378/383</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">RIC (Sis) 26b-Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen"> A I     </cell>
    <cell role="Konkordanz">90</cell>
    <cell role="Anmerkungen">1058. Domgrabung A 942. Vs. drap. Büste n.r. m. Diad. DN[]NVšIVNPFAVG. Rs. Kaiser m. kniender Frau u. Victoriola. REPARATIO-[]PVB. Wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01059</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Theodosianische Dynastie</cell>
    <cell role="Nominal">Hce</cell>
    <cell role="Datierung">388/395</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">VICTORIA AVGG(G) (1)-Typ</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">  [ ]OV[ ]  </cell>
    <cell role="Konkordanz">215</cell>
    <cell role="Anmerkungen">1059. Domgrabung A 1055. Vs.: sehr kleine Büste n.r. m. Diad. Legendenreste. Rs.: Victoria n.l. m. Kranz. Legendenreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01060</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Cen</cell>
    <cell role="Datierung">364/383?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,5</cell>
    <cell role="Anmerkungen">1060. Domgrabung A 908. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01061</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Cen?</cell>
    <cell role="Datierung">364/383?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,1</cell>
    <cell role="Anmerkungen">1061. Domgrabung A 909. Vs.: Büste n.r. m. Diadem. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01062</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Hce?</cell>
    <cell role="Datierung">388/403?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">619,6</cell>
    <cell role="Anmerkungen">1062. Domgrabung A 1051. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01063</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Hce?</cell>
    <cell role="Datierung">388/403?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">569,1</cell>
    <cell role="Anmerkungen">1063. Domgrabung A 1054. Rs.: Victoria n.l.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01064</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Hce?</cell>
    <cell role="Datierung">388/403?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">Blei</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">244</cell>
    <cell role="Anmerkungen">1064. Domgrabung A 1053. Undeutliche Darstellungsreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01065</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Hce?</cell>
    <cell role="Datierung">388/403?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">Blei</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">246,3</cell>
    <cell role="Anmerkungen">1065. Domgrabung A 1050. Keine erkennbare Prägung. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01066</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Hce?</cell>
    <cell role="Datierung">388/403?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">528,3</cell>
    <cell role="Anmerkungen">1066. Domgrabung A 1052. Vs.: kleiner Kopf n.r. Rs.: Victoria n.l.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01067</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE2</cell>
    <cell role="Datierung">1./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">592</cell>
    <cell role="Anmerkungen">1067. Domgrabung A 1067. Unkenntlich. As bzw. Maiorina? Zwei parallele Einhiebe, durch einen ein Viertel abgetrennt. Verbogen. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01068</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE2</cell>
    <cell role="Datierung">1./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">386</cell>
    <cell role="Anmerkungen">1068. Domgrabung A 1066. Vs. Kopf n.r. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01069</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE</cell>
    <cell role="Datierung">1./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">421</cell>
    <cell role="Anmerkungen">1069. Domgrabung A 1068. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01070</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">563</cell>
    <cell role="Anmerkungen">1070. Domgrabung A 1103. Vs.: unkenntlich. Rs.: Lagertor?. Vs. erinnert an eine "Aduatuker"-Kleinbronze, jedoch passen Rs. und Schrötling nicht. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01071</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">656</cell>
    <cell role="Anmerkungen">1071. Domgrabung A 1107. Keine erkennbare Prägung. Barbarisierung bzw. Hce, Ende 4. Jh.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01072</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">657</cell>
    <cell role="Anmerkungen">1072. Domgrabung A 1074. Unkenntlich. Korrodiert. Haftet an Mörtelrest. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01073</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">641</cell>
    <cell role="Anmerkungen">1073. Domgrabung A 1093. Vs.: Kopf n.r. (m. Diadem?). Rs.: unkenntliche Darstellung. Legendenreste. Korrodiert. Follis bzw. Halbcentenionalis? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01074</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,72</cell>
    <cell role="Anmerkungen">1074. Domgrabung A 1114. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01075</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,76</cell>
    <cell role="Anmerkungen">1075. Domgrabung A 1104. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01076</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,77</cell>
    <cell role="Anmerkungen">1076. Domgrabung A 1108. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01077</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">637,69</cell>
    <cell role="Anmerkungen">1077. Domgrabung A 1113. Unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01078</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">634,21</cell>
    <cell role="Anmerkungen">1078. Domgrabung A 1128. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01079</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">617,3</cell>
    <cell role="Anmerkungen">1079. Domgrabung A 1088. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01080</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE2</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">halb.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,16</cell>
    <cell role="Anmerkungen">1080. Domgrabung A 1070. Dicker, wohl unbeprägter Schrötling. Korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01081</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,15</cell>
    <cell role="Anmerkungen">1081. Domgrabung A 1118. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01082</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">628,6</cell>
    <cell role="Anmerkungen">1082. Domgrabung A 1078. Vs.: Kopf n.r. m. Strkr.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01083</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">611</cell>
    <cell role="Anmerkungen">1083. Domgrabung A 1098. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01084</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">617,2</cell>
    <cell role="Anmerkungen">1084. Domgrabung A 1121. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01085</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">581</cell>
    <cell role="Anmerkungen">1085. Domgrabung A 1086. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01086</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">610</cell>
    <cell role="Anmerkungen">1086. Domgrabung A 1076. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01087</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">619,4</cell>
    <cell role="Anmerkungen">1087. Domgrabung A 1097. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01088</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,9</cell>
    <cell role="Anmerkungen">1088. Domgrabung A 1102. Unkenntlich. Eckiger Schrötling. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01089</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,11</cell>
    <cell role="Anmerkungen">1089. Domgrabung A 1127. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01090</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,1</cell>
    <cell role="Anmerkungen">1090. Domgrabung A 1091. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01091</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">621,12</cell>
    <cell role="Anmerkungen">1091. Domgrabung A 1124. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01092</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">627,6</cell>
    <cell role="Anmerkungen">1092. Domgrabung A 1112. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01093</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">631,3</cell>
    <cell role="Anmerkungen">1093. Domgrabung A 1079. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01094</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">633</cell>
    <cell role="Anmerkungen">1094. Domgrabung A 1099. Unkenntlich. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01095</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">268,1</cell>
    <cell role="Anmerkungen">1095. Domgrabung A 1109. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01096</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">274,2</cell>
    <cell role="Anmerkungen">1096. Domgrabung A 1075. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01097</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">275,3</cell>
    <cell role="Anmerkungen">1097. Domgrabung A 1129. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01098</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">282,3</cell>
    <cell role="Anmerkungen">1098. Domgrabung A 1069. Vs.: Kopf n.r.? . Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01099</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">265,1</cell>
    <cell role="Anmerkungen">1099. Domgrabung A 1083. Vs.: Kopf (wohl m. Diadem) n.r. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01100</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">265,2</cell>
    <cell role="Anmerkungen">1100. Domgrabung A 1100. Vs. u. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01101</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">227,1</cell>
    <cell role="Anmerkungen">1101. Domgrabung A 1087. Keine erkennbare Prägung. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01102</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">248,4</cell>
    <cell role="Anmerkungen">1102. Domgrabung A 1101. Rs.: Altar? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01103</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">251,1</cell>
    <cell role="Anmerkungen">1103. Domgrabung A 1105. Vs.: (bärtiger?) Kopf n.r. Keine Strkr. sichtbar. Rs.: Altar? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01104</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">210,2</cell>
    <cell role="Anmerkungen">1104. Domgrabung A 1110. Rs.: Victoria n.l.?  [  ]-IA[ ] ? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01105</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">210,3</cell>
    <cell role="Anmerkungen">1105. Domgrabung A 1123. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01106</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">219</cell>
    <cell role="Anmerkungen">1106. Domgrabung A 1116. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01107</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">198,2</cell>
    <cell role="Anmerkungen">1107. Domgrabung A 1082. Vs.: kleiner Kopf ?  Rs.: [  ]AV[  ] ?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01108</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">198,1</cell>
    <cell role="Anmerkungen">1108. Domgrabung A 1089. Unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01109</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">216</cell>
    <cell role="Anmerkungen">1109. Domgrabung A 1080. Vs. bzw. Rs.: [  ]AO[  ] ? Stark korrodiert.  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01110</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">191</cell>
    <cell role="Anmerkungen">1110. Domgrabung A 1125. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01111</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,8</cell>
    <cell role="Anmerkungen">1111. Domgrabung A 1117. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01112</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">83</cell>
    <cell role="Anmerkungen">1112. Domgrabung A 1077. Rs.: Victoria n.l.?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01113</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">132,3</cell>
    <cell role="Anmerkungen">1113. Domgrabung A 1092. Vs.: behelmter Kopf n.l.? Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01114</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">181</cell>
    <cell role="Anmerkungen">1114. Domgrabung A 1085. Keine erkennbare Prägung. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01115</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">378</cell>
    <cell role="Anmerkungen">1115. Domgrabung A 1120. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01116</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">413,2</cell>
    <cell role="Anmerkungen">1116. Domgrabung A 1130. Unkenntliche Darstellungsreste. Stark ausgebrochenes Fragment. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01117</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">379,3</cell>
    <cell role="Anmerkungen">1117. Domgrabung A 1115. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01118</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">379,4</cell>
    <cell role="Anmerkungen">1118. Domgrabung A 1111. Unkenntliche Darstellungsreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01119</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">393</cell>
    <cell role="Anmerkungen">1119. Domgrabung A 1094. Vs.: Büste n.r. m. Diadem? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01120</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">400,1</cell>
    <cell role="Anmerkungen">1120. Domgrabung A 1122. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01121</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">404</cell>
    <cell role="Anmerkungen">1121. Domgrabung A 1119. Vs.: Kopf n.r. m. Strkr.? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01122</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">frag.</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">406,2</cell>
    <cell role="Anmerkungen">1122. Domgrabung A 1126. Vs.: Kopf n.r. Rs.: steh. Gestalt. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01123</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">418,1</cell>
    <cell role="Anmerkungen">1123. Domgrabung A 1072. Vs.: Kopf n.r. m. Diadem? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01124</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">182</cell>
    <cell role="Anmerkungen">1124. Domgrabung A 1106. Vs.: Kopf n.r. m. Diadem? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01125</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">455,2</cell>
    <cell role="Anmerkungen">1125. Domgrabung A 1084. Rs.: Victoria auf Prora? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01126</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">496,1</cell>
    <cell role="Anmerkungen">1126. Domgrabung A 1071. Unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01127</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">508,3</cell>
    <cell role="Anmerkungen">1127. Domgrabung A 1095. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01128</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">514,8</cell>
    <cell role="Anmerkungen">1128. Domgrabung A 1081. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01129</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">518,13</cell>
    <cell role="Anmerkungen">1129. Domgrabung A 1096. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01130</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">520,1</cell>
    <cell role="Anmerkungen">1130. Domgrabung A 1073. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01131</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">529,3</cell>
    <cell role="Anmerkungen">1131. Domgrabung A 1090. Vs.: Kopf n.r. Rs.: Victoria? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01132</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4.Jh.?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">369,5</cell>
    <cell role="Anmerkungen">1132. Domgrabung A 1147. Keine erkennbare Prägung. Rechteckig ausgestanztes Blech. Münze?  </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01133</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Fol/Cen</cell>
    <cell role="Datierung">ca. 335/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">591,18</cell>
    <cell role="Anmerkungen">1133. Domgrabung A 1060. Vs.: Kopf n.r. [     ]NSTAN[     ]? Rs.: unkenntlich. Ausgebrochen. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01134</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Fol/Cen</cell>
    <cell role="Datierung">ca. 335/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">133,2</cell>
    <cell role="Anmerkungen">1134. Domgrabung A 1059. Vs.: Büste n.r.  Rs.: 2 Soldaten bzw. Victorien, dazwischen  Feldzeichen od. Zweig?. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01135</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">Fol/Cen</cell>
    <cell role="Datierung">ca. 335/383</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">250,2</cell>
    <cell role="Anmerkungen">1135. Domgrabung A 1058. Vs.: Kopf n.r. m. (Perlendiadem?). Rs.: Victoria n.l.?. Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01136</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">ca. 335/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">622,13</cell>
    <cell role="Anmerkungen">1136. Domgrabung A 1062. Korrodiert, abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01137</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">ca. 335/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">103,2</cell>
    <cell role="Anmerkungen">1137. Domgrabung A 1061. Vs.: Kopf n.r. m. Diadem. Rs.: unkenntlich. Korrodiert, wenig abgegriffen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01138</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">ca. 335/403</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">132,4</cell>
    <cell role="Anmerkungen">1138. Domgrabung A 1063. Vs.: Kopf n.r. m. Diadem. Rs.: unkenntlich. Reitersturz? Stark korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01139</cell>
    <cell role="Original">0</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE</cell>
    <cell role="Datierung">?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT ST 8537</cell>
    <cell role="Anmerkungen">1139. Verschollen. FO: Domfreihof. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01140</cell>
    <cell role="Original">0</cell>
    <cell role="Kaiser">Unbestimmt</cell>
    <cell role="Nominal">AE</cell>
    <cell role="Datierung">?</cell>
    <cell role="Praegestaette">?</cell>
    <cell role="Referenzwerk">?</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">RLMT ST 8537</cell>
    <cell role="Anmerkungen">1140. Verschollen. FO: Domfreihof. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01141</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Fol/Cen</cell>
    <cell role="Datierung">ca. 335/383</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">516,4</cell>
    <cell role="Anmerkungen">1141. Domgrabung A 1065. Vs.: Kopf n.r. (m. Diadem?). Rs.: Kaiser steht n.r. m. Gefangenem u. Labarum? (GLORIA ROMANORVM [6-8], 364-378?). Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01142</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">280,9</cell>
    <cell role="Anmerkungen">1142. Domgrabung A 1133. Keine erkennbare Darstellungsreste. Unbeprägt? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01143</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">283,1</cell>
    <cell role="Anmerkungen">1143. Domgrabung A 1140. Rs.: Altar? Korrodiert, wenig abgegriffen? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01144</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">304,5</cell>
    <cell role="Anmerkungen">1144. Domgrabung A 1135. Vs.: Kopf n.r. (m. Strkr.?). Rs.: steh. Gestalt m. erhob. l. Arm. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01145</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">305</cell>
    <cell role="Anmerkungen">1145. Domgrabung A 1138. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01146</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">306</cell>
    <cell role="Anmerkungen">1146. Domgrabung A 1137. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01147</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">309,2</cell>
    <cell role="Anmerkungen">1147. Domgrabung A 1134. Keine erkennbare Prägung. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01148</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">100,7</cell>
    <cell role="Anmerkungen">1148. Domgrabung A 1131. Vs.: unkenntlich. Rs.: steh. Gestalt n.l. (Pax m. Zweig od. Spes? bzw. Fußsoldat vom Reitersturz?). Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01149</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">121,11</cell>
    <cell role="Anmerkungen">1149. Domgrabung A 1139. Vs. u. Rs.: unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01150</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">368</cell>
    <cell role="Anmerkungen">1150. Domgrabung A 1142. Vs.: Kopf n.r. m. Strkr.? Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01151</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">355</cell>
    <cell role="Anmerkungen">1151. Domgrabung A 1145. Keine erkennbare Prägung. Korrodiert, verbogen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01152</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">334</cell>
    <cell role="Anmerkungen">1152. Domgrabung A 1146. Unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01153</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">319</cell>
    <cell role="Anmerkungen">1153. Domgrabung A 1132. Dicker Schrötling. Unbeprägt? </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01154</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE4</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">375</cell>
    <cell role="Anmerkungen">1154. Domgrabung A 1141. Keine erkennbare Prägung. Sehr dünner Schrötling, am Rande verbogen. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01155</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">AE3</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">381</cell>
    <cell role="Anmerkungen">1155. Domgrabung A 1136. Unkenntliche Darstellungsreste. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01156</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">415,12</cell>
    <cell role="Anmerkungen">1156. Domgrabung A 1144. Vs. u. Rs. Unkenntlich. Korrodiert. </cell>
</row>


<row>
    <cell role="Muenznummer">FMRD-04-03-02-3006-01-01157</cell>
    <cell role="Original">1</cell>
    <cell role="Kaiser">Barbarisierungen: Nr. 1140.-1157.</cell>
    <cell role="Nominal">Min</cell>
    <cell role="Datierung">2. H. 3./4. Jh.</cell>
    <cell role="Praegestaette">Gall</cell>
    <cell role="Referenzwerk">s. Anm.</cell>
    <cell role="Besonderheiten">nan</cell>
    <cell role="Sonderzeichen">nan</cell>
    <cell role="Konkordanz">454,4</cell>
    <cell role="Anmerkungen">1157. Domgrabung A 1143. Unkenntliche Darstellungsreste. Korrodiert. </cell>
</row>
</table>
In [9]:
#Münzdaten als XML speichern
with open("muenzdaten_XML.xml", "w", encoding="utf-8") as output:
    output.writelines("<table>"+'\n'.join(df.apply(convert_row, axis=1))+"</table>")
In [10]:
#XML bzw. XTriples Configuration mit Münzdaten an XTriples über HTTP Request übermitteln, um RDF zu erhalten
import requests

r = requests.get('https://xtriples.lod.academy/extract.xql?configuration=http://www.digitale-akademie.de/fileadmin/user_upload/fmrd/xtriples.txt&format=rdf')

r.text
Out[10]:
'<rdf:RDF xmlns:nmo="http://nomisma.org/ontology#" xmlns:void="http://rdfs.org/ns/void#" xmlns:orca="http://vocab.deri.ie/orca#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fmrd="https://lod.academy/fmrd/id/" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00001">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Caligula?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38/41?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">594</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1. Domgrabung A 2. Vs.: Kopf n.r. Rs.: unkenntlich. Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00002">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 2.-3. Augustus/Augustus (für Tiberius) (Prägungen von Lugdunum)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7 v./14 n.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 230ff. Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">663</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. Domgrabung A 1. Vs.: Kopf n.r. Rs.: Altar. Schwach ausgeprägt, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00003">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">41/54</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 94/100 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3. Domgrabung A 3. Vs.: barhäupt. Kopf n.r. [    ]VSCAESAAAIMP[    ]. Rs.: Ceres sitzt n.l. CERES[ ]. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00004">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Nero</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">65/67</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC S. 157, Nr. 35</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">652</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4. Domgrabung A 4. Vs.: Kopf n.r. (m. Lbkr.?). Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00005">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Galba</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">68/69</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">339,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5. Domgrabung A 5. Vs.: Kopf n.r. m. Lbkr. Fast völlig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00006">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vespasian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 478</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">186</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6. Domgrabung A 6. Vs.: Büste (m. Globus) n.r. m. Strkr. IMPCAESVESPASIANAVGCO[    ]. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00007">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Domitian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Qd</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81/96</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 436</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">340</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7. Domgrabung A 8. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00008">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Domitian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85/96</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 394?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">154</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8. Domgrabung A 7. Vs.: IMP[  ]GGERMCOS(XV?)CE[    ]. Rs.: [    ]NAAVGVSTI SC. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00009">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Domitian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81/96</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9. Domgrabung A 9. Vs.: Kopf n.r. m. Lbkr. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00010">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trajan</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98/99</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 395</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">458</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10. Domgrabung A 10. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00011">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trajan</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98/102</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 395/434</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">193</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11. Domgrabung A 11. Rs.: TRPOTCOS(IIII?)PPSC. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00012">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trajan</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98/103</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gel.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">624</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12. Domgrabung A 13. Vs.: Kopf n.r. [   ]TRAIANAVGGERM(P?)[   ]. Rs.: völlig abgegriffen. Mittig durchbohrt von Vs., dadurch leicht gewölbt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00013">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trajan</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98/103</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13. Domgrabung A 12. Vs.: Kopf n.r. m. Lbkr. IMP[    ]NERVATRA-IANAVGG[    ]. Rs.:  unkenntlich. Fast völlig abgenutzt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00014">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Trajan?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE2</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98/117?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RPC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14. Domgrabung A 14. Vs.: Kopf n.l. Rs.: unkenntlich. Legendenreste. Messing. Provinzialprägung? Schwach ausgeprägt, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00015">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134/138</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 952c?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">300</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">15. Domgrabung A 15. Rs.: links weibl. Gestalt (Hispania?) n.r. kniend, rechts Hadrianus n.l. stehend. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00016">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134/138</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 793 (a?)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">157</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16. Domgrabung A 16. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00017">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134/138</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 811</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">143</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17. Domgrabung A 17. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00018">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134/138</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 833d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18. Domgrabung A 18. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00019">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134/138</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19. Domgrabung A 19. Vs.: Kopf n.r. m. Lbkr. [     ]VGC[   ]. Rs.: steh. Frau n.l. (m. Zepter?) [    ]C. Korrodiert, stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00020">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hadrian (für Aelius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137/137</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vgl. RIC 1055</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">194</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20. Domgrabung A 20. Rs.: Spes (?) n.l. [     ]S[     ]. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00021">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138/139</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vgl. RIC 520/529/545</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">645</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21. Domgrabung A 21. Vs.: Kopf n.r. m. Lbkr. Rs.: Annona steht n.l. mit Kornähren über Modius und (Füllhorn?), rechts Schiffsvorderteil. TRPOT(X?)[     ]/SC. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00022">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140/144</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 605</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">150</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">22. Domgrabung A 22. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00023">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140/144</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 642a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">547</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23. Domgrabung A 23. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00024">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">148/149</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 855</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">190</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24. Domgrabung A 24. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00025">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">154/155</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 937</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25. Domgrabung A 25. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00026">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136/161</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">26. Domgrabung A 26. Vs.: Kopf n.r. m. Lbkr. ANTONINVSAVG-PIVSP[    ]. Rs.:  Frau sitzt n.l. m. Patera (?) u. Zepter. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00027">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136/161</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">659</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27. Domgrabung A 27. Vs.: Kopf n.r. m. Lbkr. [   ]INVS[    ]. Rs.: steh. männl. Gestalt (Kaiser/Virtus?) n.l. m. Patera (?) u. Zepter. [   ]O[   ]CO[   ]/SC. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00028">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136/161</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 8433 cf. Nr. 103</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28. Vs.: [   ]AVG-PI[   ]. Kopf n.r. m. Lbkr. Rs.: sitz. Gestalt n.l. Domplatz. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00029">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136/161</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Guß</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">576,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29. Domgrabung A 28. Kopf n.r. (m. Lbkr.?). [    ]-PIVSPP[     ]. Rs.: steh. Gestalt n.l. Gußzapfen. Fehlguß, Form nur zu Zweidrittel gefüllt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00030">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Antoninus Pius (Diva Faustina I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">141/161</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 1103Aa</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">30. Domgrabung A 29. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00031">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Aurel</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161/163</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 817/843</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">236</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">31. Domgrabung A 30. Korrodiert, abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00032">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Aurel</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168/171</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 965/1010</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">45</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32. Domgrabung A 31. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00033">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Aurel</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161/180</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">33. Domgrabung A 32. Vs.: [    ]VSAVG-[    ]. Rs.: Modius am Boden links? Im Felde links S? Annona Typ? Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00034">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Aurel (für Faustina II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161/176</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 1635</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">18,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">34. Domgrabung A 33. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00035">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Marc Aurel (für Faustina II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161/176</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 1645/1646</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">35. Domgrabung A 34. Korrodiert, abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00036">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Commodus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">As</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 644</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">29</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36. Domgrabung A 35. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00037">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Commodus (für Crispina)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180/183</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 666</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">289</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37. Domgrabung A 36. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00038">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Geta</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">211</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 173b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">38. Domgrabung A 37. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00039">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Severus Alexander</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">231/235</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 635d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39. Domgrabung A 38. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00040">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valerian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256/257</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 128</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">49</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40. Domgrabung A 43. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00041">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valerian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256/257</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 128</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">56,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">41. Domgrabung A 42. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00042">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Samtherrschaft) (für Saloninus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">259/260</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 105</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">42. Domgrabung A 44. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00043">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 164K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> H  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,35</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">43. Domgrabung A 45. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00044">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 166</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> É  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">484</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">44. Domgrabung A 46. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00045">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 179K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> XI  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">45. Domgrabung A 47. Leicht korrodiert, wenig abgegfriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00046">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 193F</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     ý </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">46. Domgrabung A 48. Wenig abgegriffen. Vgl. Brauweiler 115. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00047">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 193K var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     ý </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">47. Domgrabung A 49. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00048">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 227K (LIBERAL)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  S    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">66</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">48. Domgrabung A 50. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00049">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 230K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> B  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">101</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">49. Domgrabung A 51. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00050">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 232K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     S </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">450</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50. Domgrabung A 52. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00051">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 245K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> N  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51. Domgrabung A 53. Fast prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00052">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 249K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  Z    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52. Domgrabung A 54. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00053">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 249K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  Z    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">352,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">53. Domgrabung A 55. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00054">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 280?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.  </nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     H?</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">380,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">54. Domgrabung A 56. Vs.: GALL[   ]. Rs.: steh. weibl. Gestalt (an Säule?). Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00055">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 287 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     î  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">653</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55. Domgrabung A 57. Vs.: Kopf n.r. m. Strkr. GALLIENVSAVG. Wenig abgegriffen. vgl. Brauweiler 201ff. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00056">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 297?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  Z    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">56. Domgrabung A 58. Vs.: Kopf n.r. m. Strkr. [     ]LLIENVSAV[   ]. Rs.: Victoria n.l. m. Kranz. VICTO-RI[     ]. Schlecht ausgeprägt, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00057">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 330 var. (8K)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> X    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">57. Domgrabung A 59. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00058">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallienus (Alleinherrschaft)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 468</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">58. Domgrabung A 60. Korrodiert wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00059">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14/15K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">294</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">59. Domgrabung A 61. Korrodiert, wenig abgriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00060">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 32/33K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">629,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">60. Domgrabung A 62. Rs.: Felicitas m. Füllhorn. Unregelmäßig ausgeprägt. Wenig abgegriffen? Vgl. Brauweiler 313ff. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00061">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 36F</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    XI </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">61. Domgrabung A 63. Prägefrisch. Schwach ausgeprägt, ausgebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00062">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 45K</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     â </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">62. Domgrabung A 64. Wenig abgegriffen, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00063">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 48</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">63. Domgrabung A 65. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00064">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 55</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     N </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64. Domgrabung A 66. Doppelschlag, Prägungen um ca. 160° versetzt. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00065">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 66F</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">285,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">65. Domgrabung A 67. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00066">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 98F?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">66. Domgrabung A 68. Rs.: Salus(?) steht n.l. m. Patera u. Zepter (füttert Schlange?). [     ]SAVG. Kaum abgegriffen, leicht ausgebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00067">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 104F</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">67. Domgrabung A 69. Wenig abgegriffen, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00068">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 109</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">46</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">68. Domgrabung A 70. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00069">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 193</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">465,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">69. Domgrabung A 71. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00070">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Claudius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC 104ff.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">423</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">70. Domgrabung A 72. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00071">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">53</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71. Domgrabung A 74. Vs.: [   ]MAVRCLQVINTILLVS[   ]  Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00072">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72. Domgrabung A 75. Kaum abgegriffen, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00073">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">73. Domgrabung A 81. Kaum abgegriffen. Schlecht ausgeprägt, ausgebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00074">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">74. Domgrabung A 80. Wenig abgegriffen, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00075">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">75. Domgrabung A 76. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00076">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,38</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">76. Domgrabung A 77. Vs.: sehr kleiner Kopf. Prägefrisch, Vs. schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00077">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">390</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77. Domgrabung A 79. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00078">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">425,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">78. Domgrabung A 84. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00079">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">440</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">79. Domgrabung A 85. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00080">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">483</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80. Domgrabung A 82. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00081">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">454,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81. Domgrabung A 86. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00082">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82. Domgrabung A 83. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00083">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83. Domgrabung A 78. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00084">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,22</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84. Domgrabung A 88. Wenig abgegriffen, zu einem Drittel ausgebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00085">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85. Domgrabung A 93. Prägefrisch. Schlecht ausgeprägt, knapper rissiger Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00086">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">284</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86. Domgrabung A 95. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00087">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87. Domgrabung A 87. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00088">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88. Domgrabung A 90. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00089">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">372,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89. Domgrabung A 89. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00090">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">389,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90. Domgrabung A 91. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00091">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">490,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">91. Domgrabung A 94. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00092">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">92. Domgrabung A 92. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00093">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 277</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">425,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">93. Domgrabung A 96. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00094">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Quintillus (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">296</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">94. Domgrabung A 97. Vs.: Kopf n.r. m. Strkr. [   ]DIO. Rs.: unkenntlich. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00095">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Postumus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DS</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260/268</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 143A</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">552</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">95. Domgrabung A 124. Brandspuren? Vs. schwach ausgeprägt, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00096">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victorinus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268/270</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 732</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96. Domgrabung A 125. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00097">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 761</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">554,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">97. Domgrabung A 127. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00098">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 770/774?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">649</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98. Domgrabung A 128. Rs.: Victoria n.l. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00099">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">232,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">99. Domgrabung A 131. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00100">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100. Domgrabung A 130. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00101">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">508,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">101. Domgrabung A 129. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00102">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 772/776</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">650</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">102. Domgrabung A 132. Wenig abgegriffen. Schlecht ausgeprägt; kleiner, knapper Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00103">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 772/776</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 6727c</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">103. FO: Domfreihof 8. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00104">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 775</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">104. Domgrabung A 133. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00105">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 780</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">297,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105. Domgrabung A 135. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00106">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 780</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">329</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106. Domgrabung A 134. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00107">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 764/767?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">243</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">107. Domgrabung A 136. Rs.: Spes n.l. (SP)[  ](S-P-V)[    ]. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00108">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 787</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">287</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">108. Domgrabung A 138. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00109">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 787</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">56,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109. Domgrabung A 137. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00110">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 787</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">226</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110. Domgrabung A 139. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00111">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 789/790</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111. Domgrabung A 140. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00112">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,23</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112. Domgrabung A 141. Rs.: unkenntlich. Kaum abgegriffen. Gußzapfen am Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00113">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">113. Domgrabung A 142. Rs.: steh. Gestalt. n.l. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00114">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spes Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">224</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114. Domgrabung A 143. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00115">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 769</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115. Domgrabung A 182. Prägefrisch. Rs.: flaue Prägung. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00116">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 769</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">116. Domgrabung A 183. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00117">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 791</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">117. Domgrabung A 184. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00118">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetricus I. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272/274</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">118. Domgrabung A 185. Vs.: Kopf m. Strkr. Rs.: steh. weibl. Gestalt  n.l. Korrodiert, wenig abgegriffen. Knapper Schrötling, eher nicht barbarisiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00119">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">       C   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">249</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">119. Domgrabung A 73. Vs.: Kopf des Claudius II (?) n.r. m. Strkr. Rs.: Gestalt n.r. m. Zepter/Lanze. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00120">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">644,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120. Domgrabung A 102. Vs.: Kopf n.r.m.Strkr. Rs.: Altar. [    ]ATIO. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00121">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">609</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121. Domgrabung A 106. Rs.: Altar. Korrodiert. Dünner Schrötling, wohl barbarisiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00122">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">122. Domgrabung A 116. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Korrodiert. Eher schlecht ausgeprägt als abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00123">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,43</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">123. Domgrabung A 110. Vs.: Kopf m. Strkr.? Rs.: Altar. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00124">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,31</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124. Domgrabung A 107. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00125">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">599,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125. Domgrabung A 108. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Legendenreste. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00126">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,56</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">126. Domgrabung A 98. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Pseudolegende. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00127">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,28</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">127. Domgrabung A 101. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. [    ]EC[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00128">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,57</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128. Domgrabung A 100. Vs.: Büste n.r. m. Strkr. Pseudolegende. Rs.: Altar. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00129">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">266</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">129. Domgrabung A 105. Vs.: unkenntlich. Rs.: Altar. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00130">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130. Domgrabung A 99. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Altar. Buchstaben. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00131">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">205</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131. Domgrabung A 113. Vs.: Kopf n.r. m. Strkr.  Rs.: Altar. CO[     ]. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00132">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">203</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">132. Domgrabung A 109. Vs.: Kopf n.r. m. Strkr.  Rs.: Altar. CON[    ]. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00133">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">133. Domgrabung A 103. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. [   ]ONSEC[    ]. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00134">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">133,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134. Domgrabung A 104. Vs.: unkenntlich.  Rs.: Altar. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00135">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">341</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">135. Domgrabung A 115. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00136">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">438</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136. Domgrabung A 111. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00137">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,68</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137. Domgrabung A 117. Vs.: Kopf m. Strkr. Rs.: Altar?. Korrodiert. Dicker Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00138">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,66</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">138. Domgrabung A 120. Vs.: Kopf n.r. m. Strkr. [    ]LAVD[    ]. Rs.: Adler. CONSECR[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00139">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,53</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">139. Domgrabung A 121. Vs.: Kopf n.r. m. Strkr. [    ]LVDI[    ]. Rs.: Adler. CON[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00140">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">140. Domgrabung A 119. Vs.: Kopf n.r. m. Strkr.  [  ]OCLAVD[  ]. Rs.: Adler.  [  ]NSEC[  ]. Schwach ausgeprägt, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00141">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">279</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">141. Domgrabung A 122. Vs.: Kopf n.r. Rs.: Adler. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00142">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 266 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">81</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">142. Domgrabung A 118. Vs.: Kopf n.r. m. Strkr. [  ]SA[  ]  Rs.: Adler n.l. CON[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00143">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">302,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">143. Domgrabung A 114. Vs.: Büste n.r. m. Strkr. Rs.: Altar. Pseudolegende. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00144">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">144. Domgrabung A 112. Vs.: Kopf n.r. m. Strkr. Rs.: Altar. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00145">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 261 Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">261</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">145. Domgrabung A 123. Vs.: Kopf n.r. m. Strkr.? [    ]VG. Rs.: Altar?. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00146">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Victorinus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 697 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">146. Domgrabung A 126. Vs.: drap. Büste n.r. m. Strkr. V[   ]PIPCITI[     ]. Rs.: steh. weibl. Gestalt n.l. m. langem Zepter (vor Altar?). Legendenreste. . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00147">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 747/768 Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">413,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">147. Domgrabung A 144. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: Victoria(?)  n.l. VI[   ]? Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00148">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 770/774 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">229</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">148. Domgrabung A 145. Vs.: Kopf n.r. m. Strkr. [   ]TETERICV[   ]  Rs.: Victoria n.l. m.  Kranz u. Palme.  COME[   ]. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00149">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">149. Domgrabung A 150. Vs.: Kopf n.r. m. Strkr. [    ]CT[    ]DIIVOG. Rs.: Pax n.l. m. Zepter. [    ]II[    ]. Ovaler Schrötling. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00150">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">150. Domgrabung A 147. Vs.: gepanz. Büste n.r. m. Strkr. IMPCTETRICVSPFAVG. Rs.: Pax n.l. m. Zweig u. Zepter. PA-X-AVG. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00151">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,34</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">151. Domgrabung A 148. Vs.: Kopf n.r. m. Strkr. IMPTET[    ]. Rs.: Pax n.l. m. langem Zepter. [   ]X[  ]VG. Ovaler Schrötling. Ungleichmäßig ausgeprägt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00152">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,18</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">152. Domgrabung A 149. Vs.: Büste n.r. m. Strkr. IMPTITRICVSA. Rs.: Pax n.l. m. Zweig u. langem Zepter. [    ]S-AVGG. Ovaler Schrötling. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00153">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,24</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">153. Domgrabung A 151. Vs.: bärt. Kopf n.r. m. Strkr. [    ]IICIISF[  ]. Rs.: Pax n.r. m. Zweig u. Zepter. [   ]X-[   ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00154">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">154. Domgrabung A 153. Vs.: bärt. gepanz. Büste n.r. m. Strkr. Pseudolegende. Rs.: Pax n.l. m. Zweig u. Zepter. Pseudolegende. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00155">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">297,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">155. Domgrabung A 146. Vs.: gepanz. Büste n.r. m. Strkr. [   ]PTETRI[   ]. Rs.: Pax n.l. m. Zweig u. Zepter. PAX-AV[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00156">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">156. Domgrabung A 152. Vs.: Kopf n.r. m. Strkr. Buchstaben. Rs.: Pax n.l. m. Zweig u. Zepter [   ]XAV[ ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00157">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 771/775 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">232,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">157. Domgrabung A 154. Vs.: bärt. Kopf n.r. m. Strkr.  [   ]ICVS[   ]. Rs.: Pax n.l. m. Zweig u. Zepter. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00158">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 772/776 Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">297,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">158. Domgrabung A 155. Vs.: bärt. Büste n.r. m. Strkr. Legendenreste.  Rs.: weibl. Gestalt (Salus?) n.l. m. Patera u. Zepter.  Buchstaben. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00159">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/786-788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">644,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">159. Domgrabung A 156. Vs.: bärt. Kopf n.r. m. Strkr. [   ]RICVSPF[  ]. Rs.: steh. Gestalt n.l. m. Anker. Legendenreste. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00160">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,51</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160. Domgrabung A 162. Vs.: Kopf n.r. m. Strkr. [    ]TETRICVS[    ]. Rs.: Salus n.l. m. Anker. [    ]SAVGG. Dünner, verbogener Schrötling. Korridert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00161">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">602,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161. Domgrabung A 159. Vs.: bärt. Kopf n.r. m. Strkr. IMPTE[   ]? Rs.: Salus n.l. m. Patera u. Steuerruder (?) vor Altar. Legendenreste. . Vs. schwach ausgeprägt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00162">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">661</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">162. Domgrabung A 161. Vs.: bärt. Büste n.r. m. Strkr. [  ET[    ]. Rs.: Salus n.l. m. Patera u. Anker vor Altar, füttert Schlange. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00163">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">267</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">163. Domgrabung A 158. Vs.: Büste n.r. m. Strkr. [   ]TRICVSPFA[   ]. Rs.: Salus m. Schlange  u. Anker. [   ]GG . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00164">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">292</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">164. Domgrabung A 157. Vs.: Kopf n.r. m. Strkr. [   ]ICSPFAV[   ]  Rs.: Salus m. Anker. [   ]S-AVGG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00165">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">349,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">165. Domgrabung A 163. Vs.: Kopf n.r. m. Strkr. [  ]ICVSEPII¨. Rs.: Salus n.l. vor Altar  m. Patera u. Anker, füttert Schlange. [   ]AVGG. Prägefrisch. Ungleichmäßig ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00166">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 779/788 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">480</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">166. Domgrabung A 160. Vs.: drap. Büste n.r. m. Strkr. Legendenreste. Rs.: Salus n.l. vor Altar m. Patera u. Anker. [   ]ALV-SA[   ]. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00167">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 780 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">298,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">167. Domgrabung A 164. Vs.: bärt. Büste n.r. m. Strkr. [   ]SPCIVI. Rs.: behelmte Gestalt n.l. m. Lanze. Pseudolegende. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00168">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 780 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">168. Domgrabung A 165. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: Virtus n.l. m. Schild u. Lanze. [   ]C[   ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00169">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 786/787 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">449</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">169. Domgrabung A 166. Vs.: gepanz. Büste n.r. m. Strkr. IMPTETRICVSAVG. Rs.: Laetitia n.l. m. Kranz u. Anker. LA[   ]AVG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00170">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 789/790 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">602,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">170. Domgrabung A 167. Vs.: Kopf n.r. m. Strkr. [    ]PICVSPA[    ]. Rs.: Hilaritas steht m. Zweig u. Füllhorn. [    ]ARI[    ]. . Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00171">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spes Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">171. Domgrabung A 168. Vs.: bärt. Kopf n.r. m. Strkr. CAESTETRI[   ] . Rs.: Spes n.l.  m. Blume. [   ]S[   ]. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00172">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,24</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">172. Domgrabung A 172. Vs.: Kopf n.r. m. Strkr. [    ]TETRICVS[    ]. Rs.: Hilaritas m. Zepter u. Zweig. Wenig abgegriffen. Schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00173">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,64</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">173. Domgrabung A 179. Vs.: Kopf n.r. m. Strkr. [    ]TRICVSV. Rs.: steh. Frau n.l. m. langem Zepter. [    ]VG. Unregelmäßiger Schrötling. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00174">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,71</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">174. Domgrabung A 173. Vs.: Kopf n.r. m. Strkr. IIITE[    ]. Rs.: steh. weibl. Gestalt. Schwach und ungleichmäßig ausgeprägt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00175">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,26</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">175. Domgrabung A 180. Vs.: Kopf n.r. m. Strkr. IMPCTE[    ]. Rs.: steh. Frau n.l. m. Patera u. Zweig. . Knapper Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00176">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,28</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">176. Domgrabung A 176. Vs.: Kopf n.r. m. Strkr. IIIIIITETRICV[    ]. Rs.: Pegasus n.r. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00177">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,33</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">177. Domgrabung A 169. Vs.: Büste n.r. m. Strkr. [  ]PICI[    ]IIIS. Rs.: steh. Gestalt (m. Zweig?). [    ]IIAC. Ovaler Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00178">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">178. Domgrabung A 171. Vs.: Büste n.r. m. Strkr. [    ]RICVSPFA. Rs.: steh. weibl. Gestalt n.l. [    ]AVGG. Unregelmäßiger Schrötling. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00179">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">599,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">179. Domgrabung A 175. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt. [   ]-V[  ].  Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00180">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">275,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180. Domgrabung A 178. Vs.: Kopf n.r. m. Strkr. [   ]ETRIC[   ]. Rs.: verwilderte Darstellung. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00181">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">298,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">181. Domgrabung A 170. Vs.: bärt. Büste n.r. m. Strkr. IMPTET[   ]. Rs.: weibl. Gestalt n.l. vor Altar m. Füllhorn. [   ]AVG. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00182">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">182. Domgrabung A 181. Vs.: bärt. drap. Büste n.r.  IMPTETRI[   ]PFVI. Rs.: steh. Gestalt m. Zepter. I[ ]AT[  ]. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00183">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">339,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">183. Domgrabung A 174. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt. n.l.  (m. Zweig?). Prägefrisch. Unregelmäßig ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00184">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Tetricus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">525</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">184. Domgrabung A 177. Vs.: [  ]UCTRTI[  ]. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.  l. (Spes/Victoria?). Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00185">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 778 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185. Domgrabung A 186. Vs.: drap. Büste n.r. m. Strkr. v. hinten. [   ]V[    ]TETRICVS[     ]. Rs.: Pontifikalgerät. PIETASAVGVSO. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00186">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 778 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">178</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">186. Domgrabung A 187. Vs.: drap. Büste n.r. m. Strkr. v. hinten [  ]IV[   ]RICVSCAES. Rs.: Pontifikalgeräte. PIE[   ]STO[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00187">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elm. 791 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">187. Domgrabung A 189. Vs.: drap. Büste n.r. m. Strkr. v. hinten. CPIVES[  ]SCAES. Rs.: Spes n.l.  S[  ]AVG[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00188">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vgl. Elm. 789/790 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">188. Domgrabung A 188. Vs.: Kopf n.r. m. Strkr. [    ]ESVTETRICVSC[    ]. Rs.: Hilaritas m. Zweig u. Füllhorn. Pseudolegende. Kaum abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00189">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Laetitia Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">328,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">189. Domgrabung A 190. Vs.: Kopf n.r. m. Strkr. [   ]TRII[   ]. Rs.: Laetitia n.l. m.  Kranz u. Anker.  [  ]I-I[ ]. Flaue Prägung, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00190">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,65</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">190. Domgrabung A 191. Vs.: Kopf ohne Bart n.r. m. Strkr. Legendenreste. Rs.: Pax n.l. m. langem Zepter. [   ]X-AVG. Knapper Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00191">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">285,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">191. Domgrabung A 193. Vs.: drap. Büste n.r. m. Strkr. [   ]CVSCAES. Rs.: Pax n.l. m. Zepter. PAX[   ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00192">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">192. Domgrabung A 192. Vs.: Kopf n.r. m. Strkr. [   ]VCSIII. Rs.: Pax n.l. m. Zweig u.  Zepter. PA[   ]. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00193">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">193. Domgrabung A 196. Vs.: Kopf ohne Bart n.r. m. Strkr. CVTETR[   ]A. Rs.: Pax (?) m.  Zepter. Legendenreste. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00194">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">339,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">194. Domgrabung A 194. Vs.: Kopf n.r. m. Strkr. [   ]ICILS#¨#. Rs.: Pax (?) n.l. (m.  Zweig? ) u. Zepter. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00195">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">371</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">195. Domgrabung A 195. Vs.: Kopf n.r. m. Strkr. CPIVESVTE[ ]RIC[   ]. Rs.: Steh. Frau n.  l. m. Zepter (Pax?). Prägefrisch.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00196">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Virtus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,18</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">196. Domgrabung A 197. Vs.: Kopf n.r. m. Strkr. PIVESVT[    ]. Rs.: Virtus n.r. m. Schild. [    ]SAVG. Unregelmäßiger Schrötling. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00197">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,47</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">197. Domgrabung A 198. Vs.: Kopf ohne Bart n.r. m. Strkr. Rs.: steh. Frau n.l. m. Anker. Knapper Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00198">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,36</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">198. Domgrabung A 201. Vs.: Kopf n.r. m. Strkr. IESVTETRICVSC[   ]. Rs.: steh. Gestalt m. Kranz/Patera. OTIV-[    ]. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00199">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,46</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">199. Domgrabung A 200. Vs.: Kopf ohne Bart n.r. m. Strkr. Pseudolegende. Rs.: steh. Frau n.l. m. langem Zepter. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00200">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">200. Domgrabung A 203. Vs.: bärt. Kopf n.r. m. Strkr. [   ]CVS  Rs.: steh. Gestalt m.  Zepter. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00201">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">339,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">201. Domgrabung A 202. Vs.: Kopf n.r. m. Strkr. [  ]IITRICII[ ]. Rs.: steh. Gestalt. n.l.  m. Zepter.  [   ]AVG. Fast prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00202">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (für Tetricus II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">374</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">202. Domgrabung A 199. Vs.: drap. Büste ohne Bart n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt (Victoria?). Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00203">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hilaritas Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,25</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">203. Domgrabung A 204. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: Hilaritas m. Zweig u. Füllhorn. [   ]VG. Wenig abgegriffen. Schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00204">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,27</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">204. Domgrabung A 207. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: Pax n.l. m. Zweig u. langem Zepter. P[  ]X-AVG. . Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00205">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,52</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">205. Domgrabung A 210. Vs.: Büste n.r. m. Strkr. [    ]VSPIAVG. Rs.: Pax n.l. m. Zweig u. langem Zepter. PAX[    ]G. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00206">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">636</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">206. Domgrabung A 209. Vs.: Kopf n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u.  Zepter. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00207">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">658</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">207. Domgrabung A 208. Vs.: bärt. Büste n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u. langem Zepter. DAX [  ]G. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00208">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">662</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208. Domgrabung A 211. Vs.: bärt. Büste n.r. m. Strkr. Rs.: Pax n.l. (m. Zweig) u. langem Zepter. PA[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00209">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">209. Domgrabung A 206. Vs.: gepanz. bärt. Buste n.r. m. Strkr. Rs.: Pax n.l. m.  Zepter. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00210">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">221</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">210. Domgrabung A 212. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: Pax n.l. m. Zweig u. Zepter. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00211">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">211. Domgrabung A 205. Vs.: bärt. drap. Büste n.r. m. Strkr.  Rs.: Pax n.l. PAXA[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00212">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">212. Domgrabung A 215. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l.  (Pax?) PI[   ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00213">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">225</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">213. Domgrabung A 213. Vs.: bärt. Kopf n.r. m. Strkr. Buchstaben. Rs.: steh. weibl. Gestalt (Pax?) m. Zepter(?). Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00214">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">207</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">214. Domgrabung A 214. Vs.: bärt. Kopf n.r. m. Strkr. Rs.: steh. Gestalt (Pax ?) n.l. m. erhob. R. (L. auf Zepter gestützt ?), l. im Felde Darstellungsreste (Zepter ?). Doppelschlag?. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00215">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pax/Spes Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">600</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215. Domgrabung A 216. Vs.: bärt. Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Zweig/Blume u. ausgestreckter L. Pseudolegende. Ungleichmäßig ausgeprägt. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00216">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,67</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216. Domgrabung A 219. Vs.: Büste n.r. m. Strkr. Rs.: Salus n.l. vor Altar. SALV[    ]. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00217">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">262,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">217. Domgrabung A 218. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: Salus n.l. m. Schlange u. Anker. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00218">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">218. Domgrabung A 221. Vs.: Kopf n.r. m. Strkr. Buchstaben. Rs.: Salus n.l. vor Altar, daneben Schlange. Korrrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00219">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">80</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">219. Domgrabung A 217. Vs.: bärt. (gepanz.?) Büste n.r. m. Strkr. Rs.: Salus n.l. m. Anker vor Altar. Korrrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00220">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">369,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">220. Domgrabung A 222. Vs.: Kopf n.r. m. Strkr. Rs.: Salus n.l. vor Altar? SAL[  ]. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00221">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">303,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">221. Domgrabung A 220. Vs.: Kopf n.r. m. Strkr. Rs.: Salus n.l. vor Altar. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00222">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">372,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">222. Domgrabung A 223. Vs.: bärt. Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt (Salus?) n.l. (am  Altar?). Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00223">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Salus/Laetitia Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">223. Domgrabung A 224. Vs.: Kopf n.r. m. Strkr. Rs.: steh. weibl. Gestalt (Salus/Laetitia?) m. Anker. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00224">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spes Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">224. Domgrabung A 225. Vs.: Kopf n.r. m. Strkr. Rs.: Spes n.l. m. Blume. Kaum abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00225">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Virtus Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">225. Domgrabung A 226. Vs.: Kopf n.r. m. Strkr. Rs.: Virtus n.l. m. Schild u. Lanze. Kaum abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00226">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Virtus Typ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">33</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">226. Domgrabung A 227. Vs.: drap. bärtige Büste n.r. m. Strkr.  Pseudolegende. Rs.:  steh. (männl.?) Gestalt m. Lanze (Virtus spiegelverkehrt?).  Pseudobuchstaben. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00227">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vgl. RIC (Gallienus) 176ff.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,42</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">227. Domgrabung A 228. Vs.: Kopf n.r. m. Strkr. Rs.: Huftier (Hirsch?) n.r. . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00228">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">585</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">228. Domgrabung A 272. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Gestalt. Schwach ausgeprägt, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00229">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">564</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">229. Domgrabung A 259. Vs.: (bärt.?) Kopf n.r. (m. Strkr.?). Rs.: steh. Gestalt. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00230">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,32</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230. Domgrabung A 238. Vs.: Kopf n.r. m. Strkr. Rs.: zwei steh. Gestalte, zwischen ihnen Buchstaben (?). Prägefrisch, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00231">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">231. Domgrabung A 256. Vs.: Kopf n.r. m. Strkr. Rs.: Hilaritas/Pax steht m. Zweig. [    ]II[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00232">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,23</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">232. Domgrabung A 244. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Zepter vor Altar. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00233">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,29</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">233. Domgrabung A 276. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau n.l. m. Blume/Zweig. Legendenreste. Wenig abgegriffen. Ovaler Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00234">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">234. Domgrabung A 251. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Legendenreste. Eher schlecht ausgeprägt als abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00235">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,37</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">235. Domgrabung A 261. Vs.: Kopf n.r. m. Strkr. [    ]IIOIU. Rs.: steh. Gestalt m. erhobenem Arm. Eher schlecht ausgeprägt als abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00236">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,55</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">236. Domgrabung A 279. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00237">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,54</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">237. Domgrabung A 284. Vs.: Kopf n.r. m. Strkr. [    ]IPIAII. Rs.: steh. Gestalt m. Blume (?). [    ]I[    ]. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00238">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">646,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">238. Domgrabung A 250. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau m. Zepter. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00239">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,39</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">239. Domgrabung A 242. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Flaue Prägung, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00240">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,45</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">240. Domgrabung A 254. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt (m. Zepter?). Fast prägefrish. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00241">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,44</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">241. Domgrabung A 280. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt m. Zepter. Prägefrish. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00242">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,48</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">242. Domgrabung A 277. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt. Flaue Prägung, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00243">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">605</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">243. Domgrabung A 252. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Frau n.l. m. Blume/Zweig. Pseudolegende. Wenig abgegriffen. Schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00244">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,61</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">244. Domgrabung A 281. Vs.: Kopf n.r. m. Strkr. III[    ]SVG. Rs.: Victoria (?) n.l. [   ]OV-TASC[    ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00245">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,29</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">245. Domgrabung A 270. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Pseudolegende. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00246">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,22</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">246. Domgrabung A 273. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt (l. Zepter?). A[    ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00247">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">247. Domgrabung A 229. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00248">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,59</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248. Domgrabung A 264. Vs.: Kopf n.r. m. Strkr. Legendereste. Rs.: steh. Gestalt (m. Blume/Zweig?). Pseudolegende. Fast prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00249">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,74</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">249. Domgrabung A 278. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00250">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,19</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250. Domgrabung A 257. Vs.: kopf n.l. m. Strkr. Pseudolegende. Rs.: steh. Gestalt n.l. (m. Zweig?) u. Zepter. Pseudologende. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00251">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">251. Domgrabung A 237. Vs.: drap. Büste n.r. m. Strkr. [    ]CT[    ]. Rs.: steh. weibl. Gestalt n.l. m. Blume und Zepter. [    ]X-[    ]. Unregelmäßiger, ovaler schrötling mit Gußzapfen. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00252">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,19</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252. Domgrabung A 231. Vs.: Büste n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt? Legendenreste. Sehr unregelmäßiger Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00253">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">253. Domgrabung A 239. Vs.: Büste n.r. m. Strkr. [    ]SPDVC. Rs.: steh. weibl. Gestalt n.l. m. Zweig u. langem Zepter. Pseudolegende. . Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00254">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,21</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">254. Domgrabung A 232. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: keine erkennbare Prägung. Ovaler Schrötling. Einseitig geprägt? Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00255">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,58</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">255. Domgrabung A 290. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt m. langem Zweig. PA[    ]. Dünner, ausgebrochener Schrötling. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00256">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,49</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256. Domgrabung A 260. Vs.: Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt n.l. m. Anker. [    ]VAC. Knapper Schrötling. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00257">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,63</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">257. Domgrabung A 265. Vs.: Büste n.r. m. Strkr. Rs.: steh. weibl. Gestalt n.l. m. Anker. Knapper Schrötling. Schwach ausgeprägt. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00258">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,62</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">258. Domgrabung A 291. Vs.: Büste n.r. m. Strkr. Legendenreste. Rs.: steh. weibl. Gestalt n.l. m. Anker. Legendenreste. Dünner Schrötling. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00259">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">274,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">259. Domgrabung A 247. Vs.: Büste n.r. m. Strkr. Rs.: Victoria?. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00260">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">260. Domgrabung A 269. Vs.: drap. bärt. Kopf n.r. m. Strkr. Rs.: verwilderte Darstellugnng. Pseudolegende. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00261">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">261. Domgrabung A 258. Vs.: bärt. Kopf n.r. Rs.: steh. Gestalt m. Zepter. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00262">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">262. Domgrabung A 274. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00263">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">263. Domgrabung A 230. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolgende. Rs.: verwilderte  Darstellung. Buchstaben. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00264">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">264. Domgrabung A 245. Vs.: Kopf n.r. (m. Strkr.?). Rs.: verwilderte Darstellung. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00265">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">265. Domgrabung A 266. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00266">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">266. Domgrabung A 275. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. weibl.  Gestalt. [   ]V-AV[   ] . Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00267">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">267. Domgrabung A 288. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: unkenntlich. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00268">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268. Domgrabung A 271. Vs.: Kopf n.r. m. Strkr.? Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00269">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">269. Domgrabung A 246. Vs.: Kopf n.r. m. Strkr. Rs.: verwilderte Darstellung. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00270">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270. Domgrabung A 262. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l. m. Zepter. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00271">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">291</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">271. Domgrabung A 285. Vs.: Kopf n.r. m. Strkr. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00272">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">262,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272. Domgrabung A 236. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00273">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">199</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">273. Domgrabung A 289. Vs.: Kopf n.r. m. Strkr.  Rs.: Darstellungsreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00274">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">299</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">274. Domgrabung A 241. Vs.: Büste n.r. m. Strkr. Spiegelverkehrte Legendenreste. Rs.: verwilderte Darstellung, schlecht zentriert. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00275">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">301</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">275. Domgrabung A 233. Vs.: bärt., drap. Büste n.r. m. Strkr. Legendenreste. Rs.: verwilderte Darstellung.  [   ]IT[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00276">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">303,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">276. Domgrabung A 268. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.l. Abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00277">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">277. Domgrabung A 234. Vs.: drap. Büste n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt?. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00278">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">114</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278. Domgrabung A 249. Vs.: Kopf n.r. m. Strkr.  Rs.: steh. Gestalt. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00279">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">365</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">279. Domgrabung A 282. Vs.: bärt. Kopf n.r. (Tetricus I.?). Legendenreste. Rs.: steh.  Gestalt. Korroidert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00280">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280. Domgrabung A 286. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: unkenntlich. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00281">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">346</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">281. Domgrabung A 263. Vs.: Kopf n.r. m. Strkr. Rs.: Victoria n.l. m. Kranz. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00282">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282. Domgrabung A 235. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Legendenreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00283">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">317</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">283. Domgrabung A 243. Vs.: bärt. Kopf n.r. m. Strkr. (Tetricus I?). Rs.: unkenntliche  Darstellung CIIIDIIV[   ]. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00284">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">372,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">284. Domgrabung A 267. Vs. Büste n.r. (m. Strkr.?). IM[    ]IC. Rs.: steh. Gestalt.  CATE[   ]U. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00285">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">380,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">285. Domgrabung A 255. Vs.: Kopf n.r. m. Strkr. Rs.: steh. Gestalt. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00286">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">286. Domgrabung A 248. Vs.: Kopf n.r. m. Strkr. Legendenreste. Rs.: steh. Gestalt. Legendenreste. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00287">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">454,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">287. Domgrabung A 253. Vs.: bärt. Kopf n.r. m. Strkr. Pseudolegende. Rs.: steh. Gestalt  m. ausgebreiteten Armen, in der R. Speer. Pseudolegende. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00288">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">482</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">288. Domgrabung A 283. Vs. Kopf n.r. m. Strkr. Rs.: steh. Gestalt n.r. vor Altar. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00289">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,41</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">289. Domgrabung A 240. Vs.: Büste n.r. m. Strkr. [   ]IIIT[ ]C. Rs.: unkenntliche, verwilderte Darstellung. Vs. schlecht zentriert. Schwach ausgeprägt, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00290">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">290. Domgrabung A 292. Vs.: Strkr.? Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00291">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">291. Domgrabung A 287. Vs.: Kopf n.r. m. Strkr. Pseudolegende. Rs.: Victoria n.l. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00292">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 118.-291. (Gallischer Kaiser?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270/280?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">292. Domgrabung A 293. Vs.: Kopf m. Strkr.? Rs.: verwilderte Darstellungsreste. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00293">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">655</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">293. Domgrabung A 39. Rs.: steh. (weibl.?) Gestalt. Korrodiert, stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00294">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dp</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.Jh./1.H.3.Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">312,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">294. Domgrabung A 41. Vs.: Kopf?. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00295">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">S?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.Jh./1.H.3.Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">295. Domgrabung A 40. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00296">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 260/275</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,75</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">296. Domgrabung A 294. Vs.: Kopf n.r. m. Strkr. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00297">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 274/294</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">276</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">297. Domgrabung A 295. Vs.: Kopf n.r. m. Strkr. Rs.: steh Gestalt n.l. m. Globus.  (Jupiter?). Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00298">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">298. Domgrabung A 296. Vs.: Kopf n.r. m. Strkr. Rs.: unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00299">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maximianus Herculius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ar</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">295/297</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 109b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> C  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">646,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">299. Domgrabung A 297. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00300">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">305/306</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 682a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">639</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">300. Domgrabung A 299. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00301">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">294/305</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     *? </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">343</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">301. Domgrabung A 301. Vs.: [   ]STA[   ]NC. Rs.: Moneta n.l. m. Waage u. Füllhorn. [  ]NETA[  ]. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00302">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Galerius Maximianus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">303/307</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 652b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR S  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">179</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">302. Domgrabung A 298. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00303">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Diocletian/Maximias/Constantius I./Galerius?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ar?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">294/305?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,73</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">303. Domgrabung A 300. Vs.: Kopf n.r. (m. Lbkr.?). Rs.: unkenntlich. Zuweisung auf Grund des Porträts. Bestimmung wahrscheinlich, eher kein Denarius. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00304">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Maximinus Daia</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 845a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">52</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304. Domgrabung A 306. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00305">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 845b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">305. Domgrabung A 308. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00306">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 845b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">431</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306. Domgrabung A 307. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00307">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 120</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ATR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">429</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">307. Domgrabung A 323. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00308">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 121</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> A[ ]R T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">531</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">308. Domgrabung A 324. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00309">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 259</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùPTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">62</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">309. Domgrabung A 341. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00310">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Licinius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 229</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">285,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310. Domgrabung A 364. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00311">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">307/308</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 792</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">288</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">311. Domgrabung A 305. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00312">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 120/125</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLN  T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">312. Domgrabung A 302. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00313">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/311</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 899</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">20</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313. Domgrabung A 311. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00314">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/311</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 899</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">418,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">314. Domgrabung A 312. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00315">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VFol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/311</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 906</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">629,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">315. Domgrabung A 313. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00316">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/311</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 911/913</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">418,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316. Domgrabung A 314. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00317">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 870</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">349,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">317. Domgrabung A 309. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00318">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 881</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">409</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318. Domgrabung A 310. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00319">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">312/313</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 83</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> MOSTS  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">30</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">319. Domgrabung A 336. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00320">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313/314</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (T?)T *    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320. Domgrabung A 335. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00321">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313/315</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 69</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">389,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321. Domgrabung A 316. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00322">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313/315</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 69</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">377</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322. Domgrabung A 317. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00323">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">313/315</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 42</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ST[  ] T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">237,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323. Domgrabung A 315. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00324">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">314/315</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 18</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324. Domgrabung A 333. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00325">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">315/316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 45?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> M(L?)[ ] S (F?) </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">517</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">325. Domgrabung A 303. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00326">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">315/316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 76</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR B  S </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">326. Domgrabung A 318. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00327">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 105</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> BTR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">223</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">327. Domgrabung A 321. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00328">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 105</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ATR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">222</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">328. Domgrabung A 320. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00329">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 97</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (A?)TR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">329. Domgrabung A 319. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00330">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 84</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SARL  T/*  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">626</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330. Domgrabung A 334. Ungleichmäßig ausgeprägt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00331">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">316?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 105?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> BTR? T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">549,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">331. Domgrabung A 322. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00332">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">317</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 135</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> BTR T  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">549,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332. Domgrabung A 325. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00333">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">317/318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 159</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> BTR F  T </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333. Domgrabung A 326. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00334">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">317/318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 162</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> BTR F  T </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">334. Domgrabung A 327. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00335">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318/319</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 148 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RT P  R </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335. Domgrabung A 368. Vs.: behelmte, gepanz. Büste n.r. m. Lbkr. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00336">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318/320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 209 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR[ ]? </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">601</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336. Domgrabung A 361. Vs.: gepanz., behelmte Büste n.r. m. Lbkr. CONSTAN[    ]VSMAXAVG.  Rs.: 2 Victorien halten Schild über Altar. VICTORIAELAETAEPRINCPERP. Stark korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00337">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318/320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE LAETAE PRINC PERP</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">478,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337. Domgrabung A 373. Vs.: behelmte. Büste n.r. m. Speer (RIC VII = Büste H11l, vgl.  Pl. 6, 192). Rs.: 2 Victorien. Korrodiert. wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00338">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">319</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 213</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR   *   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">239</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">338. Domgrabung A 340. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00339">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">319/320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 114 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TT  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">339. Domgrabung A 370. Vs.: CONSTAN-[    ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00340">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 101</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TSâVI  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">395</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">340. Domgrabung A 372. Prägefrisch, ungleichmäßig ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00341">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320/321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 191</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLN  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">341. Domgrabung A 338. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00342">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 305</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">342. Domgrabung A 343. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00343">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 305</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">502</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">343. Domgrabung A 342. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00344">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 316</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">338</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">344. Domgrabung A 344. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00345">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321/323</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC (Tre) 368</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">70</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">345. Domgrabung A 375. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00346">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 342</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTRù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">468</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">346. Domgrabung A 345. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00347">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322/323</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 368</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ù[  ]T[  ] </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347. Domgrabung A 346. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00348">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322/323</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 369</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùPTRù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">64</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348. Domgrabung A 347. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00349">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SARMATIA DEVICTA</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]P[  ]? </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">424</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">349. Domgrabung A 378. Vs.: CONSTAN-[   ]. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00350">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 389</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùPTR´   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">350. Domgrabung A 348. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00351">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 435</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR´   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">606</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351. Domgrabung A 349. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00352">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 435</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR´   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">352. Domgrabung A 350. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00353">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 449</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353. Domgrabung A 354. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00354">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 449</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">344,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">354. Domgrabung A 353. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00355">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 225</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLG  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">355. Domgrabung A 363. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00356">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">325/326</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 461/475</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR(´ /¶ )  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">356. Domgrabung A 357. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00357">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">327/328</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 504</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STRE    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">344,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">357. Domgrabung A 358. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00358">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">328</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 321</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCONST S  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">161</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358. Domgrabung A 367. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00359">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 538</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">210,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">359. Domgrabung A 390. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00360">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 370</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCONST  ¼   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">144</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">360. Domgrabung A 476. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00361">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 555?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (TRP?)    ¯    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">485</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">361. Domgrabung A 456. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00362">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 590</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]TRP•  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">362. Domgrabung A 414. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00363">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 394</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CONST  º   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">220</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">363. Domgrabung A 477. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00364">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 285</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ° PLC    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">79,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364. Domgrabung A 469. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00365">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Claudius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 207</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]TR?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">439</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">365. Domgrabung A 332. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00366">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Maximianus Herculius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">307/308</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 790</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">55,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">366. Domgrabung A 304. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00367">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Maximianus Herculius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 204/205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">427,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367. Domgrabung A 328. Korrodiert, abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00368">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Maximianus Herculius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">302,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">368. Domgrabung A 330. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00369">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Maximianus Herculius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">441</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">369. Domgrabung A 329. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00370">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Divus Constantius I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hfol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">285,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">370. Domgrabung A 331. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00371">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Fausta)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/326</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC (Tre) 459/460</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">371. Domgrabung A 379. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00372">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Helena)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 458</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">359</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">372. Domgrabung A 355. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00373">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Helena)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">327/328</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 508</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STRE    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">27</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">373. Domgrabung A 360. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00374">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Licinius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">319</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 94</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TT   C    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">360,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">374. Domgrabung A 369. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00375">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Crispus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 174</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLN    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">375. Domgrabung A 337. Prägefrisch. Silbersudspuren. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00376">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Crispus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 148/ 159 Var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyb.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ASIS(•?)    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">607</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">376. Domgrabung A 371. Vs.: Kopf n.r. m. Lbkr. CRISPVS-NOBCAES. Rs.: Kranz. DNCONSTANTINI MAXAVG/VOT/XX. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00377">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Crispus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">325/326</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 462</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">377. Domgrabung A 356. Korrodiert, wenig abgegriffen </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00378">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321/323</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 334 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]T[  ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378. Domgrabung A 362. Vs.: Büste n.l. m. Trabea u. Lbkr., i. d. R. Adlerzepter. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00379">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">322/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CAESARVM NOSTRORVM VOT X</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">436</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379. Domgrabung A 377. Vs.: CONS[    ], durchgehende Legende. Rs.: VOT/X im Kranz. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00380">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 441</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">380. Domgrabung A 352. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00381">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 441</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STR´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">42</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">381. Domgrabung A 351. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00382">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 296</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">360,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">382. Domgrabung A 339. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00383">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">324/325</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 274</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]*AR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">385</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383. Domgrabung A 365. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00384">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 336</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RBS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384. Domgrabung A 484. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00385">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 249?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ´ PLG?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">34</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">385. Domgrabung A 472. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00386">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 539</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">386. Domgrabung A 391. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00387">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 539</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387. Domgrabung A 392. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00388">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 545</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS*    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388. Domgrabung A 400. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00389">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 263</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> *PLG    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">147</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">389. Domgrabung A 463. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00390">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 351</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R¼ S    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">390. Domgrabung A 486. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00391">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC Vs.: 271 Rs.: 275</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyb.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">235</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391. Domgrabung A 466. Vs.: drap. Büste n.r. m. Lbkr. CONSTANTINVSIVNNOBC. Rs.: Wölfin m. Zwillingen. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00392">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 591</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTRPù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392. Domgrabung A 415. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00393">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 591</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTRSù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393. Domgrabung A 416. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00394">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">202,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">394. Domgrabung A 504. Vs.: gepanz. Büste n.r. m. Lbkr. CONSTA[  ]VNNC. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00395">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 281</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> *PLC   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">401</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">395. Domgrabung A 468. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00396">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">327</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 312</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ARLQ S  F </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">231</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396. Domgrabung A 366. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00397">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">327/328</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 506</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STRE  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">579</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">397. Domgrabung A 359. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00398">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 528</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRSù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">212,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">398. Domgrabung A 383. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00399">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 245</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùPLG  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">211,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">399. Domgrabung A 458. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00400">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 128</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMHâ  ùùù   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400. Domgrabung A 497. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00401">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 521/559</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">401. Domgrabung A 406. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00402">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 250/255</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ´ PLG  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">402. Domgrabung A 461. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00403">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 540</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">47</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">403. Domgrabung A 393. Kaum abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00404">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> A[   ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,25</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">404. Domgrabung A 505. Vs.: Büste n.r. m. Rosettendiadem. [    ]NTIVSNOBC. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00405">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constans)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 593</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTRS[ ] </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">201</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">405. Domgrabung A 417. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00406">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constans)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/337</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 593</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTR[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">498</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">406. Domgrabung A 418. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00407">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">318/320?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE LAETAE PRINC PERP?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">407. Domgrabung A 374. Vs.: Büste n.r. [  ]INV[  ]?  Rs.: 2 Victorien?. Stark korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00408">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 556-560</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP?   ¯    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">408. Domgrabung A 407. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00409">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 2 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]L[ ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">409. Domgrabung A 473. Vs.: kleiner Kopf n.r. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00410">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 529</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP•  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">410. Domgrabung A 384. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00411">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 529</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">212,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">411. Domgrabung A 386. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00412">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 529</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">82</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">412. Domgrabung A 387. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00413">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 529</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">407</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">413. Domgrabung A 388. Korrodiert, kaum umgelaufen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00414">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 529</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">430</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">414. Domgrabung A 385. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00415">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 247</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùPLC  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">78</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415. Domgrabung A 459. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00416">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 338</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RBQ  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">597</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">416. Domgrabung A 485. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00417">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 247/275</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]PLC  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">254</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417. Domgrabung A 467. Korrodiert, wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00418">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 252</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ´ PL[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">608</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">418. Domgrabung A 460. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00419">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 257</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ¶ PL[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">419,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">419. Domgrabung A 462. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00420">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 542</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">427,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420. Domgrabung A 395. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00421">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 542</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421. Domgrabung A 394. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00422">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 553</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  ¼    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">65</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">422. Domgrabung A 404. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00423">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 561</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  °    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">119</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">423. Domgrabung A 409. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00424">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 561</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  °    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">481</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">424. Domgrabung A 408. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00425">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 561</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(S?)  °    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">455,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">425. Domgrabung A 410. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00426">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/336</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 354/386</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R¼ [ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">218</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">426. Domgrabung A 487. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00427">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/336</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 136</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> AQP   F   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">94</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">427. Domgrabung A 493. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00428">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">555,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">428. Domgrabung A 519. Korrodiert, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00429">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">217</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">429. Domgrabung A 521. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00430">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 523</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">76,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">430. Domgrabung A 382. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00431">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/331</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 530</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">405</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">431. Domgrabung A 389. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00432">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 241/273</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC ? </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">293</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">432. Domgrabung A 465. Vs.: CONSTANT-INOPOLIS. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00433">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]L[  ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">31</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433. Domgrabung A 474. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00434">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 543</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR•P   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">434. Domgrabung A 398. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00435">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 543</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">50</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">435. Domgrabung A 397. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00436">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 543</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">68</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">436. Domgrabung A 396. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00437">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 543</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRùP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">183,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">437. Domgrabung A 399. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00438">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 548</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS*   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">200</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">438. Domgrabung A 403. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00439">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 548</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS*   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">159</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">439. Domgrabung A 402. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00440">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332/333</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 548</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP*   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">440. Domgrabung A 401. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00441">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 554</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS  ¼    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">441. Domgrabung A 405. Silbersudspuren. Gusszapfen am Schrötling. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00442">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 563</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP °      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">555,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">442. Domgrabung A 411. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00443">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 563</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS °      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">75,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">443. Domgrabung A 413. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00444">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">333/334</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 563</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]RP  °      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">158</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">444. Domgrabung A 412. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00445">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 273</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">445. Domgrabung A 464. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00446">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">446. Domgrabung A 454. Vs.: behelmter Kopf n.l.  CONST[   ]. Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00447">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">336/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (VII) 408/(VIII) 26</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON[ ] X    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">447. Domgrabung A 478. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00448">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]LC?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">35,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">448. Domgrabung A 475. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00449">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">449. Domgrabung A 520. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00450">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">213</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">450. Domgrabung A 522. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00451">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321/324</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BEATA TRANQVILLITAS</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">425,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">451. Domgrabung A 376. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00452">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 341/342?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]ON[  ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">452. Domgrabung A 482. Stark korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00453">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 2 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">453. Domgrabung A 502. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00454">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantin I. (für Constantinsöhne)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/335</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 2 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">454. Domgrabung A 503. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00455">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantin II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">562</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">455. Domgrabung A 509. Vs.: drap. Büste n.r. m. Rosettendiadem. [     ]-NVSMAXAVG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00456">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(P?)   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">118</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">456. Domgrabung A 455. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00457">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    »     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">457. Domgrabung A 510. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00458">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    »     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">575</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">458. Domgrabung A 511. Vs.: drap. Büste n.r. m. Rosettendiadem. CONS[     ]. Kleinerer kopf, wohl Constantinsohn. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00459">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,21</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">459. Domgrabung A 512. Korrodiert, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00460">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">460. Domgrabung A 513. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00461">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">590</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">461. Domgrabung A 516. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00462">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">72</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">462. Domgrabung A 514. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00463">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">520,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">463. Domgrabung A 517. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00464">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">464. Domgrabung A 518. Wenig umgelaufen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00465">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,24</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">465. Domgrabung A 515. Zuweisung wahrscheinlich. Korrodiert, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00466">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin I./Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">466. Domgrabung A 1057. Vs.: Kopf n.r.  [  ]SPFAVG?  (= Constans?)  Rs.: 2 Victorien? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00467">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 49/81</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">51</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">467. Domgrabung A 424. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00468">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantin II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Frühjahr 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMNî    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">468. Domgrabung A 498. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00469">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 13</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON[ ]  ´    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">113,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">469. Domgrabung A 480. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00470">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 23 var.?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R*[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">255</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">470. Domgrabung A 489. Vs.: [  ]TANSAVG  Trennung wohl NS-TA = RIC Leg. Cn13. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00471">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 27</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> AQ(P?)  ¼     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">180</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">471. Domgrabung A 494. Kaum abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00472">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 103</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">523,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">472. Domgrabung A 440. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00473">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">550</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">473. Domgrabung A 444. Schwach ausgeprägt, jedoch Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00474">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">598</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">474. Domgrabung A 446. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00475">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]?   M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">475. Domgrabung A 448. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00476">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">227,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">476. Domgrabung A 442. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00477">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP[ ]   M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">95</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">477. Domgrabung A 445. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00478">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">478. Domgrabung A 443. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00479">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 111</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">479. Domgrabung A 447. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00480">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 112</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">501</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">480. Domgrabung A 449. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00481">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 113</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">554,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">481. Domgrabung A 450. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00482">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 113 var.?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (TRP´ ?)  M  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">129,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">482. Domgrabung A 457. Vs.: CONSTAN-SPFAVG. Drap. Büste n.r. m. Perlendiadem. Rs.: etwas unregelmäßige Legende. Barbarisiert?. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00483">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLG   I    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">146</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">483. Domgrabung A 471. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00484">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 52</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SARL   M   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">484. Domgrabung A 481. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00485">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 57</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTS[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">412</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">485. Domgrabung A 496. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00486">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 182/211</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]  [  ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">63</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">486. Domgrabung A 599. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00487">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 182/211</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  [  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">98</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">487. Domgrabung A 598. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00488">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 185</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">643</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">488. Domgrabung A 572. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00489">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 185</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489. Domgrabung A 571. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00490">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 188/189?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  (*?)   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">557</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">490. Domgrabung A 574. Korrodiert, wohl abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00491">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 195</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   D    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">204</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">491. Domgrabung A 577. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00492">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 195</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(S?)   D    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">492. Domgrabung A 578. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00493">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 195</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   D    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">422,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">493. Domgrabung A 576. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00494">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 196</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(P?)   D    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">403</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">494. Domgrabung A 579. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00495">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 196</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    D    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">495. Domgrabung A 580. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00496">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   î     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">496. Domgrabung A 585. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00497">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   î      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">497. Domgrabung A 582. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00498">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   î      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">498. Domgrabung A 584. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00499">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[ ]   î      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">131,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">499. Domgrabung A 586. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00500">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   î      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">500. Domgrabung A 583. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00501">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">36</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">501. Domgrabung A 587. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00502">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">271</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">502. Domgrabung A 590. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00503">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">503. Domgrabung A 589. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00504">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">32</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">504. Domgrabung A 591. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00505">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(S?)   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">145</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505. Domgrabung A 592. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00506">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 206/210</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP(ù)   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506. Domgrabung A 597. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00507">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 210</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">315</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507. Domgrabung A 593. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00508">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 210</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">511,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">508. Domgrabung A 594. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00509">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 210</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRSù   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">509. Domgrabung A 595. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00510">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 210</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]RSù   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">510. Domgrabung A 596. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00511">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 182?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP?   M?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">511. Domgrabung A 601. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00512">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 188?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]?   *    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512. Domgrabung A 602. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00513">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 47?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (S?)LC (S?)/T  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">513. Domgrabung A 605. Vs.: CONSTAN-SPFAVG? Drap. Büste n.r. (m. Lbkr.?). Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00514">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 58</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PL[ ]   §    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514. Domgrabung A 606. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00515">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 63</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">515. Domgrabung A 607. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00516">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 78</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">428,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">516. Domgrabung A 610. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00517">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">135,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">517. Domgrabung A 621. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00518">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    *    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518. Domgrabung A 618. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00519">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC (Tre) 205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">103,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">519. Domgrabung A 614. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00520">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 228</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">408</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">520. Domgrabung A 632. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00521">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 230</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP*    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">44</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521. Domgrabung A 633. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00522">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 230</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS*    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">488</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">522. Domgrabung A 634. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00523">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 230</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]RS*    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">523. Domgrabung A 635. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00524">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 234</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP•    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">584</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">524. Domgrabung A 636. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00525">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO Galley 2   </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 7,785</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">525. Domgrabung A 641. Verschollen. Angaben übernommen aus dem Inventar des RLMT, wo bestimmt als C2 13. Ausschachtung zwischen Dom und Liebfrauen, über den Tubuli der südlichen Abschlussmauer der Heizung. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00526">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO Phoenix 1</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">526. Domgrabung A 642. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00527">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527. Domgrabung A 507. Vs.: [      ](N?)SAVG. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00528">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 101A -104</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">555,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528. Domgrabung A 441. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00529">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 108/114</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´    M   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">133,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">529. Domgrabung A 451. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00530">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 180-182</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    M   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">461,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">530. Domgrabung A 568. Korrodiert, abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00531">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 183-186</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">531. Domgrabung A 573. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00532">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 190-192 Var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  •/C   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">532. Domgrabung A 575. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00533">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 197/199</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]   î     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">104,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">533. Domgrabung A 581. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00534">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 203/205</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[ ]   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">183,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">534. Domgrabung A 588. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00535">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 180-182?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">   M?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">535. Domgrabung A 600. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00536">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VOT/XX/ MVLT/XXX</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">88</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">536. Domgrabung A 612. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00537">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VOT/XX/ MVLT/XXX</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">537. Domgrabung A 611. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00538">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">573</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">538. Domgrabung A 630. Vs.: Büste n.r. m. Lrbkr (?). C[     ]? Rs.: 2 Victorien?. Korrodiert. Zuweisung ziemlich sicher. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00539">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,27</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">539. Domgrabung A 627. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00540">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">632</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">540. Domgrabung A 615. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00541">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">541. Domgrabung A 622. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00542">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">542. Domgrabung A 628. Verbogen. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00543">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]   *    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">73,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">543. Domgrabung A 619. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00544">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">73,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">544. Domgrabung A 629. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00545">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]  ¯ ?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">308,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">545. Domgrabung A 617. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00546">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">546. Domgrabung A 625. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00547">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">547. Domgrabung A 623. Vs.: CONST[   ]SPFAVG. Wohl Constans. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00548">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]   ¯     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">490,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">548. Domgrabung A 616. Stark abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00549">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">516,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">549. Domgrabung A 626. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00550">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">550. Domgrabung A 624. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00551">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">348/350</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO Phoenix 1</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">551. Domgrabung A 643. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00552">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constans/Constantius II.?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VOTA</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">552. Domgrabung A 613. Vs.: wohl constantinischer Kopf n.r. m. Diadem. Rs.: VOT/(XX?)/ MVLT/ (XXX?). Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00553">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 53/88</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">553. Domgrabung A 431. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00554">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">21</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">554. Domgrabung A 425. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00555">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">156</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">555. Domgrabung A 428. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00556">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">428,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">556. Domgrabung A 427. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00557">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">557. Domgrabung A 426. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00558">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">558. Domgrabung A 429. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00559">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 93</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> •TRP°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">631,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">559. Domgrabung A 439. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00560">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 8</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SLC   »    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">560. Domgrabung A 470. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00561">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CONS[ ] ´   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">41</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">561. Domgrabung A 479. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00562">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 25</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R*[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">562. Domgrabung A 490. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00563">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 37</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R° (S?)    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">104,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">563. Domgrabung A 491. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00564">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">566</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">564. Domgrabung A 430. Fast prägefrisch.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00565">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nach Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Lug) 28ff.; (Are) 53/54</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ] I </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">565. Domgrabung A 483. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00566">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 50/101A</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">566. Domgrabung A 453. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00567">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 52/101A</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">567. Domgrabung A 452. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00568">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 56</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  SMTSî     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,31</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">568. Domgrabung A 495. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00569">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">569. Domgrabung A 506. Vs.: Büste n.r. m. Lbkr./Diadem. (FLIVL?)CONSTANTIVSAVG. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00570">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 184</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[ ]   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">135,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">570. Domgrabung A 570. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00571">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 184</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">571. Domgrabung A 569. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00572">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 203ff.?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (T?)[  ]   ¯      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">572. Domgrabung A 603. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00573">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 45</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]  S/T   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">573. Domgrabung A 604. Korrodiert, angegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00574">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 78</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PAR[ ]   ¨    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">574. Domgrabung A 608. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00575">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 78 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]RL   ù/¨  _ </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">568</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">575. Domgrabung A 609. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00576">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">347/348</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD AVGGQ NN</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">576. Domgrabung A 620. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00577">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 332/335</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR(S?)    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">577. Domgrabung A 639. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00578">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/355</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 358</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,792b</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">578. Domgrabung A 648. Verschollen. Angaben übernommen aus Inventar des RLMT, wo bestimmt als C² 45. Ausschachtung zwischen Dom und Liebfrauen. Im Hypokaustum in der Nähe des Präfurniums. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00579">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/355</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 358 var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> •TRP•   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,784a</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">579. Domgrabung A 649. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00580">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/355</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 358?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 7,785</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">580. Domgrabung A 650.  Verschollen. Im Inventar des RLMT bestimmt als C² 48. Ausschachtung zwischen Dom und Liebfrauen, über den Tubuli der südlichen Abschlussmauer der Heizung. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00581">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,26</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">581. Domgrabung A 656. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00582">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">23</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">582. Domgrabung A 654. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00583">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (SM?)[  ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">314,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">583. Domgrabung A 653. Vs.: Rosettendiadem. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00584">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">464</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">584. Domgrabung A 657. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00585">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">585. Domgrabung A 655. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00586">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3    </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,792b</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">586. Domgrabung A 658. Verschollen. Angaben übernommen aus Inventar des RLMT, wo bestimmt als C2 45. Ausschachtung zwischen Dom und Liebfrauen. Im Hypokaustum in der Nähe des Präfurniums. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00587">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II. (für Constantius Gallus/Julian)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">587. Domgrabung A 659. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00588">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II. (für Constantius Gallus/Julian)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH (3?)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,34</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">588. Domgrabung A 660. Vs.: [   ](F/C)LIV[     ]. Korrodiert, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00589">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II. (für Julian)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">355/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH4</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">183,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589. Domgrabung A 652. Vs. DNCLIVLIANVSNOBCAES. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00590">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II. (für Julian)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">355/361</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 154</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">    C    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">452,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">590. Domgrabung A 651. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00591">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II. (für Julian)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">355/361</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES REIPVBLICE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">253,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591. Domgrabung A 661. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00592">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 82/89</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">122</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">592. Domgrabung A 432. Vs.: FLIVLCON[  ]AVG. Wohl Constantius II. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00593">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC 6-13</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">411</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">593. Domgrabung A 488. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00594">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Rom) 2ff.?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]² S? </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">115,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">594. Domgrabung A 492. Rs.: 1 Feldzeichen zw. 2 Soldaten. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00595">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantinsöhne</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">477</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">595. Domgrabung A 508. Vs.: Kopf n.r. (m. Lbkr.?). CON[   ]PFAVG. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00596">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 90</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">596. Domgrabung A 434. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00597">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 55/90</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">202,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">597. Domgrabung A 435. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00598">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 63</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTRSù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">230</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">598. Domgrabung A 421. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00599">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 90</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">599. Domgrabung A 433. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00600">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PAX PVBLICA</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,25</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">600. Domgrabung A 499. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00601">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PAX PVBLICA</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">601. Domgrabung A 501. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00602">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Helena</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PAX PVBLICA</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">496,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">602. Domgrabung A 500. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00603">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 43</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   +    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">108</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">603. Domgrabung A 419. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00604">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 56</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRPù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">97</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">604. Domgrabung A 420. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00605">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 56/65</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]TRPù  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">69</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">605. Domgrabung A 423. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00606">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 65</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùTRPù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">130</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">606. Domgrabung A 422. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00607">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 91</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]S°   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">202,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">607. Domgrabung A 438. Vs.: FLMAXTHEO-DORAEAVG. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00608">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 91</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">608. Domgrabung A 437. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00609">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodora</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">337/Apr. 340</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 91</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP°     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">609. Domgrabung A 436. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00610">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnentius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 312</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">610. Domgrabung A 637. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00611">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnentius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">352/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 316C</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">611. Domgrabung A 638. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00612">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnentius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">352/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 151</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RSLG Vs.: A   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">106</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">612. Domgrabung A 640. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00613">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II./Julian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358/361</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES REIPVBLICE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">613. Domgrabung A 662. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00614">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Constantius II./Julian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">358/361</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES REIPVBLICE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">614. Domgrabung A 663. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00615">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinus I.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">321</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Tre) 305 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">87</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">615. Domgrabung A 381. Vs.: Büste n.r. m. Trabea </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00616">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (für Crispus)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">320</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Tre) 255 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> STH  *      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">391</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">616. Domgrabung A 380. Vs.: behelm., gepanz. Büste n.r. CRISPVSNOBCAES. Rs:  Tropaion/Feldzeichen, darunter zwei Gefangene. VIИTVS-[  ]RCIT. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00617">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 2 Fz. Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">487,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">617. Domgrabung A 524. Vs.: drap. Büste n.l. m. Lbkr. CONSTANTINOIVNN ? Rs.: 2  Soldaten m. 2 Feldzeichen. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00618">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (für Constantin II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 2 Fz. Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">460</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">618. Domgrabung A 525. Vs.: drap. Büste n.r. m. Lbkr. [   ]NVSIVNNOB[  ]. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00619">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constans)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA EXERCITVS 1 Fz. Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">486</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619. Domgrabung A 531. Vs.: drap. Büste n.r. m. Diadem. [    ]SPAVG. Rs.: 2 Soldaten m. 1 Feldzeichen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00620">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constans)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Tre) 185 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   ²    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">79,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">620. Domgrabung A 631. Vs.: drap. Büste m. Rosettendiadem n.r. CONSTA-NSPFAVG. Rs.: 2 Victorien. VICTORIAE DD AVGGQ NN. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00621">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Tre) 105 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   M    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">86</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621. Domgrabung A 533. Vs.: drap. Büste n.r. m. Diadem CONSTANT[  ]  Rs.: 2 Soldaten m. 1 Feldzeichen GLORI-AEXER[  ]. Vs.-Legende etwas  grob. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00622">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Tre) 215/ 216 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TIIS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622. Domgrabung A 644. Vs.: drap. Büste n.r. m. Diadem. CONSTANT-IVSPFAVG. Rs.: Kaiser steht n.l. auf Galeere m. Phönix u. Labarum, am Heck Victoria. Pseudolegende. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00623">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">     IùL    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">117</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">623. Domgrabung A 664. Vs.: Büste n.r. m. Perlendiadem. CON[  ]S  Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00624">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">491</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">624. Domgrabung A 666. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter m. ausgestrecktem Arm. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00625">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">625. Domgrabung A 665. Vs.: drap. Büste n.r. m. Diadem. D[    ]VSFAVG. Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00626">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">626. Domgrabung A 669. Vs.: Kopf n.r. m. Diadem. Legendenreste. Rs.: stürzender Reiter m. ausgestrecktem Arm. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00627">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">247,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627. Domgrabung A 668. Vs.: DNCONS[  ]  Kopf n.r. m. Lbkr(?), stürzender Reiter m. ausgestrecktem Arm. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00628">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628. Domgrabung A 667. Vs.: Kopf n.r. m. Diadem.  Rs.: stürzender Reiter m. ausgestrecktem Arm. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00629">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH3 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">629. Domgrabung A 670. Vs: Kopf n.r. m. Diadem. Rs.: stürzender Reiter m. ausgestrecktem Arm. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00630">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH4 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">630. Domgrabung A 671. Vs.: drap. Büste n.r. m. Diadem. [  ]PFAVG.  Rs.: stürzender Reiter umklammert Pferd, spiegelverkehrt. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00631">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,14</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">631. Domgrabung A 672. Vs.: Kopf n.r. m. Diadem. Rs.: Fußsoldat/Virtus n.l. (stürzender Reiter?). Bestimmung wahrscheinlich. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00632">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">269</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">632. Domgrabung A 674. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00633">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">264</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">633. Domgrabung A 680. Vs.: Kopf n.r. (m. Diadem?)  Rs.: stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00634">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantius II.)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FEL TEMP REPARATIO FH Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634. Domgrabung A 673. Vs.: Kopf n.r. m. Diadem. Rs.: stürzender Reiter. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00635">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Helena)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PAX PVBLICA Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635. Domgrabung A 532. Vs.: unkenntlich. Rs.: Pax n.l. m. Zweig u. schrägem Zepter. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00636">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Lug) 236-240 Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">651</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">636. Domgrabung A 523. Vs.: Büste n.r. m. Lbkr./Diadem. Rs.: 2 Soldaten m. 2 Feldzeichen. [ ]IAEXI[ ]. Stark korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00637">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">555,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637. Domgrabung A 526. Vs.: Büste n.r. Rs.: 2 Soldaten m. 2 Feldzeichen. . Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00638">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">603</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">638. Domgrabung A 527. Vs.: Büste n.r. Rs. 2 Soldaten m. 2 Feldzeichen. Stark korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00639">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">323</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">639. Domgrabung A 528. Vs.: gepanz. Büste n.r. CON[  ]. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00640">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">640. Domgrabung A 529. Vs.: behelmte Büste n.l. CONSTAN[    ]. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00641">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">641. Domgrabung A 530. Vs.: behelmte Büste n.l. m. Speer. Rs.: 2 Soldaten m. 2 Feldzeichen. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00642">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,27</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">642. Domgrabung A 536. Vs.: Kopf n.r. CONST-ANT[   ]. Rs.: 2 Soldaten m. 1 Feldzeichen. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00643">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">311,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">643. Domgrabung A 543. Vs.: Kopf n.r. m. Diadem. Rs.: 2 Soldaten m. 1 Feldzeichen. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00644">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TAP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">92</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">644. Domgrabung A 534. Vs.: Büste n.r. m. Diadem. Legendenreste. Rs.: 1 Feldzeichen zw. 2 Soldaten. Korrodiert, wenig umgelaufen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00645">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">342</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">645. Domgrabung A 542. Vs.: Kopf n.r. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00646">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">646. Domgrabung A 538. Vs.: drap. Büste n.l. m. Lbkr. [  ]ODSV-TDTS. Rs.: 2 Soldaten m. 1 Feldzeichen. [   ]-TVA-RCI. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00647">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> QT   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">647. Domgrabung A 535. Vs.: Kopf n.r. m. Diadem. Legendenreste. Rs.: 2 Soldaten m. 1  Feldzeichen. Legendenreste. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00648">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">648. Domgrabung A 540. Vs.: Büste n.r. m. Lbkr./Diadem. Legendenreste. Rs.: 2 Soldaten  m. 1 Feldzeichen. Legendenreste. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00649">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,35</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">649. Domgrabung A 539. Vs.: Kopf n.r. m. Diadem. Rs.: 2 Soldaten m. 1 Feldzeichen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00650">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">89,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">650. Domgrabung A 541. Vs.: Kopf n.r. m. Perlendiadem Rs.: 2 Soldaten m. 1 Feldzeichen. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00651">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">523,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">651. Domgrabung A 537. Vs.: CON[   ]? Drap. Büste n.r. Rs.: 2 Soldaten m. 1 Feldzeichen? Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00652">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">577</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">652. Domgrabung A 566. Rs.: 2 Soldaten m. 1 Feldzeichen?. Schwach ausgeprägt. Eventuell auch Halbcentenionalis, 388-403. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00653">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">653. Domgrabung A 545. Vs.: behelmter Kopf n.l. Legendenreste. Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00654">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">654. Domgrabung A 544. Vs.: behelmter Kopf n.r. CONSTAN-[  ]. Rs.: 2 Soldaten m. 1 Feldzeichen.  GLO[  ]ITVS. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00655">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr. </nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">655. Domgrabung A 546. Vs.: behelmter Kopf n.l.  Rs.: 2 Soldaten m. 1 Feldzeichen. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00656">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1/2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">656. Domgrabung A 553. Vs.: behelmter Kopf n.l. CON[  ]   Rs.: 2 Soldaten?. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00657">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Gloria Exercitus 1/2 Fz.-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hybr.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">211,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">657. Domgrabung A 565. Vs.: behelmter Kopf.  Rs.: 2 Soldaten mit (1?) Feldzeichen. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00658">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLC   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">658. Domgrabung A 548. Vs.: behelmte Büste n.l. VRBS[   ]. Rs.: Wölfin m. Zwillingen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00659">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">659. Domgrabung A 549. Vs.: behelmte Büste n.l. VRBS-RO[  ]. Rs.: Wölfin m. Zwillingen. Wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00660">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">660. Domgrabung A 550. Vs.: behelmte Büste n.l. Rs.: Wölfin m. Zwillingen. Korrodiert, wenig umgelaufen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00661">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">660</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">661. Domgrabung A 552. Vs.: behelmter Kopf n.l. Rs.: Wölfin m. Zwillingen. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00662">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Urbs Roma)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wölfin mit Zwillingen</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">662. Domgrabung A 551. Vs.: behelmter Kopf. Rs.: Wölfin m. Zwillingen. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00663">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]TO?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">565</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">663. Domgrabung A 556. Vs.: behelmte Büste n.l. Legendenreste. Rs.: Victoria n.l. auf Prora. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00664">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ••I••   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">664. Domgrabung A 554. Vs.: behelmte Büste n.l. m. Thyrsos. CONSTAN[    ]. Rs.: Victoria auf Prora. . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00665">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PLG   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">665. Domgrabung A 555. Vs.: behelmter Kopf n.l. Rs.: Victoria auf Prora. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00666">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">91</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">666. Domgrabung A 557. Vs.: behelmter Kopf n.l. Legendenreste. Rs.: Victoria n.l. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00667">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">667. Domgrabung A 559. Vs.: behelmter Kopf n.l. Rs.: Viktoria n.l. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00668">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">489,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">668. Domgrabung A 564. Rs.: Victoria auf Prora. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00669">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">669. Domgrabung A 558. Vs.: behelmter Kopf n.r.? Rs.: Victoria. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00670">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">251,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">670. Domgrabung A 562. Vs.: Kopf n.l.? Rs.: weibl. Gestalt (wohl Victoria) m. Schild rechts. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00671">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">214</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">671. Domgrabung A 563. Vs.: behelmter Kopf n.l.  [   ]STAN[   ]. Rs.: Victoria.. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00672">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">211,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">672. Domgrabung A 560. Vs.: behelmter Kopf n.l.  Rs.: Victoria. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00673">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">673. Domgrabung A 561. Vs.: behelmter Kopf n.l.  Rs.: Victoria n.l.? Schlecht zentriert. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00674">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyb.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">674. Domgrabung A 547. Vs.: Kopf n.r. m. Diadem. Rs.: Victoria auf Prora. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00675">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Constantinopolis?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Victoria auf Prora</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">398</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">675. Domgrabung A 567. Vs.: (behelmter?) Kopf n.r. Legendenreste. Rs.: Victoria n.l.? Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00676">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">76,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">676. Domgrabung A 676. Rs.: stürzender Reiter m. ausgestrecktem Arm. Legendenreste. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00677">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]T[  ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">677. Domgrabung A 675. Vs: Kopf n.r. Rs.: stürzender Reiter m. ausgestrecktem Arm. Korrodiert, kaum abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00678">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">678. Domgrabung A 677. Rs.: stürzender Reiter. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00679">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">414,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">679. Domgrabung A 679. Vs.: Kopf n.r. Rs.: stürzender Reiter. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00680">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">414,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">680. Domgrabung A 678. Vs.: Kopf n.r. Rs.: stürzender Reiter. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00681">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">308,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">681. Domgrabung A 681. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00682">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">310,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">682. Domgrabung A 682. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00683">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">683. Domgrabung A 684. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00684">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">414,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">684. Domgrabung A 683. Vs.: Kopf n.r. Rs.: stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00685">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Fel Temp Reparatio Reitersturz Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">353/357?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">414,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">685. Domgrabung A 685. Rs.: stürzender Reiter? Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00686">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Magnentius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICT DD NN AVG ET CAE (1) Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  PLC Vs.: A   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">686. Domgrabung A 645. Vs.: drap. Büste n.r. DNMIIGN-TIVSVIIIG. Rs.: 2 Victorien halten Schild, darin [  ]/V/MVLT/X. VICTDDNNAVG[   ]. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00687">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (Magnentius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD NN AVG ET CAE (2/3) Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PPLG SV Vs.: A </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">515,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">687. Domgrabung A 647. Vs.: drap. Büste n.r. DNMAG[    ]IVSPFAVG. Rs.: 2 Victorien halten Schild, darin VOT/MVL. VI[    ]ETCAE. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00688">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 615.-689. (für Decentius)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">351/352</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIAE DD NN AVG ET CAE (2/3) Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">688. Domgrabung A 646. Vs.: drap. Büste n.r. [     ]OBCAES. Rs.: 2 Victorien halten Schild, darin Pseudobuchstaben. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00689">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">330/360</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">689. Domgrabung A 1064. Vs: Kopf n.r. Rs.: unkenntliche Darstellungsreste, stürzender Reiter? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00690">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sil</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">141</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">690. Domgrabung A 811. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00691">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS  D/°      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">691. Domgrabung A 690. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00692">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CONST  OF II  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">258</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">692. Domgrabung A 753. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00693">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQP     B  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">693. Domgrabung A 835. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00694">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.   </nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMA[ ]     B/ù</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">694. Domgrabung A 836. In zwei Teile zerbrochen. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00695">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">      ¶   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">695. Domgrabung A 837. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00696">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGSR   O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">270</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">696. Domgrabung A 705. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00697">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS(A?) O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">697. Domgrabung A 704. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00698">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (LV?)[ ]  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">698. Domgrabung A 735. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00699">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS   O FII/¶  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">699. Domgrabung A 706. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00700">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]VG[ ]  O FII/¶  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">700. Domgrabung A 707. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00701">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGSù   O FII/°  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">273</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">701. Domgrabung A 709. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00702">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS    O FII/°  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">85</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">702. Domgrabung A 708. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00703">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS   O FII/S  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">503</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">703. Domgrabung A 710. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00704">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS   O FII/Rt  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">618,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">704. Domgrabung A 711. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00705">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 16a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">314,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">705. Domgrabung A 778. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00706">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCO[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">508,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">706. Domgrabung A 785. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00707">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">707. Domgrabung A 786. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00708">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 8433b</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">708. FO: Domplatz. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00709">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (T?)CON   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">420</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">709. Domgrabung A 787. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00710">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">710. Domgrabung A 788. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00711">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PC[  ]  (ù?)    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">711. Domgrabung A 782. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00712">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON  N      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">712. Domgrabung A 783. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00713">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON  N      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">516,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">713. Domgrabung A 784. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00714">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 23a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² R(P?)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">714. Domgrabung A 812. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00715">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² RP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">238,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">715. Domgrabung A 814. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00716">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² RP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">241</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">716. Domgrabung A 813. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00717">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQ[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">717. Domgrabung A 838. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00718">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQ[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">718. Domgrabung A 839. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00719">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùSMAQP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">132,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">719. Domgrabung A 840. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00720">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] ¼      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">630,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">720. Domgrabung A 844. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00721">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQ(P?)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">529,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">721. Domgrabung A 846. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00722">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMA[  ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">454,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">722. Domgrabung A 845. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00723">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ÉSISC  */P (S?) </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">723. Domgrabung A 860. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00724">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ÉSISC  */F  S  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">529,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">724. Domgrabung A 861. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00725">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SIS[ ]  R/·  F  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">511,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">725. Domgrabung A 863. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00726">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> âSISCú   A/·   F  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">184</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">726. Domgrabung A 862. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00727">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10a/20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG(S?)  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">727. Domgrabung A 734. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00728">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10a/20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]VG(SP?)O  FII   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">39,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">728. Domgrabung A 736. Korrodiert, wenig abgegriffen. Gefunden Juli 1899 im "Schutte unter der Domsakristei". </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00729">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10a/20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]G?[ ]  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">618,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">729. Domgrabung A 737. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00730">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10a/20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">730. Domgrabung A 738. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00731">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10a/20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">526,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">731. Domgrabung A 739. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00732">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a/16a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  OF  II  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 6727a</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">732. FO: Domfreihof 8. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00733">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a/16a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> OF [ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">543</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">733. Domgrabung A 793. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00734">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a/23a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]RIM[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">419,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">734. Domgrabung A 816. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00735">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15a/23a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ùSECVNDA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">325</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">735. Domgrabung A 817. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00736">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a/24a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ùTERTIA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">736. Domgrabung A 826. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00737">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17a/24a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]TERTIA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">516,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">737. Domgrabung A 827. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00738">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a/11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQ[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">128,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">738. Domgrabung A 850. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00739">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7a/11a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SMAQS  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">739. Domgrabung A 851. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00740">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">740. Domgrabung A 873. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00741">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">741. Domgrabung A 872. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00742">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">742. Domgrabung A 869. Kaum abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00743">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">109</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">743. Domgrabung A 871. Abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00744">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">529,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">744. Domgrabung A 870. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00745">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPBVLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">620</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">745. Domgrabung A 876. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00746">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">631,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">746. Domgrabung A 875. Ein Viertel ausgebrochen. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00747">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">126,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">747. Domgrabung A 877. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00748">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">354</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">748. Domgrabung A 874. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00749">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">123,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">749. Domgrabung A 686. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00750">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">750. Domgrabung A 688. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00751">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">751. Domgrabung A 687. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00752">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS  D   °   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">523,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">752. Domgrabung A 689. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00753">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP*    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">578,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">753. Domgrabung A 691. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00754">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">295</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">754. Domgrabung A 692. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00755">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP´     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">102</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">755. Domgrabung A 693. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00756">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP  ±       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">311,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">756. Domgrabung A 694. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00757">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  ±       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">538</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">757. Domgrabung A 695. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00758">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON(ST?) OF  II  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">615</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">758. Domgrabung A 751. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00759">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON  OF  II/ù </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">759. Domgrabung A 752. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00760">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CONST  OF  II </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">760. Domgrabung A 754. Prägefrisch. Mit 506.04 zusammenklebend. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00761">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CONST  OF  II </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">761. Domgrabung A 755. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00762">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CONST  OF [ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">25</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">762. Domgrabung A 758. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00763">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON(ST?) OF? [ ] </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">43</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">763. Domgrabung A 759. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00764">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> C[  ]  OF II/ù </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">113,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">764. Domgrabung A 756. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00765">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]  OF II/ù </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">253,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">765. Domgrabung A 757. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00766">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/367</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON   B      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">766. Domgrabung A 760. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00767">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 32b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRSù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">290</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">767. Domgrabung A 698. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00768">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 32b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP   *      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">768. Domgrabung A 696. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00769">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]     OF/S I/R </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,23</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">769. Domgrabung A 727. korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00770">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGPA  OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">770. Domgrabung A 717. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00771">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP(B/D) OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">432</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">771. Domgrabung A 718. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00772">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP OF  I   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">93</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">772. Domgrabung A 719. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00773">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">773. Domgrabung A 720. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00774">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG(P) OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">71</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">774. Domgrabung A 722. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00775">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (L)VGP OF  (I)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">513,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">775. Domgrabung A 721. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00776">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG OF  I/´  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">37</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">776. Domgrabung A 724. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00777">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP OF  I/¶  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">504</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">777. Domgrabung A 728. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00778">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ] OF  I/¶  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">778. Domgrabung A 725. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00779">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP OF  I/°  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">779. Domgrabung A 726. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00780">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP  S   ¶   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">780. Domgrabung A 723. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00781">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 16b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">139,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">781. Domgrabung A 780. Korrodiert, wenig abgegriffen. Gefunden Juli 1899 im "Schutte unter der Domsakristei". </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00782">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 16b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON  OF  II  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">782. Domgrabung A 779. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00783">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON  ù      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">247,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">783. Domgrabung A 789. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00784">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON  ù      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">784. Domgrabung A 790. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00785">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  ù      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">595</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">785. Domgrabung A 791. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00786">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">416</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">786. Domgrabung A 792. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00787">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùSMAQP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">399</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">787. Domgrabung A 842. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00788">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">616,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">788. Domgrabung A 841. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00789">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ùSMAQP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">789. Domgrabung A 847. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00790">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> •SMAQS   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">558</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">790. Domgrabung A 848. Fast prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00791">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ASI[  ] */P ù/M </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">791. Domgrabung A 864. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00792">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (A?)S[ ] */R/O ù/M </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">410,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">792. Domgrabung A 865. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00793">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ASIS[ ] R/[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">103,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">793. Domgrabung A 866. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00794">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">375/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 23a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP  C   I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">794. Domgrabung A 747. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00795">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c/30b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">795. Domgrabung A 699. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00796">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c/30b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP(´ ?)   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">515,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">796. Domgrabung A 698. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00797">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b/32b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRP(*?)   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">238,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">797. Domgrabung A 700. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00798">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b/32b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">616,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">798. Domgrabung A 701. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00799">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c/30b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]RS[ ]?   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">799. Domgrabung A 703. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00800">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10b/20b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  O FI(?)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">510</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">800. Domgrabung A 740. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00801">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12/21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ] OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">801. Domgrabung A 745. Prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00802">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12/21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ] OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">433</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">802. Domgrabung A 744. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00803">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12/21a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG(P?)  [ ]F  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">803. Domgrabung A 746. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00804">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b/17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  OF  II  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">512,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">804. Domgrabung A 794. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00805">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b/17b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  OF [ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">805. Domgrabung A 795. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00806">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] O  FI  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">806. Domgrabung A 806. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00807">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] O  FI  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">612,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">807. Domgrabung A 805. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00808">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] O  FI  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">808. Domgrabung A 807. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00809">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF I[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">809. Domgrabung A 808. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00810">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15b/23b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ECVND[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">134</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">810. Domgrabung A 818. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00811">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> R•PRIMA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">811. Domgrabung A 819. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00812">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RùPRIMA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">238,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">812. Domgrabung A 820. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00813">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]PRIMA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">813. Domgrabung A 821. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00814">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]PRIM[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">814. Domgrabung A 822. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00815">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RSECVNDA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">127</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">815. Domgrabung A 823. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00816">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ECVNDA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">616,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">816. Domgrabung A 825. Zur Hälfte weggebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00817">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ECVNDA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">149</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">817. Domgrabung A 824. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00818">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/24b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RùTERTIA  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">818. Domgrabung A 828. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00819">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 7b/12b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SMAQP[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,17</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">819. Domgrabung A 842. Fast Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00820">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b/12b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SMAQS  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">820. Domgrabung A 853. Prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00821">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 16b/18a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">618,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">821. Domgrabung A 796. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00822">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">556</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">822. Domgrabung A 798. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00823">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">257</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">823. Domgrabung A 799. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00824">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">246,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">824. Domgrabung A 800. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00825">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">125</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">825. Domgrabung A 801. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00826">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">99</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">826. Domgrabung A 802. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00827">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24b/28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² RP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">612,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">827. Domgrabung A 831. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00828">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24b/28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² RP   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">259,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">828. Domgrabung A 832. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00829">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 23b/27a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² R[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">126,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">829. Domgrabung A 830. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00830">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24b/28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM² R[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">623</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">830. Domgrabung A 833. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00831">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 5c/47a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">499,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">831. Domgrabung A 702. Rs.: Kaiser mit nach hinten wehendem Mantel. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00832">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9b/ 17b/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]ON[ ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">494</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">832. Domgrabung A 804. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00833">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 18b/ 27b/32</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TES(â?)   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">833. Domgrabung A 868. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00834">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">136</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">834. Domgrabung A 882. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00835">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">137</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">835. Domgrabung A 881. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00836">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">40</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">836. Domgrabung A 883. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00837">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">837. Domgrabung A 884. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00838">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">45,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">838. Domgrabung A 898. Vs.: [ ]LEN-[  ]? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00839">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">96</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">839. Domgrabung A 896. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00840">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">654</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">840. Domgrabung A 893. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00841">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">841. Domgrabung A 894. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00842">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">842. Domgrabung A 897. Am Rande ausgebrochen. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00843">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">123,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">843. Domgrabung A 895. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00844">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">312,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">844. Domgrabung A 889. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00845">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">410,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">845. Domgrabung A 891. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00846">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">497</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">846. Domgrabung A 890. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00847">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">519</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">847. Domgrabung A 892. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00848">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">848. Domgrabung A 906. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00849">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valens?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">849. Domgrabung A 899. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00850">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12/21?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (LVG?)[ ] [ ]  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">422,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">850. Domgrabung A 749. Vs.: DNVALEN[   ]. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00851">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">311,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">851. Domgrabung A 809. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00852">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 16</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]O[ ] [  ]  II/ù </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">852. Domgrabung A 781. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00853">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17/19a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">132,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">853. Domgrabung A 797. Vs.: DNVA[  ]. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00854">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">509</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">854. Domgrabung A 886. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00855">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS  O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">613,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">855. Domgrabung A 712. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00856">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ] O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">856. Domgrabung A 714. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00857">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ] O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">857. Domgrabung A 713. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00858">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">493</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">858. Domgrabung A 715. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00859">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">123,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">859. Domgrabung A 716. Vs.: DNGRATIAN-VSAVGGAVG. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00860">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGPR  OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">860. Domgrabung A 729. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00861">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP[ ]  OF  I   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">548</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">861. Domgrabung A 730. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00862">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP  OF I/¶   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">862. Domgrabung A 732. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00863">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP  OF I/¶   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,18</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">863. Domgrabung A 731. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00864">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG(P?) OF/S I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">864. Domgrabung A 733. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00865">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCONù    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">129,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">865. Domgrabung A 761. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00866">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON  N      </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">866. Domgrabung A 762. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00867">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON[ ] OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">237,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">867. Domgrabung A 763. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00868">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CON  OF  I  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">209</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">868. Domgrabung A 764. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00869">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF I[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">142</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">869. Domgrabung A 767. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00870">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF  III  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">870. Domgrabung A 766. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00871">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF II(I)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">311,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">871. Domgrabung A 765. Abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00872">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">872. Domgrabung A 769. Korrodiert, prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00873">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">873. Domgrabung A 768. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00874">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">874. Domgrabung A 771. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00875">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">875. Domgrabung A 775. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00876">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">545</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">876. Domgrabung A 774. Fast prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00877">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">521,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">877. Domgrabung A 772. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00878">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">878. Domgrabung A 773. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00879">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">879. Domgrabung A 770. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00880">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 8433</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">880. FO: Domplatz. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00881">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TC[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">614</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">881. Domgrabung A 776. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00882">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 15</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">515,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">882. Domgrabung A 777. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00883">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]PRIMA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">883. Domgrabung A 815. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00884">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 12c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> •SMAQ[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,22</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">884. Domgrabung A 849. Fast prägefrisch. Verbogen und ausgebrochen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00885">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 11c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMAQ(P?)  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">246,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">885. Domgrabung A 843. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00886">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ÉSISC¡  F R/·   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">578,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">886. Domgrabung A 858. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00887">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> âSISC   M */F  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">466</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">887. Domgrabung A 857. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00888">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SISC¡  F R/¦   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">506,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">888. Domgrabung A 859. Prägefrisch. Mit 506.05 zusammenklebend. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00889">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">375/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CO[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">527,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">889. Domgrabung A 927. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00890">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 21b?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  OF?  [ ] </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">890. Domgrabung A 750. Vs.: [ ]RATIAN-[  ]. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00891">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14c/21b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]SISC[ ]   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">242,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">891. Domgrabung A 867. Vs.: [  ]NVSPFAVG. Stark korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00892">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GLORIA ROMANORVM (6-8)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">892. Domgrabung A 880. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00893">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 68a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">465,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">893. Domgrabung A 911. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00894">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG(S)     S  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1=(RLMT 2956)</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">894. Domgrabung A 919. Wenig abgegriffen? Verbogen, in zwei Teile zerbrochen. Inv. RLMT: Die wichtige Münze Gratians, welche im Mauer des Doms zu Trier gefunden wurde, vgl. Wilmowsky, Der Dom zu Trier. St. Beissel, Geschichte der Trierer Kirchen, ihrer Reliquien und Kunstschätze. I. Theil: Gründungsgeschichte. Trier 1887, 90-131 - F. Hettner, KorrBlWdZ 18, 1899, Sp. 151 Nr. 84 sowie 19, 1900, 409 u. 411. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00895">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ]       S   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">642</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">895. Domgrabung A 920. Schwach ausgeprägt. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00896">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 30a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">75</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">896. Domgrabung A 925. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00897">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 24</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,790b</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">897. Domgrabung A 928. 1906 im Kohlenkeller zwischen Dom und Liebfrauen in Schickt b) der Römerstraße. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00898">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10/20/22b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">478,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">898. Domgrabung A 748. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00899">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,37</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">899. Domgrabung A 887. Vs.: [     ]NVSPFAVG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00900">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 14</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  Q? */K  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">418,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">900. Domgrabung A 856. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00901">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10/20</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (LVG?)[ ] O FI[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">417</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">901. Domgrabung A 741. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00902">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10/20</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]G[ ] O  FII  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">902. Domgrabung A 742. Kaum abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00903">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 10/20</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  O  F[ ] </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">617,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">903. Domgrabung A 743. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00904">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 17/24</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> RùPRIMA   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">10</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">904. Domgrabung A 829. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00905">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Rom) 17/24?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]ERTIA?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">124,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">905. Domgrabung A 834. Vs.: Kopf n.r. m. Diadem.  Rs.: Victoria n.l.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00906">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valens/Gratian</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/375</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">335,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">906. Domgrabung A 878. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00907">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 68b var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">19</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">907. Domgrabung A 912. Vs.: DNVALENTINIANVSIVN(AVG?)  Sicher nicht .PFAVG. Vgl. Ú116. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00908">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 71b var.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">116</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">908. Domgrabung A 914. Vs.: DNVALENTINIANVSIVN(AVG?)  Sicher nicht .PFAVG. Vgl. Ú19. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00909">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">909. Domgrabung A 921. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00910">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 20</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CON   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ST 8433d</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">910. FO: Domplatz. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00911">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VIRTVS ROMANORVM</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">238,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">911. Domgrabung A 934. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00912">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CONCORDIA AVGGG Roma</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">526,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">912. Domgrabung A 933. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00913">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">913. Domgrabung A 956. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00914">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">586</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">914. Domgrabung A 957. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00915">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVG[ ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">283,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">915. Domgrabung A 958. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00916">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">916. Domgrabung A 959. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00917">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 58a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> AQS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">917. Domgrabung A 972. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00918">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,29</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">918. Domgrabung A 976. Vs.: durchgehende Legende?. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00919">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">104,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">919. Domgrabung A 975. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00920">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGGG (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">920. Domgrabung A 978. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00921">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGGG (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">921. Domgrabung A 977. Vs.: VALENTINI-ANVSPFAVG  Rs.: VICTOR-IAAVGGG. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00922">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGGG (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">185</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">922. Domgrabung A 979. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00923">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">375/378?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">923. Domgrabung A 879. Vs.: kleiner Kopf, durchgehende Legende. Sehr knapper Schrötling. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00924">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">559</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">924. Domgrabung A 981. Vs.: [    ]INI-[    ]?. Schwach ausgeprägt. Prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00925">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian II.?</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (1)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">925. Domgrabung A 980. Unregelmäßig ausgeprägt, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00926">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SECVRITAS REIPVBLICAE</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,19</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">926. Domgrabung A 888. Kleiner Kopf, eher Valentinianus II. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00927">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinian I./Valentinian II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mz</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/393</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">927 Domgrabung -. Verschollen. „Eine Münze des Valentinians II.“: J. Wiegand, Vortrag über den Dom zu Trier (Niederschrift eines beim Trierer Philiologentag von 1921 gehaltenen Vortrags. Im Besitz des BDDM); „Eine Münze Valentinians I.“: N. Irsch, Der Dom zu Trier. (= Kunstdenkmäler der Rheinprovinz 13,1). Düsseldorf 1931 68. Zusammenfassend: W. Weber, , Der »Quadratbau« des Trierer Domes und sein polygonaler Einbau – eine »Herrenmemoria«? In: E. Aretz u.a., Der Heilige Rock zu Trier. Studien zur Geschichte und Verehrung der Tunika Christi. Trier 1995, 917 </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00928">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Gloria Romanorum-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">500</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">928. Domgrabung A 885. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00929">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Gloria Romanorum-Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">929. Domgrabung A 907. Vs.: großer Kopf n.r. Rs.: steh. Kaiser m. Labarum?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00930">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.   </nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [   ] OF [ ]</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">930. Domgrabung A 810. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00931">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9/17/19</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">931. Domgrabung A 803. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00932">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 9/12/18</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMA[ ]? [    ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">638</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">932. Domgrabung A 854. Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00933">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SM[  ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">613,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">933. Domgrabung A 855. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00934">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">571</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">934. Domgrabung A 904. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00935">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">540</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">935. Domgrabung A 901. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00936">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">936. Domgrabung A 900. Am Rande ausgebrochen. Korrodiert, abgegriffen?. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00937">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">183,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">937. Domgrabung A 902. Rs. Victoria n.l. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00938">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">630,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">938. Domgrabung A 903. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00939">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Securitas Reipubliace-Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/378?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">939. Domgrabung A 905. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00940">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 68c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">274,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">940. Domgrabung A 913. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00941">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 28a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP     S  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ST 6727b</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">941. FO: Domfreihof 8. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00942">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">332</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">942. Domgrabung A 923. Prägefrisch. Haftete an Mörtelklumpen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00943">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">513,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">943. Domgrabung A 922. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00944">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">263,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">944. Domgrabung A 924. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00945">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VIRTVS ROMANORVM   </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,790a</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">945. Domgrabung A 935. 1906 im Kohlenkeller zwischen Dom und Liebfrauen in Schickt b) der Römerstraße. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00946">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 98b?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> T[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">946. Domgrabung A 954. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00947">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 30d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">947. Domgrabung A 963. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00948">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 30d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">948. Domgrabung A 964. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00949">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 30d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> (T?)CON  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">206,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">949. Domgrabung A 966. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00950">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 30d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">396</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">950. Domgrabung A 965. Korrodiert, kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00951">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A[  ] bzw. R[  ] º   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">951. Domgrabung A 974. Unregelmäßiger Schrötling. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00952">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">554,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">952. Domgrabung A 983. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00953">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">953. Domgrabung A 982. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00954">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,32</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">954. Domgrabung A 984. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00955">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,33</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">955. Domgrabung A 986. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00956">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">956. Domgrabung A 985. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00957">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosius I.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">13,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">957. Domgrabung A 987. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00958">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]VG[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">958. Domgrabung A 961. Vs.: [  ](AD)IVSPFAVG. Durchgehende Legende. Abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00959">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/392</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 44d</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">959. Domgrabung A 960. Kaum abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00960">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 98c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[ ]bzw.TR  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">960. Domgrabung A 944. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00961">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 98c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]R    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">120</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">961. Domgrabung A 945. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00962">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 98c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">259,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">962. Domgrabung A 943. Rs.: VICTORI-AAVGGG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00963">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 97c/98c/107b; (X) 1299</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">170,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">963. Domgrabung A 946. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00964">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX)98c/107b; (X) 1299</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">206,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">964. Domgrabung A 947. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00965">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (X)1299</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">256</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">965. Domgrabung A 948. Rs.: Doppelschlag? Ziemlich sicher nur AVGG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00966">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30e; (X) 1306</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">966. Domgrabung A 968. Korrodiert, prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00967">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30e; (X) 1306</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">234</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">967. Domgrabung A 967. Rs.: [  ]AVGGG. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00968">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGGG (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[ ]O[ ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">505,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">968. Domgrabung A 988. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00969">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">544</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">969. Domgrabung A 990. Vs.: durchgehende Legende. Leicht verbogen. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00970">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">553</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">970. Domgrabung A 989. Vs.: [    ]DI-VSPFAVG. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00971">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">277</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">971. Domgrabung A 992. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00972">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">308,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">972. Domgrabung A 991. Vs.: [ ]CADI-[ ]. Abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00973">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 58c; (X )1237?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> AQ[ ]?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">384,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">973. Domgrabung A 973. Vs.: DNARC[   ]?. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00974">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,28</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">974. Domgrabung A 996. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00975">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]P? º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">574</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">975. Domgrabung A 993. Korrodiert, abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00976">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">84</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">976. Domgrabung A 994. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00977">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SALVS REIPVBLICAE (2)</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">245,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">977. Domgrabung A 995. Vs.: DN(A?)[  ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00978">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arcadius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">978. Domgrabung A 997. Vs.: Büste m. Diadem n.r. [  ]CADIV[   ]? Durchgehende Legende. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00979">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 85</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTRP  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">560</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">979. Domgrabung A 915. Schwach ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00980">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 85</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]TRP    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">263,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">980. Domgrabung A 916. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00981">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 86</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">155</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">981. Domgrabung A 917. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00982">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 32</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> LVGS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">77,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">982. Domgrabung A 926. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00983">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 29a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">107</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">983. Domgrabung A 931. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00984">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 26a</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">233</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">984. Domgrabung A 929. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00985">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 26b</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">462</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">985. Domgrabung A 930. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00986">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">REPARATIO REIPVB</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">986. Domgrabung A 938. Schwach ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00987">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">REPARATIO REIPVB</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">495,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">987. Domgrabung A 937. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00988">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES ROMANORVM</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">604</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">988. Domgrabung A 939. Kaum abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00989">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Flavius Victor</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 87c</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> SMTR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">522</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">989. Domgrabung A 918. Vs.: [   ]-TORPFAVG. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00990">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus/Flavius Victor</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">387/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 55?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]AQ[ ]?  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">198,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">990. Domgrabung A 932. Vs.: unkenntlich. Rs.: Lagertor. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00991">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus/Flavius Victor</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES ROMANORVM</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">647</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">991. Domgrabung A 940. Eher schwach ausgeprägt als abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00992">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnus Maximus/Flavius Victor</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">383/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPES ROMANORVM</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">635,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">992. Domgrabung A 941. Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00993">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Honorius</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">395/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1) </nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">541,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">993. Domgrabung A 998. Vs.: DNHONORI-[    ]. Getrennte Legende. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00994">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">541,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">994. Domgrabung A 1036. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00995">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,36</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">995. Domgrabung A 1035. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00996">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º        </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">551</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">996. Domgrabung A 1032. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00997">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">247,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">997. Domgrabung A 1031. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00998">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º       </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">369,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">998. Domgrabung A 1033. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-00999">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º        </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">487,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">999. Domgrabung A 1034. Vs.: [    ]-VSPFAVG. . Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01000">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  º        </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">451</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1000. Domgrabung A 1039. Rs.: Victoria n.l. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01001">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">426</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1001. Domgrabung A 1037. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01002">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">160</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1002. Domgrabung A 1038. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01003">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 97</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRS   </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,784a</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1003. Domgrabung A 949. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01004">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 97/108; (X) 1299-1301</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">589,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1004. Domgrabung A 950. Korrodiert </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01005">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 97/108; (X) 1299-1301</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1005. Domgrabung A 951. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01006">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 97/108; (X) 1299-1301</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">507,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1006. Domgrabung A 952. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01007">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 97/108; (X) 1299-1301</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> T[  ]    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">541,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1007. Domgrabung A 953. Schwach ausgeprägt. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01008">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wie RIC (IX) 97/108; (X) 1299-1301</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TR?    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">394</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1008. Domgrabung A 955. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01009">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30; (X) 1306-1307</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> PCON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1009. Domgrabung A 962. Vs.: DNVALEN[  ]ANVSPFAVG?. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01010">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30; (X) 1306-1307</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]O[  ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">197</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1010. Domgrabung A 970. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01011">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30; (X) 1306-1307</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [  ]ON    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">148</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1011. Domgrabung A 969. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01012">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (IX) 30; (X) 1306-1307</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]CO[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">541,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1012. Domgrabung A 971. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01013">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">542</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1013. Domgrabung A 1006. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01014">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT 07,784a</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1014. Domgrabung A1000. Ausschachtung zwischen Dom und Liebfrauen, im Hypokaustum in der Nähe des Präfurniums. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01015">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">567,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1015. Domgrabung A 1010. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01016">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">570,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1016. Domgrabung A 1015. Prägefrisch? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01017">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1017. Domgrabung A 1026. Ovaler Schrötling. Einseitig geprägt? Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01018">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">546</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1018. Domgrabung A 1003. Schwach ausgeprägt, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01019">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1019. Domgrabung A 1013. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01020">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">272</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1020. Domgrabung A 1018. Prägefrisch. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01021">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">278</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1021. Domgrabung A 1021. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01022">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1022. Domgrabung A 1022. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01023">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">242,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1023. Domgrabung A 1008. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01024">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1024. Domgrabung A 1007. Abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01025">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1025. Domgrabung A 1002. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01026">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">252,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1026. Domgrabung A 1023. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01027">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">208,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1027. Domgrabung A 1005. Vs.: unkenntlich.  Rs.: Victoria n.l. VIC[   ]. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01028">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">307</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1028. Domgrabung A 1011. Vs.: DNARC[  ]? Arcadius?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01029">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">382</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1029. Domgrabung A 1017. Stark abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01030">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">397</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1030. Domgrabung A 1020. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01031">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">402,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1031. Domgrabung A 1016. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01032">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">376</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1032. Domgrabung A 1025. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01033">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">406,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1033. Domgrabung A 1027. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01034">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">434,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1034. Domgrabung A 1019. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01035">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">461,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1035. Domgrabung A 999. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01036">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">499,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1036. Domgrabung A 1009. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01037">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">495,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1037. Domgrabung A 1012. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01038">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">448</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1038. Domgrabung A 1014. Vs.: [    ]-VSPF[   ]. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01039">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">459</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1039. Domgrabung A 1024. Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01040">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,26</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1040. Domgrabung A 1004. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01041">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1041. Domgrabung A 1001. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01042">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">402,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1042. Domgrabung A 1030. Rs.: Victoria n.l.? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01043">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">569,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1043. Domgrabung A 1029. Rs.: Victoria n.l. Schwach ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01044">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Victoria Augg(g)-Typ?)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">105</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1044. Domgrabung A 1028. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01045">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">570,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1045. Domgrabung A 1049. Rs.: Victoria n.l. Ausgebrochen, schlecht ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01046">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">576,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1046. Domgrabung A 1043. Rs.: Victoria n.l. Schwach ausgeprägt, wohl wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01047">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">587</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1047. Domgrabung A 1045. Rs.: Victoria n.l.?. Schwach ausgeprägt. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01048">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">561</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1048. Domgrabung A 1042. Rs.: Victoria n.l. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01049">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">110,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1049. Domgrabung A 1047. Vs.: Büste n.r. m. Diadem.  [ ]AVG. Rs.: Victoria n.l.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01050">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">112,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1050. Domgrabung A 1041. Vs.: Kopf n.r. m. Diadem. [  ]ADI[  ]? Rs.: Victoria n.l.? Schlecht zentriert. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01051">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">369,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1051. Domgrabung A 1040. Vs.: Kopf n.r. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01052">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">350</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1052. Domgrabung A 1046. Vs.: Büste m. Diadem n.r. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01053">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">461,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1053. Domgrabung A 1048. Rs.: Victoria? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01054">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Salus Reipublicae/Victoria Augg(g)-Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC ?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">476</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1054. Domgrabung A 1044. Rs.: Victoria n.l. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01055">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt (Vota Typ)</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/388</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vota</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">578,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1055. Domgrabung A 936. Vs.: kleiner Kopf n.r. Rs.: Kranz, darin VOT?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01056">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Iovinus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sil</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">411/413</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC 1711; DOC 810, 811</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> TRMS    </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">392,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1056. Domgrabung A 1056. Vs.: drap. Büste n.r. m. Diadem. DNIOVIN-VSPFAVG. Rs.: Roma  thront n.l. m. Victoriola u. Zepter. VICTOR-IAAVGG. Wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01057">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gratianus</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">367/378</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Aqu) 11c/ 17b-Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> [ ]MAQ[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">520,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1057. Domgrabung A 910. Vs.: drap. Büste n.r. m. Diadem. DNGRATI-VSPIIVVG. Rs.: Kaiser m. Gefangenem u. Labarum. GLOIIIAI-IIINORVM. Wenig abgegriffen.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01058">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Valentinianus II.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mai</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RIC (Sis) 26b-Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> A I     </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">90</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1058. Domgrabung A 942. Vs. drap. Büste n.r. m. Diad. DN[]NVšIVNPFAVG. Rs. Kaiser m. kniender Frau u. Victoriola. REPARATIO-[]PVB. Wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01059">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theodosianische Dynastie</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/395</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">VICTORIA AVGG(G) (1)-Typ</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string">  [ ]OV[ ]  </nmo:hasLegend>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">215</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1059. Domgrabung A 1055. Vs.: sehr kleine Büste n.r. m. Diad. Legendenreste. Rs.: Victoria n.l. m. Kranz. Legendenreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01060">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/383?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1060. Domgrabung A 908. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01061">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cen?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">364/383?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1061. Domgrabung A 909. Vs.: Büste n.r. m. Diadem. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01062">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1062. Domgrabung A 1051. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01063">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">569,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1063. Domgrabung A 1054. Rs.: Victoria n.l.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01064">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Blei</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">244</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1064. Domgrabung A 1053. Undeutliche Darstellungsreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01065">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Blei</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">246,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1065. Domgrabung A 1050. Keine erkennbare Prägung. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01066">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hce?</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">388/403?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">528,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1066. Domgrabung A 1052. Vs.: kleiner Kopf n.r. Rs.: Victoria n.l.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01067">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE2</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">592</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1067. Domgrabung A 1067. Unkenntlich. As bzw. Maiorina? Zwei parallele Einhiebe, durch einen ein Viertel abgetrennt. Verbogen. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01068">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE2</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">386</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1068. Domgrabung A 1066. Vs. Kopf n.r. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01069">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">421</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1069. Domgrabung A 1068. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01070">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">563</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1070. Domgrabung A 1103. Vs.: unkenntlich. Rs.: Lagertor?. Vs. erinnert an eine "Aduatuker"-Kleinbronze, jedoch passen Rs. und Schrötling nicht. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01071">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">656</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1071. Domgrabung A 1107. Keine erkennbare Prägung. Barbarisierung bzw. Hce, Ende 4. Jh.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01072">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">657</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1072. Domgrabung A 1074. Unkenntlich. Korrodiert. Haftet an Mörtelrest. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01073">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">641</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1073. Domgrabung A 1093. Vs.: Kopf n.r. (m. Diadem?). Rs.: unkenntliche Darstellung. Legendenreste. Korrodiert. Follis bzw. Halbcentenionalis? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01074">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,72</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1074. Domgrabung A 1114. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01075">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,76</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1075. Domgrabung A 1104. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01076">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,77</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1076. Domgrabung A 1108. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01077">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">637,69</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1077. Domgrabung A 1113. Unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01078">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">634,21</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1078. Domgrabung A 1128. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01079">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">617,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1079. Domgrabung A 1088. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01080">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE2</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">halb.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,16</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1080. Domgrabung A 1070. Dicker, wohl unbeprägter Schrötling. Korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01081">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,15</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1081. Domgrabung A 1118. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01082">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">628,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1082. Domgrabung A 1078. Vs.: Kopf n.r. m. Strkr.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01083">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">611</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1083. Domgrabung A 1098. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01084">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">617,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1084. Domgrabung A 1121. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01085">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">581</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1085. Domgrabung A 1086. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01086">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">610</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1086. Domgrabung A 1076. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01087">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">619,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1087. Domgrabung A 1097. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01088">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1088. Domgrabung A 1102. Unkenntlich. Eckiger Schrötling. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01089">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1089. Domgrabung A 1127. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01090">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1090. Domgrabung A 1091. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01091">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">621,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1091. Domgrabung A 1124. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01092">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">627,6</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1092. Domgrabung A 1112. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01093">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">631,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1093. Domgrabung A 1079. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01094">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">633</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1094. Domgrabung A 1099. Unkenntlich. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01095">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">268,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1095. Domgrabung A 1109. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01096">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">274,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1096. Domgrabung A 1075. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01097">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">275,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1097. Domgrabung A 1129. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01098">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">282,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1098. Domgrabung A 1069. Vs.: Kopf n.r.? . Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01099">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">265,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1099. Domgrabung A 1083. Vs.: Kopf (wohl m. Diadem) n.r. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01100">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">265,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1100. Domgrabung A 1100. Vs. u. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01101">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">227,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1101. Domgrabung A 1087. Keine erkennbare Prägung. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01102">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">248,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1102. Domgrabung A 1101. Rs.: Altar? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01103">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">251,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1103. Domgrabung A 1105. Vs.: (bärtiger?) Kopf n.r. Keine Strkr. sichtbar. Rs.: Altar? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01104">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">210,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1104. Domgrabung A 1110. Rs.: Victoria n.l.?  [  ]-IA[ ] ? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01105">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">210,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1105. Domgrabung A 1123. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01106">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">219</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1106. Domgrabung A 1116. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01107">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">198,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1107. Domgrabung A 1082. Vs.: kleiner Kopf ?  Rs.: [  ]AV[  ] ?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01108">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">198,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1108. Domgrabung A 1089. Unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01109">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">216</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1109. Domgrabung A 1080. Vs. bzw. Rs.: [  ]AO[  ] ? Stark korrodiert.  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01110">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">191</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1110. Domgrabung A 1125. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01111">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1111. Domgrabung A 1117. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01112">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">83</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1112. Domgrabung A 1077. Rs.: Victoria n.l.?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01113">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">132,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1113. Domgrabung A 1092. Vs.: behelmter Kopf n.l.? Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01114">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">181</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1114. Domgrabung A 1085. Keine erkennbare Prägung. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01115">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">378</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1115. Domgrabung A 1120. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01116">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">413,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1116. Domgrabung A 1130. Unkenntliche Darstellungsreste. Stark ausgebrochenes Fragment. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01117">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1117. Domgrabung A 1115. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01118">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">379,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1118. Domgrabung A 1111. Unkenntliche Darstellungsreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01119">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">393</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1119. Domgrabung A 1094. Vs.: Büste n.r. m. Diadem? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01120">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">400,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1120. Domgrabung A 1122. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01121">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">404</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1121. Domgrabung A 1119. Vs.: Kopf n.r. m. Strkr.? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01122">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frag.</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">406,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1122. Domgrabung A 1126. Vs.: Kopf n.r. Rs.: steh. Gestalt. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01123">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">418,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1123. Domgrabung A 1072. Vs.: Kopf n.r. m. Diadem? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01124">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">182</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1124. Domgrabung A 1106. Vs.: Kopf n.r. m. Diadem? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01125">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">455,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1125. Domgrabung A 1084. Rs.: Victoria auf Prora? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01126">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">496,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1126. Domgrabung A 1071. Unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01127">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">508,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1127. Domgrabung A 1095. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01128">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">514,8</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1128. Domgrabung A 1081. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01129">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">518,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1129. Domgrabung A 1096. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01130">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">520,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1130. Domgrabung A 1073. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01131">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">529,3</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1131. Domgrabung A 1090. Vs.: Kopf n.r. Rs.: Victoria? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01132">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4.Jh.?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">369,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1132. Domgrabung A 1147. Keine erkennbare Prägung. Rechteckig ausgestanztes Blech. Münze?  </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01133">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol/Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">591,18</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1133. Domgrabung A 1060. Vs.: Kopf n.r. [     ]NSTAN[     ]? Rs.: unkenntlich. Ausgebrochen. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01134">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol/Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">133,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1134. Domgrabung A 1059. Vs.: Büste n.r.  Rs.: 2 Soldaten bzw. Victorien, dazwischen  Feldzeichen od. Zweig?. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01135">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol/Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">250,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1135. Domgrabung A 1058. Vs.: Kopf n.r. m. (Perlendiadem?). Rs.: Victoria n.l.?. Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01136">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">622,13</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1136. Domgrabung A 1062. Korrodiert, abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01137">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">103,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1137. Domgrabung A 1061. Vs.: Kopf n.r. m. Diadem. Rs.: unkenntlich. Korrodiert, wenig abgegriffen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01138">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/403</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">132,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1138. Domgrabung A 1063. Vs.: Kopf n.r. m. Diadem. Rs.: unkenntlich. Reitersturz? Stark korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01139">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 8537</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1139. Verschollen. FO: Domfreihof. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01140">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unbestimmt</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">?</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RLMT ST 8537</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1140. Verschollen. FO: Domfreihof. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01141">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fol/Cen</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ca. 335/383</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">516,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1141. Domgrabung A 1065. Vs.: Kopf n.r. (m. Diadem?). Rs.: Kaiser steht n.r. m. Gefangenem u. Labarum? (GLORIA ROMANORVM [6-8], 364-378?). Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01142">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">280,9</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1142. Domgrabung A 1133. Keine erkennbare Darstellungsreste. Unbeprägt? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01143">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">283,1</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1143. Domgrabung A 1140. Rs.: Altar? Korrodiert, wenig abgegriffen? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01144">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">304,5</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1144. Domgrabung A 1135. Vs.: Kopf n.r. (m. Strkr.?). Rs.: steh. Gestalt m. erhob. l. Arm. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01145">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">305</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1145. Domgrabung A 1138. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01146">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">306</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1146. Domgrabung A 1137. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01147">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">309,2</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1147. Domgrabung A 1134. Keine erkennbare Prägung. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01148">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">100,7</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1148. Domgrabung A 1131. Vs.: unkenntlich. Rs.: steh. Gestalt n.l. (Pax m. Zweig od. Spes? bzw. Fußsoldat vom Reitersturz?). Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01149">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">121,11</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1149. Domgrabung A 1139. Vs. u. Rs.: unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01150">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">368</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1150. Domgrabung A 1142. Vs.: Kopf n.r. m. Strkr.? Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01151">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">355</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1151. Domgrabung A 1145. Keine erkennbare Prägung. Korrodiert, verbogen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01152">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">334</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1152. Domgrabung A 1146. Unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01153">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">319</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1153. Domgrabung A 1132. Dicker Schrötling. Unbeprägt? </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01154">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE4</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">375</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1154. Domgrabung A 1141. Keine erkennbare Prägung. Sehr dünner Schrötling, am Rande verbogen. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01155">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AE3</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">381</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1155. Domgrabung A 1136. Unkenntliche Darstellungsreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01156">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">415,12</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1156. Domgrabung A 1144. Vs. u. Rs. Unkenntlich. Korrodiert. </skos:note>\n</rdf:Description>\n\n<rdf:Description rdf:about="https://lod.academy/fmrd/id/FMRD-04-03-02-3006-01-01157">\n\t<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>\n\t<rdf:type rdf:resource="http://nomisma.org/ontology#NumismaticObject"/>\n\t<rdf:type rdf:resource="http://rdfs.org/ns/void#Dataset"/>\n\t<void:inDataset rdf:resource="http://www.fda.adwmainz.de"/>\n\t<orca:hasConfidenceLevel rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</orca:hasConfidenceLevel>\n\t<nmo:hasAuthority rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Barbarisierungen: Nr. 1140.-1157.</nmo:hasAuthority>\n\t<nmo:hasDenomination rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Min</nmo:hasDenomination>\n\t<nmo:hasProductionDate rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2. H. 3./4. Jh.</nmo:hasProductionDate>\n\t<nmo:hasReferenceWork rdf:datatype="http://www.w3.org/2001/XMLSchema#string">s. Anm.</nmo:hasReferenceWork>\n\t<nmo:hasPeculiarity rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nan</nmo:hasPeculiarity>\n\t<nmo:hasLegend rdf:datatype="http://www.w3.org/2001/XMLSchema#string"/>\n\t<dcterms:bibliographicCitation rdf:datatype="http://www.w3.org/2001/XMLSchema#string">454,4</dcterms:bibliographicCitation>\n\t<skos:note rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1157. Domgrabung A 1143. Unkenntliche Darstellungsreste. Korrodiert. </skos:note>\n</rdf:Description>\n\n</rdf:RDF>'
In [11]:
#XTriples Ergebnis als RDF speichern
with open("muenzdaten_als_RDF.rdf", "w", encoding="utf-8") as out:
    out.writelines(r.text)