diff --git a/preparation/xylem/.dockerignore b/preparation/xylem/.dockerignore new file mode 100644 index 0000000..ffcf276 --- /dev/null +++ b/preparation/xylem/.dockerignore @@ -0,0 +1,24 @@ +# Build artifacts +_build/ +deps/ + +# IDE +.vscode/ +.idea/ +*.iml + +# Test +test/ + +# Docs +doc/ + +# Git +.git/ +.gitignore + +# macOS +.DS_Store + +# Temp +tmp/ \ No newline at end of file diff --git a/preparation/xylem/.formatter.exs b/preparation/xylem/.formatter.exs new file mode 100644 index 0000000..d2cda26 --- /dev/null +++ b/preparation/xylem/.formatter.exs @@ -0,0 +1,4 @@ +# Used by "mix format" +[ + inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"] +] diff --git a/preparation/xylem/.gitignore b/preparation/xylem/.gitignore new file mode 100644 index 0000000..ff658f3 --- /dev/null +++ b/preparation/xylem/.gitignore @@ -0,0 +1,26 @@ +# The directory Mix will write compiled artifacts to. +/_build/ + +# If you run "mix test --cover", coverage assets end up here. +/cover/ + +# The directory Mix downloads your dependencies sources to. +/deps/ + +# Where third-party dependencies like ExDoc output generated docs. +/doc/ + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez + +# Ignore package tarball (built via "mix hex.build"). +xylem-*.tar + +# Temporary files, for example, from tests. +/tmp/ + +# Output data +/priv/data/wikidata/ diff --git a/preparation/xylem/Dockerfile b/preparation/xylem/Dockerfile new file mode 100644 index 0000000..9e5ab71 --- /dev/null +++ b/preparation/xylem/Dockerfile @@ -0,0 +1,29 @@ +FROM elixir:1.18.4-otp-27-slim + +# CA-Zertifikate für HTTPS-Downloads installieren +RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* + +WORKDIR /app + +# Fix this issue on Apple Silicon: https://elixirforum.com/t/unable-to-compile-default-elixir-project-from-the-getting-started-guide/57199/12 +ENV ERL_FLAGS="+JPperf true" + +ENV MIX_ENV=prod + +# Hex und rebar installieren +RUN mix local.hex --force && \ + mix local.rebar --force + +# Dependencies zuerst kopieren (für besseres Caching) +COPY mix.exs mix.lock ./ +RUN mix deps.get && mix deps.compile + +# Restlichen Code kopieren +COPY config config +COPY lib lib + +RUN mix compile + +VOLUME ["/app/data", "/app/priv"] + +ENTRYPOINT ["mix", "xylem.generate"] \ No newline at end of file diff --git a/preparation/xylem/README.md b/preparation/xylem/README.md new file mode 100644 index 0000000..30d0d1b --- /dev/null +++ b/preparation/xylem/README.md @@ -0,0 +1,45 @@ +# Xylem + +Daten-Pipeline für das BaumBie-Projekt. Lädt Baumarten-Daten von Wikidata basierend auf einer CSV-Datei mit Wikidata-IDs. + +**Input:** `data/Baumarten-wikidata.csv` (CSV mit Wikidata-IDs) +**Output:** `priv/data/wikidata/raw/*.ttl` (RDF-Daten im Turtle-Format) + + +## Nutzung mit Docker + +### Image bauen + +```bash +docker compose build +``` + +### Pipeline ausführen + +```bash +# Alle Spezies verarbeiten +docker compose run --rm xylem + +# Anzahl limitieren +docker compose run --rm xylem --limit 10 +``` + +### Optionen + +- `--csv PATH` - Pfad zur Input-CSV-Datei (default: `data/Baumarten-wikidata.csv`) +- `--raw PATH` - Verzeichnis für die Output-TTL-Dateien (default: `priv/data/wikidata/raw`) +- `--limit N` - Nur N Spezies verarbeiten + + +## Lokale Entwicklung (mit Elixir) + +```bash +# Dependencies installieren +mix deps.get + +# Tests +mix test + +# Pipeline ausführen +mix xylem.generate +``` \ No newline at end of file diff --git a/preparation/xylem/config/config.exs b/preparation/xylem/config/config.exs new file mode 100644 index 0000000..455c4f5 --- /dev/null +++ b/preparation/xylem/config/config.exs @@ -0,0 +1,9 @@ +import Config + +config :sparql_client, + protocol_version: "1.1", + update_request_method: :direct + +config :tesla, :adapter, Tesla.Adapter.Hackney + +import_config "#{Mix.env()}.exs" diff --git a/preparation/xylem/config/dev.exs b/preparation/xylem/config/dev.exs new file mode 100644 index 0000000..becde76 --- /dev/null +++ b/preparation/xylem/config/dev.exs @@ -0,0 +1 @@ +import Config diff --git a/preparation/xylem/config/prod.exs b/preparation/xylem/config/prod.exs new file mode 100644 index 0000000..becde76 --- /dev/null +++ b/preparation/xylem/config/prod.exs @@ -0,0 +1 @@ +import Config diff --git a/preparation/xylem/config/test.exs b/preparation/xylem/config/test.exs new file mode 100644 index 0000000..9de1a01 --- /dev/null +++ b/preparation/xylem/config/test.exs @@ -0,0 +1,6 @@ +import Config + +config :exvcr, + vcr_cassette_library_dir: "test/fixtures/vcr_cassettes" + +config :logger, level: :warning diff --git a/preparation/xylem/data/Baumarten-wikidata.csv b/preparation/xylem/data/Baumarten-wikidata.csv new file mode 100644 index 0000000..4e392b7 --- /dev/null +++ b/preparation/xylem/data/Baumarten-wikidata.csv @@ -0,0 +1,403 @@ +baumart_bo,baumart_de,wikidata_id +Quercus robur,Stiel-Eiche,Q165145 +Carpinus betulus,Gemeine Hainbuche,Q158776 +Acer campestre,Feld-Ahorn,Q158785 +Tilia cordata,Winter-Linde,Q158746 +Alnus glutinosa,Schwarz-Erle,Q156904 +Acer pseudoplatanus,Berg-Ahorn,Q156944 +Acer platanoides,Spitz-Ahorn,Q26745 +Betula pendula,Sand-Birke,Q156895 +Fagus sylvatica,Rotbuche,Q146149 +Fraxinus excelsior,Gemeine Esche,Q156907 +Pinus sylvestris,Gemeine Kiefer,Q133128 +Salix alba,Silber-Weide,Q156918 +Tilia platyphyllos,Sommerlinde,Q156831 +Tilia × europaea,Holländische Linde,Q163760 +Platanus × acerifolia,Gewöhnliche Platane,Q24853030 +Salix caprea,Sal-Weide,Q159565 +Prunus avium,Vogel-Kirsche,Q165137 +Robinia pseudoacacia,Gemeine Robinie,Q157417 +Corylus colurna,Baum-Hasel,Q148939 +Quercus rubra,Amerikanische Roteiche,Q147525 +Prunus padus,Trauben-Kirsche,Q165424 +Aesculus hippocastanum,Roßkastanie,Q26899 +Sorbus intermedia,Schwedische Mehlbeere,Q27980 +Malus domestica,Kulturapfel,Q18674606 +Acer platanoides 'Globosum',Kugelahorn,Q9577526 +Alnus incana,Grau-Erle,Q157641 +Tilia × euchlora,Krim-Linde,Q159657 +Picea abies,Gemeine Fichte,Q145992 +Carpinus betulus 'Fastigiata',Säulenhainbuche,Q115916785 +Sorbus aucuparia,Gemeine Eberesche,Q146198 +Pinus nigra,Schwarz-Kiefer,Q145954 +Acer saccharinum,Silber-Ahorn,Q158301 +Prunus serrulata 'Kanzan',Japanische Zierkirsche,Q130256726 +Liquidambar styraciflua,Amberbaum,Q469652 +Quercus petraea,Trauben-Eiche,Q158608 +Juglans regia,Walnuß,Q46871 +Taxus baccata,Gemeine Eibe,Q179729 +Prunus,Kirsche,Q190545 +Crataegus monogyna,Eingriffliger Weißdorn,Q161511 +Larix decidua,Europäische Lärche,Q146048 +Prunus serrulata,Japanische Blüten-Kirsche,Q165321 +Prunus avium,Hauskirsche,Q165137 +Populus,Pappel,Q25356 +Tilia × europaea,Kaiserlinde,Q163760 +Metasequoia glyptostroboides,Urwelt-Mammutbaum,Q156800 +Populus nigra,Schwarz-Pappel,Q147064 +Fraxinus ornus,Blumen-Esche,Q161421 +Aesculus × carnea,Rotblühende Roßkastanie,Q163779 +Pyrus pyraster,Holz-Birne,Q149332 +Ulmus glabra,Berg-Ulme,Q147498 +Quercus robur 'Fastigiata',Pyramiden-Eiche,Q2379170 +Tsuga canadensis,Kanadische Hemlocktanne,Q1137143 +Parrotia persica,Parrotie,Q1138533 +Sorbus aria,Mehlbeere,Q157960 +Quercus palustris,Sumpf-Eiche,Q161253 +Amelanchier × lamarckii,Kupfer-Felsenbirne,Q161702 +Acer pseudoplatanus var. purpurascens,Rotblättrige Sorte des Berg-Ahorn,Q9578905 +Populus alba,Weiß-Pappel,Q146269 +Pseudotsuga menziesii,Küsten-Douglasie,Q156687 +Cercidiphyllum japonicum,Katsurabaum,Q526549 +Malus domestica,Hausapfel,Q18674606 +Pterocarya fraxinifolia,Kaukasische Flügelnuß,Q121749 +Prunus domestica,Kultur-Pflaume,Q44120 +Prunus spinosa,Schlehe,Q129018 +Cornus mas,Kornelkirsche,Q158642 +Betula papyrifera,Papier-Birke,Q76971 +Ginkgo biloba,Ginkgobaum,Q43284 +Ulmus,Ulme,Q131113 +Fagus sylvatica f. purpurea,Blutbuche,Q886511 +Tilia tomentosa,Silber-Linde,Q161382 +Populus tremula,Espe,Q146110 +Prunus serotina,Spätblühende Trauben-Kirsche,Q158987 +Malus domestica,Apfel,Q18674606 +Acer platanoides,Sorte vom Spitz-Ahorn,Q26745 +Ostrya carpinifolia,Europäische Hopfenbuche,Q1367533 +Betula pubescens,Moor-Birke,Q157624 +Pyrus calleryana,Chinesische Goldbirne,Q3079266 +Castanea sativa,Eßkastanie,Q22699 +Ulmus × hollandica,Holländische Ulme,Q504004 +Populus × canadensis,Kanadische-Hybrid-Pappel,Q149622 +Crataegus laevigata,Zweigriffeliger Weißdorn,Q159553 +Ulmus,Holländische Ulme,Q131113 +Quercus cerris,Zerr-Eiche,Q157277 +Robinia pseudoacacia 'Umbraculifera',Kugelrobinie,Q130467225 +Pyrus communis,Hausbirne,Q146281 +Prunus,Zierkirsche,Q190545 +Sophora japonica,Schnurbaum,Q10881597 +Chamaecyparis lawsoniana,Lawsons Scheinzypresse,Q161360 +蒿柳,Korb-Weide,Q158590 +Lederblättriger Weißdorn,Lavalles Weißdorn,Q1693676 +Aesculus hippocastanum 'Baumannii',Nichtfruchtende Roßkastanie,Q130494148 +Thuja occidentalis,Abendländischer Lebensbaum,Q147468 +Ulmus minor,Feld-Ulme,Q147487 +Ilex aquifolium,Stechpalme,Q192190 +Ailanthus altissima,Götterbaum,Q159570 +Salix alba 'Tristis',Trauer-Weide,Q104188716 +Acer negundo,Eschen-Ahorn,Q161166 +Robinia pseudoacacia,Einblättrige Robinie,Q157417 +Acer rubrum,Rot-Ahorn,Q161364 +Acer platanoides var. schwedleri,Rotblättrige Sorte des Spitz-Ahorn,Q9578817 +Gleditsia triacanthos f. inermis,Dornenlose Gleditsie,Q119410364 +Crataegus laevigata ʽPaul's Scarlet’,Rotdorn,Q1281102 +Prunus cerasifera 'Nigra',Blutpflaume,Q886711 +Populus nigra var. italica,Pyramiden-Pappel,Q3377825 +Picea omorika,Serbische Fichte,Q147824 +Liriodendron tulipifera,Tulpenbaum,Q158783 +Amelanchier,Felsenbirne,Q156957 +Prunus cerasifera,Kirsch-Pflaume,Q146951 +Fagus sylvatica f. pendula,Trauer-Buche,Q1642256 +Crataegus,Weißdorn,Q132557 +Carpinus betulus 'Fastigiata',Säulenhainbuche,Q115916785 +Crataegus crus-galli,Hahnensporn-Weißdorn,Q916961 +Magnolia,Magnolie,Q157017 +Malus domestica,Johannis Apfel,Q18674606 +Ulmus laevis,Flatter-Ulme,Q147492 +Prunus domestica subsp. syriaca,"Pflaume,Mirabelle",Q149741 +Quercus coccinea,Scharlach-Eiche,Q854714 +Salix fragilis,Bruch-Weide,Q157518 +Zurglbam,Südlicher Zürgelbaum,Q255375 +Acer tataricum subsp. ginnala,Feuer-Ahorn,Q631388 +Gymnocladus dioicus,Geweihbaum,Q549418 +Prunus avium 'Plena',Gefülltblühende Vogelkirsche,Q130355207 +Salix matsudana ‘Tortuosa’,Korkenzieher-Weide,Q26822180 +Chamaecyparis,Scheinzypresse,Q147791 +Catalpa bignonioides,Gewöhnlicher Trompetenbaum,Q163831 +Crataegus,Weißdorn,Q132557 +Abies nordmanniana,Nordmanns-Tanne,Q148920 +Prunus serrulata 'Amanogawa',Japanische Säulenkirsche,Q5821037 +Gleditsia,Gleditsie,Q161250 +Picea glauca,kanadische Fichte,Q128116 +Pinus strobus,Weymouthskiefer,Q157230 +Davidia involucrata,Taschentuchbaum,Q334697 +Gleditsia triacanthos 'Sunburst',Gleditschie 'Sunburst',Q110766967 +Acer palmatum,Fächer-Ahorn,Q269224 +Salix,Weide,Q36050 +Betula nigra,Schwarz-Birke,Q1510231 +Magnolia kobus,Kobushi-Magnolie,Q942409 +Acer saccharinum,Sorte vom Silber-Ahorn,Q158301 +Quercus frainetto,Ungarische Eiche,Q857075 +Acer platanoides ʽFaassen's Black’,Schwarzblättriger-Ahorn,Q110765992 +Cryptomeria japonica,Sicheltanne,Q147388 +Acer monspessulanum,Französischer Ahorn,Q161388 +Acer,Ahorn,Q42292 +Abies alba,Weiß-Tanne,Q146992 +Picea orientalis,Orient-Fichte,Q1145286 +Thuja plicata,Riesen-Lebensbaum,Q147417 +Malus sylvestris,Holz-Apfel,Q47161 +Betula pendula,Hängebirke,Q156895 +Quercus,Eiche,Q12004 +Alnus cordata,Italienische Erle,Q1543689 +Acer campestre 'Elsrijk',Kegel-Feldahorn,Q4673145 +Acer saccharum,Zucker-Ahorn,Q214733 +Ilex,Großblättrige Stechpalme,Q117085 +Chamaecyparis obtusa,Hinoki-Scheinzypresse,Q917187 +Juniperus communis,Gemeiner Wacholder,Q26325 +Fagus sylvatica 'Dawyck',Säulen-Buche,Q130388544 +Sorbus aria,Sorte der Mehlbeere,Q157960 +Quercus robur,Sorte der Stieleiche,Q165145 +Acer griseum,Zimt-Ahorn,Q203985 +Larix kaempferi,Japanische Lärche,Q147439 +Cercis siliquastrum,Gemeiner Judasbaum,Q29488 +Acer pseudoplatanus 'Leopoldii',Sorte vom Berg-Ahorn,Q114854806 +Cedrus atlantica,Atlas-Zeder,Q623489 +Betula pendula var. dalecarlica,Geschlitztblättrige Birke,Q89091247 +Picea pungens,Stech-Fichte,Q146025 +Pyrus,Birne,Q434 +Magnolia × soulangeana,Tulpen-Magnolie,Q731443 +Crataegus prunifolia,Pflaumenblättriger Weißdorn,Q15536927 +Amelanchier laevis,Kahle Felsenbirne,Q163825 +Nyssa sylvatica,Wald-Tupelobaum,Q3179665 +Pinus wallichiana,Tränen-Kiefer,Q747652 +Fagus sylvatica,Schlitzblättrige Buche,Q146149 +Prunus mahaleb,Weichsel-Kirsche,Q161920 +Prunus sargentii,Sargents-Kirsche,Q163039 +Sorbus aucuparia,Eberesche,Q146198 +Cornus,Hartriegel,Q159545 +Catalpa,Trompetenbaum,Q158072 +Malus ×moerlandsii,Zierapfel,Q50843985 +Populus × canescens,Bastard-Schwarz-Pappel,Q149553 +Amelanchier laevis,Essbare Felsenbirne,Q163825 +Corylus avellana,Haselnuß,Q124969 +Morus alba,Weiße Maulbeere,Q157307 +Cydonia oblonga,Quitte,Q43300 +Euonymus europaeus,Pfaffenhütchen,Q161379 +Acer cappadocicum,Kolchischer-Ahorn,Q766133 +Tilia cordata,Kleinkronige Winter-Linde,Q158746 +Juniperus chinensis,Chinesischer Wacholder,Q157697 +Acer tataricum,Tatarischer Steppen-Ahorn,Q162728 +Picea pungens,Blau-Fichte,Q146025 +Crataegus monogyna 'Stricta',Weißdorn 'Stricta',Q130237568 +Populus × berolinensis,Berliner Lorbeer-Pappel,Q4460779 +Catalpa bignonioides ‘Nana’,Kugel-Trompetenbaum,Q2073370 +Tsuga heterophylla,Westliche Hemlocktanne,Q1144409 +Quercus imbricaria,Schindel-Eiche,Q528713 +Fraxinus angustifolia,Schmalblättrige Esche,Q518949 +Betula jacquemontii,Himalaja-Birke,Q38528595 +Robinia pseudoacacia,Robinie,Q157417 +Magnolia stellata,Stern-Magnolie,Q839507 +Ulmus americana,Amerikanische Ulme,Q469382 +Tilia,Linde,Q127849 +Fraxinus excelsior 'Diversifolia',Einblatt-Esche,Q110766606 +Picea sitchensis,Sitka-Fichte,Q147426 +Austrian pine,Östereichische Schwarz-Kiefer,Q4730748 +Populus alba,Sorte der Weiß-Pappel,Q146269 +Paulownia tomentosa,Blauglockenbaum,Q157393 +Malus × purpurea,Sorte vom Purpurapfel,Q886464 +Malus × floribunda,Japanischer Apfel,Q1683370 +Liquidambar,Amberbaum,Q183543 +Abies,Tanne,Q25350 +Ulmus,Hybrid-Ulme,Q131113 +Celtis occidentalis,Nordamerikanischer Zürgelbaum,Q470006 +Acer pseudoplatanus 'Atropurpureum',Sorte vom Berg-Ahorn,Q110765849 +Betula platyphylla,Mandschurische Birke,Q1373854 +Prunus × subhirtella 'Autumnalis',Winterblühende Berg-Kirsche,Q10860787 +Quercus pubescens,Flaum-Eiche,Q161415 +Betula maximowicziana,Maximowiczs Birke,Q1623892 +Pyrus calleryana,Chinesische Birne,Q3079266 +Fraxinus ornus,Kugel Blumenesche,Q161421 +Platanus,Platane,Q163025 +Quercus robur,Stieleiche 'Fastigiata Kloster',Q165145 +Picea,Fichte,Q26782 +Alnus,Erle,Q25239 +Prunus domestica subsp. syriaca,"Pflaume,Mirabelle",Q149741 +Robinia pseudoacacia 'Unifoliola',Einblättrige Robinie,Q130467230 +Sambucus nigra,Schwarzer Holunder,Q22701 +Ulmus × hollandica ʽWredei’,Goldulme,Q1536195 +Golden Hornet,Zierapfel,Q99646388 +Cupressus,Zypresse,Q146911 +Acer japonicum,Japanischer Ahorn,Q149269 +Taxodium distichum,Sumpfzypresse,Q148950 +Tilia americana,Amerikanische Linde,Q163981 +Laburnum anagyroides,Gemeiner Goldregen,Q147939 +Betula,Birke,Q25243 +Cornus kousa,Japanischer Hartriegel,Q728441 +巨杉,Mammutbaum,Q149851 +Sequoia sempervirens,Küsten-Sequoie,Q150129 +Tetradium daniellii,Samthaarige Stinkesche,Q837237 +Ulmus glabra 'Pendula',Hänge-Ulme,Q131673698 +Fagus sylvatica f. purpurea,Blut-Buche,Q886511 +Malus trilobata,Dreilappiger Apfel,Q10951249 +Sorbus intermedia,Sorbus intermedia `Brouwers`,Q27980 +Abies grandis,Riesen-Tanne,Q147434 +Acer platanoides,Sorte des Spitz-Ahorns,Q26745 +Pinus parviflora,Mädchenkiefer,Q178116 +Malus 'Evereste',Zierapfel,Q3396010 +Betula utilis subsp. jacquemontii,Himalaya Birke Doorenbos,Q28112572 +Magnolia macrophylla,Großblättrige Magnolie,Q1093540 +Cedrus atlantica ʽGlauca’,Hänge-Zeder,Q112257937 +Picea obovata,Sibirische Fichte,Q1137607 +Quercus × turneri,Wintergrüne Eiche,Q1325491 +Aralia elata,Japanischer Angelicabaum,Q284736 +Betula lenta,Zucker-Birke,Q227763 +Betula alleghaniensis,Gelb-Birke,Q1499241 +Pinus,Kiefer,Q12024 +Ilex,Stechpalme,Q117085 +Fraxinus excelsior 'Westhof's Glorie',Sorte der Esche,Q110766601 +Cornus alba,Tatarischer Hartriegel,Q158228 +Taxus baccata 'Fastigiata',Säuleneibe,Q110767650 +Cupressus arizonica,Zypresse,Q670040 +Acer platanoides 'Royal Red',"Spitzahorn ""Royal Red""",Q110765996 +Acer rubrum,Rotahorn,Q161364 +Prunus persica,Pfirsich,Q13189 +Quercus × turneri,Immergrüne-Eiche,Q1325491 +Acer platanoides 'Emerald Queen',Sorte vom Spitz-Ahorn,Q129511342 +Quercus palustris,Kugelsumpfeiche,Q161253 +Sorbus aucuparia 'Edulis',Eßbare Eberesche,Q130467792 +Quercus macranthera,Persische Eiche,Q1105707 +Quercus frainetto,ungarische Eiche,Q857075 +Quercus castaneifolia,Kastanienblättrige Eiche,Q1010050 +Fagus sylvatica,Buche,Q146149 +Liquidambar orientalis,Morgenländischer Amberbaum,Q2093169 +Mespilus germanica,Mispel,Q146186 +Fagus sylvatica var. quercifolia,Eichenblättrige Rotbuche,Q93327699 +Fraxinus excelsior,Esche,Q156907 +Pyrus salicifolia,Weidenblättrige Birne,Q1591053 +Metasequoia,Urweltmammutbaum,Q1825748 +Elaeagnus angustifolia,Schmalblättrige Ölweide,Q157969 +Chamaecyparis pisifera,Sawara-Scheinzypresse,Q74068 +Tetradium daniellii,Hupeh-Stinkesche,Q837237 +Koelreuteria paniculata,Blasenesche,Q844835 +Acer platanoides 'Dissectum',Geschlitzter Spitzahorn,Q129514890 +Malus tschonoskii,Wollapfel,Q1470571 +Rhamnus frangula,Faulbaum,Q11122869 +Malus × floribunda,Japanischer Zierapfel,Q1683370 +Abies procera,Edel-Tanne,Q1283223 +Magnolia liliiflora,Purpur-Magnolie,Q942031 +Acer platanoides,Sorte vom Spitz-Ahorn,Q26745 +Sorbus domestica,Speierling,Q159558 +Quercus × hispanica,Spanische Eiche,Q15337558 +Prunus × yedoensis,Yoshino-Kirsche,Q163078 +Acer cappadocicum 'Rubrum',Kolchischer Blut-Ahorn,Q18470510 +Quercus rubramenta,Sorte der Rot-Eiche,Q55943090 +Acer davidii,Davids-Ahorn,Q657935 +Viburnum rhytidophyllum,Runzelblättriger Schneeball,Q180606 +Larix,Lärche,Q25618 +Carpinus betulus,Hainbuche,Q158776 +Prunus serrulata,Japanische Hängekirsche,Q165321 +Pinus cembra,Zirbelkiefer,Q147278 +Rhus typhina,Essig-Baum,Q148986 +Plantanus orientalis,Morgenländische Platane,Q161105 +Populus balsamifera,Balsam-Pappel,Q149471 +Salix cinerea,Asch-Weide,Q157540 +Hippophae rhamnoides,Gemeiner Sanddorn,Q165378 +Tilia mongolica,Mongolische Linde,Q1944479 +Juglans nigra,Schwarznuß,Q852572 +Ulmus glabra ʽLutescens’,Sorte der Berg- Ulme,Q7879473 +Fraxinus latifolia,Oregon-Esche,Q1581524 +Cornus controversa,Pagoden-Hartriegel,Q926249 +Thuja,Lebensbaum,Q147255 +Halesia carolina,Schneeglöckchenbaum,Q3125935 +Acer capillipes,Roter Schlangenhautahorn,Q1089472 +Robinia pseudoacacia 'Semperflorens',"Robinie ""Semperflorens""",Q130467211 +Ulmus × hollandica,Sorte der Holländischen Ulme,Q504004 +Salix pentandra,Lorbeer-Weide,Q158912 +Zelkova serrata,Japanische Zelkove,Q920344 +Acer platanoides,Sorte vom Spitz-Ahorn,Q26745 +Abies concolor,Colorado-Tanne,Q145939 +Abies koreana,Korea-Tanne,Q390100 +Robinia pseudoacacia,Sorte der Robinie,Q157417 +Quercus muehlenbergii,Gelb Eiche,Q2611816 +Robinia pseudoacacia,Sorte der Robinie,Q157417 +Pyrus nivalis,Schneebirne,Q7263800 +Amelanchier alnifolia,Erlen-Felsenbirne,Q164158 +Alnus serrulata,Hasel-Erle,Q3926580 +Ailanthus altissima,Götterbaum,Q159570 +Aesculus × carnea 'Briotii',Sorte der Roten Roßkastanie,Q130257124 +Abies procera,Adels-Tanne,Q1283223 +Acer macrophyllum,Großblättriger Ahorn,Q599523 +Aesculus flava,Gelbe Pavie,Q159620 +Salix alba,Sorte der Silber-Weide,Q156918 +Acer × zoeschense,Zoeschener Ahorn,Q4673185 +Sorbus aria,Sorte der Mehlbeere,Q157960 +Betula albosinensis,Kupfer-Birke,Q1631520 +Acer rufinerve,Rosthaariger Streifen-Ahorn,Q285744 +Sciadopitys verticillata,Schirmtanne,Q161648 +Rhamnus frangula,Faulbaum,Q11122869 +Acer negundo f. aureovariegatum,Gelbblättriger Eschen-Ahorn,Q9578320 +Sambucus,Holunder,Q131448 +Sorbus arnoldiana,Eberesche,Q133698944 +Pinus mugo,Berg-Kiefer,Q147475 +Tilia cordata 'Greenspire',Sorte der Winter-Linde,Q130599614 +Tilia × euchlora,Selektion der Krimlinde,Q159657 +Gleditsia triacanthos ‘Skyline’,Gleditschie 'Skyline',Q131573892 +Ulmus carpinifolia,Ulme,Q3547946 +Fraxinus excelsior 'Pendula',Hänge-Esche,Q130374687 +Juglans regia,Walnußgewächs,Q46871 +Fraxinus angustifolia 'Raywood',Sorte der Schmalblättrigen Esche,Q130355880 +Juglans cinerea,Butternuß,Q630288 +Fraxinus americana,Weiße Esche,Q1193369 +Fagus sylvatica,Trauer-Blut-Buche,Q146149 +Fagus sylvatica 'Dawyck Purple',Säulenblutbuche 'Dawyck Purple',Q130389528 +Fagus sylvatica 'Atropunicea',Trauer-Blut-Buche,Q110765786 +fern-leaved beech,Farnblättrige Buche,Q16889035 +Acer buergerianum,Burgen Ahorn,Q941891 +Snake spruce,Schlangenfichte,Q11874202 +Phellodendron amurense,Amur-Korkbaum,Q481711 +Juniperus,Wacholder,Q25662 +Morus nigra,Schwarze Maulbeere,Q161040 +Juniperus virginiana,Virginischer Wacholder,Q157522 +Blutapfel,Purpur-Apfel,Q886464 +Malus sargentii,Strauch-Apfel,Q4992558 +Malus domestica,Apfel `Schöner aus Boskoop`,Q18674606 +Malus domestica,Apfel `Ravensberger`,Q18674606 +Malus domestica,Apfel `Holsteiner Cox`,Q18674606 +Malus ‘Royalty’,Zierapfel,Q15224657 +Laburnum × watereri,Voss' Goldregen,Q12317600 +Magnolia hypoleuca,Japanische Großblatt-Magnolie,Q50844817 +Magnolia grandiflora,Immergrüne Magnolie,Q161116 +Magnolia acuminata,Gurken-Magnolie,Q1249099 +Picea breweriana,Siskiyou-Fichte,Q476655 +Acer platanoides,Sorte vom Spitz-Ahorn,Q26745 +Pterocarya stenoptera,Chinesische Flügelnuß,Q2699896 +Xanthocyparis nootkatensis,Nootka-Scheinzypresse,Q163811 +Chamaecyparis lawsoniana,Sorte der Lawsons Scheinzypresse,Q161360 +Acer carpinifolium,Hainbuchen-Ahorn,Q284462 +Cedrus libani,Libanon-Zeder,Q61105 +Acer pseudoplatanus,Bergahorn 'Erectum',Q156944 +Betula pendula 'Youngii',Trauerbirke,Q4085300 +Betula pendula 'Purpurea',Purpurbirke,Q10431433 +Sorbus aucuparia 'Fastigiata',Säuleneberesche,Q130467801 +Pterocarya fraxinifolia,Kaukasische Flügelnu��,Q121749 +Pseudotsuga macrocarpa,Großfrüchtige Douglasie,Q1425070 +Prunus,Gefülltblühende Kirsch-Pflaume,Q190545 +Prunus serrulata,Japanische Bl��ten-Kirsche,Q165321 +Prunus incisa,Fuji-Kirsche,Q3269605 +Tilia cordata,Sorte der Winter-Linde,Q158746 +Prunus subg. Cerasus,Sauer-Kirsche,Q2946681 +Prunus cerasifera,Sorte der Kirsch-Pflaume,Q146951 +Prunus armeniaca,Kultur-Aprikose,Q37453 +Syringa vulgaris,Garten-Flieder,Q6565319 +Diospyros kaki,Kakipflaume,Q158482 +Cunninghamia lanceolata,Spießtanne,Q149115 +Crataegus laevigata ʽPaul's Scarlet’,Rotdorn,Q1281102 +Taxus baccata,Eibe,Q179729 +Crataegus coccinea,Scharlach-Weißdorn,Q3002196 +Corylus avellana,Hasel,Q124969 +Cladrastis lutea,Amerikanisches Gelbholz,Q87599757 +Populus × canadensis,Serotina-Hybrig-Pappel,Q149622 +Populus lasiocarpa,Chinesische Großblatt-Pappel,Q1306148 +Tilia americana 'Nova',Sorte der Amerikanischen Linde,Q130533394 +Pinus ponderosa,Gelb-Kiefer,Q460523 +Sorbus intermedia,Nordische Mehlbeere,Q27980 diff --git a/preparation/xylem/docker-compose.yml b/preparation/xylem/docker-compose.yml new file mode 100644 index 0000000..7bc90b1 --- /dev/null +++ b/preparation/xylem/docker-compose.yml @@ -0,0 +1,6 @@ +services: + xylem: + build: . + volumes: + - ./data:/app/data + - ./priv:/app/priv \ No newline at end of file diff --git a/preparation/xylem/lib/mix/tasks/xylem.generate.ex b/preparation/xylem/lib/mix/tasks/xylem.generate.ex new file mode 100644 index 0000000..40651d9 --- /dev/null +++ b/preparation/xylem/lib/mix/tasks/xylem.generate.ex @@ -0,0 +1,90 @@ +defmodule Mix.Tasks.Xylem.Generate do + @shortdoc "Runs the Xylem data pipeline for Wikidata tree species" + + @moduledoc """ + Runs the Xylem pipeline to fetch, process, and describe Wikidata tree species data. + + $ mix xylem.generate [options] + + ## Options + + - `--csv` - path to input CSV file (default: `data/Baumarten-wikidata.csv`) + - `--config` - path to property config CSV (default: `priv/config/wikidata_properties.csv`) + - `--fetch` - Wikidata fetch mode: `auto` (default), `skip`, `force`, or `clear` + - `--raw` - directory for raw .ttl files (default: `priv/data/wikidata/raw`) + - `--processed` - directory for processed .ttl files (default: `priv/data/wikidata/processed`) + - `--meta` - directory for vocab.ttl (default: `priv/data/wikidata/meta`) + - `--limit` - limit number of species to process + + ## Examples + + # Process all species + mix xylem.generate + + # Process first 10 species, skip fetching + mix xylem.generate --limit 10 --fetch skip + + # Use custom paths + mix xylem.generate --csv my_species.csv --processed output/processed + + """ + + use Mix.Task + + @valid_fetch_modes Enum.map(Xylem.Wikidata.Fetcher.fetch_modes(), &to_string/1) + + @switches [ + csv: :string, + config: :string, + fetch: :string, + raw: :string, + processed: :string, + meta: :string, + limit: :integer + ] + + @impl Mix.Task + def run(args) do + {opts, _} = OptionParser.parse!(args, strict: @switches) + + Application.ensure_all_started(:xylem) + + xylem_opts = + [] + |> maybe_put(:csv_path, opts[:csv]) + |> maybe_put(:property_config_path, opts[:config]) + |> maybe_put_fetch_mode(opts[:fetch]) + |> maybe_put(:raw_dir, opts[:raw]) + |> maybe_put(:processed_dir, opts[:processed]) + |> maybe_put(:meta_dir, opts[:meta]) + |> maybe_put(:limit, opts[:limit]) + + case Xylem.run(xylem_opts) do + {:ok, result} -> + Mix.shell().info("Processed #{length(result.successful)} species") + + if length(result.failed_fetches) > 0 do + Mix.shell().info("Failed fetches: #{length(result.failed_fetches)}") + end + + {:error, reason} -> + Mix.shell().error("Pipeline failed: #{inspect(reason)}") + exit({:shutdown, 1}) + end + end + + defp maybe_put(opts, _key, nil), do: opts + defp maybe_put(opts, key, value), do: Keyword.put(opts, key, value) + + defp maybe_put_fetch_mode(opts, nil), do: opts + + defp maybe_put_fetch_mode(opts, mode) when mode in @valid_fetch_modes do + Keyword.put(opts, :fetch, String.to_atom(mode)) + end + + defp maybe_put_fetch_mode(_opts, invalid) do + Mix.raise( + "Invalid --fetch value: #{inspect(invalid)}. Must be one of: #{Enum.join(@valid_fetch_modes, ", ")}" + ) + end +end diff --git a/preparation/xylem/lib/xylem.ex b/preparation/xylem/lib/xylem.ex new file mode 100644 index 0000000..f88b4ab --- /dev/null +++ b/preparation/xylem/lib/xylem.ex @@ -0,0 +1,192 @@ +defmodule Xylem do + @moduledoc """ + Data pipeline for processing Wikidata tree species information. + + The pipeline consists of the following steps: + + 1. **CSV Import**: Read tree species with Wikidata IDs from a CSV file + 2. **Wikidata Fetch**: Download entity data as Turtle RDF + 3. **Processing**: Filter to relevant `wdt:*` properties, inline configured properties + 4. **Vocabulary**: Generate property descriptions as vocab.ttl + 5. **Config Update**: Auto-append newly discovered properties to the config CSV + + ## Example + + Xylem.run() + # or with options + Xylem.run(csv_path: "path/to/species.csv", limit: 10) + + """ + + require Logger + + alias Xylem.Import.CSVReader + alias Xylem.Wikidata + alias Xylem.Wikidata.{Processor, Fetcher, VocabGenerator, PropertyConfig} + alias RDF.XSD + alias RDF.NS.RDFS + + @type result :: %{ + successful: [map()], + failed_fetches: [map()], + vocab_path: Path.t() | nil + } + + @default_csv_path "data/Baumarten-wikidata.csv" + @default_config_path "priv/config/wikidata_properties.csv" + + @baumbie_prefix "https://www.baumbie.org/xylem/vocab/" + def baumbie_prefix, do: @baumbie_prefix + def baumbie_prefix?(iri), do: String.starts_with?(to_string(iri), @baumbie_prefix) + + @doc """ + Runs the complete pipeline. + + ## Options + + - `:csv_path` - path to input CSV file (default: `data/Baumarten-wikidata.csv`) + - `:property_config_path` - path to property config CSV (default: `priv/config/wikidata_properties.csv`) + - `:fetch` - Wikidata fetch mode: `:auto` (default), `:skip`, `:force`, or `:clear` + - `:raw_dir` - directory for raw .ttl files (default: `priv/data/wikidata/raw`) + - `:processed_dir` - directory for processed .ttl files (default: `priv/data/wikidata/processed`) + - `:meta_dir` - directory for vocab.ttl (default: `priv/data/wikidata/meta`) + - `:limit` - limit number of species to process (default: all) + - `:max_concurrent` - max concurrent HTTP fetches (default: 2) + - `:delay_ms` - delay after each HTTP request in ms (default: 2000) + - `:plug` - Req plug for testing (optional) + """ + @spec run(keyword()) :: {:ok, result()} | {:error, term()} + def run(opts \\ []) do + csv_path = Keyword.get(opts, :csv_path, @default_csv_path) + config_path = Keyword.get(opts, :property_config_path, @default_config_path) + + with {:ok, config} <- PropertyConfig.load(path: config_path), + {:ok, species} <- read_csv(csv_path, opts), + {:ok, fetch_result} <- fetch_entities(species, opts), + {:ok, processed} <- process_entities(fetch_result.successful, config, opts), + {:ok, vocab_path} <- generate_vocab(processed, config, opts), + :ok <- auto_append_properties(config, config_path, processed, vocab_path) do + result = %{ + successful: processed, + failed_fetches: fetch_result.failed, + vocab_path: vocab_path + } + + log_summary(result, length(species)) + {:ok, result} + end + end + + defp read_csv(path, opts) do + Logger.info("Reading CSV from #{path}") + + with {:ok, species} <- CSVReader.run(path) do + species = + if limit = Keyword.get(opts, :limit) do + Enum.take(species, limit) + else + species + end + + Logger.info("Found #{length(species)} species") + {:ok, species} + end + end + + defp fetch_entities(species, opts) do + Logger.info("Fetching #{length(species)} Wikidata entities...") + Fetcher.run(species, opts) + end + + defp process_entities(species_with_graphs, config, opts) do + Logger.info("Processing #{length(species_with_graphs)} entities...") + Processor.run(species_with_graphs, Keyword.put(opts, :property_config, config)) + end + + defp generate_vocab(processed, config, opts) do + Logger.info("Generating vocabulary...") + VocabGenerator.run(processed, Keyword.put(opts, :property_config, config)) + end + + defp auto_append_properties(config, config_path, processed, vocab_path) do + property_ids = collect_property_ids(processed) + labels = extract_vocab_labels(vocab_path) + PropertyConfig.append_unknown(config, config_path, property_ids, labels: labels) + end + + defp collect_property_ids(processed) do + processed + |> Enum.flat_map(fn result -> + result.processed_path + |> RDF.Turtle.read_file!() + |> RDF.Graph.triples() + |> Enum.map(fn {_s, p, _o} -> to_string(p) end) + |> Enum.filter(&String.starts_with?(&1, Wikidata.wdt_prefix())) + |> Enum.map(&Wikidata.property_id/1) + end) + |> Enum.uniq() + end + + defp extract_vocab_labels(vocab_path) do + case RDF.Turtle.read_file(vocab_path) do + {:ok, graph} -> + graph + |> RDF.Graph.descriptions() + |> Enum.flat_map(fn description -> + subject_str = description |> RDF.Description.subject() |> to_string() + + if String.starts_with?(subject_str, Wikidata.wd_prefix()) do + if label = find_label(description, RDFS.label()) do + [{Wikidata.entity_id(subject_str), label}] + end + end + |> List.wrap() + end) + |> Map.new() + + _ -> + Logger.warning("Failed to read vocabulary file #{vocab_path}") + %{} + end + end + + defp find_label(description, rdfs_label) do + if labels = RDF.Description.get(description, rdfs_label) do + find_by_language(labels, "de") || + find_plain_string(labels) || + find_by_language(labels, "en") + end + end + + defp find_by_language(labels, lang) do + Enum.find_value(labels, fn + %RDF.Literal{literal: %RDF.LangString{language: ^lang, value: value}} -> value + _ -> nil + end) + end + + defp find_plain_string(labels) do + Enum.find_value(labels, fn + %RDF.Literal{literal: %XSD.String{value: value}} -> value + _ -> nil + end) + end + + defp log_summary(result, total) do + successful = length(result.successful) + failed_fetch = length(result.failed_fetches) + + Logger.info(""" + Pipeline complete: + Total species: #{total} + Successful: #{successful} + Failed fetches: #{failed_fetch} + """) + + if failed_fetch > 0 do + Logger.warning( + "Failed fetches: #{inspect(Enum.map(result.failed_fetches, & &1.wikidata_id))}" + ) + end + end +end diff --git a/preparation/xylem/lib/xylem/import/csv_reader.ex b/preparation/xylem/lib/xylem/import/csv_reader.ex new file mode 100644 index 0000000..000a0d0 --- /dev/null +++ b/preparation/xylem/lib/xylem/import/csv_reader.ex @@ -0,0 +1,68 @@ +defmodule Xylem.Import.CSVReader do + @moduledoc """ + Reads tree species data from a CSV file. + + Expects columns: + - `baumart_bo` (botanical name) + - `baumart_de` (German name) + - `wikidata_id` (Wikidata Q-ID) + """ + + NimbleCSV.define(__MODULE__.Parser, separator: ",", escape: "\"") + + alias __MODULE__.Parser + + @type species :: %{ + baumart_bo: String.t(), + baumart_de: String.t(), + wikidata_id: String.t() + } + + @doc """ + Reads and parses the CSV file at `path`. + + Returns `{:ok, species_list}` on success or `{:error, reason}` on failure. + """ + @spec run(Path.t(), keyword()) :: {:ok, [species()]} | {:error, term()} + def run(path, _opts \\ []) do + with {:ok, content} <- File.read(path), + {:ok, species} <- parse(content) do + {:ok, species} + end + end + + defp parse(content) do + case Parser.parse_string(content, skip_headers: false) do + [[header_bo, header_de, header_id] | rows] when is_binary(header_bo) -> + case validate_headers(header_bo, header_de, header_id) do + :ok -> {:ok, Enum.map(rows, &row_to_species/1)} + error -> error + end + + [] -> + {:error, :empty_file} + + _other -> + {:error, :invalid_csv_format} + end + end + + defp validate_headers(bo, de, id) do + cond do + bo != "baumart_bo" -> {:error, {:missing_column, "baumart_bo"}} + de != "baumart_de" -> {:error, {:missing_column, "baumart_de"}} + id != "wikidata_id" -> {:error, {:missing_column, "wikidata_id"}} + true -> :ok + end + end + + defp row_to_species([baumart_bo, baumart_de, wikidata_id | _rest]) do + %{ + baumart_bo: String.trim(baumart_bo), + baumart_de: String.trim(baumart_de), + wikidata_id: String.trim(wikidata_id) + } + end + + defp row_to_species(_), do: raise("Invalid row format") +end diff --git a/preparation/xylem/lib/xylem/wikidata.ex b/preparation/xylem/lib/xylem/wikidata.ex new file mode 100644 index 0000000..6c06976 --- /dev/null +++ b/preparation/xylem/lib/xylem/wikidata.ex @@ -0,0 +1,39 @@ +defmodule Xylem.Wikidata do + @moduledoc """ + Shared Wikidata IRI constants and utilities. + """ + + @wikidata_base_url "https://www.wikidata.org/wiki/Special:EntityData" + @wdt_prefix "http://www.wikidata.org/prop/direct/" + @wd_prefix "http://www.wikidata.org/entity/" + @wikidata_id_pattern ~r/^Q\d+$/ + + def wdt_prefix, do: @wdt_prefix + def wd_prefix, do: @wd_prefix + + @doc "Converts a wdt: property IRI to its wd: entity IRI for label lookup." + def wdt_to_wd(iri), do: String.replace(iri, @wdt_prefix, @wd_prefix) + + @doc "Extracts the property ID (e.g., 'P225') from a wdt: IRI." + def property_id(iri), do: String.replace_prefix(iri, @wdt_prefix, "") + + @doc "Extracts the entity ID (e.g., 'Q12345') from a wd: IRI." + def entity_id(iri), do: String.replace_prefix(iri, @wd_prefix, "") + + @doc """ + Constructs the URL for a Wikidata entity's Turtle representation. + + Uses `uselang=de` so that referenced stub entities include German labels + (with English fallback). The main entity always includes all languages. + """ + def entity_url(wikidata_id), do: "#{@wikidata_base_url}/#{wikidata_id}.ttl?uselang=de" + + @doc "Validates a Wikidata ID (e.g., 'Q12345')." + def validate_wikidata_id(id) do + if Regex.match?(@wikidata_id_pattern, id) do + :ok + else + {:error, {:invalid_wikidata_id, id}} + end + end +end diff --git a/preparation/xylem/lib/xylem/wikidata/fetcher.ex b/preparation/xylem/lib/xylem/wikidata/fetcher.ex new file mode 100644 index 0000000..baa4f08 --- /dev/null +++ b/preparation/xylem/lib/xylem/wikidata/fetcher.ex @@ -0,0 +1,198 @@ +defmodule Xylem.Wikidata.Fetcher do + @moduledoc """ + Fetches Wikidata entity data as Turtle RDF. + + Downloads entities from `https://www.wikidata.org/wiki/Special:EntityData/{id}.ttl`, + saves raw files locally, and parses them into RDF graphs. + """ + + require Logger + import Xylem.Wikidata + + @default_raw_dir "priv/data/wikidata/raw" + @default_max_concurrent 2 + @default_delay_ms 2000 + + @fetch_modes ~w(skip force clear auto)a + def fetch_modes, do: @fetch_modes + + @type species :: %{baumart_bo: String.t(), baumart_de: String.t(), wikidata_id: String.t()} + @type species_with_graph :: %{ + baumart_bo: String.t(), + baumart_de: String.t(), + wikidata_id: String.t(), + graph: RDF.Graph.t(), + raw_path: Path.t() + } + @type fetch_error :: %{ + baumart_bo: String.t(), + baumart_de: String.t(), + wikidata_id: String.t(), + error: term() + } + + @doc """ + Fetches Wikidata entities for all species in the list. + + Returns `{:ok, %{successful: [...], failed: [...]}}`. + + ## Options + + - `:fetch` - fetch mode (default: `:auto`) + - `:auto` - skip if raw directory already has `.ttl` files, fetch otherwise + - `:skip` - skip fetching entirely + - `:force` - always fetch, even if data exists + - `:clear` - delete existing `.ttl` files and re-fetch + - `:raw_dir` - directory for raw .ttl files (default: `#{@default_raw_dir}`) + - `:max_concurrent` - max concurrent HTTP requests (default: #{@default_max_concurrent}) + - `:delay_ms` - delay after each request in ms (default: #{@default_delay_ms}) + - `:plug` - Req plug for testing (optional) + """ + @spec run([species()], keyword()) :: + {:ok, %{successful: [species_with_graph()], failed: [fetch_error()]}} + def run(species_list, opts \\ []) do + raw_dir = Keyword.get(opts, :raw_dir, @default_raw_dir) + fetch_mode = Keyword.get(opts, :fetch, :auto) + + case resolve_fetch_mode(fetch_mode, raw_dir) do + :skip -> + Logger.info("Skipping Wikidata fetch, loading existing data from #{raw_dir}") + load_existing(species_list, raw_dir) + + :fetch -> + do_fetch(species_list, raw_dir, opts) + end + end + + defp resolve_fetch_mode(:skip, _raw_dir), do: :skip + defp resolve_fetch_mode(:force, _raw_dir), do: :fetch + + defp resolve_fetch_mode(:clear, raw_dir) do + clear_raw_dir!(raw_dir) + :fetch + end + + defp resolve_fetch_mode(:auto, raw_dir) do + if raw_dir_has_data?(raw_dir), do: :skip, else: :fetch + end + + defp raw_dir_has_data?(raw_dir) do + raw_dir + |> raw_dir_data() + |> Enum.any?() + end + + defp clear_raw_dir!(raw_dir) do + Logger.info("Clearing #{raw_dir}") + + raw_dir + |> raw_dir_data() + |> Enum.each(&File.rm!/1) + end + + defp raw_dir_data(raw_dir) do + raw_dir |> Path.join("*.ttl") |> Path.wildcard() + end + + defp load_existing(species_list, raw_dir) do + results = + Enum.reduce(species_list, %{successful: [], failed: []}, fn species, acc -> + raw_path = Path.join(raw_dir, "#{species.wikidata_id}.ttl") + + case RDF.read_file(raw_path) do + {:ok, graph} -> + species_with_graph = Map.merge(species, %{graph: graph, raw_path: raw_path}) + %{acc | successful: [species_with_graph | acc.successful]} + + {:error, reason} -> + Logger.warning("Failed to load #{species.wikidata_id}: #{inspect(reason)}") + %{acc | failed: [Map.put(species, :error, reason) | acc.failed]} + end + end) + + {:ok, results} + end + + defp do_fetch(species_list, raw_dir, opts) do + max_concurrent = Keyword.get(opts, :max_concurrent, @default_max_concurrent) + delay_ms = Keyword.get(opts, :delay_ms, @default_delay_ms) + + File.mkdir_p!(raw_dir) + + results = + species_list + |> Task.async_stream( + fn species -> + result = fetch_species(species, raw_dir, opts) + Process.sleep(delay_ms) + result + end, + max_concurrency: max_concurrent, + timeout: 60_000, + ordered: false + ) + |> Enum.reduce(%{successful: [], failed: []}, fn + {:ok, {:ok, species_with_graph}}, acc -> + %{acc | successful: [species_with_graph | acc.successful]} + + {:ok, {:error, species, reason}}, acc -> + %{acc | failed: [Map.put(species, :error, reason) | acc.failed]} + + {:exit, reason}, acc -> + Logger.warning("Task exited unexpectedly: #{inspect(reason)}") + acc + end) + + {:ok, results} + end + + @doc """ + Fetches a single Wikidata entity. + + ## Options + + - `:plug` - Req plug for testing (optional) + """ + @spec fetch_species(species(), Path.t(), keyword()) :: + {:ok, species_with_graph()} | {:error, species(), term()} + def fetch_species(species, raw_dir, opts \\ []) do + wikidata_id = species.wikidata_id + + with :ok <- validate_wikidata_id(wikidata_id), + {:ok, ttl_content} <- fetch_ttl(wikidata_id, opts), + raw_path = Path.join(raw_dir, "#{wikidata_id}.ttl"), + :ok <- File.write(raw_path, ttl_content), + {:ok, graph} <- RDF.Turtle.read_string(ttl_content) do + {:ok, Map.merge(species, %{graph: graph, raw_path: raw_path})} + else + {:error, reason} -> + Logger.warning("Failed to fetch #{wikidata_id}: #{inspect(reason)}") + {:error, species, reason} + end + end + + @doc "Fetches the Turtle representation of a Wikidata entity." + def fetch_ttl(wikidata_id, opts) do + url = entity_url(wikidata_id) + + req_opts = + [ + max_retries: 5 + ] + |> maybe_add_plug(opts) + + case Req.get(url, req_opts) do + {:ok, %{status: 200, body: body}} -> {:ok, body} + {:ok, %{status: 429}} -> {:error, :rate_limited} + {:ok, %{status: status}} -> {:error, {:http_error, status}} + {:error, exception} -> {:error, {:request_failed, exception}} + end + end + + defp maybe_add_plug(req_opts, opts) do + case Keyword.get(opts, :plug) do + nil -> req_opts + plug -> Keyword.put(req_opts, :plug, plug) + end + end +end diff --git a/preparation/xylem/lib/xylem/wikidata/processor.ex b/preparation/xylem/lib/xylem/wikidata/processor.ex new file mode 100644 index 0000000..ad534fb --- /dev/null +++ b/preparation/xylem/lib/xylem/wikidata/processor.ex @@ -0,0 +1,223 @@ +defmodule Xylem.Wikidata.Processor do + @moduledoc """ + Filters and processes raw Wikidata RDF graphs for tree species. + + Produces cleaned Turtle files containing only relevant direct properties (`wdt:*`) + and `rdfs:label` values in German and English. + """ + + require Logger + + alias Xylem.Wikidata + alias Xylem.Wikidata.PropertyConfig + + alias RDF.NS.RDFS + + @default_processed_dir "priv/data/wikidata/processed" + @default_config_path "priv/config/wikidata_properties.csv" + @kept_languages MapSet.new(["de", "en"]) + + @type species_with_graph :: %{ + baumart_bo: String.t(), + baumart_de: String.t(), + wikidata_id: String.t(), + graph: RDF.Graph.t(), + raw_path: Path.t() + } + + @type species_processed :: %{ + baumart_bo: String.t(), + baumart_de: String.t(), + wikidata_id: String.t(), + processed_path: Path.t() + } + + @doc """ + Processes raw RDF graphs into filtered Turtle files. + + ## Options + + - `:property_config` - a loaded `PropertyConfig` struct (takes precedence) + - `:property_config_path` - path to the property config CSV (default: `#{@default_config_path}`) + - `:processed_dir` - output directory for processed .ttl files (default: `#{@default_processed_dir}`) + """ + @spec run([species_with_graph()], keyword()) :: + {:ok, [species_processed()]} + | {:error, term()} + def run(species_list, opts \\ []) do + processed_dir = Keyword.get(opts, :processed_dir, @default_processed_dir) + + with {:ok, config} <- load_config(opts) do + File.mkdir_p!(processed_dir) + + {:ok, Enum.map(species_list, &process_species(&1, config, processed_dir))} + end + end + + defp load_config(opts) do + case Keyword.get(opts, :property_config) do + %PropertyConfig{} = config -> + {:ok, config} + + nil -> + config_path = Keyword.get(opts, :property_config_path, @default_config_path) + PropertyConfig.load(path: config_path) + end + end + + defp process_species(species, config, processed_dir) do + subject = RDF.iri("#{Wikidata.wd_prefix()}#{species.wikidata_id}") + path = Path.join(processed_dir, "#{species.wikidata_id}.ttl") + + species.graph + |> filter_main_entity(subject, config) + |> inline_properties(subject, config, species.graph) + |> add_secondary_resources(species.graph) + |> filter_languages() + |> RDF.Turtle.write_file!(path) + + Logger.debug("Processed #{species.wikidata_id} -> #{path}") + + %{ + baumart_bo: species.baumart_bo, + baumart_de: species.baumart_de, + wikidata_id: species.wikidata_id, + processed_path: path + } + end + + # Filter the main entity to only wdt:* properties (+ rdfs:label), applying blacklist + defp filter_main_entity(graph, subject, config) do + if description = RDF.Graph.get(graph, subject) do + filtered_predicates = + description + |> RDF.Description.predicates() + |> Enum.filter(fn predicate -> + predicate == RDFS.label() or + (wdt_property?(predicate) and not ignored?(predicate, config)) + end) + + filtered_triples = + Enum.flat_map(filtered_predicates, fn predicate -> + description + |> RDF.Description.get(predicate) + |> Enum.map(&{subject, predicate, &1}) + end) + + RDF.Graph.new(filtered_triples) + else + RDF.Graph.new() + end + end + + # Apply inlining: for inline-configured properties, add baumbie: triples + # and optionally remove the original link triple. + # Labels are resolved from the original raw graph. + defp inline_properties(graph, subject, config, original_graph) do + if description = RDF.Graph.get(graph, subject) do + description + |> RDF.Description.predicates() + |> Enum.filter(&wdt_property?/1) + |> Enum.reduce(graph, fn predicate, acc -> + property_id = predicate |> to_string() |> Wikidata.property_id() + + if inline_cfg = PropertyConfig.inline_config(config, property_id) do + apply_inline(acc, subject, predicate, inline_cfg, original_graph) + else + acc + end + end) + else + graph + end + end + + defp apply_inline(graph, subject, predicate, inline_cfg, original_graph) do + baumbie_predicate = RDF.iri("#{Xylem.baumbie_prefix()}#{inline_cfg.target}") + + objects = + graph + |> RDF.Graph.get(subject) + |> RDF.Description.get(predicate) + + Enum.reduce(objects, graph, fn object, acc -> + if value = resolve_inline_value(object, original_graph) do + acc + |> RDF.Graph.add({subject, baumbie_predicate, value}) + |> maybe_remove_original(subject, predicate, object, inline_cfg) + else + acc + end + end) + end + + # Resolve the inline value for an entity IRI by looking up its rdfs:label + # in the original raw graph (preferring German, falling back to English) + defp resolve_inline_value(%RDF.IRI{} = iri, original_graph) do + if description = RDF.Graph.get(original_graph, iri) do + if labels = RDF.Description.get(description, RDFS.label()) do + find_preferred_label(labels) + end + end + end + + defp resolve_inline_value(_object, _original_graph), do: nil + + defp find_preferred_label(labels) do + Enum.find(labels, &match?(%RDF.Literal{literal: %RDF.LangString{language: "de"}}, &1)) || + Enum.find(labels, &match?(%RDF.Literal{literal: %RDF.LangString{language: "en"}}, &1)) + end + + defp maybe_remove_original(graph, _subject, _predicate, _object, %{keep_source: true}), + do: graph + + defp maybe_remove_original(graph, subject, predicate, object, _inline_cfg) do + RDF.Graph.delete(graph, {subject, predicate, object}) + end + + # Add descriptions of secondary wd:* entities referenced by kept properties + defp add_secondary_resources(filtered_graph, original_graph) do + secondary_iris = + filtered_graph + |> RDF.Graph.triples() + |> Enum.flat_map(fn + {_s, _p, %RDF.IRI{} = iri} -> + if String.starts_with?(to_string(iri), Wikidata.wd_prefix()), do: [iri], else: [] + + _ -> + [] + end) + |> Enum.uniq() + + Enum.reduce(secondary_iris, filtered_graph, fn iri, graph -> + if description = RDF.Graph.get(original_graph, iri) do + RDF.Graph.add(graph, description) + else + graph + end + end) + end + + defp wdt_property?(predicate) do + to_string(predicate) |> String.starts_with?(Wikidata.wdt_prefix()) + end + + defp ignored?(predicate, config) do + property_id = predicate |> to_string() |> Wikidata.property_id() + PropertyConfig.ignored?(config, property_id) + end + + # Filter language-tagged literals to only de and en + defp filter_languages(graph) do + graph + |> RDF.Graph.triples() + |> Enum.filter(&keep_triple?/1) + |> RDF.Graph.new() + end + + defp keep_triple?({_s, _p, %RDF.Literal{literal: %RDF.LangString{language: lang}}}) do + MapSet.member?(@kept_languages, lang) + end + + defp keep_triple?(_triple), do: true +end diff --git a/preparation/xylem/lib/xylem/wikidata/property_config.ex b/preparation/xylem/lib/xylem/wikidata/property_config.ex new file mode 100644 index 0000000..9039890 --- /dev/null +++ b/preparation/xylem/lib/xylem/wikidata/property_config.ex @@ -0,0 +1,192 @@ +defmodule Xylem.Wikidata.PropertyConfig do + @moduledoc """ + CSV-based configuration for Wikidata property handling. + + Reads a semicolon-separated CSV file that controls how each property + is processed: kept as-is, ignored, or inlined from a secondary resource. + + ## CSV Format + + property_id;action;config;description + P18;ignore;;Bild + P105;inline;{"target": "taxonomischer_rang"};taxonomischer Rang + + Actions: + - (empty) - property is kept unchanged + - `ignore` - property is removed + - `inline` - secondary resource is resolved and mapped to a new property + + The `config` field uses JSON and supports: + - `target` (required for inline) - name of the new property in the BaumBie namespace + - `source` (optional, default: `"rdfs:label"`) - property of the secondary resource to inline + - `keep_source` (optional, default: `false`) - whether to keep the original link triple + """ + + NimbleCSV.define(__MODULE__.Parser, separator: ";", escape: "\0") + + alias __MODULE__.Parser + + @default_path "priv/config/wikidata_properties.csv" + + defstruct entries: %{} + + @type action :: :ignore | :inline | :keep + @type inline_config :: %{ + target: String.t(), + source: String.t(), + keep_source: boolean() + } + @type entry :: %{ + action: action(), + config: inline_config() | nil, + description: String.t() + } + @type t :: %__MODULE__{entries: %{String.t() => entry()}} + + @doc """ + Loads property configuration from a CSV file. + + ## Options + + - `:path` - path to the CSV file (default: `#{@default_path}`) + """ + @spec load(keyword()) :: {:ok, t()} | {:error, term()} + def load(opts \\ []) do + path = Keyword.get(opts, :path, @default_path) + + with {:ok, content} <- File.read(path) do + parse(content) + end + end + + @doc "Returns whether the given property should be ignored." + @spec ignored?(t(), String.t()) :: boolean() + def ignored?(%__MODULE__{entries: entries}, property_id) do + case Map.get(entries, property_id) do + %{action: :ignore} -> true + _ -> false + end + end + + @doc "Returns the inline configuration for a property, or `nil` if not an inline property." + @spec inline_config(t(), String.t()) :: inline_config() | nil + def inline_config(%__MODULE__{entries: entries}, property_id) do + case Map.get(entries, property_id) do + %{action: :inline, config: config} -> config + _ -> nil + end + end + + @doc "Returns whether the given property has an entry in the configuration." + @spec known?(t(), String.t()) :: boolean() + def known?(%__MODULE__{entries: entries}, property_id) do + Map.has_key?(entries, property_id) + end + + @doc "Returns all configured property IDs." + @spec all_property_ids(t()) :: [String.t()] + def all_property_ids(%__MODULE__{entries: entries}) do + Map.keys(entries) + end + + @doc """ + Appends unknown property IDs to the CSV file. + + Compares the given property IDs with the loaded config and appends rows + for any properties not yet in the configuration. New entries have no action + or config, and use the provided labels map for descriptions. + + ## Options + + - `:labels` - map from property ID to label string (default: `%{}`) + """ + @spec append_unknown(t(), Path.t(), [String.t()], keyword()) :: :ok | {:error, term()} + def append_unknown(%__MODULE__{} = config, csv_path, property_ids, opts \\ []) do + labels = Keyword.get(opts, :labels, %{}) + + unknown_ids = + property_ids + |> Enum.uniq() + |> Enum.reject(&known?(config, &1)) + |> Enum.sort() + + if unknown_ids == [] do + :ok + else + lines = Enum.map(unknown_ids, fn id -> "#{id};;;#{labels[id]}" end) + content = "\n" <> Enum.join(lines, "\n") <> "\n" + File.write(csv_path, content, [:append]) + end + end + + defp parse(content) do + case Parser.parse_string(content, skip_headers: false) do + [["property_id", "action", "config", "description"] | rows] -> + entries = + rows + |> Enum.map(&parse_row/1) + |> Enum.reject(&is_nil/1) + |> Map.new() + + {:ok, %__MODULE__{entries: entries}} + + [] -> + {:ok, %__MODULE__{entries: %{}}} + + _other -> + {:error, :invalid_csv_format} + end + end + + defp parse_row([property_id, action_str, config_str, description]) do + property_id = String.trim(property_id) + + if property_id != "" do + action = parse_action(action_str) + + {property_id, + %{ + action: action, + config: parse_config(action, config_str), + description: String.trim(description) + }} + end + end + + defp parse_row(_), do: nil + + defp parse_action(str) do + case String.trim(str) do + "ignore" -> :ignore + "inline" -> :inline + _ -> :keep + end + end + + defp parse_config(:inline, config_str) do + config_str = String.trim(config_str) + + if config_str == "" do + raise ArgumentError, "inline action requires a config with at least a \"target\" key" + end + + case Jason.decode(config_str) do + {:ok, map} when is_map(map) -> + unless Map.has_key?(map, "target") do + raise ArgumentError, "inline config must have a \"target\" key, got: #{config_str}" + end + + %{ + target: Map.fetch!(map, "target"), + source: Map.get(map, "source", "rdfs:label"), + keep_source: Map.get(map, "keep_source", false) + } + + _ -> + raise ArgumentError, + "inline config must be valid JSON with a \"target\" key, got: #{config_str}" + end + end + + defp parse_config(_action, _config_str), do: nil +end diff --git a/preparation/xylem/lib/xylem/wikidata/vocab_generator.ex b/preparation/xylem/lib/xylem/wikidata/vocab_generator.ex new file mode 100644 index 0000000..7a678d7 --- /dev/null +++ b/preparation/xylem/lib/xylem/wikidata/vocab_generator.ex @@ -0,0 +1,275 @@ +defmodule Xylem.Wikidata.VocabGenerator do + @moduledoc """ + Generates a vocabulary Turtle file with full descriptions for all properties + used in the processed graphs. + + Fetches complete German and English descriptions of Wikidata property entities + (`wd:P*`) via SPARQL CONSTRUCT. For BaumBie properties introduced by inlining, + descriptions are derived from the property configuration. + + ## Options + + - `:meta_dir` - output directory for vocab.ttl (default: `priv/data/wikidata/meta`) + - `:property_config` - a loaded `PropertyConfig` struct (for baumbie: labels and inline IRI collection) + - `:property_config_path` - path to the property config CSV (fallback) + - `:descriptions` - pre-fetched RDF graph of property descriptions (optional, skips SPARQL) + - `:batch_size` - number of IRIs per SPARQL query (default: 50) + """ + + require Logger + + alias Xylem.Wikidata + alias Xylem.Wikidata.PropertyConfig + + alias RDF.NS.RDFS + + @default_meta_dir "priv/data/wikidata/meta" + @wikidata_sparql_endpoint "https://query.wikidata.org/sparql" + @rdfs_label RDFS.label() + @default_batch_size 50 + @max_retries 3 + @kept_languages MapSet.new(["de", "en"]) + + @spec run([map()], keyword()) :: {:ok, Path.t()} | {:error, term()} + def run(species_results, opts \\ []) do + meta_dir = Keyword.get(opts, :meta_dir, @default_meta_dir) + + with {:ok, config} <- load_config(opts) do + wd_iris = collect_property_iris(species_results, config) + + with {:ok, descriptions} <- fetch_descriptions(wd_iris, opts) do + vocab_graph = + descriptions + |> add_baumbie_descriptions(species_results, config) + |> filter_languages() + + File.mkdir_p!(meta_dir) + path = Path.join(meta_dir, "vocab.ttl") + content = RDF.Turtle.write_string!(vocab_graph) + File.write!(path, content) + + Logger.info( + "Generated vocabulary file: #{path} (#{RDF.Graph.triple_count(vocab_graph)} triples)" + ) + + {:ok, path} + end + end + end + + defp load_config(opts) do + case Keyword.get(opts, :property_config) do + %PropertyConfig{} = config -> + {:ok, config} + + nil -> + config_path = Keyword.get(opts, :property_config_path) + + if config_path do + PropertyConfig.load(path: config_path) + else + {:ok, %PropertyConfig{}} + end + end + end + + # Collect all wd:P* entity IRIs that need descriptions + defp collect_property_iris(species_results, config) do + graph_iris = collect_from_processed_graphs(species_results) + inline_iris = collect_from_inline_configs(config) + source_iris = collect_from_inline_sources(config) + + (graph_iris ++ inline_iris ++ source_iris) + |> Enum.uniq() + end + + # wdt:* predicates from processed graphs → wd:* entity IRIs + defp collect_from_processed_graphs(species_results) do + species_results + |> Enum.flat_map(fn result -> + result.processed_path + |> RDF.Turtle.read_file!() + |> RDF.Graph.triples() + |> Enum.map(fn {_s, p, _o} -> to_string(p) end) + |> Enum.filter(&String.starts_with?(&1, Wikidata.wdt_prefix())) + |> Enum.map(&Wikidata.wdt_to_wd/1) + end) + end + + # wd:* IRIs for all inline-configured properties (even if removed from processed graph) + defp collect_from_inline_configs(config) do + config + |> PropertyConfig.all_property_ids() + |> Enum.filter(&(PropertyConfig.inline_config(config, &1) != nil)) + |> Enum.map(&"#{Wikidata.wd_prefix()}#{&1}") + end + + # Source properties from inline configs (only Wikidata properties) + defp collect_from_inline_sources(config) do + config + |> PropertyConfig.all_property_ids() + |> Enum.flat_map(fn property_id -> + case PropertyConfig.inline_config(config, property_id) do + %{source: source} -> + cond do + String.starts_with?(source, Wikidata.wdt_prefix()) -> + [Wikidata.wdt_to_wd(source)] + + String.match?(source, ~r/^P\d+$/) -> + ["#{Wikidata.wd_prefix()}#{source}"] + + true -> + [] + end + + _ -> + [] + end + end) + end + + defp fetch_descriptions(iris, opts) do + case Keyword.get(opts, :descriptions) do + %RDF.Graph{} = graph -> + {:ok, graph} + + nil -> + if iris == [] do + {:ok, RDF.Graph.new()} + else + Logger.info("Fetching descriptions for #{length(iris)} properties...") + fetch_via_sparql(iris, opts) + end + end + end + + defp fetch_via_sparql(iris, opts) do + batch_size = Keyword.get(opts, :batch_size, @default_batch_size) + + iris + |> Enum.chunk_every(batch_size) + |> Enum.reduce_while({:ok, RDF.Graph.new()}, fn batch, {:ok, acc} -> + case fetch_batch(batch) do + {:ok, graph} -> + {:cont, {:ok, RDF.Graph.add(acc, graph)}} + + {:error, reason} -> + Logger.warning( + "SPARQL CONSTRUCT failed: #{inspect(reason)}, continuing with partial data" + ) + + {:cont, {:ok, acc}} + end + end) + end + + defp fetch_batch(iris) do + query = build_construct_query(iris) + sparql_construct(query) + end + + defp build_construct_query(iris) do + values = iris |> Enum.map(&"<#{&1}>") |> Enum.join(" ") + + """ + CONSTRUCT { + ?item ?p ?o . + } + WHERE { + VALUES ?item { #{values} } + ?item ?p ?o . + FILTER( + !isLiteral(?o) || + LANG(?o) = "" || + LANG(?o) IN ("de", "en") + ) + } + """ + end + + defp sparql_construct(query, retries \\ 0) do + case SPARQL.Client.query(query, @wikidata_sparql_endpoint, + request_method: :get, + headers: %{"User-Agent" => "XylemBot/1.0 (BaumBie project; bielefeld@codefor.de)"} + ) do + {:ok, graph} -> + {:ok, graph} + + {:error, %SPARQL.Client.HTTPError{status: status}} when status in [429, 503] -> + if retries < @max_retries do + delay = min(1000 * :math.pow(2, retries), 30_000) |> round() + + Logger.warning( + "Wikidata rate limited (#{status}), retrying in #{delay}ms (attempt #{retries + 1}/#{@max_retries})..." + ) + + Process.sleep(delay) + sparql_construct(query, retries + 1) + else + Logger.error("Wikidata rate limiting persists after #{@max_retries} retries") + {:error, :rate_limit_exceeded} + end + + {:error, reason} -> + {:error, reason} + end + end + + # Add rdfs:label descriptions for baumbie:* properties that appear in processed graphs + defp add_baumbie_descriptions(graph, species_results, config) do + used_baumbie_iris = collect_baumbie_predicates(species_results) + + baumbie_triples = + config + |> PropertyConfig.all_property_ids() + |> Enum.flat_map(fn property_id -> + case PropertyConfig.inline_config(config, property_id) do + %{target: target} -> + baumbie_iri = RDF.iri("#{Xylem.baumbie_prefix()}#{target}") + + if baumbie_iri in used_baumbie_iris do + description = get_in(config.entries, [property_id, :description]) + + label = + if description && description != "", do: description, else: humanize(target) + + [{baumbie_iri, @rdfs_label, RDF.lang_string(label, "de")}] + else + [] + end + + _ -> + [] + end + end) + + RDF.Graph.add(graph, baumbie_triples) + end + + defp collect_baumbie_predicates(species_results) do + species_results + |> Enum.flat_map(fn result -> + result.processed_path + |> RDF.Turtle.read_file!() + |> RDF.Graph.triples() + |> Enum.map(fn {_s, p, _o} -> p end) + |> Enum.filter(&Xylem.baumbie_prefix?/1) + end) + |> Enum.uniq() + end + + defp filter_languages(graph) do + graph + |> RDF.Graph.triples() + |> Enum.filter(&keep_triple?/1) + |> RDF.Graph.new() + end + + defp keep_triple?({_s, _p, %RDF.Literal{literal: %RDF.LangString{language: lang}}}) do + MapSet.member?(@kept_languages, lang) + end + + defp keep_triple?(_triple), do: true + + defp humanize(target), do: String.replace(target, "_", " ") +end diff --git a/preparation/xylem/mix.exs b/preparation/xylem/mix.exs new file mode 100644 index 0000000..9247c87 --- /dev/null +++ b/preparation/xylem/mix.exs @@ -0,0 +1,43 @@ +defmodule Xylem.MixProject do + use Mix.Project + + def project do + [ + app: :xylem, + version: "0.1.0", + elixir: "~> 1.18", + start_permanent: Mix.env() == :prod, + deps: deps() + ] + end + + def cli do + [ + preferred_envs: [ + vcr: :test, + "vcr.delete": :test, + "vcr.check": :test, + "vcr.show": :test + ] + ] + end + + def application do + [ + extra_applications: [:logger] + ] + end + + defp deps do + [ + {:rdf, "~> 2.1"}, + {:sparql_client, "~> 0.5"}, + {:nimble_csv, "~> 1.1"}, + {:jason, "~> 1.4"}, + {:req, "~> 0.5"}, + {:hackney, "~> 1.17"}, + {:exvcr, "~> 0.15", only: :test}, + {:req_cassette, "~> 0.1", only: :test} + ] + end +end diff --git a/preparation/xylem/mix.lock b/preparation/xylem/mix.lock new file mode 100644 index 0000000..92c159f --- /dev/null +++ b/preparation/xylem/mix.lock @@ -0,0 +1,40 @@ +%{ + "certifi": {:hex, :certifi, "2.15.0", "0e6e882fcdaaa0a5a9f2b3db55b1394dba07e8d6d9bcad08318fb604c6839712", [:rebar3], [], "hexpm", "b147ed22ce71d72eafdad94f055165c1c182f61a2ff49df28bcc71d1d5b94a60"}, + "content_type": {:hex, :content_type, "0.1.0", "b95627542e4980dd1e7e07ee8faf7b3a966e6a3be53f838296a57800a00e688b", [:mix], [], "hexpm", "bf01f4cec2ce7f7eeead6acca60c8d8d373122a16d6b2b6784c70fcd5667a84b"}, + "decimal": {:hex, :decimal, "2.3.0", "3ad6255aa77b4a3c4f818171b12d237500e63525c2fd056699967a3e7ea20f62", [:mix], [], "hexpm", "a4d66355cb29cb47c3cf30e71329e58361cfcb37c34235ef3bf1d7bf3773aeac"}, + "exjsx": {:hex, :exjsx, "4.0.0", "60548841e0212df401e38e63c0078ec57b33e7ea49b032c796ccad8cde794b5c", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, repo: "hexpm", optional: false]}], "hexpm", "32e95820a97cffea67830e91514a2ad53b888850442d6d395f53a1ac60c82e07"}, + "exvcr": {:hex, :exvcr, "0.17.1", "3bae83d698a464a48212ad87c8ea4bcfb6bd76d53b937129472764e557616228", [:mix], [{:exjsx, "~> 4.0", [hex: :exjsx, repo: "hexpm", optional: false]}, {:finch, "~> 0.16", [hex: :finch, repo: "hexpm", optional: true]}, {:httpoison, "~> 1.0 or ~> 2.0", [hex: :httpoison, repo: "hexpm", optional: true]}, {:ibrowse, "~> 4.4", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:meck, "~> 1.0", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "a39d86980da183011366a878972e0ed43a5441814b701edd2e11360564e7bcab"}, + "finch": {:hex, :finch, "0.20.0", "5330aefb6b010f424dcbbc4615d914e9e3deae40095e73ab0c1bb0968933cadf", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.6.2 or ~> 1.7", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 1.1", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "2658131a74d051aabfcba936093c903b8e89da9a1b63e430bee62045fa9b2ee2"}, + "hackney": {:hex, :hackney, "1.25.0", "390e9b83f31e5b325b9f43b76e1a785cbdb69b5b6cd4e079aa67835ded046867", [:rebar3], [{:certifi, "~> 2.15.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~> 6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~> 1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~> 1.4", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.4.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~> 1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~> 0.7.1", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "7209bfd75fd1f42467211ff8f59ea74d6f2a9e81cbcee95a56711ee79fd6b1d4"}, + "hpax": {:hex, :hpax, "1.0.3", "ed67ef51ad4df91e75cc6a1494f851850c0bd98ebc0be6e81b026e765ee535aa", [:mix], [], "hexpm", "8eab6e1cfa8d5918c2ce4ba43588e894af35dbd8e91e6e55c817bca5847df34a"}, + "idna": {:hex, :idna, "6.1.1", "8a63070e9f7d0c62eb9d9fcb360a7de382448200fbbd1b106cc96d3d8099df8d", [:rebar3], [{:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "92376eb7894412ed19ac475e4a86f7b413c1b9fbb5bd16dccd57934157944cea"}, + "jason": {:hex, :jason, "1.4.4", "b9226785a9aa77b6857ca22832cffa5d5011a667207eb2a0ad56adb5db443b8a", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "c5eb0cab91f094599f94d55bc63409236a8ec69a21a67814529e8d5f6cc90b3b"}, + "jcs": {:hex, :jcs, "0.2.0", "e0524c23b576e8247f9f5f09d1b82cb3f92c7b132932b82d5d656461831c6c99", [:mix], [{:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "f52e86571f56fab695682bf0ab7fd697768acb20de16b30809e9654d1ec1c9dd"}, + "json_ld": {:hex, :json_ld, "1.0.0", "53ba6b51d73b05f8add93ee7e02b4c3a7280a51dc2cf4dac641a68ddb62c8f2b", [:mix], [{:jason, "~> 1.2", [hex: :jason, repo: "hexpm", optional: false]}, {:rdf, "~> 2.1", [hex: :rdf, repo: "hexpm", optional: false]}, {:tesla, "~> 1.2", [hex: :tesla, repo: "hexpm", optional: false]}], "hexpm", "65572f6d152963d19de048fe57b4f9cb0941f32ee6eff7ff96fa592596ad12a0"}, + "jsx": {:hex, :jsx, "2.8.3", "a05252d381885240744d955fbe3cf810504eb2567164824e19303ea59eef62cf", [:mix, :rebar3], [], "hexpm", "fc3499fed7a726995aa659143a248534adc754ebd16ccd437cd93b649a95091f"}, + "meck": {:hex, :meck, "1.1.0", "e65a3d84d7b418afcb2c8efde2b5106a98eefb7fe8e5f7e324fe9765122aefa2", [:rebar3], [], "hexpm", "0fdfbd4d4f9eb9251ba621f4740a6e450e2a7d0e5e07a37830c5cf632f2ca8bb"}, + "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"}, + "mime": {:hex, :mime, "2.0.7", "b8d739037be7cd402aee1ba0306edfdef982687ee7e9859bee6198c1e7e2f128", [:mix], [], "hexpm", "6171188e399ee16023ffc5b76ce445eb6d9672e2e241d2df6050f3c771e80ccd"}, + "mimerl": {:hex, :mimerl, "1.4.0", "3882a5ca67fbbe7117ba8947f27643557adec38fa2307490c4c4207624cb213b", [:rebar3], [], "hexpm", "13af15f9f68c65884ecca3a3891d50a7b57d82152792f3e19d88650aa126b144"}, + "mint": {:hex, :mint, "1.7.1", "113fdb2b2f3b59e47c7955971854641c61f378549d73e829e1768de90fc1abf1", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1 or ~> 0.2.0 or ~> 1.0", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "fceba0a4d0f24301ddee3024ae116df1c3f4bb7a563a731f45fdfeb9d39a231b"}, + "nimble_csv": {:hex, :nimble_csv, "1.3.0", "b7f998dc62b222bce9596e46f028c7a5af04cb5dde6df2ea197c583227c54971", [:mix], [], "hexpm", "41ccdc18f7c8f8bb06e84164fc51635321e80d5a3b450761c4997d620925d619"}, + "nimble_options": {:hex, :nimble_options, "1.1.1", "e3a492d54d85fc3fd7c5baf411d9d2852922f66e69476317787a7b2bb000a61b", [:mix], [], "hexpm", "821b2470ca9442c4b6984882fe9bb0389371b8ddec4d45a9504f00a66f650b44"}, + "nimble_pool": {:hex, :nimble_pool, "1.1.0", "bf9c29fbdcba3564a8b800d1eeb5a3c58f36e1e11d7b7fb2e084a643f645f06b", [:mix], [], "hexpm", "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a"}, + "parse_trans": {:hex, :parse_trans, "3.4.1", "6e6aa8167cb44cc8f39441d05193be6e6f4e7c2946cb2759f015f8c56b76e5ff", [:rebar3], [], "hexpm", "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"}, + "plug": {:hex, :plug, "1.19.1", "09bac17ae7a001a68ae393658aa23c7e38782be5c5c00c80be82901262c394c0", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "560a0017a8f6d5d30146916862aaf9300b7280063651dd7e532b8be168511e62"}, + "plug_crypto": {:hex, :plug_crypto, "2.1.1", "19bda8184399cb24afa10be734f84a16ea0a2bc65054e23a62bb10f06bc89491", [:mix], [], "hexpm", "6470bce6ffe41c8bd497612ffde1a7e4af67f36a15eea5f921af71cf3e11247c"}, + "protocol_ex": {:hex, :protocol_ex, "0.4.4", "c9717d1c0bdabe37d7653965dc02e78580d0d06a1f86d737b7941b55241f70d6", [:mix], [], "hexpm", "2b78ed0e5ec76f62b0debaf92dc8e795551cdaf7fc22b8816b3d57225020ac99"}, + "rdf": {:hex, :rdf, "2.1.0", "315dea8d4b49a0d5cafa8e7685f59888b09cc2d49bb525e5bbf6c7b9ca0e5593", [:mix], [{:decimal, "~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}, {:jcs, "~> 0.2", [hex: :jcs, repo: "hexpm", optional: false]}, {:protocol_ex, "~> 0.4.4", [hex: :protocol_ex, repo: "hexpm", optional: false]}, {:uniq, "~> 0.6", [hex: :uniq, repo: "hexpm", optional: false]}], "hexpm", "e05852a9d70360716ba1b687644935d0220fb6ff6d96f50b76ea63da53efd2ee"}, + "rdf_xml": {:hex, :rdf_xml, "1.2.0", "6b8de6a11009999c7e41ff8fe0ae061728af9ec83d3ef4a887713008d1555191", [:mix], [{:rdf, "~> 2.0", [hex: :rdf, repo: "hexpm", optional: false]}, {:saxy, "~> 1.2", [hex: :saxy, repo: "hexpm", optional: false]}], "hexpm", "5fdb3f2a8d813f225097e3c3ff41dcffefe604a28a65f42803de1438384b723e"}, + "req": {:hex, :req, "0.5.16", "99ba6a36b014458e52a8b9a0543bfa752cb0344b2a9d756651db1281d4ba4450", [:mix], [{:brotli, "~> 0.3.1", [hex: :brotli, repo: "hexpm", optional: true]}, {:ezstd, "~> 1.0", [hex: :ezstd, repo: "hexpm", optional: true]}, {:finch, "~> 0.17", [hex: :finch, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mime, "~> 2.0.6 or ~> 2.1", [hex: :mime, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: true]}, {:plug, "~> 1.0", [hex: :plug, repo: "hexpm", optional: true]}], "hexpm", "974a7a27982b9b791df84e8f6687d21483795882a7840e8309abdbe08bb06f09"}, + "req_cassette": {:hex, :req_cassette, "0.3.1", "8e8e945e24673e58ea050fa49d8762c6b833c7342cccecda9b621d3e059f0519", [:mix], [{:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}, {:plug, "~> 1.18", [hex: :plug, repo: "hexpm", optional: false]}, {:req, "~> 0.5.15", [hex: :req, repo: "hexpm", optional: false]}], "hexpm", "541dacf1af3e57ae5050c5b1cf2a4a2abec9888b053d02e4119f54e4ed95dd76"}, + "saxy": {:hex, :saxy, "1.6.0", "02cb4e9bd045f25ac0c70fae8164754878327ee393c338a090288210b02317ee", [:mix], [], "hexpm", "ef42eb4ac983ca77d650fbdb68368b26570f6cc5895f0faa04d34a6f384abad3"}, + "sparql": {:hex, :sparql, "0.3.11", "9714a561c16652cbdccb5baafc0d0332cdb4ba0c67abf9d8e23bc3c58e0ce965", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:nimble_csv, "~> 1.0", [hex: :nimble_csv, repo: "hexpm", optional: false]}, {:protocol_ex, "~> 0.4", [hex: :protocol_ex, repo: "hexpm", optional: false]}, {:rdf, "~> 2.1", [hex: :rdf, repo: "hexpm", optional: false]}, {:sweet_xml, "~> 0.6", [hex: :sweet_xml, repo: "hexpm", optional: false]}, {:uniq, "~> 0.6", [hex: :uniq, repo: "hexpm", optional: false]}], "hexpm", "7824e163bb2452ba8cc0335b2a43580fd568e5ce3a3e620a626277c19f40015f"}, + "sparql_client": {:hex, :sparql_client, "0.5.0", "265e7d9dc222647a5678dffc971299b850b0c7a94f9c3f8b46a7084c670fec4c", [:mix], [{:content_type, "~> 0.1", [hex: :content_type, repo: "hexpm", optional: false]}, {:json_ld, ">= 0.3.6", [hex: :json_ld, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.3 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:rdf, "~> 2.0", [hex: :rdf, repo: "hexpm", optional: false]}, {:rdf_xml, "~> 1.2", [hex: :rdf_xml, repo: "hexpm", optional: false]}, {:sparql, ">= 0.3.10", [hex: :sparql, repo: "hexpm", optional: false]}, {:tesla, "~> 1.2", [hex: :tesla, repo: "hexpm", optional: false]}], "hexpm", "971077e1d03c2fd401d4f123dc27b2ed44f30cb62994c911070a0a3386d7b049"}, + "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"}, + "sweet_xml": {:hex, :sweet_xml, "0.7.5", "803a563113981aaac202a1dbd39771562d0ad31004ddbfc9b5090bdcd5605277", [:mix], [], "hexpm", "193b28a9b12891cae351d81a0cead165ffe67df1b73fe5866d10629f4faefb12"}, + "telemetry": {:hex, :telemetry, "1.3.0", "fedebbae410d715cf8e7062c96a1ef32ec22e764197f70cda73d82778d61e7a2", [:rebar3], [], "hexpm", "7015fc8919dbe63764f4b4b87a95b7c0996bd539e0d499be6ec9d7f3875b79e6"}, + "tesla": {:hex, :tesla, "1.15.3", "3a2b5c37f09629b8dcf5d028fbafc9143c0099753559d7fe567eaabfbd9b8663", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.13", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, ">= 1.0.0", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.21", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.2", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:mox, "~> 1.0", [hex: :mox, repo: "hexpm", optional: true]}, {:msgpax, "~> 2.3", [hex: :msgpax, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "98bb3d4558abc67b92fb7be4cd31bb57ca8d80792de26870d362974b58caeda7"}, + "unicode_util_compat": {:hex, :unicode_util_compat, "0.7.1", "a48703a25c170eedadca83b11e88985af08d35f37c6f664d6dcfb106a97782fc", [:rebar3], [], "hexpm", "b3a917854ce3ae233619744ad1e0102e05673136776fb2fa76234f3e03b23642"}, + "uniq": {:hex, :uniq, "0.6.2", "51846518c037134c08bc5b773468007b155e543d53c8b39bafe95b0af487e406", [:mix], [{:ecto, "~> 3.0", [hex: :ecto, repo: "hexpm", optional: true]}], "hexpm", "95aa2a41ea331ef0a52d8ed12d3e730ef9af9dbc30f40646e6af334fbd7bc0fc"}, +} diff --git a/preparation/xylem/priv/config/wikidata_properties.csv b/preparation/xylem/priv/config/wikidata_properties.csv new file mode 100644 index 0000000..90c67cc --- /dev/null +++ b/preparation/xylem/priv/config/wikidata_properties.csv @@ -0,0 +1,419 @@ +property_id;action;config;description +P18;ignore;;Bild +P41;ignore;;Flaggenbild +P94;ignore;;Wappenbild +P154;ignore;;Logo +P158;ignore;;Siegel +P181;ignore;;Kartenbild +P242;ignore;;Lagekarte +P948;ignore;;Wikivoyage-Banner +P989;ignore;;gesprochener Text (Audio) +P990;ignore;;Tonaufnahme +P996;ignore;;Scan-Datei +P1442;ignore;;Grabbild +P1543;ignore;;Monogramm +P1621;ignore;;Detail-Karte +P1766;ignore;;Platzansicht +P1801;ignore;;Gedenktafelbild +P1846;ignore;;Verbreitungskarte +P2713;ignore;;Querschnittsbild +P2716;ignore;;Collage +P2910;ignore;;Symbolbild +P3451;ignore;;Nachtansicht +P4291;ignore;;Panoramabild +P5252;ignore;;Winteransicht +P6802;ignore;;zugehöriges Bild +P7407;ignore;;Aussprache (Audio) +P7415;ignore;;Farbbild +P7417;ignore;;Schwarz-Weiß-Bild +P7418;ignore;;Zeichnung +P8224;ignore;;Molekülmodell +P8517;ignore;;Innenansicht +P8592;ignore;;Floorplan +P9906;ignore;;Arkivkopia-ID +P10093;ignore;;Emojibild +P373;ignore;;Commons-Kategorie +P935;ignore;;Commons-Galerie +P910;ignore;;Themenkategorie +P1343;ignore;;beschrieben in Quelle +P6104;ignore;;Wartungskategorie +P1889;ignore;;unterscheidet sich von +P105;inline;{"target": "taxonomischer_rang"};taxonomischer Rang +P171;inline;{"target": "uebergeordnetes_taxon", "keep_source": true};übergeordnetes Taxon +P1014;;;Art-and-Architecture-Thesaurus-Kennung +P10243;;;NatureServe-Explorer-Kennung +P10283;;;OpenAlex-Kennung +P10333;;; +P1036;;;Dewey-Dezimalklassifikation +P10366;;; +P10376;;;ScienceDirect-Thema-ID +P10561;;; +P10585;;;CoL-ID +P1070;;;Plant List ID (Royal Botanic Gardens, Kew) +P10701;;; +P10709;;; +P10711;;; +P10791;;; +P10793;;; +P10906;;; +P11067;;; +P11074;;; +P11078;;; +P11083;;; +P11114;;; +P1149;;;LoC-Klassifikation +P11514;;;Große-Russische-Enzyklopädie-Portalkennung +P11650;;; +P11824;;; +P11829;;; +P12086;;;WikiKids-Kennung +P12100;;; +P12136;;; +P12137;;; +P12138;;; +P12178;;;Minnesota Plant List ID +P12179;;;Flora of the Southeastern United States ID +P12181;;; +P12182;;;Go Botany taxon ID +P12187;;;Thesaurus Linguae Aegyptiae Thesaurus-ID +P12292;;; +P12296;;; +P12385;;;Große-Katalanische-Enzyklopädie-Kennung +P1245;;;OmegaWiki-Bedeutungskennung +P12554;;;CalPhotos Taxon Kennung +P12596;;;museum-digital-Tag-Kennung +P12616;;; +P12670;;; +P1282;;;OpenStreetMap-Attribut +P1296;;;Große-Katalanische-Enzyklopädie-Kennung (alt) +P13478;;;nomenklatorischer Typ von +P13591;;;Yale-LUX-Kennung +P1368;;;LNB-Kennung (Lettland) +P13691;;;Georgische-Enzyklopädie-Kennung +P13734;;; +P141;;;Gefährdungsstufe (IUCN) +P1417;;;Encyclopædia-Britannica-Online-Kennung +P1420;;;taxonomische Synonyme +P1421;;;GRIN-URL +P166;;;Auszeichnung +P1672;;;Ursprung von +P1727;;;FNA-ID +P1745;;;VasCan-ID +P1747;;;FOC-ID +P1772;;;USDA-ID +P1843;;;einheimische Namen +P1939;;;Dyntaxa-ID +P2004;;;NALT-Kennung +P2036;;;African-Plant-Database-ID +P225;;;wissenschaftlicher Name +P227;;;GND-Kennung +P231;;;CAS-Nummer +P2347;;;YSO-Kennung +P244;;;LCAuth-Kennung +P268;;;BnF-Kennung +P2752;;;NZOR-ID +P279;;;Unterklasse von +P2827;;;Blütenfarbe +P2833;;;ARKive-Url-Fragment +P2892;;;UMLS CUI +P3031;;;EPPO-Code +P31;;;ist ein(e) +P3101;;;FloraBase-ID +P3102;;;Plantarium-ID +P3105;;;Tela-Botanica-BDTFX-ID +P3130;;;NSW-Flora-ID +P3151;;;iNaturalist-Taxon-ID +P3186;;;INPN-TAXREF-ID +P3222;;;Nationalencyklopedin-Online-Kennung +P3240;;;NBN-ID +P3405;;;NSR-ID +P3420;;;Calflora-ID +P3591;;;WCSPF-ID +P3606;;;BOLD-ID +P366;;;Verwendung +P4000;;;Fruchttyp +P4122;;;PalDat-ID +P4214;;;höchste beobachtete Lebensdauer +P4301;;;PfaF-Kennung +P4311;;;FOIH-Taxon-ID +P4333;;; +P4342;;;SNL-Kennung +P4728;;;uBio-ID +P4746;;;Elhuyar ZTH-ID +P4753;;;Ecocrop-ID +P5019;;;Brockhaus-Enzyklopädie-Kennung +P5037;;;POWO-URN +P5055;;;IRMNG-ID +P5063;;;Interlingual-Index-Kennung +P5179;;; +P5263;;;NDOP-Taxon-ID +P5588;;;invasiv in +P5626;;; +P566;;;Basionym +P5698;;;Invasive-Species-Compendium-ID +P5945;;;VicFlora-ID +P5984;;;APNI-ID +P6034;;; +P6056;;;SanbiRedList-ID +P6094;;;FloraWeb-ID +P6098;;;info flora +P6103;;;Michigan-Flora-ID +P6105;;;Observation.org Taxon-ID +P6114;;; +P6142;;; +P6161;;; +P6177;;;EUNIS-Taxon-ID +P6227;;; +P627;;;IUCN-ID +P6293;;;YSA-ID +P6341;;;IFPNI-ID +P6366;;;Microsoft-Academic-Kennung +P6433;;; +P646;;;Freebase-Kennung +P6507;;;Zitation der Autoren des Taxons +P652;;;UNII +P6756;;;FoA-Online-ID +P685;;;NCBI-ID +P6864;;;eElurikkus-ID +P6870;;;Lettische-Nationalenzyklopädie-ID +P691;;;NKČR-AUT-Kennung +P6933;;;SA-Flora-ID +P7202;;;Belgian-Species-List-ID +P7496;;;NZPCN-ID +P7537;;; +P7544;;; +P7546;;; +P7552;;;FinBIF-ID +P7587;;;eFloraSA-ID +P7715;;;World-Flora-Online-ID +P8061;;;AGROVOC-ID +P815;;;ITIS-TSN +P8189;;;J9U-Kennung der Israelischen Nationalbibliothek +P8193;;;Winterhärte der Pflanze +P830;;;EOL-ID +P8309;;;Yle-Themenkennung +P8313;;;Lex-Kennung +P838;;;BioLib-ID +P8408;;;KBpedia-Kennung +P846;;;GBIF Taxon-ID +P8468;;;Queensland Biota-ID +P8707;;;NBIC-Taxon-ID +P8765;;; +P8814;;;Synsetkennung (WordNet 3.1) +P8892;;;edition humboldt digital Flora ID +P8915;;;ZOBODAT-Taxonkennung +P9157;;;OTT-ID +P9408;;;Washington Flora Checklist ID +P9423;;;OregonFlora Taxon ID +P9495;;;National-Historical-Museums-of-Sweden-ID +P9501;;; +P9503;;; +P960;;;Tropicos-ID +P961;;;IPNI-TaxonName-ID +P9654;;; +P9691;;; +P9714;;;Verbreitungsgebiet +P9741;;; +P9799;;; +P9826;;; + +P10;;;Video +P10064;;; +P10077;;;ID beim Spanischen Institut für kulturelles Erbe +P10331;;; +P1051;;;PSH-Kennung +P10528;;; +P10538;;; +P10565;;;Enzyklopädie-von-China-Kennung (dritte Ausgabe) +P10707;;;McGraw-Hill-AccessScience-URL-Fragment +P10778;;;CPNI-ID +P10792;;; +P10833;;;Great-Plant-Picks-Kennung +P10890;;; +P10907;;; +P10921;;; +P11022;;; +P11044;;; +P11082;;; +P11084;;; +P11087;;; +P11092;;; +P11137;;;Reddit-Kennung +P11189;;; +P11220;;;Fruchtfarbe +P11293;;;Amazon.com-Durchsuchknoten +P11473;;; +P11693;;;OpenStreetMap-Knotenkennung +P11762;;; +P11764;;;BKIDS-Students-Level-Kennung +P11765;;;BKIDS-Scholars-Level-Kennung +P11801;;; +P11901;;; +P12113;;; +P12114;;; +P12177;;;Rare Species Guide ID +P12180;;; +P12183;;; +P12209;;; +P12218;;; +P1225;;;NARA-Kennung +P12270;;; +P12273;;; +P12278;;; +P12297;;; +P12367;;; +P12368;;; +P12380;;; +P12403;;; +P12453;;; +P12517;;; +P1256;;;Iconclass-Kennung +P12721;;;Lille-norske-leksikon-ID +P12763;;;taxonomisches Synonym zu +P12766;;;fungiert als Basionym von +P12788;;; +P12800;;;Vikidia-Kennung (neu) +P13162;;;Referenzabbildung +P13177;;; +P1325;;;externe Daten +P13329;;; +P13330;;; +P13613;;; +P13696;;; +P13735;;;A Dictionary of Genetics Eintrag-ID +P13750;;; +P138;;;benannt nach +P1382;;;teilweise übereinstimmend mit +P1385;;;Enciclopédia Açoriana ID +P13909;;; +P1424;;;Hauptvorlage des Themas +P1531;;;Hybrideltern +P1552;;;charakterisiert durch +P1617;;;BBC-Things-Kennung +P1703;;;bestäubt durch +P176;;;Hersteller +P1807;;;Gran-Enciclopedia-Aragonesa-ID +P183;;;endemisch in +P1940;;;Gymnosperm-Database-ID +P1978;;;NDB-Nummer +P1992;;;Plazi-ID +P2043;;;Länge +P2048;;;Höhe +P2049;;;Breite +P2163;;;FAST-Kennung +P2167;;;UNSPSC-Code +P2341;;;einheimisch +P2354;;;entsprechende Liste +P2434;;;PAF-ID +P2581;;;BabelNet-Kennung +P2670;;;enthält Elemente von +P2671;;;Google-Knowledge-Graph-Kennung +P2809;;;APSA-ID +P2868;;;Subjekt fungiert als +P2888;;;exakte Übereinstimmung +P2924;;;Große-Russische-Enzyklopädie-Kennung +P2959;;;dauerhaftes Duplikat von +P2974;;;Habitat +P3073;;;CosIng-ID +P3088;;;TaiBNET-ID +P3219;;;Encyclopædia-Universalis-Kennung +P3221;;;NYT-Themenkennung +P3365;;;Enciclopedia-Treccani-Kennung +P3417;;;Quora-Themenkennung +P3443;;; +P3479;;;Omni-Themenkennung +P349;;;NDL-Kennung +P3550;;; +P3553;;;Zhihu-Themenkennung +P3648;;; +P3739;;;Blütenstand +P3741;;;Samenausbreitung +P3746;;; +P3795;;; +P3827;;;JSTOR-Themenkennung +P3911;;;STW-Kennung +P4030;;;PLU-Code +P4194;;;CNPS-ID +P4212;;;PACTOLS-Thesaurus-ID +P4223;;;Enciclopedia-Italiana-Kennung +P4235;;;PatientsLikeMe-Behandlung-ID +P427;;;nomenklatorischer Typ +P443;;;Aussprache (Audiodatei) +P460;;;eventuell gleichwertig +P4637;;; +P4729;;; +P4854;;; +P486;;;MeSH-Kennung +P487;;;Unicodezeichen +P5008;;;auf der Arbeitsliste des Wikimedia-Projektes +P508;;;BNCF-Thesaurus-Kennung +P5160;;;Thesauruskennung für graphische Materialien +P5230;;;Chromosomenzahl +P527;;;besteht aus +P5395;;;Canadian-Encyclopedia-ID +P5417;;;Gemeinsames Vokabular für öffentliche Aufträge +P5555;;;schematische Darstellung +P580;;;Startzeitpunkt +P5841;;;Gefährdungsstatus in der Rote Liste der gefährdeten Arten der Tschechischen Republik +P5844;;;Treccani-Wortschatz-ID +P5872;;;riecht nach +P5930;;;Open Food Facts Zutat-ID +P6000;;;Wasserfußabdruck +P6019;;; +P6035;;; +P6044;;;FEIS-ID +P6054;;; +P6061;;;Plant Parasites of Europe ID +P6092;;; +P6137;;;APA-ID +P6139;;;FloraGREIF-ID +P6159;;; +P6163;;;NAS-ID +P6176;;;Cal-IPC-ID +P618;;;Energiequelle +P6385;;;Krugoswet-Kennung +P6573;;;Klexikon-Artikelkennung +P6706;;;De-Agostini-Kennung +P672;;;MeSH-Code +P6754;;;OBIS-Kennung +P6800;;; +P694;;;ersetztes Synonym +P7033;;;Australisches-Bildungsvokabular-Kennung +P7305;;;PWN-Enzyklopädie-Kennung +P7388;;; +P7502;;;Golden-Kennung +P7666;;;Visuotinė-lietuvių-enciklopedija-Kennung +P7691;;; +P7830;;; +P8026;;; +P8072;;;CAB-Thesaurus-ID +P8248;;;Kolon-Klassifikation +P8370;;;UNBIS-Thesaurus-ID +P8373;;; +P8406;;;Grove-Art-Online-ID +P842;;;Fossilworks-Taxon-ID +P8469;;; +P8485;;;Taxon-Verbreitungskarte datenmodelliert +P850;;;WoRMS-Taxon-ID +P8519;;;RKD-Thesaurus-Kennung +P8603;;;Istrapedia-Kennung +P8660;;; +P8885;;;Namuwiki-Kennung +P8957;;; +P902;;;HLS-Kennung +P9198;;;Encyclopédie berbère Artikel-Kennung +P920;;;Spanische Schlagwörter für öffentliche Bibliotheken +P9243;;; +P9272;;;DeCS-ID +P9292;;; +P9318;;;Ávvir-Themen-ID +P9322;;;SVKKL-Kennung +P9475;;;Koreanische-Kultur-Enzyklopädie-ID +P950;;;BNE-Kennung (v1.0) +P9519;;; +P9545;;;Enzyklopädie-von-China-Kennung (Zweite Ausgabe) +P9629;;;Armeniapedia-ID +P9684;;;ISDDB-ID +P9685;;;MFG-ID +P973;;;beschrieben in URL +P9937;;;Postimees-Themenkennung diff --git a/preparation/xylem/test/cassettes/pipeline_wikidata.json b/preparation/xylem/test/cassettes/pipeline_wikidata.json new file mode 100644 index 0000000..96fdc68 --- /dev/null +++ b/preparation/xylem/test/cassettes/pipeline_wikidata.json @@ -0,0 +1,100 @@ +{ + "interactions": [ + { + "recorded_at": "2026-02-19T20:31:44.110222Z", + "request": { + "body": "", + "body_type": "text", + "headers": { + "accept-encoding": [ + "gzip" + ], + "user-agent": [ + "req/0.5.16" + ] + }, + "method": "GET", + "query_string": "uselang=de", + "uri": "https://www.wikidata.org/wiki/Special:EntityData/Q165145.ttl" + }, + "response": { + "body": "@prefix rdf: .\n@prefix xsd: .\n@prefix ontolex: .\n@prefix dct: .\n@prefix rdfs: .\n@prefix owl: .\n@prefix wikibase: .\n@prefix skos: .\n@prefix schema: .\n@prefix cc: .\n@prefix geo: .\n@prefix prov: .\n@prefix wd: .\n@prefix data: .\n@prefix wds: .\n@prefix wdref: .\n@prefix wdv: .\n@prefix wdt: .\n@prefix wdtn: .\n@prefix p: .\n@prefix ps: .\n@prefix psv: .\n@prefix psn: .\n@prefix pq: .\n@prefix pqv: .\n@prefix pqn: .\n@prefix pr: .\n@prefix prv: .\n@prefix prn: .\n@prefix wdno: .\n\ndata:Q165145 a schema:Dataset ;\n\tschema:about wd:Q165145 ;\n\tcc:license ;\n\tschema:softwareVersion \"1.0.0\" ;\n\tschema:version \"2456016475\"^^xsd:integer ;\n\tschema:dateModified \"2026-01-19T04:30:16Z\"^^xsd:dateTime ;\n\twikibase:statements \"198\"^^xsd:integer ;\n\twikibase:sitelinks \"81\"^^xsd:integer ;\n\twikibase:identifiers \"129\"^^xsd:integer .\n\nwd:Q165145 a wikibase:Item .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"commons\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"species\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"de\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stieleiche\"@de .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"es\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@es .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ru\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб черешчатый\"@ru .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"it\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@it .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ja\" ;\n\tschema:isPartOf ;\n\tschema:name \"ヨーロッパナラ\"@ja .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Zomereik\"@nl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dąb szypułkowy\"@pl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Carvalho-roble\"@pt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"zh\" ;\n\tschema:isPartOf ;\n\tschema:name \"夏櫟\"@zh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ek\"@sv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fa\" ;\n\tschema:isPartOf ;\n\tschema:name \"بلوط قرمز اروپایی\"@fa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kocsányos tölgy\"@hu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tammi\"@fi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ar\" ;\n\tschema:isPartOf ;\n\tschema:name \"سنديان قوي\"@ar .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"vi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@vi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sommereik\"@nb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"uk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб звичайний\"@uk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ko\" ;\n\tschema:isPartOf ;\n\tschema:name \"로부르참나무\"@ko .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ca\" ;\n\tschema:isPartOf ;\n\tschema:name \"Roure pènol\"@ca .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dub letní\"@cs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stejar\"@ro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"da\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stilk-eg\"@da .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"bg\" ;\n\tschema:isPartOf ;\n\tschema:name \"Обикновен дъб\"@bg .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"af\" ;\n\tschema:isPartOf ;\n\tschema:name \"Steeleik\"@af .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ast\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ast .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"az\" ;\n\tschema:isPartOf ;\n\tschema:name \"Yay palıdı\"@az .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"azb\" ;\n\tschema:isPartOf ;\n\tschema:name \"یای پالیدی\"@azb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sgs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ōžouls\"@sgs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"be\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб звычайны\"@be .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"bs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@bs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ceb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ceb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Derwen mes coesynnog\"@cy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"egl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Róra\"@egl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"eo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tigfrukta kverko\"@eo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"et\" ;\n\tschema:isPartOf ;\n\tschema:name \"Harilik tamm\"@et .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"eu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Haritz kandudun\"@eu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ga\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dair ghallda\"@ga .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"gl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Carballo común\"@gl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@hr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hsb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Šiškaty dub\"@hsb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Կաղնի ամառային\"@hy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"io\" ;\n\tschema:isPartOf ;\n\tschema:name \"Rovro\"@io .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"is\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sumareik\"@is .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ka\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ka .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"kk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Кәдімгі емен\"@kk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"kw\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dar\"@kw .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"la\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@la .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stilleech\"@lb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lmo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@lmo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Paprastasis ąžuolas\"@lt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Parastais ozols\"@lv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"mhr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тумо\"@mhr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"mrj\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тум\"@mrj .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"myv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тумо\"@myv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nn\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sommareik\"@nn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"olo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tammi\"@olo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pms\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@pms .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pnb\" ;\n\tschema:isPartOf ;\n\tschema:name \"یورپی بلوط\"@pnb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"qu\" ;\n\tschema:isPartOf ;\n\tschema:name \"K'aspicha ruwli\"@qu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"rm\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ruver cumin\"@rm .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dub letný\"@sk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dob (drevo)\"@sl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"war\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@war .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"se\" ;\n\tschema:isPartOf ;\n\tschema:name \"Eaika\"@se .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"wuu\" ;\n\tschema:isPartOf ;\n\tschema:name \"夏栎\"@wuu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"tr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Saplı meşe\"@tr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"arz\" ;\n\tschema:isPartOf ;\n\tschema:name \"سنديان قوى\"@arz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Chêne pédonculé\"@fr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Лужњак\"@sr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ахаль юман\"@cv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"uz\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@uz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"frr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Someriakebuum\"@frr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"he\" ;\n\tschema:isPartOf ;\n\tschema:name \"אלון אנגלי\"@he .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"vro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tamm\"@vro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"id\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pasang inggris\"@id .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"co\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@co .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sh\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@sh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ia\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ia .\n\n wikibase:wikiGroup \"wikipedia\" .\n\nwd:Q165145 wdt:P181 ;\n\twdt:P105 wd:Q7432 ;\n\twdt:P141 wd:Q211005 ;\n\twdt:P171 wd:Q12004 ;\n\twdt:P225 \"Quercus robur\" ;\n\twdt:P18 ;\n\twdt:P373 \"Quercus robur\" ;\n\twdt:P685 \"38942\" ;\n\twdtn:P685 ;\n\twdt:P935 \"Quercus robur\" ;\n\twdt:P815 \"19405\" ;\n\twdt:P31 wd:Q16521,\n\t\twd:Q188840 ;\n\twdt:P646 \"/m/01cm3t\" ;\n\twdt:P227 \"4128387-9\" ;\n\twdtn:P227 ;\n\twdt:P960 \"13100004\" ;\n\twdt:P830 \"1151323\" ;\n\twdt:P961 \"296690-1\" ;\n\twdtn:P961 ;\n\twdt:P1070 \"kew-174750\" ;\n\twdt:P1727 \"210001863\" ;\n\twdt:P1745 \"5969\" ;\n\twdt:P1747 \"210001863\" ;\n\twdt:P1421 ;\n\twdt:P1772 \"QURO2\" ;\n\twdt:P846 \"2878688\" ;\n\twdt:P1939 \"221406\" ;\n\twdt:P2036 \"13665\" ;\n\twdt:P910 wd:Q9528983 ;\n\twdt:P1014 \"300375065\" ;\n\twdtn:P1014 ;\n\twdt:P2752 \"e73e770d-f7bf-472d-a04b-1c80caf9b226\" ;\n\twdt:P627 \"63532\" ;\n\twdt:P3031 \"QUERO\" ;\n\twdtn:P3031 ;\n\twdt:P3151 \"56133\" ;\n\twdt:P3186 \"116759\" ;\n\twdtn:P3186 ;\n\twdt:P3240 \"NBNSYS0000003845\" ;\n\twdt:P3405 \"120602\" ;\n\twdt:P3591 \"174750\" ;\n\twdt:P838 \"3458\" ;\n\twdt:P3420 \"12827\" ;\n\twdt:P4122 \"Quercus_robur\" ;\n\twdt:P1417 \"plant/English-oak\" ;\n\twdt:P4301 \"Quercus robur\" ;\n\twdt:P4311 \"321\" ;\n\twdtn:P4311 ;\n\twdt:P166 wd:Q91885056,\n\t\twd:Q91888395,\n\t\twd:Q91888146 ;\n\twdt:P4753 \"9138\" ;\n\twdt:P5037 \"urn:lsid:ipni.org:names:304293-2\" ;\n\twdtn:P5037 ;\n\twdt:P5179 \"VTax4660\" ;\n\twdt:P3130 \"Quercus~robur\" ;\n\twdt:P5263 \"39092\" ;\n\twdt:P5055 \"11400298\" ;\n\twdtn:P5055 ;\n\twdt:P1036 \"583.46\",\n\t\t\"634.9721\" ;\n\twdt:P244 \"sh85043922\" ;\n\twdtn:P244 ;\n\twdt:P268 \"123953078\" ;\n\twdtn:P268 ;\n\twdt:P1149 \"SD397.E54\" ;\n\twdtn:P1149 ;\n\twdt:P5945 \"b7415528-aa5c-435d-a13c-a2b33d726385\" ;\n\twdt:P5984 \"71373\" ;\n\twdt:P6094 \"4685\" ;\n\twdt:P6034 \"280706\" ;\n\twdt:P6177 \"172457\" ;\n\twdtn:P6177 ;\n\twdt:P6161 \"9742\" ;\n\twdt:P6341 \"5A7D29A9-16F5-4ED1-BFB7-6CCB7E8780FA\" ;\n\twdt:P1672 wd:Q3914781,\n\t\twd:Q55748156 ;\n\twdt:P6864 \"6698\" ;\n\twdt:P6933 \"Quercus_robur\" ;\n\twdt:P6142 \"1037\" ;\n\twdt:P7202 \"23805\" ;\n\twdt:P7496 \"3137\" ;\n\twdt:P7546 \"English Oak\" ;\n\twdt:P7552 \"MX.37990\" ;\n\twdt:P4214 \"+930\"^^xsd:decimal ;\n\twdt:P6366 \"2776211871\" ;\n\twdtn:P6366 ;\n\twdt:P6105 \"7286\" ;\n\twdt:P2347 \"9418\" ;\n\twdtn:P2347 ;\n\twdt:P5019 \"sommereiche\",\n\t\t\"stieleiche\" ;\n\twdt:P8061 \"c_15794\" ;\n\twdtn:P8061 ;\n\twdt:P2004 \"37168\" ;\n\twdtn:P2004 ;\n\twdt:P8408 \"QuercusRobur\" ;\n\twdtn:P8408 ;\n\twdt:P7715 \"wfo-0000292858\" ;\n\twdt:P8707 \"102156\" ;\n\twdt:P8765 \"14294\" ;\n\twdt:P8915 \"58343\" ;\n\twdt:P6056 \"1901-1\" ;\n\twdt:P652 \"R7QMG0BT2W\" ;\n\twdt:P6756 \"Quercus robur\" ;\n\twdt:P9157 \"239659\" ;\n\twdt:P8468 \"36783\" ;\n\twdt:P9501 \"que_rob\" ;\n\twdt:P9654 \"Quercus robur\" ;\n\twdt:P3105 \"75316\" ;\n\twdt:P9741 \"4000\" ;\n\twdt:P9799 \"50324\" ;\n\twdt:P10243 \"2.147862\" ;\n\twdt:P10283 \"C2776211871\" ;\n\twdt:P4342 \"sommereik\" ;\n\twdt:P8309 \"18-217471\" ;\n\twdt:P6293 \"Y104061\" ;\n\twdtn:P6293 ;\n\twdt:P1889 wd:Q3579529 ;\n\twdt:P6114 \"271\" ;\n\twdt:P10585 \"4R5YN\" ;\n\twdt:P10793 \"208\" ;\n\twdt:P691 \"ph114370\" ;\n\twdt:P1343 wd:Q112869398,\n\t\twd:Q19133013,\n\t\twd:Q5862833 ;\n\twdt:P8189 \"987007548267005171\" ;\n\twdt:P9714 wd:Q148 ;\n\twdt:P10791 \"63879\" ;\n\twdt:P3102 \"31185\" ;\n\twdt:P6104 wd:Q56241615 ;\n\twdt:P11067 \"379\" ;\n\twdt:P10701 \"FB613391\" ;\n\twdt:P4000 wd:Q11009 ;\n\twdt:P10711 \"9742\" ;\n\twdt:P9495 \"term/c7d94169-dfa7-42e2-bf08-d1418cc8b61c\" ;\n\twdt:P11514 \"dub-chereshchatyi-b6e7e5\" ;\n\twdt:P9503 \"43685\" ;\n\twdt:P11824 \"quro\" ;\n\twdt:P2892 \"C0330306\" ;\n\twdt:P10366 \"9213\" ;\n\twdt:P1813 \"Q. robur\"@mul ;\n\twdt:P7537 \"266641\" ;\n\twdt:P7587 \"Quercus_robur\" ;\n\twdt:P10333 \"1510\" ;\n\twdt:P11078 \"4150/stilk-eg\" ;\n\twdt:P10561 \"551\" ;\n\twdt:P11829 \"quercus_robur--english_oak\" ;\n\twdt:P9691 \"Quercus robur\" ;\n\twdt:P9408 \"78825\" ;\n\twdt:P10709 \"quercus-robur\" ;\n\twdt:P7544 \"ce8f554e95e82bc275cb5942d4d5f68c\" ;\n\twdt:P6098 \"quercus-robur\" ;\n\twdt:P12137 \"specie/quercus-pedunculata\" ;\n\twdt:P4333 \"GCA_900291515.1\",\n\t\t\"GCA_932294415.1\",\n\t\t\"GCA_932294425.1\" ;\n\twdt:P12179 \"3377\" ;\n\twdt:P12182 \"species/quercus/robur\" ;\n\twdt:P12086 \"Zomereik\" ;\n\twdt:P6507 \"L.\" ;\n\twdt:P8193 wd:Q96279266 ;\n\twdt:P10906 wd:Q1131316 ;\n\twdt:P11650 \"18523517\" ;\n\twdt:P9826 \"Дуб черешчатый, летний – Quercus robur L.\" ;\n\twdt:P12187 \"VHZZX2NB4BA3PGJCBVEZ2ZHW7I\" ;\n\twdt:P12670 \"8266\" ;\n\twdt:P12296 \"97611\" ;\n\twdt:P12292 \"c6e3073b-2ed1-442b-b756-86e3dcc59059\" ;\n\twdt:P12100 \"Quercus robur\" ;\n\twdt:P12554 \"Quercus+robur\" ;\n\twdt:P9423 \"7775\" ;\n\twdt:P1420 wd:Q111328943 ;\n\twdt:P1843 \"Pedunculate Oak\"@en ;\n\twdt:P12616 wd:Q12364191,\n\t\twd:Q12379403,\n\t\twd:Q131939033,\n\t\twd:Q136087938 ;\n\twdt:P13591 \"concept/4c553524-61f0-42eb-bdcf-1ef6854af849\" ;\n\twdt:P13734 \"R12771\" ;\n\twdt:P6870 \"158799\" ;\n\twdt:P3101 \"48566\" ;\n\twdt:P13478 wd:Q12004 ;\n\twdt:P5252 ;\n\tp:P181 wds:Q165145-defdc223-4826-6b30-118e-26b1c4f6e5ff .\n\nwds:Q165145-defdc223-4826-6b30-118e-26b1c4f6e5ff a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P181 .\n\nwd:Q165145 p:P105 wds:q165145-21562EF6-999C-4DBA-91E0-A644CF828D24 .\n\nwds:q165145-21562EF6-999C-4DBA-91E0-A644CF828D24 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P105 wd:Q7432 ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P141 wds:q165145-F7478F89-C140-4F2B-92DB-6C29C2CF3980 .\n\nwds:q165145-F7478F89-C140-4F2B-92DB-6C29C2CF3980 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P141 wd:Q211005 ;\n\tprov:wasDerivedFrom wdref:75402fc8ea5100b364db601b3ed88777b189f22e .\n\nwd:Q165145 p:P171 wds:q165145-A13B0CE6-D42D-4456-B2BA-F91FB3737403 .\n\nwds:q165145-A13B0CE6-D42D-4456-B2BA-F91FB3737403 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P171 wd:Q12004 ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P225 wds:q165145-FB614D8C-1D5F-4F7A-A063-BBCD03C9637E .\n\nwds:q165145-FB614D8C-1D5F-4F7A-A063-BBCD03C9637E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P225 \"Quercus robur\" ;\n\tpq:P405 wd:Q1043 ;\n\tpq:P574 \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P574 wdv:4153fee0d70688a29ab9db6b000d1c1f ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P18 wds:q165145-5EB7FEC2-8174-4754-9D31-220383903E1C .\n\nwds:q165145-5EB7FEC2-8174-4754-9D31-220383903E1C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:PreferredRank ;\n\tps:P18 ;\n\tpq:P180 wd:Q10884 .\n\nwd:Q165145 p:P18 wds:Q165145-984E8CCB-71AD-436B-8423-F9B52446E231 .\n\nwds:Q165145-984E8CCB-71AD-436B-8423-F9B52446E231 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P5961 wd:Q1364 .\n\nwd:Q165145 p:P18 wds:Q165145-250e1058-482b-152b-9134-66053c5d1a9c .\n\nwds:Q165145-250e1058-482b-152b-9134-66053c5d1a9c a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P3831 wd:Q3796486 .\n\nwd:Q165145 p:P18 wds:Q165145-744195a3-4c0a-c62a-bbc0-3a9d7c1fa0dd .\n\nwds:Q165145-744195a3-4c0a-c62a-bbc0-3a9d7c1fa0dd a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P180 wd:Q61726742 .\n\nwd:Q165145 p:P373 wds:q165145-AE31A915-EB2E-4C6E-B875-7934C039652E .\n\nwds:q165145-AE31A915-EB2E-4C6E-B875-7934C039652E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P373 \"Quercus robur\" .\n\nwd:Q165145 p:P685 wds:Q165145-54AE35FD-7860-41DA-B2B9-63204539A891 .\n\nwds:Q165145-54AE35FD-7860-41DA-B2B9-63204539A891 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P685 \"38942\" ;\n\tpsn:P685 ;\n\tprov:wasDerivedFrom wdref:d4bd87b862b12d99d26e86472d44f26858dee639,\n\t\twdref:3d1d776b6f1d89ea5cd7b5f8db0a2f64ef67a804 .\n\nwd:Q165145 p:P935 wds:Q165145-9A967448-DDDF-4C61-8915-F43EBADF1BC6 .\n\nwds:Q165145-9A967448-DDDF-4C61-8915-F43EBADF1BC6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P935 \"Quercus robur\" .\n\nwd:Q165145 p:P815 wds:Q165145-5C7F98B3-CF25-42FB-AC71-B1AE58EFE454 .\n\nwds:Q165145-5C7F98B3-CF25-42FB-AC71-B1AE58EFE454 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P815 \"19405\" ;\n\tprov:wasDerivedFrom wdref:d39590feb5a714a291345f9d30a2cf68c0a97b66 .\n\nwd:Q165145 p:P31 wds:Q165145-C23A37AA-2FDD-498A-B512-BAE655485C3D .\n\nwds:Q165145-C23A37AA-2FDD-498A-B512-BAE655485C3D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P31 wd:Q16521 .\n\nwd:Q165145 p:P31 wds:Q165145-d8314244-4c01-9035-a912-874345c50871 .\n\nwds:Q165145-d8314244-4c01-9035-a912-874345c50871 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P31 wd:Q188840 .\n\nwd:Q165145 p:P646 wds:Q165145-FF230685-BA43-4D40-B759-2526EB24F310 .\n\nwds:Q165145-FF230685-BA43-4D40-B759-2526EB24F310 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P646 \"/m/01cm3t\" ;\n\tprov:wasDerivedFrom wdref:2b00cb481cddcac7623114367489b5c194901c4a .\n\nwd:Q165145 p:P227 wds:Q165145-65C7DB25-61E3-4222-80BF-696C8771739F .\n\nwds:Q165145-65C7DB25-61E3-4222-80BF-696C8771739F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P227 \"4128387-9\" ;\n\tpsn:P227 ;\n\tprov:wasDerivedFrom wdref:9a24f7c0208b05d6be97077d855671d1dfdbc0dd .\n\nwd:Q165145 p:P960 wds:Q165145-20DB8AA0-CB44-41D7-8846-520994C4E3FE .\n\nwds:Q165145-20DB8AA0-CB44-41D7-8846-520994C4E3FE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P960 \"13100004\" ;\n\tprov:wasDerivedFrom wdref:f81fe8e1506f3271f6ad35f3041f04dca1b1f7da .\n\nwd:Q165145 p:P830 wds:Q165145-712CEFE0-5A22-4694-A3EB-6499C6CF8161 .\n\nwds:Q165145-712CEFE0-5A22-4694-A3EB-6499C6CF8161 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P830 \"1151323\" ;\n\tprov:wasDerivedFrom wdref:4e6a4543025cd3fc2a830bc6a7a83d94f32979a0 .\n\nwd:Q165145 p:P961 wds:Q165145-C56C7F5D-831C-44F7-B810-12CB6113E777 .\n\nwds:Q165145-C56C7F5D-831C-44F7-B810-12CB6113E777 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P961 \"296690-1\" ;\n\tpsn:P961 .\n\nwd:Q165145 p:P1070 wds:Q165145-3EB3AAEA-526A-4F38-A43C-9F50438E85DC .\n\nwds:Q165145-3EB3AAEA-526A-4F38-A43C-9F50438E85DC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1070 \"kew-174750\" ;\n\tprov:wasDerivedFrom wdref:a1d0f2ade207352295b2a3c1e7f58b61fa9f0afb .\n\nwd:Q165145 p:P1727 wds:Q165145-9103C96B-929E-4476-8A19-EF8C3D5818CC .\n\nwds:Q165145-9103C96B-929E-4476-8A19-EF8C3D5818CC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1727 \"210001863\" ;\n\tprov:wasDerivedFrom wdref:1005109b015da4ea28bf4b4a6075532a85144b72 .\n\nwd:Q165145 p:P1745 wds:Q165145-BC3FCB9D-EF68-4242-A0BA-B4D91F0B8FC1 .\n\nwds:Q165145-BC3FCB9D-EF68-4242-A0BA-B4D91F0B8FC1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1745 \"5969\" ;\n\tprov:wasDerivedFrom wdref:a09a55f5df426ebeabfde6b0f3e5dbdfc1a99201 .\n\nwd:Q165145 p:P1747 wds:Q165145-2FE80428-8837-406D-833F-8DDF76A5A71D .\n\nwds:Q165145-2FE80428-8837-406D-833F-8DDF76A5A71D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1747 \"210001863\" ;\n\tprov:wasDerivedFrom wdref:37709dc34274fc7b79ae6056ef25c396b30231ef .\n\nwd:Q165145 p:P1421 wds:Q165145-D76096F3-BE0E-4631-9952-ABD0A9E70CA9 .\n\nwds:Q165145-D76096F3-BE0E-4631-9952-ABD0A9E70CA9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1421 ;\n\tprov:wasDerivedFrom wdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec .\n\nwd:Q165145 p:P1772 wds:Q165145-6AA36140-6501-44D9-86C9-CBA0B27C2381 .\n\nwds:Q165145-6AA36140-6501-44D9-86C9-CBA0B27C2381 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1772 \"QURO2\" ;\n\tprov:wasDerivedFrom wdref:3ee42bed39fe58bd06a245cf377da864298c8a8c .\n\nwd:Q165145 p:P846 wds:Q165145-A7A2ECBA-321F-430F-80C5-A347A2F30798 .\n\nwds:Q165145-A7A2ECBA-321F-430F-80C5-A347A2F30798 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P846 \"2878688\" ;\n\tprov:wasDerivedFrom wdref:b5ad2569bcf6622780b588eb1117c5be83d6a41a .\n\nwd:Q165145 p:P1939 wds:Q165145-98DA3FB1-93D7-4B82-9F66-EC7E7B9B9A3C .\n\nwds:Q165145-98DA3FB1-93D7-4B82-9F66-EC7E7B9B9A3C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1939 \"221406\" ;\n\tprov:wasDerivedFrom wdref:ded4d9855a794a13f212738b71babf44289d7193 .\n\nwd:Q165145 p:P2036 wds:Q165145-879D1687-ECC9-428B-978E-D1E446BDFA5E .\n\nwds:Q165145-879D1687-ECC9-428B-978E-D1E446BDFA5E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2036 \"13665\" ;\n\tprov:wasDerivedFrom wdref:f901ac280448f09da5efea3ba1884c7d4a496027 .\n\nwd:Q165145 p:P910 wds:Q165145-D620B835-F42E-49FE-A536-B7A12CAE9191 .\n\nwds:Q165145-D620B835-F42E-49FE-A536-B7A12CAE9191 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P910 wd:Q9528983 .\n\nwd:Q165145 p:P1014 wds:Q165145-A06312E7-CEC3-4D3A-841C-2274B8BF0577 .\n\nwds:Q165145-A06312E7-CEC3-4D3A-841C-2274B8BF0577 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1014 \"300375065\" ;\n\tpsn:P1014 .\n\nwd:Q165145 p:P2752 wds:Q165145-4266232F-6892-4D9D-A77A-6AF7EC04953C .\n\nwds:Q165145-4266232F-6892-4D9D-A77A-6AF7EC04953C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2752 \"e73e770d-f7bf-472d-a04b-1c80caf9b226\" ;\n\tprov:wasDerivedFrom wdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 .\n\nwd:Q165145 p:P627 wds:Q165145-7219FF95-7AC9-4C1F-A663-5CDFE5AA1DD1 .\n\nwds:Q165145-7219FF95-7AC9-4C1F-A663-5CDFE5AA1DD1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P627 \"63532\" ;\n\tprov:wasDerivedFrom wdref:6f8626cb03bb3ca6ee0a5c2ece82d7e62dc83598 .\n\nwd:Q165145 p:P3031 wds:Q165145-AB21421D-9839-4C4A-B5FD-ACA13380A88C .\n\nwds:Q165145-AB21421D-9839-4C4A-B5FD-ACA13380A88C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3031 \"QUERO\" ;\n\tpsn:P3031 .\n\nwd:Q165145 p:P3151 wds:Q165145-95F04A07-9963-45BD-A729-787E60EE684B .\n\nwds:Q165145-95F04A07-9963-45BD-A729-787E60EE684B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3151 \"56133\" .\n\nwd:Q165145 p:P3186 wds:Q165145-D31A6035-6D20-45F7-B7F6-0481737F04D4 .\n\nwds:Q165145-D31A6035-6D20-45F7-B7F6-0481737F04D4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3186 \"116759\" ;\n\tpsn:P3186 ;\n\tprov:wasDerivedFrom wdref:6f367a5bd07124a084786476520b5e616561c065,\n\t\twdref:1ac5c51e8e692e5256710c5a6d6e288f535ccff9,\n\t\twdref:cf7fd8f44fda657c76a55dc510aa72bfa5b7d36b,\n\t\twdref:fc0d92af6b98a071aff12f3ac58f8e63d269aad8,\n\t\twdref:de8a49acdcf832419a5a6ba08567d671cdab1f9e,\n\t\twdref:14326af8a3cdabe39d383c48265c7492c7bd2e45,\n\t\twdref:7db1626f2a102c0854df622bef2772a11216c99f,\n\t\twdref:8e0be4dc867f902bec79db264192d2ddc273f01f .\n\nwd:Q165145 p:P3240 wds:Q165145-f39db2cc-488c-2645-bc9f-727feee3d9e2 .\n\nwds:Q165145-f39db2cc-488c-2645-bc9f-727feee3d9e2 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3240 \"NBNSYS0000003845\" ;\n\tprov:wasDerivedFrom wdref:88d4460c262f012ed854b894d871b3c6faf85f39 .\n\nwd:Q165145 p:P3405 wds:Q165145-628EB597-A487-4A71-AFB4-455BBB9376A4 .\n\nwds:Q165145-628EB597-A487-4A71-AFB4-455BBB9376A4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3405 \"120602\" ;\n\tprov:wasDerivedFrom wdref:6df21c27373a2bde6ee75834c667ad037609ae83 .\n\nwd:Q165145 p:P3591 wds:Q165145-1388F478-2305-4984-9D45-803F7D6AA177 .\n\nwds:Q165145-1388F478-2305-4984-9D45-803F7D6AA177 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3591 \"174750\" ;\n\tprov:wasDerivedFrom wdref:80e889a54fb2429cbff6e51048c39c6a1280cea4 .\n\nwd:Q165145 p:P838 wds:Q165145-7F94BBAE-43F8-4EDB-8863-50CC9357E33A .\n\nwds:Q165145-7F94BBAE-43F8-4EDB-8863-50CC9357E33A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P838 \"3458\" ;\n\tprov:wasDerivedFrom wdref:3bf39867b037e8e494a8389ae8a03bad6825a7fc .\n\nwd:Q165145 p:P3420 wds:Q165145-C514F387-14B5-4E93-A59F-5D31D9E771A9 .\n\nwds:Q165145-C514F387-14B5-4E93-A59F-5D31D9E771A9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3420 \"12827\" .\n\nwd:Q165145 p:P4122 wds:Q165145-01D708BD-E19D-4F94-A1EE-1BC56F9B0CD8 .\n\nwds:Q165145-01D708BD-E19D-4F94-A1EE-1BC56F9B0CD8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4122 \"Quercus_robur\" .\n\nwd:Q165145 p:P1417 wds:Q165145-D2F7B0C4-15A9-406C-860E-F60EDE1307DA .\n\nwds:Q165145-D2F7B0C4-15A9-406C-860E-F60EDE1307DA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1417 \"plant/English-oak\" ;\n\tpq:P1810 \"English oak\" .\n\nwd:Q165145 p:P4301 wds:Q165145-0B7487D9-F47A-4AFA-B228-EFF9084085EA .\n\nwds:Q165145-0B7487D9-F47A-4AFA-B228-EFF9084085EA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4301 \"Quercus robur\" .\n\nwd:Q165145 p:P4311 wds:Q165145-268B3A7C-46E9-4EF7-B066-2062227DE0C6 .\n\nwds:Q165145-268B3A7C-46E9-4EF7-B066-2062227DE0C6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4311 \"321\" ;\n\tpsn:P4311 .\n\nwd:Q165145 p:P166 wds:Q165145-9f8a478d-43a5-3dc7-f7ed-fca0a7b3999c .\n\nwds:Q165145-9f8a478d-43a5-3dc7-f7ed-fca0a7b3999c a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91885056 ;\n\tpq:P585 \"1989-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:9930877c43e09a3dd26a2b4a0d5aa9c8 ;\n\tprov:wasDerivedFrom wdref:114afd4cf4950218b462673fa92b0ef05598deb6 .\n\nwd:Q165145 p:P166 wds:Q165145-cdaae74e-42b3-56db-8a7c-c99760ef55c1 .\n\nwds:Q165145-cdaae74e-42b3-56db-8a7c-c99760ef55c1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91888395 ;\n\tpq:P585 \"2015-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:418aedfba643e02a5ba758952f8f7765 .\n\nwd:Q165145 p:P166 wds:Q165145-62a9caf4-4b74-fd59-dc32-d85315916102 .\n\nwds:Q165145-62a9caf4-4b74-fd59-dc32-d85315916102 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91888146 ;\n\tpq:P585 \"2024-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:5ab009f176c683ca055c711fde6476a5 .\n\nwd:Q165145 p:P4753 wds:Q165145-C14424F5-70B4-4A3A-8206-8C94C50F5CD1 .\n\nwds:Q165145-C14424F5-70B4-4A3A-8206-8C94C50F5CD1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4753 \"9138\" .\n\nwd:Q165145 p:P5037 wds:Q165145-9A571E12-B6BA-4B65-B3F6-A46A6DB485BE .\n\nwds:Q165145-9A571E12-B6BA-4B65-B3F6-A46A6DB485BE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5037 \"urn:lsid:ipni.org:names:304293-2\" ;\n\tpsn:P5037 ;\n\tprov:wasDerivedFrom wdref:bdf9bfa7e703825b14294c2be7dfa4186d7b041e .\n\nwd:Q165145 p:P5179 wds:Q165145-1B87EFC1-675D-41B5-8912-DF8EA7B6C72E .\n\nwds:Q165145-1B87EFC1-675D-41B5-8912-DF8EA7B6C72E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5179 \"VTax4660\" .\n\nwd:Q165145 p:P3130 wds:Q165145-0D3526C1-FE35-4947-AEFF-3C0A5C3C5964 .\n\nwds:Q165145-0D3526C1-FE35-4947-AEFF-3C0A5C3C5964 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3130 \"Quercus~robur\" .\n\nwd:Q165145 p:P5263 wds:Q165145-4A6791A1-C70C-423A-906F-2944FB7488B1 .\n\nwds:Q165145-4A6791A1-C70C-423A-906F-2944FB7488B1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5263 \"39092\" ;\n\tprov:wasDerivedFrom wdref:c43f7cca51643668a94140c8bf2e097967c52d8f .\n\nwd:Q165145 p:P5055 wds:Q165145-FB084DDD-79A7-410B-A987-14FDCA204876 .\n\nwds:Q165145-FB084DDD-79A7-410B-A987-14FDCA204876 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5055 \"11400298\" ;\n\tpsn:P5055 ;\n\tprov:wasDerivedFrom wdref:600bdd890d8e3c4c23219321dc839bbe89bfaaa2 .\n\nwd:Q165145 p:P1036 wds:Q165145-920af877-416a-d25a-47f6-2cb8e1571ab0 .\n\nwds:Q165145-920af877-416a-d25a-47f6-2cb8e1571ab0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1036 \"583.46\" ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P1036 wds:Q165145-e02b548d-496e-379b-9fc8-f3816e820512 .\n\nwds:Q165145-e02b548d-496e-379b-9fc8-f3816e820512 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1036 \"634.9721\" ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P244 wds:Q165145-5dc30489-45fb-d84f-0dfa-de5bc01d67d2 .\n\nwds:Q165145-5dc30489-45fb-d84f-0dfa-de5bc01d67d2 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P244 \"sh85043922\" ;\n\tpsn:P244 ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P268 wds:Q165145-ad4f54a0-4098-e1f7-6c76-a1fcd58ca8a8 .\n\nwds:Q165145-ad4f54a0-4098-e1f7-6c76-a1fcd58ca8a8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P268 \"123953078\" ;\n\tpsn:P268 ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P1149 wds:Q165145-c813d631-4fd5-5803-1caf-42f1a3d5263e .\n\nwds:Q165145-c813d631-4fd5-5803-1caf-42f1a3d5263e a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1149 \"SD397.E54\" ;\n\tpsn:P1149 ;\n\tprov:wasDerivedFrom wdref:200610d082e6b441027a5ca3f3103396c55fcfd9 .\n\nwd:Q165145 p:P5945 wds:Q165145-750BDA4A-2FF5-4979-A227-4BB19091FB0D .\n\nwds:Q165145-750BDA4A-2FF5-4979-A227-4BB19091FB0D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5945 \"b7415528-aa5c-435d-a13c-a2b33d726385\" ;\n\tprov:wasDerivedFrom wdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 .\n\nwd:Q165145 p:P5984 wds:Q165145-061AE43A-4499-4461-9592-6A3177CBFD42 .\n\nwds:Q165145-061AE43A-4499-4461-9592-6A3177CBFD42 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5984 \"71373\" ;\n\tprov:wasDerivedFrom wdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa .\n\nwd:Q165145 p:P6094 wds:Q165145-AD2B10C2-7B17-4F3C-BD88-E6EE1A120447 .\n\nwds:Q165145-AD2B10C2-7B17-4F3C-BD88-E6EE1A120447 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6094 \"4685\" ;\n\tprov:wasDerivedFrom wdref:72bdb9539d2e1574209db20ee4b2fc3abd3679f9 .\n\nwd:Q165145 p:P6034 wds:Q165145-76174592-BCEA-41D8-8F79-6A93E8118E24 .\n\nwds:Q165145-76174592-BCEA-41D8-8F79-6A93E8118E24 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6034 \"280706\" .\n\nwd:Q165145 p:P6177 wds:Q165145-9A508A0F-EA14-4BEE-AD49-27A754A8263B .\n\nwds:Q165145-9A508A0F-EA14-4BEE-AD49-27A754A8263B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6177 \"172457\" ;\n\tpsn:P6177 ;\n\tprov:wasDerivedFrom wdref:22ce2135adfe2d45928ca94b0363b3ec9f8bb95f .\n\nwd:Q165145 p:P6161 wds:Q165145-915A4CC8-A79E-4DA9-BE30-6B2A9D85D398 .\n\nwds:Q165145-915A4CC8-A79E-4DA9-BE30-6B2A9D85D398 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6161 \"9742\" .\n\nwd:Q165145 p:P6341 wds:Q165145-305C18CF-95F7-47EC-B1FE-E7C21A0C6954 .\n\nwds:Q165145-305C18CF-95F7-47EC-B1FE-E7C21A0C6954 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6341 \"5A7D29A9-16F5-4ED1-BFB7-6CCB7E8780FA\" .\n\nwd:Q165145 p:P1672 wds:Q165145-515d35c9-4869-82ae-90dc-df03f2f906f1 .\n\nwds:Q165145-515d35c9-4869-82ae-90dc-df03f2f906f1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q3914781 .\n\nwd:Q165145 p:P1672 wds:Q165145-58761ac5-43db-5ada-1a16-3305ab4834a5 .\n\nwds:Q165145-58761ac5-43db-5ada-1a16-3305ab4834a5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q55748156 .\n\nwd:Q165145 p:P6864 wds:Q165145-7588a011-8e2f-4890-9a6a-43dcbc123dba .\n\nwds:Q165145-7588a011-8e2f-4890-9a6a-43dcbc123dba a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6864 \"6698\" ;\n\tprov:wasDerivedFrom wdref:a0cc3fef75da4fc0af0eecc1215e7c8a0733ee18 .\n\nwd:Q165145 p:P6933 wds:Q165145-ABDF05D7-9E97-419A-9636-BBECBA9789A5 .\n\nwds:Q165145-ABDF05D7-9E97-419A-9636-BBECBA9789A5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6933 \"Quercus_robur\" .\n\nwd:Q165145 p:P6142 wds:Q165145-5349213A-35B8-4DE4-BBF8-78F34A495C7B .\n\nwds:Q165145-5349213A-35B8-4DE4-BBF8-78F34A495C7B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6142 \"1037\" .\n\nwd:Q165145 p:P7202 wds:Q165145-D0611077-A6EB-4B37-8EA2-636F092AA975 .\n\nwds:Q165145-D0611077-A6EB-4B37-8EA2-636F092AA975 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7202 \"23805\" ;\n\tprov:wasDerivedFrom wdref:1d3b14364cabecbdb80f4cca466d63b80a938fde .\n\nwd:Q165145 p:P7496 wds:Q165145-443196D4-388F-4605-BC24-E31F694D9988 .\n\nwds:Q165145-443196D4-388F-4605-BC24-E31F694D9988 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7496 \"3137\" .\n\nwd:Q165145 p:P7546 wds:Q165145-1197FF99-6BEC-432D-A1D6-7B2F822BFB45 .\n\nwds:Q165145-1197FF99-6BEC-432D-A1D6-7B2F822BFB45 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7546 \"English Oak\" .\n\nwd:Q165145 p:P7552 wds:Q165145-1E869155-0BDD-4D17-A17B-E8D5087FDCF3 .\n\nwds:Q165145-1E869155-0BDD-4D17-A17B-E8D5087FDCF3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7552 \"MX.37990\" ;\n\tprov:wasDerivedFrom wdref:07a7d9dc3b3d90a7819d98ab2fadfb1c9da6fd90 .\n\nwd:Q165145 p:P4214 wds:Q165145-e6cc71d3-4259-b1a8-48fa-a3254947384b .\n\nwds:Q165145-e6cc71d3-4259-b1a8-48fa-a3254947384b a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4214 \"+930\"^^xsd:decimal ;\n\tpsv:P4214 wdv:043329e001a17d1b3aae568fd3ec4251 ;\n\tpsn:P4214 wdv:61dc588f3a33dc6696cabc0152164205 ;\n\tprov:wasDerivedFrom wdref:96fbcc47bec0804bf008a41aac0d8a6f5d3bc6fb .\n\nwd:Q165145 p:P6366 wds:Q165145-7F2C5E7F-ED89-45E3-8281-9F203E02A88E .\n\nwds:Q165145-7F2C5E7F-ED89-45E3-8281-9F203E02A88E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6366 \"2776211871\" ;\n\tpsn:P6366 .\n\nwd:Q165145 p:P6105 wds:Q165145-C556CCB9-816A-4535-B9D9-351DCBA630E3 .\n\nwds:Q165145-C556CCB9-816A-4535-B9D9-351DCBA630E3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6105 \"7286\" .\n\nwd:Q165145 p:P2347 wds:Q165145-B7A47549-0BE9-4433-BB25-75C42D30AB61 .\n\nwds:Q165145-B7A47549-0BE9-4433-BB25-75C42D30AB61 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2347 \"9418\" ;\n\tpsn:P2347 ;\n\tprov:wasDerivedFrom wdref:f9bf1a1f034ddd51bd9928ac535e0f57d748e2cf .\n\nwd:Q165145 p:P5019 wds:Q165145-69B40438-CE2B-402D-946D-D444D08E6768 .\n\nwds:Q165145-69B40438-CE2B-402D-946D-D444D08E6768 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5019 \"sommereiche\" .\n\nwd:Q165145 p:P5019 wds:Q165145-FF156168-39D5-42D8-8793-178EFBFA5CF1 .\n\nwds:Q165145-FF156168-39D5-42D8-8793-178EFBFA5CF1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5019 \"stieleiche\" .\n\nwd:Q165145 p:P8061 wds:Q165145-2054CEED-F974-4E0D-982F-2540B325EA8F .\n\nwds:Q165145-2054CEED-F974-4E0D-982F-2540B325EA8F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8061 \"c_15794\" ;\n\tpsn:P8061 .\n\nwd:Q165145 p:P2004 wds:Q165145-D8C821DB-9AC6-44A6-984B-AFF6B7A4D55A .\n\nwds:Q165145-D8C821DB-9AC6-44A6-984B-AFF6B7A4D55A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2004 \"37168\" ;\n\tpsn:P2004 .\n\nwd:Q165145 p:P8408 wds:Q165145-B76E5266-FA5C-4FF9-BF97-00197724C454 .\n\nwds:Q165145-B76E5266-FA5C-4FF9-BF97-00197724C454 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8408 \"QuercusRobur\" ;\n\tpsn:P8408 ;\n\tprov:wasDerivedFrom wdref:9a681f9dd95c90224547c404e11295f4f7dcf54e .\n\nwd:Q165145 p:P7715 wds:Q165145-9CA7A9AF-845C-4FCB-AA04-D28F7516D212 .\n\nwds:Q165145-9CA7A9AF-845C-4FCB-AA04-D28F7516D212 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7715 \"wfo-0000292858\" ;\n\tprov:wasDerivedFrom wdref:ba81ba3d7197b0b21226d78ff78e9bca98c9060a .\n\nwd:Q165145 p:P8707 wds:Q165145-CECA120D-5867-4E7A-B113-54D8770F896C .\n\nwds:Q165145-CECA120D-5867-4E7A-B113-54D8770F896C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8707 \"102156\" .\n\nwd:Q165145 p:P8765 wds:Q165145-a488c2e1-4087-1616-31d8-68d5259a4839 .\n\nwds:Q165145-a488c2e1-4087-1616-31d8-68d5259a4839 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8765 \"14294\" .\n\nwd:Q165145 p:P8915 wds:Q165145-87725385-F32A-4CC9-B631-A048429B1723 .\n\nwds:Q165145-87725385-F32A-4CC9-B631-A048429B1723 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8915 \"58343\" .\n\nwd:Q165145 p:P6056 wds:Q165145-5DD8279B-4356-41B2-830D-28C5AAF0879E .\n\nwds:Q165145-5DD8279B-4356-41B2-830D-28C5AAF0879E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6056 \"1901-1\" ;\n\tprov:wasDerivedFrom wdref:8931dd12107a5b80dd44729771d17987008c9ff8 .\n\nwd:Q165145 p:P652 wds:Q165145-EA9D9621-8494-4D7F-8CA4-EA0480B53E5A .\n\nwds:Q165145-EA9D9621-8494-4D7F-8CA4-EA0480B53E5A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P652 \"R7QMG0BT2W\" .\n\nwd:Q165145 p:P6756 wds:Q165145-DB1F3DDC-44CE-4D4E-9D89-5124074EA1A0 .\n\nwds:Q165145-DB1F3DDC-44CE-4D4E-9D89-5124074EA1A0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6756 \"Quercus robur\" .\n\nwd:Q165145 p:P9157 wds:Q165145-FF2681CB-87E5-4007-9871-370C53264F55 .\n\nwds:Q165145-FF2681CB-87E5-4007-9871-370C53264F55 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9157 \"239659\" ;\n\tprov:wasDerivedFrom wdref:62990530a319358633159fa90952b2c8ed25f57e .\n\nwd:Q165145 p:P8468 wds:Q165145-826BB4B0-61A8-4FAF-BF07-D871ABA74D61 .\n\nwds:Q165145-826BB4B0-61A8-4FAF-BF07-D871ABA74D61 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8468 \"36783\" .\n\nwd:Q165145 p:P9501 wds:Q165145-14BFF403-E491-445A-AA55-FC39088E01A4 .\n\nwds:Q165145-14BFF403-E491-445A-AA55-FC39088E01A4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9501 \"que_rob\" .\n\nwd:Q165145 p:P9654 wds:Q165145-F0A6101A-4EE5-4770-9533-8D9CBCFC6632 .\n\nwds:Q165145-F0A6101A-4EE5-4770-9533-8D9CBCFC6632 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9654 \"Quercus robur\" .\n\nwd:Q165145 p:P3105 wds:Q165145-5C52A698-DF31-44A9-8033-45830E14264A .\n\nwds:Q165145-5C52A698-DF31-44A9-8033-45830E14264A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3105 \"75316\" ;\n\tprov:wasDerivedFrom wdref:28d1170718b10bb4ed207b2bfd230c6882c07789 .\n\nwd:Q165145 p:P9741 wds:Q165145-A2BCAFAD-44EA-44E0-8B5F-A4DEC6794A00 .\n\nwds:Q165145-A2BCAFAD-44EA-44E0-8B5F-A4DEC6794A00 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9741 \"4000\" .\n\nwd:Q165145 p:P9799 wds:Q165145-F556556E-A272-44A7-BD9C-D8CC35C4013D .\n\nwds:Q165145-F556556E-A272-44A7-BD9C-D8CC35C4013D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9799 \"50324\" .\n\nwd:Q165145 p:P10243 wds:Q165145-1C2B99D0-AD2B-4973-BA0F-B91F915EE4B5 .\n\nwds:Q165145-1C2B99D0-AD2B-4973-BA0F-B91F915EE4B5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10243 \"2.147862\" .\n\nwd:Q165145 p:P10283 wds:Q165145-69B69B36-6D74-487F-97CE-CFD24AB6FAA0 .\n\nwds:Q165145-69B69B36-6D74-487F-97CE-CFD24AB6FAA0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10283 \"C2776211871\" ;\n\tprov:wasDerivedFrom wdref:e0b27d817c9a9b3247df341000fc490bafcba862 .\n\nwd:Q165145 p:P4342 wds:Q165145-8FD926EC-838F-4927-BAC8-243ADEE394ED .\n\nwds:Q165145-8FD926EC-838F-4927-BAC8-243ADEE394ED a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4342 \"sommereik\" .\n\nwd:Q165145 p:P8309 wds:Q165145-7ce211a5-42c6-9eb3-fe10-fe47c4738046 .\n\nwds:Q165145-7ce211a5-42c6-9eb3-fe10-fe47c4738046 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8309 \"18-217471\" .\n\nwd:Q165145 p:P6293 wds:Q165145-e5f0fff7-40eb-2707-42ab-3a446289348d .\n\nwds:Q165145-e5f0fff7-40eb-2707-42ab-3a446289348d a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6293 \"Y104061\" ;\n\tpsn:P6293 .\n\nwd:Q165145 p:P1889 wds:Q165145-231c5e14-41a7-6638-d3b1-17cc0e06848f .\n\nwds:Q165145-231c5e14-41a7-6638-d3b1-17cc0e06848f a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1889 wd:Q3579529 .\n\nwd:Q165145 p:P6114 wds:Q165145-DF31F267-4CE3-4263-B7D4-B7919559F912 .\n\nwds:Q165145-DF31F267-4CE3-4263-B7D4-B7919559F912 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6114 \"271\" .\n\nwd:Q165145 p:P10585 wds:Q165145-A7D6FC1A-3AE9-482F-B736-AE20C89BB276 .\n\nwds:Q165145-A7D6FC1A-3AE9-482F-B736-AE20C89BB276 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10585 \"4R5YN\" .\n\nwd:Q165145 p:P10793 wds:Q165145-ac0ca7fc-42ca-3cd9-2b19-de054edbc9c8 .\n\nwds:Q165145-ac0ca7fc-42ca-3cd9-2b19-de054edbc9c8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10793 \"208\" .\n\nwd:Q165145 p:P691 wds:Q165145-A34E9979-4055-493B-910A-8988BDFC87FC .\n\nwds:Q165145-A34E9979-4055-493B-910A-8988BDFC87FC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P691 \"ph114370\" ;\n\tpq:P1810 \"dub letní\" .\n\nwd:Q165145 p:P1343 wds:Q165145-E08C216A-39A1-4F68-B668-568756F058C0 .\n\nwds:Q165145-E08C216A-39A1-4F68-B668-568756F058C0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q112869398 ;\n\tpq:P304 \"239\" .\n\nwd:Q165145 p:P1343 wds:Q165145-b8291d0e-4da8-8e5b-0170-6f1afa9bd741 .\n\nwds:Q165145-b8291d0e-4da8-8e5b-0170-6f1afa9bd741 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q19133013 ;\n\tpq:P805 wd:Q114640452 ;\n\tpq:P407 wd:Q7737 ;\n\tpq:P585 \"1878-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:4b6fcb2429083a7ef5021ca23059c45c ;\n\tpq:P304 \"288\" .\n\nwd:Q165145 p:P1343 wds:Q165145-bc1f938e-4cdd-83b8-9204-efdcf4b657a0 .\n\nwds:Q165145-bc1f938e-4cdd-83b8-9204-efdcf4b657a0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q5862833 ;\n\tpq:P478 \"5\" ;\n\tpq:P585 \"1936-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:7d90d021a736d1126469a1c14712f70c ;\n\tpq:P304 \"339–340\" ;\n\tpq:P407 wd:Q7737 ;\n\tpq:P50 wd:Q21339272 .\n\nwd:Q165145 p:P8189 wds:Q165145-3A3FCA46-2C77-4429-8962-40BB853621FA .\n\nwds:Q165145-3A3FCA46-2C77-4429-8962-40BB853621FA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8189 \"987007548267005171\" ;\n\tprov:wasDerivedFrom wdref:ecb7a39cf436eb1fba419853af168ef9f2ba1dab .\n\nwd:Q165145 p:P9714 wds:Q165145-45438587-62AD-499D-B531-FB257E781686 .\n\nwds:Q165145-45438587-62AD-499D-B531-FB257E781686 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9714 wd:Q148 ;\n\tpq:P131 wd:Q47974 ;\n\tprov:wasDerivedFrom wdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5 .\n\nwd:Q165145 p:P10791 wds:Q165145-608eb644-45f2-759b-a7ab-6d5dc559a556 .\n\nwds:Q165145-608eb644-45f2-759b-a7ab-6d5dc559a556 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10791 \"63879\" .\n\nwd:Q165145 p:P3102 wds:Q165145-C7E47E8B-DD84-4E55-9E86-13A9019A5F63 .\n\nwds:Q165145-C7E47E8B-DD84-4E55-9E86-13A9019A5F63 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3102 \"31185\" .\n\nwd:Q165145 p:P6104 wds:Q165145-F004CFA2-5D44-4062-80C9-6404152A0F2E .\n\nwds:Q165145-F004CFA2-5D44-4062-80C9-6404152A0F2E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6104 wd:Q56241615 .\n\nwd:Q165145 p:P11067 wds:Q165145-7279a7bf-4184-bd7a-dc8b-f8f534c744b1 .\n\nwds:Q165145-7279a7bf-4184-bd7a-dc8b-f8f534c744b1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11067 \"379\" .\n\nwd:Q165145 p:P10701 wds:Q165145-2935BEC3-FE21-4B63-A217-AE67666B6A7B .\n\nwds:Q165145-2935BEC3-FE21-4B63-A217-AE67666B6A7B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10701 \"FB613391\" .\n\nwd:Q165145 p:P4000 wds:Q165145-06e784ee-4506-395c-4328-9c73b39da02d .\n\nwds:Q165145-06e784ee-4506-395c-4328-9c73b39da02d a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4000 wd:Q11009 .\n\nwd:Q165145 p:P10711 wds:Q165145-8c878144-4e82-21a5-222c-2b18f3318f07 .\n\nwds:Q165145-8c878144-4e82-21a5-222c-2b18f3318f07 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10711 \"9742\" .\n\nwd:Q165145 p:P9495 wds:Q165145-CEF8BEEC-BDE9-4663-A2EC-048B72510C9C .\n\nwds:Q165145-CEF8BEEC-BDE9-4663-A2EC-048B72510C9C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9495 \"term/c7d94169-dfa7-42e2-bf08-d1418cc8b61c\" .\n\nwd:Q165145 p:P11514 wds:Q165145-D9F2EEFA-A252-4CCB-9B03-06F1D6F2E832 .\n\nwds:Q165145-D9F2EEFA-A252-4CCB-9B03-06F1D6F2E832 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11514 \"dub-chereshchatyi-b6e7e5\" .\n\nwd:Q165145 p:P9503 wds:Q165145-67546B8A-64AB-465C-B3BC-A2BDE8E4239E .\n\nwds:Q165145-67546B8A-64AB-465C-B3BC-A2BDE8E4239E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9503 \"43685\" .\n\nwd:Q165145 p:P11824 wds:Q165145-C26E01B2-A4CE-485F-B2E7-D8300FDBB56D .\n\nwds:Q165145-C26E01B2-A4CE-485F-B2E7-D8300FDBB56D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11824 \"quro\" .\n\nwd:Q165145 p:P2892 wds:Q165145-47FDFF96-DC5F-46C3-BDC0-C44A2ADEFF8D .\n\nwds:Q165145-47FDFF96-DC5F-46C3-BDC0-C44A2ADEFF8D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2892 \"C0330306\" ;\n\tprov:wasDerivedFrom wdref:22d5690dd7dbc0c61260ced6e331cbdb4322e6d1 .\n\nwd:Q165145 p:P10366 wds:Q165145-dbf48317-4162-3b29-c3c9-12927f8d91a7 .\n\nwds:Q165145-dbf48317-4162-3b29-c3c9-12927f8d91a7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10366 \"9213\" .\n\nwd:Q165145 p:P1813 wds:Q165145-439411E1-8BBD-4C0F-B96D-AB3DAAE68E31 .\n\nwds:Q165145-439411E1-8BBD-4C0F-B96D-AB3DAAE68E31 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1813 \"Q. robur\"@mul ;\n\tprov:wasDerivedFrom wdref:f20547ee50ef51494aeef73dfd45ba7be046ad14 .\n\nwd:Q165145 p:P7537 wds:Q165145-D30C49B1-52D0-45EC-8AAF-0080C917D787 .\n\nwds:Q165145-D30C49B1-52D0-45EC-8AAF-0080C917D787 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7537 \"266641\" ;\n\tprov:wasDerivedFrom wdref:ef6dade85f49421e7db939f985e8ae99cc59823f .\n\nwd:Q165145 p:P7587 wds:Q165145-4A5D52BB-6DF4-4D47-8AF4-A09679DC7A86 .\n\nwds:Q165145-4A5D52BB-6DF4-4D47-8AF4-A09679DC7A86 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7587 \"Quercus_robur\" ;\n\tprov:wasDerivedFrom wdref:d1d7c4990e31806a1a6aad395ad1dcc7089d1efe .\n\nwd:Q165145 p:P10333 wds:Q165145-52FD248A-A0E8-4C1D-ADFE-77401DEC80EC .\n\nwds:Q165145-52FD248A-A0E8-4C1D-ADFE-77401DEC80EC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10333 \"1510\" ;\n\tprov:wasDerivedFrom wdref:6a34e1f3bf074d6799e51cef91875a05ef435336 .\n\nwd:Q165145 p:P11078 wds:Q165145-E00826DF-971E-485A-B877-F7D2552ACA0B .\n\nwds:Q165145-E00826DF-971E-485A-B877-F7D2552ACA0B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11078 \"4150/stilk-eg\" ;\n\tprov:wasDerivedFrom wdref:06ae9714a8c680ab276f8e1db442f688c9b0e8e5 .\n\nwd:Q165145 p:P10561 wds:Q165145-F203D164-880F-4736-B6E6-4F3770D06F0F .\n\nwds:Q165145-F203D164-880F-4736-B6E6-4F3770D06F0F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10561 \"551\" ;\n\tprov:wasDerivedFrom wdref:6c2c858bc4fb0306293e3560b32c6eb59a01f0d7 .\n\nwd:Q165145 p:P11829 wds:Q165145-02D119DB-931B-49C1-A5F1-409D5EF4184D .\n\nwds:Q165145-02D119DB-931B-49C1-A5F1-409D5EF4184D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11829 \"quercus_robur--english_oak\" ;\n\tprov:wasDerivedFrom wdref:cab3057f5db9ea4280db3b574cbcba243caae14c .\n\nwd:Q165145 p:P9691 wds:Q165145-D1B9DA09-1D01-4E49-90AC-51EE0E247066 .\n\nwds:Q165145-D1B9DA09-1D01-4E49-90AC-51EE0E247066 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9691 \"Quercus robur\" ;\n\tprov:wasDerivedFrom wdref:7ea084c3db5e67ecde9e295586e301a55e432449 .\n\nwd:Q165145 p:P9408 wds:Q165145-F95E898F-1EA7-4E71-883F-1AF0303FF54C .\n\nwds:Q165145-F95E898F-1EA7-4E71-883F-1AF0303FF54C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9408 \"78825\" ;\n\tprov:wasDerivedFrom wdref:2f7c729d9a31ad15d727154e099f70e505f0c904 .\n\nwd:Q165145 p:P10709 wds:Q165145-646ED349-EA0E-414B-9A85-16B2912A9673 .\n\nwds:Q165145-646ED349-EA0E-414B-9A85-16B2912A9673 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10709 \"quercus-robur\" ;\n\tprov:wasDerivedFrom wdref:fa3cad23c75341067cf975ccc9fb47e2893382c3 .\n\nwd:Q165145 p:P7544 wds:Q165145-53FE92D5-B1F7-43D4-8EF6-40F15B31514F .\n\nwds:Q165145-53FE92D5-B1F7-43D4-8EF6-40F15B31514F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7544 \"ce8f554e95e82bc275cb5942d4d5f68c\" ;\n\tprov:wasDerivedFrom wdref:22784a394cd3aea5e288e494960389a0d1663ac6 .\n\nwd:Q165145 p:P6098 wds:Q165145-C9ED7432-BD5D-4F2E-9232-F8C6E670500C .\n\nwds:Q165145-C9ED7432-BD5D-4F2E-9232-F8C6E670500C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6098 \"quercus-robur\" ;\n\tprov:wasDerivedFrom wdref:5ea8dd57a23332a6b159dde3772f673cdce6b4ac .\n\nwd:Q165145 p:P12137 wds:Q165145-DCBB8B94-221D-4966-9687-63331EA6274E .\n\nwds:Q165145-DCBB8B94-221D-4966-9687-63331EA6274E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12137 \"specie/quercus-pedunculata\" .\n\nwd:Q165145 p:P4333 wds:Q165145-C53FA71D-BC99-48E4-B667-59912CCDA99C .\n\nwds:Q165145-C53FA71D-BC99-48E4-B667-59912CCDA99C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_900291515.1\" .\n\nwd:Q165145 p:P4333 wds:Q165145-E067D560-CDD1-463D-9067-D1346A31EACE .\n\nwds:Q165145-E067D560-CDD1-463D-9067-D1346A31EACE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_932294415.1\" .\n\nwd:Q165145 p:P4333 wds:Q165145-5E1FE28B-91D4-4A3D-A77B-28854C82E80E .\n\nwds:Q165145-5E1FE28B-91D4-4A3D-A77B-28854C82E80E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_932294425.1\" .\n\nwd:Q165145 p:P12179 wds:Q165145-BD6B6872-5F18-4634-AA66-65C766AD6FFE .\n\nwds:Q165145-BD6B6872-5F18-4634-AA66-65C766AD6FFE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12179 \"3377\" ;\n\tprov:wasDerivedFrom wdref:4ec3aeebaa6ec8a593cb8c2c60b57743a320e249 .\n\nwd:Q165145 p:P12182 wds:Q165145-F6D3FBCB-40AD-4D30-B479-568231F3FDBF .\n\nwds:Q165145-F6D3FBCB-40AD-4D30-B479-568231F3FDBF a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12182 \"species/quercus/robur\" ;\n\tprov:wasDerivedFrom wdref:94e0a80b9416e444fed447703b3373de7dd3fff6 .\n\nwd:Q165145 p:P12086 wds:Q165145-D76BE15C-22E5-4F6C-8FD5-17FA680BB1FD .\n\nwds:Q165145-D76BE15C-22E5-4F6C-8FD5-17FA680BB1FD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12086 \"Zomereik\" .\n\nwd:Q165145 p:P6507 wds:Q165145-E0B289D5-E09B-479C-B57C-E9D1ABB66C8C .\n\nwds:Q165145-E0B289D5-E09B-479C-B57C-E9D1ABB66C8C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6507 \"L.\" .\n\nwd:Q165145 p:P8193 wds:Q165145-d339a666-4edf-e141-56a2-b90779c6e7bf .\n\nwds:Q165145-d339a666-4edf-e141-56a2-b90779c6e7bf a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8193 wd:Q96279266 ;\n\tprov:wasDerivedFrom wdref:9181bc4f4878fcc4158a8e608171fd52a8868f7c .\n\nwd:Q165145 p:P10906 wds:Q165145-3314a6eb-48a2-a624-8471-bb925ba7d49b .\n\nwds:Q165145-3314a6eb-48a2-a624-8471-bb925ba7d49b a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10906 wd:Q1131316 .\n\nwd:Q165145 p:P11650 wds:Q165145-6697559f-4b03-17d8-6828-99950adb32a7 .\n\nwds:Q165145-6697559f-4b03-17d8-6828-99950adb32a7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11650 \"18523517\" .\n\nwd:Q165145 p:P9826 wds:Q165145-acb7e1d5-403d-123f-8915-da36a4f66bf3 .\n\nwds:Q165145-acb7e1d5-403d-123f-8915-da36a4f66bf3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9826 \"Дуб черешчатый, летний – Quercus robur L.\" ;\n\tpq:P813 \"2024-03-21T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P813 wdv:1deff99bd5ccadb8e8b385772ff4d247 .\n\nwd:Q165145 p:P12187 wds:Q165145-a9b27b7c-472f-ca2f-fc41-74185c68e817 .\n\nwds:Q165145-a9b27b7c-472f-ca2f-fc41-74185c68e817 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12187 \"VHZZX2NB4BA3PGJCBVEZ2ZHW7I\" .\n\nwd:Q165145 p:P12670 wds:Q165145-71D56AD0-E679-437B-BD76-F3C89054C12F .\n\nwds:Q165145-71D56AD0-E679-437B-BD76-F3C89054C12F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12670 \"8266\" ;\n\tprov:wasDerivedFrom wdref:1b33b4d83351dde126b8c32d5fda20c7ba8f9f2d .\n\nwd:Q165145 p:P12296 wds:Q165145-E1FCD1A8-74EE-48C2-9119-AB07D0ADC16B .\n\nwds:Q165145-E1FCD1A8-74EE-48C2-9119-AB07D0ADC16B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12296 \"97611\" ;\n\tprov:wasDerivedFrom wdref:d99c41681887e3d38d2389b7dea47c05ad94a96a .\n\nwd:Q165145 p:P12292 wds:Q165145-515C1CB9-B624-4088-8AAF-ED0475F0BF81 .\n\nwds:Q165145-515C1CB9-B624-4088-8AAF-ED0475F0BF81 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12292 \"c6e3073b-2ed1-442b-b756-86e3dcc59059\" ;\n\tprov:wasDerivedFrom wdref:a643ae02b2a6b287036f9865b6be7b276cf7d962 .\n\nwd:Q165145 p:P12100 wds:Q165145-3B0001EC-72FF-4FD7-A5F1-68B7994A4A72 .\n\nwds:Q165145-3B0001EC-72FF-4FD7-A5F1-68B7994A4A72 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12100 \"Quercus robur\" ;\n\tprov:wasDerivedFrom wdref:8383d79aab066851aeeddbd2d25b2e5147655873 .\n\nwd:Q165145 p:P12554 wds:Q165145-D41DCC89-41F7-430F-AE41-D27A0E8061E1 .\n\nwds:Q165145-D41DCC89-41F7-430F-AE41-D27A0E8061E1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12554 \"Quercus+robur\" ;\n\tprov:wasDerivedFrom wdref:a06cc0f86df889b618446dcbe0f7700371fd0ad7 .\n\nwd:Q165145 p:P9423 wds:Q165145-12165AD0-B431-4D37-BB49-FF5486F61712 .\n\nwds:Q165145-12165AD0-B431-4D37-BB49-FF5486F61712 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9423 \"7775\" .\n\nwd:Q165145 p:P1420 wds:Q165145-6e2ee37d-4c60-1a56-d54f-576868fadba3 .\n\nwds:Q165145-6e2ee37d-4c60-1a56-d54f-576868fadba3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1420 wd:Q111328943 ;\n\tprov:wasDerivedFrom wdref:f6086d69a610608336e3082a79eaee238b84d644 .\n\nwd:Q165145 p:P1843 wds:Q165145-2997803d-4484-2943-be73-ec103874d231 .\n\nwds:Q165145-2997803d-4484-2943-be73-ec103874d231 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Stieleiche\"@de ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-88a549e0-4b9f-7403-0c22-6b1c9c96a748 .\n\nwds:Q165145-88a549e0-4b9f-7403-0c22-6b1c9c96a748 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Deutsche Eiche\"@de .\n\nwd:Q165145 p:P1843 wds:Q165145-de82ad9f-4b39-603f-bf67-eb7e33c6d235 .\n\nwds:Q165145-de82ad9f-4b39-603f-bf67-eb7e33c6d235 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Sommereiche\"@de .\n\nwd:Q165145 p:P1843 wds:Q165145-C9D77CDD-51DF-4709-88DC-A08231DF7477 .\n\nwds:Q165145-C9D77CDD-51DF-4709-88DC-A08231DF7477 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Stiel-Eiche\"@de ;\n\tprov:wasDerivedFrom wdref:c64768a6caa1534e0e82f29fc4805235c3846107 .\n\nwd:Q165145 p:P1843 wds:Q165145-871BE67A-74EF-4F84-93CD-81E03CE7A4CB .\n\nwds:Q165145-871BE67A-74EF-4F84-93CD-81E03CE7A4CB a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:PreferredRank ;\n\tps:P1843 \"Pedunculate Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978,\n\t\twdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94,\n\t\twdref:27680a583a745484413daff9c9e620fa68d31749 .\n\nwd:Q165145 p:P1843 wds:Q165145-8a63ad09-4f5f-7cba-b795-c256377507bd .\n\nwds:Q165145-8a63ad09-4f5f-7cba-b795-c256377507bd a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Pedunculate oak\"@en .\n\nwd:Q165145 p:P1843 wds:Q165145-43FE3FCF-E775-435C-9966-B08E1025FDA7 .\n\nwds:Q165145-43FE3FCF-E775-435C-9966-B08E1025FDA7 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"pedunculate oak\"@en ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-72C3EA5B-F7E6-4FA2-8B2F-A5E0FFF4BF39 .\n\nwds:Q165145-72C3EA5B-F7E6-4FA2-8B2F-A5E0FFF4BF39 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"European Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978 .\n\nwd:Q165145 p:P1843 wds:Q165145-2591C4C7-461D-4B3E-9831-53134FE32274 .\n\nwds:Q165145-2591C4C7-461D-4B3E-9831-53134FE32274 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"English Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978,\n\t\twdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94 .\n\nwd:Q165145 p:P1843 wds:Q165145-af172bce-4a8f-c38a-da96-d4cfce6f3ffc .\n\nwds:Q165145-af172bce-4a8f-c38a-da96-d4cfce6f3ffc a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Truffle Oak\"@en ;\n\tprov:wasDerivedFrom wdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94 .\n\nwd:Q165145 p:P1843 wds:Q165145-6f2d15e7-4b1d-80d6-10e1-ea205e642761 .\n\nwds:Q165145-6f2d15e7-4b1d-80d6-10e1-ea205e642761 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"French oak\"@en .\n\nwd:Q165145 p:P1843 wds:Q165145-d4cd8828-4abb-11cf-7031-9ff491b545c7 .\n\nwds:Q165145-d4cd8828-4abb-11cf-7031-9ff491b545c7 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"English oak\"@en ;\n\tprov:wasDerivedFrom wdref:4a9b7589786948d52b86be8f72188bae741e4a0c .\n\nwd:Q165145 p:P1843 wds:Q165145-0C2C2B6C-0C4D-4F80-9D0F-0A612C6D9228 .\n\nwds:Q165145-0C2C2B6C-0C4D-4F80-9D0F-0A612C6D9228 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Chêne Pédonculé\"@fr ;\n\tprov:wasDerivedFrom wdref:362e3c5d6de1d193ef97205ba38834ba075191fc .\n\nwd:Q165145 p:P1843 wds:Q165145-983CAE84-E1AE-42A6-8310-288F277FED75 .\n\nwds:Q165145-983CAE84-E1AE-42A6-8310-288F277FED75 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"chêne pédonculé\"@fr ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-CDCD87FC-D9BB-4671-9469-75750CC84BF3 .\n\nwds:Q165145-CDCD87FC-D9BB-4671-9469-75750CC84BF3 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Zomereik\"@nl ;\n\tprov:wasDerivedFrom wdref:c0a11c33e1269de68db514169e1aa70667fa8666 .\n\nwd:Q165145 p:P1843 wds:Q165145-97C44073-337C-4D8C-93B1-26774E815B75 .\n\nwds:Q165145-97C44073-337C-4D8C-93B1-26774E815B75 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"zomereik\"@nl ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-448BC12E-825F-487C-905C-E9542F9B0D35 .\n\nwds:Q165145-448BC12E-825F-487C-905C-E9542F9B0D35 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"dub letní\"@cs ;\n\tprov:wasDerivedFrom wdref:e4038602d6b6524c2ae63f184cdd1cc3ec67a37a .\n\nwd:Q165145 p:P1843 wds:Q165145-EFEAE195-DFA2-4C47-8659-A66C9F980C41 .\n\nwds:Q165145-EFEAE195-DFA2-4C47-8659-A66C9F980C41 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"metsätammi\"@fi ;\n\tprov:wasDerivedFrom wdref:e7ababbc02c927e7a635872c9d70efe98410c8d3 .\n\nwd:Q165145 p:P1843 wds:Q165145-6509b9c8-4b16-32b8-f401-99dad76e4c9e .\n\nwds:Q165145-6509b9c8-4b16-32b8-f401-99dad76e4c9e a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"дуб звычайны\"@be-tarask .\n\nwd:Q165145 p:P1843 wds:Q165145-b055804a-4e8b-fdd4-9fcd-8f5c0610317c .\n\nwds:Q165145-b055804a-4e8b-fdd4-9fcd-8f5c0610317c a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"farnia\"@it .\n\nwd:Q165145 p:P1843 wds:Q165145-3a9bc96d-4cc3-8126-a81f-7cf0162a479a .\n\nwds:Q165145-3a9bc96d-4cc3-8126-a81f-7cf0162a479a a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"стежер\"@mk .\n\nwd:Q165145 p:P1843 wds:Q165145-a0326b9b-4c7f-534e-080a-0b682d0e2243 .\n\nwds:Q165145-a0326b9b-4c7f-534e-080a-0b682d0e2243 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"roble común\"@es .\n\nwd:Q165145 p:P1843 wds:Q165145-0479c541-476d-9965-171a-ad88f00fef17 .\n\nwds:Q165145-0479c541-476d-9965-171a-ad88f00fef17 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"roble carballo\"@es .\n\nwd:Q165145 p:P1843 wds:Q165145-7620DABC-4EDD-4919-816D-B76997D68F25 .\n\nwds:Q165145-7620DABC-4EDD-4919-816D-B76997D68F25 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎\"@zh-hans ;\n\tprov:wasDerivedFrom wdref:61224d88b30998fe0b42c1a46f5c697733a95d49,\n\t\twdref:96fd73e6eed9326f46a773a2147935e22ea6be64 .\n\nwd:Q165145 p:P1843 wds:Q165145-6216C892-385B-411E-90B7-CB61812F1F6C .\n\nwds:Q165145-6216C892-385B-411E-90B7-CB61812F1F6C a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎\"@zh ;\n\tprov:wasDerivedFrom wdref:bbae94e02e82d1e842e8612397e5e45f07cb1db5,\n\t\twdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5,\n\t\twdref:4aa3ef7b09734f4d57c3e7f552074cb7fa18c5b1 .\n\nwd:Q165145 p:P1843 wds:Q165145-B26175C4-6563-4CE8-AE8A-981A8914ABDE .\n\nwds:Q165145-B26175C4-6563-4CE8-AE8A-981A8914ABDE a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"柞树叶\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-39CD58F2-1BD3-4ED8-9253-1B8CE970DA91 .\n\nwds:Q165145-39CD58F2-1BD3-4ED8-9253-1B8CE970DA91 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎*(橡树)\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-00C2FA09-749B-482B-8842-2B32321FFCC0 .\n\nwds:Q165145-00C2FA09-749B-482B-8842-2B32321FFCC0 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"橡子\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-8BB2F4D0-4B63-4770-B77A-D75DFDAFA76A .\n\nwds:Q165145-8BB2F4D0-4B63-4770-B77A-D75DFDAFA76A a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"carbayu\"@ast ;\n\tprov:wasDerivedFrom wdref:25371c05886d508f0bd3b89319c1e188ec3c8883 .\n\nwd:Q165145 p:P1843 wds:Q165145-830ce853-4d13-45d7-8cdc-362390487d28 .\n\nwds:Q165145-830ce853-4d13-45d7-8cdc-362390487d28 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"dob\"@sl ;\n\tprov:wasDerivedFrom wdref:f76860944072719f61df28202589e186d5b936fc .\n\nwd:Q165145 p:P12616 wds:Q165145-d34aac6e-41d4-abf6-6a54-e87722e29f90 .\n\nwds:Q165145-d34aac6e-41d4-abf6-6a54-e87722e29f90 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q12364191 .\n\nwd:Q165145 p:P12616 wds:Q165145-bf223085-4ab8-9242-bcbc-cd450ac20774 .\n\nwds:Q165145-bf223085-4ab8-9242-bcbc-cd450ac20774 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q12379403 .\n\nwd:Q165145 p:P12616 wds:Q165145-8e636ba8-4962-cefb-b107-35908da28da8 .\n\nwds:Q165145-8e636ba8-4962-cefb-b107-35908da28da8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q131939033 .\n\nwd:Q165145 p:P12616 wds:Q165145-0c7b4098-4a1d-c7a5-8ceb-048bea50907c .\n\nwds:Q165145-0c7b4098-4a1d-c7a5-8ceb-048bea50907c a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q136087938 .\n\nwd:Q165145 p:P13591 wds:Q165145-E56449B2-DAFB-4AD8-934E-67ABB4AF2D4D .\n\nwds:Q165145-E56449B2-DAFB-4AD8-934E-67ABB4AF2D4D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13591 \"concept/4c553524-61f0-42eb-bdcf-1ef6854af849\" .\n\nwd:Q165145 p:P13734 wds:Q165145-F950AFC1-719C-4947-BAF5-D334F23DC951 .\n\nwds:Q165145-F950AFC1-719C-4947-BAF5-D334F23DC951 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13734 \"R12771\" ;\n\tprov:wasDerivedFrom wdref:7f65d78cb2248e5d0f7eec2715fc0f39c9b6fd3c .\n\nwd:Q165145 p:P6870 wds:Q165145-A5788B0E-FB9D-499C-843C-971E0D970FB4 .\n\nwds:Q165145-A5788B0E-FB9D-499C-843C-971E0D970FB4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6870 \"158799\" .\n\nwd:Q165145 p:P3101 wds:Q165145-1D1ABAA8-C004-4141-BC0E-C2A41F347BA6 .\n\nwds:Q165145-1D1ABAA8-C004-4141-BC0E-C2A41F347BA6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3101 \"48566\" .\n\nwd:Q165145 p:P13478 wds:Q165145-5f173266-409b-315b-0413-d1a4be61c1eb .\n\nwds:Q165145-5f173266-409b-315b-0413-d1a4be61c1eb a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13478 wd:Q12004 .\n\nwd:Q165145 p:P5252 wds:Q165145-e349e2da-43f6-6a96-d251-2fbaebfe7f28 .\n\nwds:Q165145-e349e2da-43f6-6a96-d251-2fbaebfe7f28 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5252 .\n\nwd:Q165145 rdfs:label \"夏栎\"@zh-hans ;\n\tskos:prefLabel \"夏栎\"@zh-hans ;\n\tschema:name \"夏栎\"@zh-hans ;\n\trdfs:label \"夏櫟\"@zh-hant ;\n\tskos:prefLabel \"夏櫟\"@zh-hant ;\n\tschema:name \"夏櫟\"@zh-hant ;\n\trdfs:label \"夏櫟\"@zh-hk ;\n\tskos:prefLabel \"夏櫟\"@zh-hk ;\n\tschema:name \"夏櫟\"@zh-hk ;\n\trdfs:label \"夏栎\"@zh-cn ;\n\tskos:prefLabel \"夏栎\"@zh-cn ;\n\tschema:name \"夏栎\"@zh-cn ;\n\trdfs:label \"夏栎\"@zh-sg ;\n\tskos:prefLabel \"夏栎\"@zh-sg ;\n\tschema:name \"夏栎\"@zh-sg ;\n\trdfs:label \"夏櫟\"@zh-tw ;\n\tskos:prefLabel \"夏櫟\"@zh-tw ;\n\tschema:name \"夏櫟\"@zh-tw ;\n\trdfs:label \"Haritz kandudun\"@eu ;\n\tskos:prefLabel \"Haritz kandudun\"@eu ;\n\tschema:name \"Haritz kandudun\"@eu ;\n\trdfs:label \"dąb szypułkowy\"@pl ;\n\tskos:prefLabel \"dąb szypułkowy\"@pl ;\n\tschema:name \"dąb szypułkowy\"@pl ;\n\trdfs:label \"Hrast lužnjak\"@bs ;\n\tskos:prefLabel \"Hrast lužnjak\"@bs ;\n\tschema:name \"Hrast lužnjak\"@bs ;\n\trdfs:label \"Quercus robur\"@es ;\n\tskos:prefLabel \"Quercus robur\"@es ;\n\tschema:name \"Quercus robur\"@es ;\n\trdfs:label \"kocsányos tölgy\"@hu ;\n\tskos:prefLabel \"kocsányos tölgy\"@hu ;\n\tschema:name \"kocsányos tölgy\"@hu ;\n\trdfs:label \"سنديان قوي\"@ar ;\n\tskos:prefLabel \"سنديان قوي\"@ar ;\n\tschema:name \"سنديان قوي\"@ar ;\n\trdfs:label \"zomereik\"@nl ;\n\tskos:prefLabel \"zomereik\"@nl ;\n\tschema:name \"zomereik\"@nl ;\n\trdfs:label \"carvalho-roble\"@pt ;\n\tskos:prefLabel \"carvalho-roble\"@pt ;\n\tschema:name \"carvalho-roble\"@pt ;\n\trdfs:label \"Tigfrukta kverko\"@eo ;\n\tskos:prefLabel \"Tigfrukta kverko\"@eo ;\n\tschema:name \"Tigfrukta kverko\"@eo ;\n\trdfs:label \"Lužnjak\"@sr-el ;\n\tskos:prefLabel \"Lužnjak\"@sr-el ;\n\tschema:name \"Lužnjak\"@sr-el ;\n\trdfs:label \"Лужњак\"@sr-ec ;\n\tskos:prefLabel \"Лужњак\"@sr-ec ;\n\tschema:name \"Лужњак\"@sr-ec ;\n\trdfs:label \"tammi\"@fi ;\n\tskos:prefLabel \"tammi\"@fi ;\n\tschema:name \"tammi\"@fi ;\n\trdfs:label \"дуб звичайний\"@uk ;\n\tskos:prefLabel \"дуб звичайний\"@uk ;\n\tschema:name \"дуб звичайний\"@uk ;\n\trdfs:label \"Yay palıdı\"@az ;\n\tskos:prefLabel \"Yay palıdı\"@az ;\n\tschema:name \"Yay palıdı\"@az ;\n\trdfs:label \"Hrast lužnjak\"@hr ;\n\tskos:prefLabel \"Hrast lužnjak\"@hr ;\n\tschema:name \"Hrast lužnjak\"@hr ;\n\trdfs:label \"Quercus robur\"@lmo ;\n\tskos:prefLabel \"Quercus robur\"@lmo ;\n\tschema:name \"Quercus robur\"@lmo ;\n\trdfs:label \"Stilk-Eg\"@da ;\n\tskos:prefLabel \"Stilk-Eg\"@da ;\n\tschema:name \"Stilk-Eg\"@da ;\n\trdfs:label \"Quercus robur\"@pms ;\n\tskos:prefLabel \"Quercus robur\"@pms ;\n\tschema:name \"Quercus robur\"@pms ;\n\trdfs:label \"Дуб звычайны\"@be ;\n\tskos:prefLabel \"Дуб звычайны\"@be ;\n\tschema:name \"Дуб звычайны\"@be ;\n\trdfs:label \"Quercus robur\"@it ;\n\tskos:prefLabel \"Quercus robur\"@it ;\n\tschema:name \"Quercus robur\"@it ;\n\trdfs:label \"ヨーロッパナラ\"@ja ;\n\tskos:prefLabel \"ヨーロッパナラ\"@ja ;\n\tschema:name \"ヨーロッパナラ\"@ja ;\n\trdfs:label \"Тум\"@mrj ;\n\tskos:prefLabel \"Тум\"@mrj ;\n\tschema:name \"Тум\"@mrj ;\n\trdfs:label \"Quercus robur\"@vi ;\n\tskos:prefLabel \"Quercus robur\"@vi ;\n\tschema:name \"Quercus robur\"@vi ;\n\trdfs:label \"Šiškaty dub\"@hsb ;\n\tskos:prefLabel \"Šiškaty dub\"@hsb ;\n\tschema:name \"Šiškaty dub\"@hsb ;\n\trdfs:label \"Dub letný\"@sk ;\n\tskos:prefLabel \"Dub letný\"@sk ;\n\tschema:name \"Dub letný\"@sk ;\n\trdfs:label \"roure pènol\"@ca ;\n\tskos:prefLabel \"roure pènol\"@ca ;\n\tschema:name \"roure pènol\"@ca ;\n\trdfs:label \"Quercus robur\"@la ;\n\tskos:prefLabel \"Quercus robur\"@la ;\n\tschema:name \"Quercus robur\"@la ;\n\trdfs:label \"Ōžouls\"@sgs ;\n\tskos:prefLabel \"Ōžouls\"@sgs ;\n\tschema:name \"Ōžouls\"@sgs ;\n\trdfs:label \"dub letní\"@cs ;\n\tskos:prefLabel \"dub letní\"@cs ;\n\tschema:name \"dub letní\"@cs ;\n\trdfs:label \"обикновен дъб\"@bg ;\n\tskos:prefLabel \"обикновен дъб\"@bg ;\n\tschema:name \"обикновен дъб\"@bg ;\n\trdfs:label \"K'aspicha ruwli\"@qu ;\n\tskos:prefLabel \"K'aspicha ruwli\"@qu ;\n\tschema:name \"K'aspicha ruwli\"@qu ;\n\trdfs:label \"harilik tamm\"@et ;\n\tskos:prefLabel \"harilik tamm\"@et ;\n\tschema:name \"harilik tamm\"@et ;\n\trdfs:label \"پیڈنکلیٹ بلوط\"@pnb ;\n\tskos:prefLabel \"پیڈنکلیٹ بلوط\"@pnb ;\n\tschema:name \"پیڈنکلیٹ بلوط\"@pnb ;\n\trdfs:label \"ek\"@sv ;\n\tskos:prefLabel \"ek\"@sv ;\n\tschema:name \"ek\"@sv ;\n\trdfs:label \"дуб черешчатый\"@ru ;\n\tskos:prefLabel \"дуб черешчатый\"@ru ;\n\tschema:name \"дуб черешчатый\"@ru ;\n\trdfs:label \"Quercus robur\"@ast ;\n\tskos:prefLabel \"Quercus robur\"@ast ;\n\tschema:name \"Quercus robur\"@ast ;\n\trdfs:label \"sommareik\"@nn ;\n\tskos:prefLabel \"sommareik\"@nn ;\n\tschema:name \"sommareik\"@nn ;\n\trdfs:label \"Rovro\"@io ;\n\tskos:prefLabel \"Rovro\"@io ;\n\tschema:name \"Rovro\"@io ;\n\trdfs:label \"chêne pédonculé\"@fr ;\n\tskos:prefLabel \"chêne pédonculé\"@fr ;\n\tschema:name \"chêne pédonculé\"@fr ;\n\trdfs:label \"Róra\"@eml ;\n\tskos:prefLabel \"Róra\"@eml ;\n\tschema:name \"Róra\"@eml ;\n\trdfs:label \"parastais ozols\"@lv ;\n\tskos:prefLabel \"parastais ozols\"@lv ;\n\tschema:name \"parastais ozols\"@lv ;\n\trdfs:label \"carballo común\"@gl ;\n\tskos:prefLabel \"carballo común\"@gl ;\n\tschema:name \"carballo común\"@gl ;\n\trdfs:label \"Stieleiche\"@de ;\n\tskos:prefLabel \"Stieleiche\"@de ;\n\tschema:name \"Stieleiche\"@de ;\n\trdfs:label \"Hrast lužnjak\"@sh ;\n\tskos:prefLabel \"Hrast lužnjak\"@sh ;\n\tschema:name \"Hrast lužnjak\"@sh ;\n\trdfs:label \"Quercus robur\"@en ;\n\tskos:prefLabel \"Quercus robur\"@en ;\n\tschema:name \"Quercus robur\"@en ;\n\trdfs:label \"stejar\"@ro ;\n\tskos:prefLabel \"stejar\"@ro ;\n\tschema:name \"stejar\"@ro ;\n\trdfs:label \"dob\"@sl ;\n\tskos:prefLabel \"dob\"@sl ;\n\tschema:name \"dob\"@sl ;\n\trdfs:label \"тумо\"@mhr ;\n\tskos:prefLabel \"тумо\"@mhr ;\n\tschema:name \"тумо\"@mhr ;\n\trdfs:label \"Paprastasis ąžuolas\"@lt ;\n\tskos:prefLabel \"Paprastasis ąžuolas\"@lt ;\n\tschema:name \"Paprastasis ąžuolas\"@lt ;\n\trdfs:label \"夏栎\"@zh ;\n\tskos:prefLabel \"夏栎\"@zh ;\n\tschema:name \"夏栎\"@zh ;\n\trdfs:label \"лужњак\"@sr ;\n\tskos:prefLabel \"лужњак\"@sr ;\n\tschema:name \"лужњак\"@sr ;\n\trdfs:label \"Quercus robur\"@ka ;\n\tskos:prefLabel \"Quercus robur\"@ka ;\n\tschema:name \"Quercus robur\"@ka ;\n\trdfs:label \"sommereik\"@nb ;\n\tskos:prefLabel \"sommereik\"@nb ;\n\tschema:name \"sommereik\"@nb ;\n\trdfs:label \"بلوط قرمز اروپایی\"@fa ;\n\tskos:prefLabel \"بلوط قرمز اروپایی\"@fa ;\n\tschema:name \"بلوط قرمز اروپایی\"@fa ;\n\trdfs:label \"Тумо\"@myv ;\n\tskos:prefLabel \"Тумо\"@myv ;\n\tschema:name \"Тумо\"@myv ;\n\trdfs:label \"Dar\"@kw ;\n\tskos:prefLabel \"Dar\"@kw ;\n\tschema:name \"Dar\"@kw ;\n\trdfs:label \"Quercus robur\"@war ;\n\tskos:prefLabel \"Quercus robur\"@war ;\n\tschema:name \"Quercus robur\"@war ;\n\trdfs:label \"Quercus robur\"@ceb ;\n\tskos:prefLabel \"Quercus robur\"@ceb ;\n\tschema:name \"Quercus robur\"@ceb ;\n\trdfs:label \"Derwen mes coesynnog\"@cy ;\n\tskos:prefLabel \"Derwen mes coesynnog\"@cy ;\n\tschema:name \"Derwen mes coesynnog\"@cy ;\n\trdfs:label \"Sumareik\"@is ;\n\tskos:prefLabel \"Sumareik\"@is ;\n\tschema:name \"Sumareik\"@is ;\n\trdfs:label \"Stilleech\"@lb ;\n\tskos:prefLabel \"Stilleech\"@lb ;\n\tschema:name \"Stilleech\"@lb ;\n\trdfs:label \"Stieleiche\"@de-ch ;\n\tskos:prefLabel \"Stieleiche\"@de-ch ;\n\tschema:name \"Stieleiche\"@de-ch ;\n\trdfs:label \"Quercus robur\"@en-ca ;\n\tskos:prefLabel \"Quercus robur\"@en-ca ;\n\tschema:name \"Quercus robur\"@en-ca ;\n\trdfs:label \"carvalho-roble\"@pt-br ;\n\tskos:prefLabel \"carvalho-roble\"@pt-br ;\n\tschema:name \"carvalho-roble\"@pt-br ;\n\trdfs:label \"로부르참나무\"@ko ;\n\tskos:prefLabel \"로부르참나무\"@ko ;\n\tschema:name \"로부르참나무\"@ko ;\n\trdfs:label \"կաղնի ամառային\"@hy ;\n\tskos:prefLabel \"կաղնի ամառային\"@hy ;\n\tschema:name \"կաղնի ամառային\"@hy ;\n\trdfs:label \"Steeleik\"@af ;\n\tskos:prefLabel \"Steeleik\"@af ;\n\tschema:name \"Steeleik\"@af ;\n\trdfs:label \"Кәдімгі емен\"@kk ;\n\tskos:prefLabel \"Кәдімгі емен\"@kk ;\n\tschema:name \"Кәдімгі емен\"@kk ;\n\trdfs:label \"Tammi\"@olo ;\n\tskos:prefLabel \"Tammi\"@olo ;\n\tschema:name \"Tammi\"@olo ;\n\trdfs:label \"یای پالیدی\"@azb ;\n\tskos:prefLabel \"یای پالیدی\"@azb ;\n\tschema:name \"یای پالیدی\"@azb ;\n\trdfs:label \"dair ghallda\"@ga ;\n\tskos:prefLabel \"dair ghallda\"@ga ;\n\tschema:name \"dair ghallda\"@ga ;\n\trdfs:label \"Ruver cumin\"@rm ;\n\tskos:prefLabel \"Ruver cumin\"@rm ;\n\tschema:name \"Ruver cumin\"@rm ;\n\trdfs:label \"eaika\"@se ;\n\tskos:prefLabel \"eaika\"@se ;\n\tschema:name \"eaika\"@se ;\n\trdfs:label \"Quercus robur\"@nds ;\n\tskos:prefLabel \"Quercus robur\"@nds ;\n\tschema:name \"Quercus robur\"@nds ;\n\trdfs:label \"אלון אנגלי\"@he ;\n\tskos:prefLabel \"אלון אנגלי\"@he ;\n\tschema:name \"אלון אנגלי\"@he ;\n\trdfs:label \"夏栎\"@wuu ;\n\tskos:prefLabel \"夏栎\"@wuu ;\n\tschema:name \"夏栎\"@wuu ;\n\trdfs:label \"Saplı meşe\"@tr ;\n\tskos:prefLabel \"Saplı meşe\"@tr ;\n\tschema:name \"Saplı meşe\"@tr ;\n\trdfs:label \"Quercus robur\"@id ;\n\tskos:prefLabel \"Quercus robur\"@id ;\n\tschema:name \"Quercus robur\"@id ;\n\trdfs:label \"Quercus robur\"@sq ;\n\tskos:prefLabel \"Quercus robur\"@sq ;\n\tschema:name \"Quercus robur\"@sq ;\n\trdfs:label \"дуб летні\"@be-tarask ;\n\tskos:prefLabel \"дуб летні\"@be-tarask ;\n\tschema:name \"дуб летні\"@be-tarask ;\n\trdfs:label \"سنديان قوى\"@arz ;\n\tskos:prefLabel \"سنديان قوى\"@arz ;\n\tschema:name \"سنديان قوى\"@arz ;\n\trdfs:label \"стежер\"@mk ;\n\tskos:prefLabel \"стежер\"@mk ;\n\tschema:name \"стежер\"@mk ;\n\trdfs:label \"Quercus robur\"@an ;\n\tskos:prefLabel \"Quercus robur\"@an ;\n\tschema:name \"Quercus robur\"@an ;\n\trdfs:label \"Quercus robur\"@vo ;\n\tskos:prefLabel \"Quercus robur\"@vo ;\n\tschema:name \"Quercus robur\"@vo ;\n\trdfs:label \"Quercus robur\"@ia ;\n\tskos:prefLabel \"Quercus robur\"@ia ;\n\tschema:name \"Quercus robur\"@ia ;\n\trdfs:label \"Quercus robur\"@ie ;\n\tskos:prefLabel \"Quercus robur\"@ie ;\n\tschema:name \"Quercus robur\"@ie ;\n\trdfs:label \"Quercus robur\"@oc ;\n\tskos:prefLabel \"Quercus robur\"@oc ;\n\tschema:name \"Quercus robur\"@oc ;\n\trdfs:label \"Quercus robur\"@ext ;\n\tskos:prefLabel \"Quercus robur\"@ext ;\n\tschema:name \"Quercus robur\"@ext ;\n\trdfs:label \"Ρουπακοβελανιδιά\"@el ;\n\tskos:prefLabel \"Ρουπακοβελανιδιά\"@el ;\n\tschema:name \"Ρουπακοβελανιδιά\"@el ;\n\trdfs:label \"čââʹrrmuõrr\"@sms ;\n\tskos:prefLabel \"čââʹrrmuõrr\"@sms ;\n\tschema:name \"čââʹrrmuõrr\"@sms ;\n\trdfs:label \"Ахаль юман\"@cv ;\n\tskos:prefLabel \"Ахаль юман\"@cv ;\n\tschema:name \"Ахаль юман\"@cv ;\n\trdfs:label \"Quercus robur\"@uz ;\n\tskos:prefLabel \"Quercus robur\"@uz ;\n\tschema:name \"Quercus robur\"@uz ;\n\trdfs:label \"Someriakebuum\"@frr ;\n\tskos:prefLabel \"Someriakebuum\"@frr ;\n\tschema:name \"Someriakebuum\"@frr ;\n\trdfs:label \"Tamm\"@vro ;\n\tskos:prefLabel \"Tamm\"@vro ;\n\tschema:name \"Tamm\"@vro ;\n\trdfs:label \"Quercus robur\"@co ;\n\tskos:prefLabel \"Quercus robur\"@co ;\n\tschema:name \"Quercus robur\"@co ;\n\trdfs:label \"Quercus robur\"@mul ;\n\tskos:prefLabel \"Quercus robur\"@mul ;\n\tschema:name \"Quercus robur\"@mul ;\n\trdfs:label \"Quercus robur\"@ig ;\n\tskos:prefLabel \"Quercus robur\"@ig ;\n\tschema:name \"Quercus robur\"@ig ;\n\tschema:description \"specie di pianta della famiglia Fagaceae\"@it,\n\t\t\"espèce d'arbres à feuilles caduques\"@fr,\n\t\t\"Art der Gattung Stieleichen (Quercus)\"@de,\n\t\t\"növényfaj\"@hu,\n\t\t\"گونه‌ای از بلوط\"@fa,\n\t\t\"species of plant\"@en,\n\t\t\"вид растение\"@bg,\n\t\t\"soort uit het geslacht eik\"@nl,\n\t\t\"druh dubu\"@cs,\n\t\t\"نوع من النباتات\"@ar,\n\t\t\"բույսերի տեսակ\"@hy,\n\t\t\"pyökkikasveihin kuuluva lehtipuulaji\"@fi,\n\t\t\"especie de planta\"@gl,\n\t\t\"especie de planta\"@es,\n\t\t\"espècie de planta\"@ca,\n\t\t\"lloj i bimëve\"@sq,\n\t\t\"উদ্ভিদের প্রজাতি\"@bn,\n\t\t\"מין של צמח\"@he,\n\t\t\"specie de plante\"@ro,\n\t\t\"вид растений\"@ru,\n\t\t\"speco di planto\"@io,\n\t\t\"вид рослин, листопадне дерево\"@uk,\n\t\t\"plantspesie\"@af,\n\t\t\"壳斗科栎属的一种植物\"@zh,\n\t\t\"specio de plantoj\"@eo,\n\t\t\"especie de planta\"@ast,\n\t\t\"vrsta hrasta\"@hr,\n\t\t\"Eken soort\"@nds,\n\t\t\"gatunek rośliny\"@pl,\n\t\t\"від расьлінаў\"@be-tarask,\n\t\t\"вид даб\"@mk,\n\t\t\"loài thực vật\"@vi,\n\t\t\"planteart\"@nb,\n\t\t\"augu suga\"@lv,\n\t\t\"växtart\"@sv,\n\t\t\"ചെടിയുടെ ഇനം\"@ml,\n\t\t\"від раслін\"@be,\n\t\t\"planteart\"@nn,\n\t\t\"vrsta rastlin v rodu Quercus (hrast)\"@sl,\n\t\t\"taimeliik\"@et,\n\t\t\"bitki növü\"@az,\n\t\t\"ụdị osisi\"@ig,\n\t\t\"espécie de planta\"@pt,\n\t\t\"espécie de planta\"@pt-br ;\n\tskos:altLabel \"長柄櫟\"@zh,\n\t\t\"英國櫟\"@zh,\n\t\t\"歐洲有柄橡木\"@zh,\n\t\t\"夏橡\"@zh,\n\t\t\"柞树叶\"@zh,\n\t\t\"橡子\"@zh,\n\t\t\"橡树\"@zh,\n\t\t\"Quercus pedunculata\"@eu,\n\t\t\"Haritz kanduduna\"@eu,\n\t\t\"Haritz arrunt\"@eu,\n\t\t\"Dąb szypułkowiec\"@pl,\n\t\t\"Quercus brutia var. thomasii\"@es,\n\t\t\"Quercus brutia subsp pedunculiflora\"@es,\n\t\t\"Quercus robur var brutia\"@es,\n\t\t\"Quercus erucifolia var. imeretina\"@es,\n\t\t\"Quercus pedunculata subsp pedunculiflora\"@es,\n\t\t\"Quercus pedunculata var. pedunculiflora\"@es,\n\t\t\"Quercus robur var. brutia\"@es,\n\t\t\"Quercus pedunculata\"@es,\n\t\t\"Quercus brutia subsp. pedunculiflora\"@es,\n\t\t\"Quercus imeretina\"@es,\n\t\t\"Quercus robur var thomasii\"@es,\n\t\t\"Quercus pedunculata var. brevipetiolata\"@es,\n\t\t\"Quercus racemosa\"@es,\n\t\t\"cajiga\"@es,\n\t\t\"roble común\"@es,\n\t\t\"roble carballo\"@es,\n\t\t\"roble fresnal\"@es,\n\t\t\"بلوط قوي\"@ar,\n\t\t\"سنديان أسود\"@ar,\n\t\t\"Inlandse eik\"@nl,\n\t\t\"carvalho roble\"@pt,\n\t\t\"carvalho alvarinho\"@pt,\n\t\t\"carvalho-alvarinho\"@pt,\n\t\t\"Рошњак\"@sr,\n\t\t\"Храст лужњак\"@sr,\n\t\t\"Лужник\"@sr,\n\t\t\"Рани храст\"@sr,\n\t\t\"metsätammi\"@fi,\n\t\t\"Дуб звичайний\"@uk,\n\t\t\"Дуб черещатий\"@uk,\n\t\t\"Rugura\"@lmo,\n\t\t\"Rogora\"@lmo,\n\t\t\"Stilkeg\"@da,\n\t\t\"Eg\"@da,\n\t\t\"Quercus robur\"@da,\n\t\t\"Quereus robur\"@da,\n\t\t\"Дуб чарэшчаты\"@be,\n\t\t\"Дуб летні\"@be,\n\t\t\"Farnie\"@it,\n\t\t\"Quercus pedunculata\"@it,\n\t\t\"Farnia\"@it,\n\t\t\"コモンオーク\"@ja,\n\t\t\"イギリスナラ\"@ja,\n\t\t\"イングリッシュオーク\"@ja,\n\t\t\"オウシュウナラ\"@ja,\n\t\t\"欧州楢\"@ja,\n\t\t\"Ōžuols\"@sgs,\n\t\t\"Quercus pedunculata\"@cs,\n\t\t\"dub křemelák\"@cs,\n\t\t\"křemelák\"@cs,\n\t\t\"летен дъб\"@bg,\n\t\t\"Bellota\"@qu,\n\t\t\"Quercus robur\"@qu,\n\t\t\"Walluta\"@qu,\n\t\t\"Balluta\"@qu,\n\t\t\"tamm\"@et,\n\t\t\"Vanlig Ek\"@sv,\n\t\t\"Stjälkek\"@sv,\n\t\t\"Sommarek\"@sv,\n\t\t\"Skogsek\"@sv,\n\t\t\"Дуб обыкновенный\"@ru,\n\t\t\"Обыкновенный дуб\"@ru,\n\t\t\"Дуб английский\"@ru,\n\t\t\"Quercus longaeva\"@ru,\n\t\t\"Дуб летний\"@ru,\n\t\t\"Quercus pedunculata\"@ru,\n\t\t\"Дуб имеретинский\"@ru,\n\t\t\"Carbayu\"@ast,\n\t\t\"Sumareik\"@nn,\n\t\t\"Quercus pedunculata\"@nn,\n\t\t\"Chêne pyramidal\"@fr,\n\t\t\"Quercus pedunculata\"@fr,\n\t\t\"chêne\"@fr,\n\t\t\"Ozols\"@lv,\n\t\t\"carballo bravo\"@gl,\n\t\t\"Stiel-Eiche\"@de,\n\t\t\"Sommereiche\"@de,\n\t\t\"Sommer-Eiche\"@de,\n\t\t\"Quercus pedunculata\"@de,\n\t\t\"stejarul\"@ro,\n\t\t\"stejar pedunculat\"@ro,\n\t\t\"Quercus pedunculata\"@ro,\n\t\t\"Quercus longaeva\"@ro,\n\t\t\"ek\"@nb,\n\t\t\"eketre\"@nb,\n\t\t\"English oak\"@en,\n\t\t\"pedunculate oak\"@en,\n\t\t\"common oak\"@en,\n\t\t\"truffle oak\"@en,\n\t\t\"Eken\"@nds,\n\t\t\"Eek\"@nds,\n\t\t\"Ekenboom\"@nds,\n\t\t\"Eekboom\"@nds,\n\t\t\"Eckelboom\"@nds,\n\t\t\"дуб звычайны\"@be-tarask,\n\t\t\"даб стежер\"@mk,\n\t\t\"áika\"@se,\n\t\t\"Steeneech\"@lb,\n\t\t\"Summereech\"@lb .\n\nwd:P181 a wikibase:Property ;\n\trdfs:label \"Verbreitungskarte des Taxons\"@de ;\n\tskos:prefLabel \"Verbreitungskarte des Taxons\"@de ;\n\tschema:name \"Verbreitungskarte des Taxons\"@de ;\n\trdfs:label \"taxon range map image\"@en ;\n\tskos:prefLabel \"taxon range map image\"@en ;\n\tschema:name \"taxon range map image\"@en ;\n\tschema:description \"verweist auf eine Verbreitungskarte für ein Taxon bei Commons\"@de,\n\t\t\"range map of a taxon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P181 ;\n\twikibase:claim p:P181 ;\n\twikibase:statementProperty ps:P181 ;\n\twikibase:statementValue psv:P181 ;\n\twikibase:qualifier pq:P181 ;\n\twikibase:qualifierValue pqv:P181 ;\n\twikibase:reference pr:P181 ;\n\twikibase:referenceValue prv:P181 ;\n\twikibase:novalue wdno:P181 .\n\np:P181 a owl:ObjectProperty .\n\npsv:P181 a owl:ObjectProperty .\n\npqv:P181 a owl:ObjectProperty .\n\nprv:P181 a owl:ObjectProperty .\n\nwdt:P181 a owl:ObjectProperty .\n\nps:P181 a owl:ObjectProperty .\n\npq:P181 a owl:ObjectProperty .\n\npr:P181 a owl:ObjectProperty .\n\nwdno:P181 a owl:Class ;\n\towl:complementOf _:6c29729f5ee9ff41a4f7984f1fa6b6d1 .\n\n_:6c29729f5ee9ff41a4f7984f1fa6b6d1 a owl:Restriction ;\n\towl:onProperty wdt:P181 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q7432 a wikibase:Item ;\n\trdfs:label \"Art\"@de ;\n\tskos:prefLabel \"Art\"@de ;\n\tschema:name \"Art\"@de ;\n\trdfs:label \"species\"@en ;\n\tskos:prefLabel \"species\"@en ;\n\tschema:name \"species\"@en ;\n\tschema:description \"Rangstufe der biologischen Systematik\"@de,\n\t\t\"one of the basic units of biological classification and a taxonomic rank\"@en .\n\nwd:P105 a wikibase:Property ;\n\trdfs:label \"taxonomischer Rang\"@de ;\n\tskos:prefLabel \"taxonomischer Rang\"@de ;\n\tschema:name \"taxonomischer Rang\"@de ;\n\trdfs:label \"taxon rank\"@en ;\n\tskos:prefLabel \"taxon rank\"@en ;\n\tschema:name \"taxon rank\"@en ;\n\tschema:description \"Stufe der Einteilung von Lebewesen und Viren\"@de,\n\t\t\"level in a taxonomic hierarchy\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P105 ;\n\twikibase:claim p:P105 ;\n\twikibase:statementProperty ps:P105 ;\n\twikibase:statementValue psv:P105 ;\n\twikibase:qualifier pq:P105 ;\n\twikibase:qualifierValue pqv:P105 ;\n\twikibase:reference pr:P105 ;\n\twikibase:referenceValue prv:P105 ;\n\twikibase:novalue wdno:P105 .\n\np:P105 a owl:ObjectProperty .\n\npsv:P105 a owl:ObjectProperty .\n\npqv:P105 a owl:ObjectProperty .\n\nprv:P105 a owl:ObjectProperty .\n\nwdt:P105 a owl:ObjectProperty .\n\nps:P105 a owl:ObjectProperty .\n\npq:P105 a owl:ObjectProperty .\n\npr:P105 a owl:ObjectProperty .\n\nwdno:P105 a owl:Class ;\n\towl:complementOf _:f35a97beabbdd2885e54631a33ae3b5a .\n\n_:f35a97beabbdd2885e54631a33ae3b5a a owl:Restriction ;\n\towl:onProperty wdt:P105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q211005 a wikibase:Item ;\n\trdfs:label \"nicht gefährdet\"@de ;\n\tskos:prefLabel \"nicht gefährdet\"@de ;\n\tschema:name \"nicht gefährdet\"@de ;\n\trdfs:label \"LC\"@mul ;\n\tskos:prefLabel \"LC\"@mul ;\n\tschema:name \"LC\"@mul ;\n\trdfs:label \"Least Concern\"@en ;\n\tskos:prefLabel \"Least Concern\"@en ;\n\tschema:name \"Least Concern\"@en ;\n\tschema:description \"Gefährdungsstufe der IUCN\"@de,\n\t\t\"IUCN conservation category\"@en .\n\nwd:P141 a wikibase:Property ;\n\trdfs:label \"Gefährdungsstufe (IUCN)\"@de ;\n\tskos:prefLabel \"Gefährdungsstufe (IUCN)\"@de ;\n\tschema:name \"Gefährdungsstufe (IUCN)\"@de ;\n\trdfs:label \"IUCN conservation status\"@en ;\n\tskos:prefLabel \"IUCN conservation status\"@en ;\n\tschema:name \"IUCN conservation status\"@en ;\n\tschema:description \"Die International Union for Conservation of Nature and Natural Resources stuft gefährdete Tier- und Pflanzenarten derart ein (mögliche Werte: siehe Disk.)\"@de,\n\t\t\"conservation status assigned by the International Union for Conservation of Nature\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P141 ;\n\twikibase:claim p:P141 ;\n\twikibase:statementProperty ps:P141 ;\n\twikibase:statementValue psv:P141 ;\n\twikibase:qualifier pq:P141 ;\n\twikibase:qualifierValue pqv:P141 ;\n\twikibase:reference pr:P141 ;\n\twikibase:referenceValue prv:P141 ;\n\twikibase:novalue wdno:P141 .\n\np:P141 a owl:ObjectProperty .\n\npsv:P141 a owl:ObjectProperty .\n\npqv:P141 a owl:ObjectProperty .\n\nprv:P141 a owl:ObjectProperty .\n\nwdt:P141 a owl:ObjectProperty .\n\nps:P141 a owl:ObjectProperty .\n\npq:P141 a owl:ObjectProperty .\n\npr:P141 a owl:ObjectProperty .\n\nwdno:P141 a owl:Class ;\n\towl:complementOf _:2196945b8c3cb225b147737afe0dd501 .\n\n_:2196945b8c3cb225b147737afe0dd501 a owl:Restriction ;\n\towl:onProperty wdt:P141 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12004 a wikibase:Item ;\n\trdfs:label \"Eichen\"@de ;\n\tskos:prefLabel \"Eichen\"@de ;\n\tschema:name \"Eichen\"@de ;\n\trdfs:label \"Quercus\"@mul ;\n\tskos:prefLabel \"Quercus\"@mul ;\n\tschema:name \"Quercus\"@mul ;\n\tschema:description \"Gattung der Familie Buchengewächse (Fagaceae)\"@de,\n\t\t\"genus of plants\"@en .\n\nwd:P171 a wikibase:Property ;\n\trdfs:label \"übergeordnetes Taxon\"@de ;\n\tskos:prefLabel \"übergeordnetes Taxon\"@de ;\n\tschema:name \"übergeordnetes Taxon\"@de ;\n\trdfs:label \"parent taxon\"@en ;\n\tskos:prefLabel \"parent taxon\"@en ;\n\tschema:name \"parent taxon\"@en ;\n\tschema:description \"wissenschaftlicher Name des dem Taxon unmittelbar übergeordneten Taxons\"@de,\n\t\t\"closest parent taxon of the taxon in question\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P171 ;\n\twikibase:claim p:P171 ;\n\twikibase:statementProperty ps:P171 ;\n\twikibase:statementValue psv:P171 ;\n\twikibase:qualifier pq:P171 ;\n\twikibase:qualifierValue pqv:P171 ;\n\twikibase:reference pr:P171 ;\n\twikibase:referenceValue prv:P171 ;\n\twikibase:novalue wdno:P171 .\n\np:P171 a owl:ObjectProperty .\n\npsv:P171 a owl:ObjectProperty .\n\npqv:P171 a owl:ObjectProperty .\n\nprv:P171 a owl:ObjectProperty .\n\nwdt:P171 a owl:ObjectProperty .\n\nps:P171 a owl:ObjectProperty .\n\npq:P171 a owl:ObjectProperty .\n\npr:P171 a owl:ObjectProperty .\n\nwdno:P171 a owl:Class ;\n\towl:complementOf _:8aeadeaf2d8f2f6cf0ac9e3e419da65b .\n\n_:8aeadeaf2d8f2f6cf0ac9e3e419da65b a owl:Restriction ;\n\towl:onProperty wdt:P171 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P225 a wikibase:Property ;\n\trdfs:label \"wissenschaftlicher Name\"@de ;\n\tskos:prefLabel \"wissenschaftlicher Name\"@de ;\n\tschema:name \"wissenschaftlicher Name\"@de ;\n\trdfs:label \"taxon name\"@en ;\n\tskos:prefLabel \"taxon name\"@en ;\n\tschema:name \"taxon name\"@en ;\n\tschema:description \"wissenschaftlicher Name einer Gruppe von Lebewesen\"@de,\n\t\t\"correct scientific name of a taxon (according to the reference given)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P225 ;\n\twikibase:claim p:P225 ;\n\twikibase:statementProperty ps:P225 ;\n\twikibase:statementValue psv:P225 ;\n\twikibase:qualifier pq:P225 ;\n\twikibase:qualifierValue pqv:P225 ;\n\twikibase:reference pr:P225 ;\n\twikibase:referenceValue prv:P225 ;\n\twikibase:novalue wdno:P225 .\n\np:P225 a owl:ObjectProperty .\n\npsv:P225 a owl:ObjectProperty .\n\npqv:P225 a owl:ObjectProperty .\n\nprv:P225 a owl:ObjectProperty .\n\nwdt:P225 a owl:DatatypeProperty .\n\nps:P225 a owl:DatatypeProperty .\n\npq:P225 a owl:DatatypeProperty .\n\npr:P225 a owl:DatatypeProperty .\n\nwdno:P225 a owl:Class ;\n\towl:complementOf _:337f4de465ca1537b0804c6775b1bbd1 .\n\n_:337f4de465ca1537b0804c6775b1bbd1 a owl:Restriction ;\n\towl:onProperty wdt:P225 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P18 a wikibase:Property ;\n\trdfs:label \"Bild\"@de ;\n\tskos:prefLabel \"Bild\"@de ;\n\tschema:name \"Bild\"@de ;\n\trdfs:label \"image\"@en ;\n\tskos:prefLabel \"image\"@en ;\n\tschema:name \"image\"@en ;\n\tschema:description \"Foto, Grafik etc. des Subjekts aus Wikimedia Commons (ohne „File:“)\"@de,\n\t\t\"image of relevant illustration of the subject; if available, also use more specific properties (sample: coat of arms image, locator map, flag image, signature image, logo image, collage image)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P18 ;\n\twikibase:claim p:P18 ;\n\twikibase:statementProperty ps:P18 ;\n\twikibase:statementValue psv:P18 ;\n\twikibase:qualifier pq:P18 ;\n\twikibase:qualifierValue pqv:P18 ;\n\twikibase:reference pr:P18 ;\n\twikibase:referenceValue prv:P18 ;\n\twikibase:novalue wdno:P18 .\n\np:P18 a owl:ObjectProperty .\n\npsv:P18 a owl:ObjectProperty .\n\npqv:P18 a owl:ObjectProperty .\n\nprv:P18 a owl:ObjectProperty .\n\nwdt:P18 a owl:ObjectProperty .\n\nps:P18 a owl:ObjectProperty .\n\npq:P18 a owl:ObjectProperty .\n\npr:P18 a owl:ObjectProperty .\n\nwdno:P18 a owl:Class ;\n\towl:complementOf _:90353c5ec33a5dc569985590a17a3551 .\n\n_:90353c5ec33a5dc569985590a17a3551 a owl:Restriction ;\n\towl:onProperty wdt:P18 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P373 a wikibase:Property ;\n\trdfs:label \"Commons-Kategorie\"@de ;\n\tskos:prefLabel \"Commons-Kategorie\"@de ;\n\tschema:name \"Commons-Kategorie\"@de ;\n\trdfs:label \"Commons category\"@en ;\n\tskos:prefLabel \"Commons category\"@en ;\n\tschema:name \"Commons category\"@en ;\n\tschema:description \"Name der Kategorie auf Wikimedia Commons, die Dateien zu dem Objekt (item) beinhaltet (ohne das Präfix „Category:“)\"@de,\n\t\t\"name of the Wikimedia Commons category containing files related to this item (without the prefix \\\"Category:\\\")\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P373 ;\n\twikibase:claim p:P373 ;\n\twikibase:statementProperty ps:P373 ;\n\twikibase:statementValue psv:P373 ;\n\twikibase:qualifier pq:P373 ;\n\twikibase:qualifierValue pqv:P373 ;\n\twikibase:reference pr:P373 ;\n\twikibase:referenceValue prv:P373 ;\n\twikibase:novalue wdno:P373 .\n\np:P373 a owl:ObjectProperty .\n\npsv:P373 a owl:ObjectProperty .\n\npqv:P373 a owl:ObjectProperty .\n\nprv:P373 a owl:ObjectProperty .\n\nwdt:P373 a owl:DatatypeProperty .\n\nps:P373 a owl:DatatypeProperty .\n\npq:P373 a owl:DatatypeProperty .\n\npr:P373 a owl:DatatypeProperty .\n\nwdno:P373 a owl:Class ;\n\towl:complementOf _:3de19c92e209926f02f215095eb4fd12 .\n\n_:3de19c92e209926f02f215095eb4fd12 a owl:Restriction ;\n\towl:onProperty wdt:P373 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P685 a wikibase:Property ;\n\trdfs:label \"NCBI-ID\"@de ;\n\tskos:prefLabel \"NCBI-ID\"@de ;\n\tschema:name \"NCBI-ID\"@de ;\n\trdfs:label \"NCBI taxonomy ID\"@en ;\n\tskos:prefLabel \"NCBI taxonomy ID\"@en ;\n\tschema:name \"NCBI taxonomy ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept in der Taxonomiedatenbank des National Center for Biotechnology Information (NCBI)\"@de,\n\t\t\"identifier for a taxon in the Taxonomy Database by the National Center for Biotechnology Information\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P685 ;\n\twikibase:claim p:P685 ;\n\twikibase:statementProperty ps:P685 ;\n\twikibase:statementValue psv:P685 ;\n\twikibase:qualifier pq:P685 ;\n\twikibase:qualifierValue pqv:P685 ;\n\twikibase:reference pr:P685 ;\n\twikibase:referenceValue prv:P685 ;\n\twikibase:novalue wdno:P685 ;\n\twikibase:directClaimNormalized wdtn:P685 ;\n\twikibase:statementValueNormalized psn:P685 ;\n\twikibase:qualifierValueNormalized pqn:P685 ;\n\twikibase:referenceValueNormalized prn:P685 .\n\np:P685 a owl:ObjectProperty .\n\npsv:P685 a owl:ObjectProperty .\n\npqv:P685 a owl:ObjectProperty .\n\nprv:P685 a owl:ObjectProperty .\n\nwdt:P685 a owl:DatatypeProperty .\n\nps:P685 a owl:DatatypeProperty .\n\npq:P685 a owl:DatatypeProperty .\n\npr:P685 a owl:DatatypeProperty .\n\npsn:P685 a owl:ObjectProperty .\n\npqn:P685 a owl:ObjectProperty .\n\nprn:P685 a owl:ObjectProperty .\n\nwdtn:P685 a owl:ObjectProperty .\n\nwdno:P685 a owl:Class ;\n\towl:complementOf _:bca77c5212845547080acb6703879a21 .\n\n_:bca77c5212845547080acb6703879a21 a owl:Restriction ;\n\towl:onProperty wdt:P685 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P935 a wikibase:Property ;\n\trdfs:label \"Commons-Galerie\"@de ;\n\tskos:prefLabel \"Commons-Galerie\"@de ;\n\tschema:name \"Commons-Galerie\"@de ;\n\trdfs:label \"Commons gallery\"@en ;\n\tskos:prefLabel \"Commons gallery\"@en ;\n\tschema:name \"Commons gallery\"@en ;\n\tschema:description \"Name der Galerieseite(n) auf Wikimedia Commons mit Dateien zu dem Objekt (item)\"@de,\n\t\t\"name of the Wikimedia Commons gallery page(s) related to this item (is suitable to allow multiple links to more gallery pages)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P935 ;\n\twikibase:claim p:P935 ;\n\twikibase:statementProperty ps:P935 ;\n\twikibase:statementValue psv:P935 ;\n\twikibase:qualifier pq:P935 ;\n\twikibase:qualifierValue pqv:P935 ;\n\twikibase:reference pr:P935 ;\n\twikibase:referenceValue prv:P935 ;\n\twikibase:novalue wdno:P935 .\n\np:P935 a owl:ObjectProperty .\n\npsv:P935 a owl:ObjectProperty .\n\npqv:P935 a owl:ObjectProperty .\n\nprv:P935 a owl:ObjectProperty .\n\nwdt:P935 a owl:DatatypeProperty .\n\nps:P935 a owl:DatatypeProperty .\n\npq:P935 a owl:DatatypeProperty .\n\npr:P935 a owl:DatatypeProperty .\n\nwdno:P935 a owl:Class ;\n\towl:complementOf _:e611166fd8b736fb1e719dd5177883b3 .\n\n_:e611166fd8b736fb1e719dd5177883b3 a owl:Restriction ;\n\towl:onProperty wdt:P935 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P815 a wikibase:Property ;\n\trdfs:label \"ITIS-TSN\"@de ;\n\tskos:prefLabel \"ITIS-TSN\"@de ;\n\tschema:name \"ITIS-TSN\"@de ;\n\trdfs:label \"ITIS TSN\"@en ;\n\tskos:prefLabel \"ITIS TSN\"@en ;\n\tschema:name \"ITIS TSN\"@en ;\n\tschema:description \"Identifikator (=Taxonomic Serial Number [TSN]) im Integrated Taxonomic Information System (ITIS)\"@de,\n\t\t\"identifier for a taxon in the Integrated Taxonomic Information System\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P815 ;\n\twikibase:claim p:P815 ;\n\twikibase:statementProperty ps:P815 ;\n\twikibase:statementValue psv:P815 ;\n\twikibase:qualifier pq:P815 ;\n\twikibase:qualifierValue pqv:P815 ;\n\twikibase:reference pr:P815 ;\n\twikibase:referenceValue prv:P815 ;\n\twikibase:novalue wdno:P815 ;\n\twikibase:directClaimNormalized wdtn:P815 ;\n\twikibase:statementValueNormalized psn:P815 ;\n\twikibase:qualifierValueNormalized pqn:P815 ;\n\twikibase:referenceValueNormalized prn:P815 .\n\np:P815 a owl:ObjectProperty .\n\npsv:P815 a owl:ObjectProperty .\n\npqv:P815 a owl:ObjectProperty .\n\nprv:P815 a owl:ObjectProperty .\n\nwdt:P815 a owl:DatatypeProperty .\n\nps:P815 a owl:DatatypeProperty .\n\npq:P815 a owl:DatatypeProperty .\n\npr:P815 a owl:DatatypeProperty .\n\npsn:P815 a owl:ObjectProperty .\n\npqn:P815 a owl:ObjectProperty .\n\nprn:P815 a owl:ObjectProperty .\n\nwdtn:P815 a owl:ObjectProperty .\n\nwdno:P815 a owl:Class ;\n\towl:complementOf _:69a818f0539fda285c2f3e1ac647ef76 .\n\n_:69a818f0539fda285c2f3e1ac647ef76 a owl:Restriction ;\n\towl:onProperty wdt:P815 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q16521 a wikibase:Item ;\n\trdfs:label \"Taxon\"@de ;\n\tskos:prefLabel \"Taxon\"@de ;\n\tschema:name \"Taxon\"@de ;\n\trdfs:label \"taxon\"@en ;\n\tskos:prefLabel \"taxon\"@en ;\n\tschema:name \"taxon\"@en ;\n\tschema:description \"biologische Einheit, der entsprechend bestimmter Kriterien eine Gruppe von Lebewesen zugeordnet wird\"@de,\n\t\t\"group of one or more organism(s), which a taxonomist adjudges to be a unit\"@en .\n\nwd:P31 a wikibase:Property ;\n\trdfs:label \"ist ein(e)\"@de ;\n\tskos:prefLabel \"ist ein(e)\"@de ;\n\tschema:name \"ist ein(e)\"@de ;\n\trdfs:label \"instance of\"@en ;\n\tskos:prefLabel \"instance of\"@en ;\n\tschema:name \"instance of\"@en ;\n\tschema:description \"Ausprägung oder Exemplar einer Sache, Mitglied einer Klasse. Zu unterscheiden von P279 (Unterklasse von), z. B. der K2 „ist ein“ Berg; Vulkan ist eine „Unterklasse von“ Berg (aber Vulkan „ist eine“ vulkanogene Landform)\"@de,\n\t\t\"type to which this subject corresponds/belongs. Different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P31 ;\n\twikibase:claim p:P31 ;\n\twikibase:statementProperty ps:P31 ;\n\twikibase:statementValue psv:P31 ;\n\twikibase:qualifier pq:P31 ;\n\twikibase:qualifierValue pqv:P31 ;\n\twikibase:reference pr:P31 ;\n\twikibase:referenceValue prv:P31 ;\n\twikibase:novalue wdno:P31 .\n\np:P31 a owl:ObjectProperty .\n\npsv:P31 a owl:ObjectProperty .\n\npqv:P31 a owl:ObjectProperty .\n\nprv:P31 a owl:ObjectProperty .\n\nwdt:P31 a owl:ObjectProperty .\n\nps:P31 a owl:ObjectProperty .\n\npq:P31 a owl:ObjectProperty .\n\npr:P31 a owl:ObjectProperty .\n\nwdno:P31 a owl:Class ;\n\towl:complementOf _:0b8bd71b926a65ca3fa72e5d9103e4d6 .\n\n_:0b8bd71b926a65ca3fa72e5d9103e4d6 a owl:Restriction ;\n\towl:onProperty wdt:P31 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q188840 a wikibase:Item ;\n\trdfs:label \"Heilpflanze\"@de ;\n\tskos:prefLabel \"Heilpflanze\"@de ;\n\tschema:name \"Heilpflanze\"@de ;\n\trdfs:label \"medicinal plant\"@en ;\n\tskos:prefLabel \"medicinal plant\"@en ;\n\tschema:name \"medicinal plant\"@en ;\n\tschema:description \"Pflanze, die in der Pflanzenheilkunde wegen ihres Gehalts an Wirkstoffen zu Heilzwecken verwendet werden kann\"@de,\n\t\t\"plants or derivatives used to treat medical conditions in humans or animals\"@en .\n\nwd:P646 a wikibase:Property ;\n\trdfs:label \"Freebase-Kennung\"@de ;\n\tskos:prefLabel \"Freebase-Kennung\"@de ;\n\tschema:name \"Freebase-Kennung\"@de ;\n\trdfs:label \"Freebase ID\"@en ;\n\tskos:prefLabel \"Freebase ID\"@en ;\n\tschema:name \"Freebase ID\"@en ;\n\tschema:description \"Kennung des gleichbedeutenden Eintrags in der Freebase-Datenbank\"@de,\n\t\t\"identifier for a page in the Freebase database. Format: \\\"/m/0\\\" followed by 2 to 7 characters. For IDs starting with \\\"/g/\\\", use Google Knowledge Graph ID (P2671)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P646 ;\n\twikibase:claim p:P646 ;\n\twikibase:statementProperty ps:P646 ;\n\twikibase:statementValue psv:P646 ;\n\twikibase:qualifier pq:P646 ;\n\twikibase:qualifierValue pqv:P646 ;\n\twikibase:reference pr:P646 ;\n\twikibase:referenceValue prv:P646 ;\n\twikibase:novalue wdno:P646 ;\n\twikibase:directClaimNormalized wdtn:P646 ;\n\twikibase:statementValueNormalized psn:P646 ;\n\twikibase:qualifierValueNormalized pqn:P646 ;\n\twikibase:referenceValueNormalized prn:P646 .\n\np:P646 a owl:ObjectProperty .\n\npsv:P646 a owl:ObjectProperty .\n\npqv:P646 a owl:ObjectProperty .\n\nprv:P646 a owl:ObjectProperty .\n\nwdt:P646 a owl:DatatypeProperty .\n\nps:P646 a owl:DatatypeProperty .\n\npq:P646 a owl:DatatypeProperty .\n\npr:P646 a owl:DatatypeProperty .\n\npsn:P646 a owl:ObjectProperty .\n\npqn:P646 a owl:ObjectProperty .\n\nprn:P646 a owl:ObjectProperty .\n\nwdtn:P646 a owl:ObjectProperty .\n\nwdno:P646 a owl:Class ;\n\towl:complementOf _:38db277a4b10d59fd38a3fd995cbe570 .\n\n_:38db277a4b10d59fd38a3fd995cbe570 a owl:Restriction ;\n\towl:onProperty wdt:P646 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P227 a wikibase:Property ;\n\trdfs:label \"GND-Kennung\"@de ;\n\tskos:prefLabel \"GND-Kennung\"@de ;\n\tschema:name \"GND-Kennung\"@de ;\n\trdfs:label \"GND\"@mul ;\n\tskos:prefLabel \"GND\"@mul ;\n\tschema:name \"GND\"@mul ;\n\trdfs:label \"GND ID\"@en ;\n\tskos:prefLabel \"GND ID\"@en ;\n\tschema:name \"GND ID\"@en ;\n\tschema:description \"Identifikator der Gemeinsamen Normdatei für Personennamen, Körperschaften und Schlagworte (bitte nicht Typ n eintragen = Name, mehrdeutig)\"@de,\n\t\t\"identifier from the Gemeinsame Normdatei authority file of names, subjects, and organizations\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P227 ;\n\twikibase:claim p:P227 ;\n\twikibase:statementProperty ps:P227 ;\n\twikibase:statementValue psv:P227 ;\n\twikibase:qualifier pq:P227 ;\n\twikibase:qualifierValue pqv:P227 ;\n\twikibase:reference pr:P227 ;\n\twikibase:referenceValue prv:P227 ;\n\twikibase:novalue wdno:P227 ;\n\twikibase:directClaimNormalized wdtn:P227 ;\n\twikibase:statementValueNormalized psn:P227 ;\n\twikibase:qualifierValueNormalized pqn:P227 ;\n\twikibase:referenceValueNormalized prn:P227 .\n\np:P227 a owl:ObjectProperty .\n\npsv:P227 a owl:ObjectProperty .\n\npqv:P227 a owl:ObjectProperty .\n\nprv:P227 a owl:ObjectProperty .\n\nwdt:P227 a owl:DatatypeProperty .\n\nps:P227 a owl:DatatypeProperty .\n\npq:P227 a owl:DatatypeProperty .\n\npr:P227 a owl:DatatypeProperty .\n\npsn:P227 a owl:ObjectProperty .\n\npqn:P227 a owl:ObjectProperty .\n\nprn:P227 a owl:ObjectProperty .\n\nwdtn:P227 a owl:ObjectProperty .\n\nwdno:P227 a owl:Class ;\n\towl:complementOf _:286c7ee15bc3c86b8eb6b23547b34d68 .\n\n_:286c7ee15bc3c86b8eb6b23547b34d68 a owl:Restriction ;\n\towl:onProperty wdt:P227 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P960 a wikibase:Property ;\n\trdfs:label \"Tropicos-ID\"@de ;\n\tskos:prefLabel \"Tropicos-ID\"@de ;\n\tschema:name \"Tropicos-ID\"@de ;\n\trdfs:label \"Tropicos ID\"@en ;\n\tskos:prefLabel \"Tropicos ID\"@en ;\n\tschema:name \"Tropicos ID\"@en ;\n\tschema:description \"Identifikator für einen wissenschaftlichen Namen eines Taxons bei Tropicos\"@de,\n\t\t\"identifier for a taxon name in the Tropicos database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P960 ;\n\twikibase:claim p:P960 ;\n\twikibase:statementProperty ps:P960 ;\n\twikibase:statementValue psv:P960 ;\n\twikibase:qualifier pq:P960 ;\n\twikibase:qualifierValue pqv:P960 ;\n\twikibase:reference pr:P960 ;\n\twikibase:referenceValue prv:P960 ;\n\twikibase:novalue wdno:P960 ;\n\twikibase:directClaimNormalized wdtn:P960 ;\n\twikibase:statementValueNormalized psn:P960 ;\n\twikibase:qualifierValueNormalized pqn:P960 ;\n\twikibase:referenceValueNormalized prn:P960 .\n\np:P960 a owl:ObjectProperty .\n\npsv:P960 a owl:ObjectProperty .\n\npqv:P960 a owl:ObjectProperty .\n\nprv:P960 a owl:ObjectProperty .\n\nwdt:P960 a owl:DatatypeProperty .\n\nps:P960 a owl:DatatypeProperty .\n\npq:P960 a owl:DatatypeProperty .\n\npr:P960 a owl:DatatypeProperty .\n\npsn:P960 a owl:ObjectProperty .\n\npqn:P960 a owl:ObjectProperty .\n\nprn:P960 a owl:ObjectProperty .\n\nwdtn:P960 a owl:ObjectProperty .\n\nwdno:P960 a owl:Class ;\n\towl:complementOf _:a48351de085b0375b132cc36ff7067bd .\n\n_:a48351de085b0375b132cc36ff7067bd a owl:Restriction ;\n\towl:onProperty wdt:P960 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P830 a wikibase:Property ;\n\trdfs:label \"EOL-ID\"@de ;\n\tskos:prefLabel \"EOL-ID\"@de ;\n\tschema:name \"EOL-ID\"@de ;\n\trdfs:label \"Encyclopedia of Life ID\"@en ;\n\tskos:prefLabel \"Encyclopedia of Life ID\"@en ;\n\tschema:name \"Encyclopedia of Life ID\"@en ;\n\tschema:description \"Taxon-Konzept-Identifikator in der Encyclopedia of Life (EOL)\"@de,\n\t\t\"eol.org item reference number\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P830 ;\n\twikibase:claim p:P830 ;\n\twikibase:statementProperty ps:P830 ;\n\twikibase:statementValue psv:P830 ;\n\twikibase:qualifier pq:P830 ;\n\twikibase:qualifierValue pqv:P830 ;\n\twikibase:reference pr:P830 ;\n\twikibase:referenceValue prv:P830 ;\n\twikibase:novalue wdno:P830 ;\n\twikibase:directClaimNormalized wdtn:P830 ;\n\twikibase:statementValueNormalized psn:P830 ;\n\twikibase:qualifierValueNormalized pqn:P830 ;\n\twikibase:referenceValueNormalized prn:P830 .\n\np:P830 a owl:ObjectProperty .\n\npsv:P830 a owl:ObjectProperty .\n\npqv:P830 a owl:ObjectProperty .\n\nprv:P830 a owl:ObjectProperty .\n\nwdt:P830 a owl:DatatypeProperty .\n\nps:P830 a owl:DatatypeProperty .\n\npq:P830 a owl:DatatypeProperty .\n\npr:P830 a owl:DatatypeProperty .\n\npsn:P830 a owl:ObjectProperty .\n\npqn:P830 a owl:ObjectProperty .\n\nprn:P830 a owl:ObjectProperty .\n\nwdtn:P830 a owl:ObjectProperty .\n\nwdno:P830 a owl:Class ;\n\towl:complementOf _:f8dbe44ad4bbbd585dc613515bbbee7a .\n\n_:f8dbe44ad4bbbd585dc613515bbbee7a a owl:Restriction ;\n\towl:onProperty wdt:P830 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P961 a wikibase:Property ;\n\trdfs:label \"IPNI-TaxonName-ID\"@de ;\n\tskos:prefLabel \"IPNI-TaxonName-ID\"@de ;\n\tschema:name \"IPNI-TaxonName-ID\"@de ;\n\trdfs:label \"IPNI plant ID\"@en ;\n\tskos:prefLabel \"IPNI plant ID\"@en ;\n\tschema:name \"IPNI plant ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im International Plant Names Index (IPNI)\"@de,\n\t\t\"numerical identifier for a plant name in the International Plant Names Index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P961 ;\n\twikibase:claim p:P961 ;\n\twikibase:statementProperty ps:P961 ;\n\twikibase:statementValue psv:P961 ;\n\twikibase:qualifier pq:P961 ;\n\twikibase:qualifierValue pqv:P961 ;\n\twikibase:reference pr:P961 ;\n\twikibase:referenceValue prv:P961 ;\n\twikibase:novalue wdno:P961 ;\n\twikibase:directClaimNormalized wdtn:P961 ;\n\twikibase:statementValueNormalized psn:P961 ;\n\twikibase:qualifierValueNormalized pqn:P961 ;\n\twikibase:referenceValueNormalized prn:P961 .\n\np:P961 a owl:ObjectProperty .\n\npsv:P961 a owl:ObjectProperty .\n\npqv:P961 a owl:ObjectProperty .\n\nprv:P961 a owl:ObjectProperty .\n\nwdt:P961 a owl:DatatypeProperty .\n\nps:P961 a owl:DatatypeProperty .\n\npq:P961 a owl:DatatypeProperty .\n\npr:P961 a owl:DatatypeProperty .\n\npsn:P961 a owl:ObjectProperty .\n\npqn:P961 a owl:ObjectProperty .\n\nprn:P961 a owl:ObjectProperty .\n\nwdtn:P961 a owl:ObjectProperty .\n\nwdno:P961 a owl:Class ;\n\towl:complementOf _:aed2728bf2fd8763d252215824748a49 .\n\n_:aed2728bf2fd8763d252215824748a49 a owl:Restriction ;\n\towl:onProperty wdt:P961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1070 a wikibase:Property ;\n\trdfs:label \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\tskos:prefLabel \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\tschema:name \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\trdfs:label \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tskos:prefLabel \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tschema:name \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons in der Datenbank „The Plant List“\"@de,\n\t\t\"identifier in The Plant List database from the Royal Botanic Gardens, Kew\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1070 ;\n\twikibase:claim p:P1070 ;\n\twikibase:statementProperty ps:P1070 ;\n\twikibase:statementValue psv:P1070 ;\n\twikibase:qualifier pq:P1070 ;\n\twikibase:qualifierValue pqv:P1070 ;\n\twikibase:reference pr:P1070 ;\n\twikibase:referenceValue prv:P1070 ;\n\twikibase:novalue wdno:P1070 ;\n\twikibase:directClaimNormalized wdtn:P1070 ;\n\twikibase:statementValueNormalized psn:P1070 ;\n\twikibase:qualifierValueNormalized pqn:P1070 ;\n\twikibase:referenceValueNormalized prn:P1070 .\n\np:P1070 a owl:ObjectProperty .\n\npsv:P1070 a owl:ObjectProperty .\n\npqv:P1070 a owl:ObjectProperty .\n\nprv:P1070 a owl:ObjectProperty .\n\nwdt:P1070 a owl:DatatypeProperty .\n\nps:P1070 a owl:DatatypeProperty .\n\npq:P1070 a owl:DatatypeProperty .\n\npr:P1070 a owl:DatatypeProperty .\n\npsn:P1070 a owl:ObjectProperty .\n\npqn:P1070 a owl:ObjectProperty .\n\nprn:P1070 a owl:ObjectProperty .\n\nwdtn:P1070 a owl:ObjectProperty .\n\nwdno:P1070 a owl:Class ;\n\towl:complementOf _:0944f235c8e0e6e33d199674d1db7c65 .\n\n_:0944f235c8e0e6e33d199674d1db7c65 a owl:Restriction ;\n\towl:onProperty wdt:P1070 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1727 a wikibase:Property ;\n\trdfs:label \"FNA-ID\"@de ;\n\tskos:prefLabel \"FNA-ID\"@de ;\n\tschema:name \"FNA-ID\"@de ;\n\trdfs:label \"Flora of North America taxon ID\"@en ;\n\tskos:prefLabel \"Flora of North America taxon ID\"@en ;\n\tschema:name \"Flora of North America taxon ID\"@en ;\n\tschema:description \"Identifikator in der Flora of North America (FNA)\"@de,\n\t\t\"identifier for a taxon in the Flora of North America database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1727 ;\n\twikibase:claim p:P1727 ;\n\twikibase:statementProperty ps:P1727 ;\n\twikibase:statementValue psv:P1727 ;\n\twikibase:qualifier pq:P1727 ;\n\twikibase:qualifierValue pqv:P1727 ;\n\twikibase:reference pr:P1727 ;\n\twikibase:referenceValue prv:P1727 ;\n\twikibase:novalue wdno:P1727 ;\n\twikibase:directClaimNormalized wdtn:P1727 ;\n\twikibase:statementValueNormalized psn:P1727 ;\n\twikibase:qualifierValueNormalized pqn:P1727 ;\n\twikibase:referenceValueNormalized prn:P1727 .\n\np:P1727 a owl:ObjectProperty .\n\npsv:P1727 a owl:ObjectProperty .\n\npqv:P1727 a owl:ObjectProperty .\n\nprv:P1727 a owl:ObjectProperty .\n\nwdt:P1727 a owl:DatatypeProperty .\n\nps:P1727 a owl:DatatypeProperty .\n\npq:P1727 a owl:DatatypeProperty .\n\npr:P1727 a owl:DatatypeProperty .\n\npsn:P1727 a owl:ObjectProperty .\n\npqn:P1727 a owl:ObjectProperty .\n\nprn:P1727 a owl:ObjectProperty .\n\nwdtn:P1727 a owl:ObjectProperty .\n\nwdno:P1727 a owl:Class ;\n\towl:complementOf _:dc0fa6f3d42b3ff6f2cff66b498dbf11 .\n\n_:dc0fa6f3d42b3ff6f2cff66b498dbf11 a owl:Restriction ;\n\towl:onProperty wdt:P1727 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1745 a wikibase:Property ;\n\trdfs:label \"VasCan-ID\"@de ;\n\tskos:prefLabel \"VasCan-ID\"@de ;\n\tschema:name \"VasCan-ID\"@de ;\n\trdfs:label \"VASCAN ID\"@mul ;\n\tskos:prefLabel \"VASCAN ID\"@mul ;\n\tschema:name \"VASCAN ID\"@mul ;\n\trdfs:label \"VASCAN ID\"@en ;\n\tskos:prefLabel \"VASCAN ID\"@en ;\n\tschema:name \"VASCAN ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank Vascular Plants of Canada (VasCan)\"@de,\n\t\t\"identifier for a taxon in the Database of Vascular Plants of Canada\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1745 ;\n\twikibase:claim p:P1745 ;\n\twikibase:statementProperty ps:P1745 ;\n\twikibase:statementValue psv:P1745 ;\n\twikibase:qualifier pq:P1745 ;\n\twikibase:qualifierValue pqv:P1745 ;\n\twikibase:reference pr:P1745 ;\n\twikibase:referenceValue prv:P1745 ;\n\twikibase:novalue wdno:P1745 ;\n\twikibase:directClaimNormalized wdtn:P1745 ;\n\twikibase:statementValueNormalized psn:P1745 ;\n\twikibase:qualifierValueNormalized pqn:P1745 ;\n\twikibase:referenceValueNormalized prn:P1745 .\n\np:P1745 a owl:ObjectProperty .\n\npsv:P1745 a owl:ObjectProperty .\n\npqv:P1745 a owl:ObjectProperty .\n\nprv:P1745 a owl:ObjectProperty .\n\nwdt:P1745 a owl:DatatypeProperty .\n\nps:P1745 a owl:DatatypeProperty .\n\npq:P1745 a owl:DatatypeProperty .\n\npr:P1745 a owl:DatatypeProperty .\n\npsn:P1745 a owl:ObjectProperty .\n\npqn:P1745 a owl:ObjectProperty .\n\nprn:P1745 a owl:ObjectProperty .\n\nwdtn:P1745 a owl:ObjectProperty .\n\nwdno:P1745 a owl:Class ;\n\towl:complementOf _:e263329d173aae293dd93e451a8d03e5 .\n\n_:e263329d173aae293dd93e451a8d03e5 a owl:Restriction ;\n\towl:onProperty wdt:P1745 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1747 a wikibase:Property ;\n\trdfs:label \"FOC-ID\"@de ;\n\tskos:prefLabel \"FOC-ID\"@de ;\n\tschema:name \"FOC-ID\"@de ;\n\trdfs:label \"Flora of China ID\"@en ;\n\tskos:prefLabel \"Flora of China ID\"@en ;\n\tschema:name \"Flora of China ID\"@en ;\n\tschema:description \"Identifikator in der Flora of China (FOC)\"@de,\n\t\t\"identifier for a taxon in Flora of China (English-language revision of Flora Reipublicae Popularis Sinicae)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1747 ;\n\twikibase:claim p:P1747 ;\n\twikibase:statementProperty ps:P1747 ;\n\twikibase:statementValue psv:P1747 ;\n\twikibase:qualifier pq:P1747 ;\n\twikibase:qualifierValue pqv:P1747 ;\n\twikibase:reference pr:P1747 ;\n\twikibase:referenceValue prv:P1747 ;\n\twikibase:novalue wdno:P1747 ;\n\twikibase:directClaimNormalized wdtn:P1747 ;\n\twikibase:statementValueNormalized psn:P1747 ;\n\twikibase:qualifierValueNormalized pqn:P1747 ;\n\twikibase:referenceValueNormalized prn:P1747 .\n\np:P1747 a owl:ObjectProperty .\n\npsv:P1747 a owl:ObjectProperty .\n\npqv:P1747 a owl:ObjectProperty .\n\nprv:P1747 a owl:ObjectProperty .\n\nwdt:P1747 a owl:DatatypeProperty .\n\nps:P1747 a owl:DatatypeProperty .\n\npq:P1747 a owl:DatatypeProperty .\n\npr:P1747 a owl:DatatypeProperty .\n\npsn:P1747 a owl:ObjectProperty .\n\npqn:P1747 a owl:ObjectProperty .\n\nprn:P1747 a owl:ObjectProperty .\n\nwdtn:P1747 a owl:ObjectProperty .\n\nwdno:P1747 a owl:Class ;\n\towl:complementOf _:1e07a8678adbd8700a1923df04eff524 .\n\n_:1e07a8678adbd8700a1923df04eff524 a owl:Restriction ;\n\towl:onProperty wdt:P1747 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1421 a wikibase:Property ;\n\trdfs:label \"GRIN-URL\"@de ;\n\tskos:prefLabel \"GRIN-URL\"@de ;\n\tschema:name \"GRIN-URL\"@de ;\n\trdfs:label \"GRIN URL\"@en ;\n\tskos:prefLabel \"GRIN URL\"@en ;\n\tschema:name \"GRIN URL\"@en ;\n\tschema:description \"URL für den wissenschaftlichen Namen eines Taxons bei GRIN\"@de,\n\t\t\"URL for a taxon in the GRIN website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1421 ;\n\twikibase:claim p:P1421 ;\n\twikibase:statementProperty ps:P1421 ;\n\twikibase:statementValue psv:P1421 ;\n\twikibase:qualifier pq:P1421 ;\n\twikibase:qualifierValue pqv:P1421 ;\n\twikibase:reference pr:P1421 ;\n\twikibase:referenceValue prv:P1421 ;\n\twikibase:novalue wdno:P1421 .\n\np:P1421 a owl:ObjectProperty .\n\npsv:P1421 a owl:ObjectProperty .\n\npqv:P1421 a owl:ObjectProperty .\n\nprv:P1421 a owl:ObjectProperty .\n\nwdt:P1421 a owl:ObjectProperty .\n\nps:P1421 a owl:ObjectProperty .\n\npq:P1421 a owl:ObjectProperty .\n\npr:P1421 a owl:ObjectProperty .\n\nwdno:P1421 a owl:Class ;\n\towl:complementOf _:7fd183799213c781365b6c2268147965 .\n\n_:7fd183799213c781365b6c2268147965 a owl:Restriction ;\n\towl:onProperty wdt:P1421 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1772 a wikibase:Property ;\n\trdfs:label \"USDA-ID\"@de ;\n\tskos:prefLabel \"USDA-ID\"@de ;\n\tschema:name \"USDA-ID\"@de ;\n\trdfs:label \"USDA PLANTS ID\"@mul ;\n\tskos:prefLabel \"USDA PLANTS ID\"@mul ;\n\tschema:name \"USDA PLANTS ID\"@mul ;\n\trdfs:label \"USDA PLANTS ID\"@en ;\n\tskos:prefLabel \"USDA PLANTS ID\"@en ;\n\tschema:name \"USDA PLANTS ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank des United States Department of Agriculture (USDA)\"@de,\n\t\t\"identifier in the United States Department of Agriculture PLANTS Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1772 ;\n\twikibase:claim p:P1772 ;\n\twikibase:statementProperty ps:P1772 ;\n\twikibase:statementValue psv:P1772 ;\n\twikibase:qualifier pq:P1772 ;\n\twikibase:qualifierValue pqv:P1772 ;\n\twikibase:reference pr:P1772 ;\n\twikibase:referenceValue prv:P1772 ;\n\twikibase:novalue wdno:P1772 ;\n\twikibase:directClaimNormalized wdtn:P1772 ;\n\twikibase:statementValueNormalized psn:P1772 ;\n\twikibase:qualifierValueNormalized pqn:P1772 ;\n\twikibase:referenceValueNormalized prn:P1772 .\n\np:P1772 a owl:ObjectProperty .\n\npsv:P1772 a owl:ObjectProperty .\n\npqv:P1772 a owl:ObjectProperty .\n\nprv:P1772 a owl:ObjectProperty .\n\nwdt:P1772 a owl:DatatypeProperty .\n\nps:P1772 a owl:DatatypeProperty .\n\npq:P1772 a owl:DatatypeProperty .\n\npr:P1772 a owl:DatatypeProperty .\n\npsn:P1772 a owl:ObjectProperty .\n\npqn:P1772 a owl:ObjectProperty .\n\nprn:P1772 a owl:ObjectProperty .\n\nwdtn:P1772 a owl:ObjectProperty .\n\nwdno:P1772 a owl:Class ;\n\towl:complementOf _:628f5161a15d4cb2d6c310b03688e314 .\n\n_:628f5161a15d4cb2d6c310b03688e314 a owl:Restriction ;\n\towl:onProperty wdt:P1772 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P846 a wikibase:Property ;\n\trdfs:label \"GBIF Taxon-ID\"@de ;\n\tskos:prefLabel \"GBIF Taxon-ID\"@de ;\n\tschema:name \"GBIF Taxon-ID\"@de ;\n\trdfs:label \"GBIF taxon ID\"@en ;\n\tskos:prefLabel \"GBIF taxon ID\"@en ;\n\tschema:name \"GBIF taxon ID\"@en ;\n\tschema:description \"Identifikator bei der Global Biodiversity Information Facility (GBIF)\"@de,\n\t\t\"taxon identifier in GBIF\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P846 ;\n\twikibase:claim p:P846 ;\n\twikibase:statementProperty ps:P846 ;\n\twikibase:statementValue psv:P846 ;\n\twikibase:qualifier pq:P846 ;\n\twikibase:qualifierValue pqv:P846 ;\n\twikibase:reference pr:P846 ;\n\twikibase:referenceValue prv:P846 ;\n\twikibase:novalue wdno:P846 ;\n\twikibase:directClaimNormalized wdtn:P846 ;\n\twikibase:statementValueNormalized psn:P846 ;\n\twikibase:qualifierValueNormalized pqn:P846 ;\n\twikibase:referenceValueNormalized prn:P846 .\n\np:P846 a owl:ObjectProperty .\n\npsv:P846 a owl:ObjectProperty .\n\npqv:P846 a owl:ObjectProperty .\n\nprv:P846 a owl:ObjectProperty .\n\nwdt:P846 a owl:DatatypeProperty .\n\nps:P846 a owl:DatatypeProperty .\n\npq:P846 a owl:DatatypeProperty .\n\npr:P846 a owl:DatatypeProperty .\n\npsn:P846 a owl:ObjectProperty .\n\npqn:P846 a owl:ObjectProperty .\n\nprn:P846 a owl:ObjectProperty .\n\nwdtn:P846 a owl:ObjectProperty .\n\nwdno:P846 a owl:Class ;\n\towl:complementOf _:4e43dee4c86ca789b71d8b527d96e65b .\n\n_:4e43dee4c86ca789b71d8b527d96e65b a owl:Restriction ;\n\towl:onProperty wdt:P846 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1939 a wikibase:Property ;\n\trdfs:label \"Dyntaxa-ID\"@de ;\n\tskos:prefLabel \"Dyntaxa-ID\"@de ;\n\tschema:name \"Dyntaxa-ID\"@de ;\n\trdfs:label \"Dyntaxa ID\"@mul ;\n\tskos:prefLabel \"Dyntaxa ID\"@mul ;\n\tschema:name \"Dyntaxa ID\"@mul ;\n\trdfs:label \"Dyntaxa ID\"@en ;\n\tskos:prefLabel \"Dyntaxa ID\"@en ;\n\tschema:name \"Dyntaxa ID\"@en ;\n\tschema:description \"Identifikator in der schwedischen Taxonomiedatenbank (Dyntaxa)\"@de,\n\t\t\"identifier for a taxon in the Swedish Taxonomic Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1939 ;\n\twikibase:claim p:P1939 ;\n\twikibase:statementProperty ps:P1939 ;\n\twikibase:statementValue psv:P1939 ;\n\twikibase:qualifier pq:P1939 ;\n\twikibase:qualifierValue pqv:P1939 ;\n\twikibase:reference pr:P1939 ;\n\twikibase:referenceValue prv:P1939 ;\n\twikibase:novalue wdno:P1939 ;\n\twikibase:directClaimNormalized wdtn:P1939 ;\n\twikibase:statementValueNormalized psn:P1939 ;\n\twikibase:qualifierValueNormalized pqn:P1939 ;\n\twikibase:referenceValueNormalized prn:P1939 .\n\np:P1939 a owl:ObjectProperty .\n\npsv:P1939 a owl:ObjectProperty .\n\npqv:P1939 a owl:ObjectProperty .\n\nprv:P1939 a owl:ObjectProperty .\n\nwdt:P1939 a owl:DatatypeProperty .\n\nps:P1939 a owl:DatatypeProperty .\n\npq:P1939 a owl:DatatypeProperty .\n\npr:P1939 a owl:DatatypeProperty .\n\npsn:P1939 a owl:ObjectProperty .\n\npqn:P1939 a owl:ObjectProperty .\n\nprn:P1939 a owl:ObjectProperty .\n\nwdtn:P1939 a owl:ObjectProperty .\n\nwdno:P1939 a owl:Class ;\n\towl:complementOf _:e537016449ccafe75bdf201c04c0c059 .\n\n_:e537016449ccafe75bdf201c04c0c059 a owl:Restriction ;\n\towl:onProperty wdt:P1939 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2036 a wikibase:Property ;\n\trdfs:label \"African-Plant-Database-ID\"@de ;\n\tskos:prefLabel \"African-Plant-Database-ID\"@de ;\n\tschema:name \"African-Plant-Database-ID\"@de ;\n\trdfs:label \"African Plant Database ID\"@mul ;\n\tskos:prefLabel \"African Plant Database ID\"@mul ;\n\tschema:name \"African Plant Database ID\"@mul ;\n\trdfs:label \"African Plant Database ID\"@en ;\n\tskos:prefLabel \"African Plant Database ID\"@en ;\n\tschema:name \"African Plant Database ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons in der African Plant Database\"@de,\n\t\t\"identifier for a plant taxon, in the Conservatoire et Jardin botaniques de Genève's African Plant Database of scientific names\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2036 ;\n\twikibase:claim p:P2036 ;\n\twikibase:statementProperty ps:P2036 ;\n\twikibase:statementValue psv:P2036 ;\n\twikibase:qualifier pq:P2036 ;\n\twikibase:qualifierValue pqv:P2036 ;\n\twikibase:reference pr:P2036 ;\n\twikibase:referenceValue prv:P2036 ;\n\twikibase:novalue wdno:P2036 ;\n\twikibase:directClaimNormalized wdtn:P2036 ;\n\twikibase:statementValueNormalized psn:P2036 ;\n\twikibase:qualifierValueNormalized pqn:P2036 ;\n\twikibase:referenceValueNormalized prn:P2036 .\n\np:P2036 a owl:ObjectProperty .\n\npsv:P2036 a owl:ObjectProperty .\n\npqv:P2036 a owl:ObjectProperty .\n\nprv:P2036 a owl:ObjectProperty .\n\nwdt:P2036 a owl:DatatypeProperty .\n\nps:P2036 a owl:DatatypeProperty .\n\npq:P2036 a owl:DatatypeProperty .\n\npr:P2036 a owl:DatatypeProperty .\n\npsn:P2036 a owl:ObjectProperty .\n\npqn:P2036 a owl:ObjectProperty .\n\nprn:P2036 a owl:ObjectProperty .\n\nwdtn:P2036 a owl:ObjectProperty .\n\nwdno:P2036 a owl:Class ;\n\towl:complementOf _:b0f9170a47773a0767cc8b80a8af9385 .\n\n_:b0f9170a47773a0767cc8b80a8af9385 a owl:Restriction ;\n\towl:onProperty wdt:P2036 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q9528983 a wikibase:Item ;\n\trdfs:label \"Category:Quercus robur\"@en ;\n\tskos:prefLabel \"Category:Quercus robur\"@en ;\n\tschema:name \"Category:Quercus robur\"@en ;\n\tschema:description \"Wikimedia-Kategorie\"@de,\n\t\t\"Wikimedia category\"@en .\n\nwd:P910 a wikibase:Property ;\n\trdfs:label \"Hauptkategorie des Themas\"@de ;\n\tskos:prefLabel \"Hauptkategorie des Themas\"@de ;\n\tschema:name \"Hauptkategorie des Themas\"@de ;\n\trdfs:label \"topic's main category\"@en ;\n\tskos:prefLabel \"topic's main category\"@en ;\n\tschema:name \"topic's main category\"@en ;\n\tschema:description \"Haupt-Wikimedia-Kategorie\"@de,\n\t\t\"main Wikimedia category\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P910 ;\n\twikibase:claim p:P910 ;\n\twikibase:statementProperty ps:P910 ;\n\twikibase:statementValue psv:P910 ;\n\twikibase:qualifier pq:P910 ;\n\twikibase:qualifierValue pqv:P910 ;\n\twikibase:reference pr:P910 ;\n\twikibase:referenceValue prv:P910 ;\n\twikibase:novalue wdno:P910 .\n\np:P910 a owl:ObjectProperty .\n\npsv:P910 a owl:ObjectProperty .\n\npqv:P910 a owl:ObjectProperty .\n\nprv:P910 a owl:ObjectProperty .\n\nwdt:P910 a owl:ObjectProperty .\n\nps:P910 a owl:ObjectProperty .\n\npq:P910 a owl:ObjectProperty .\n\npr:P910 a owl:ObjectProperty .\n\nwdno:P910 a owl:Class ;\n\towl:complementOf _:06be9361e78d041ce01df69013cf6906 .\n\n_:06be9361e78d041ce01df69013cf6906 a owl:Restriction ;\n\towl:onProperty wdt:P910 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1014 a wikibase:Property ;\n\trdfs:label \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tskos:prefLabel \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tschema:name \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\trdfs:label \"Art & Architecture Thesaurus ID\"@en ;\n\tskos:prefLabel \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:name \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:description \"Identifikator im Art-and-Architecture-Thesaurus des Getty Research Institute\"@de,\n\t\t\"identifier in the Art & Architecture Thesaurus by the Getty Research Institute\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1014 ;\n\twikibase:claim p:P1014 ;\n\twikibase:statementProperty ps:P1014 ;\n\twikibase:statementValue psv:P1014 ;\n\twikibase:qualifier pq:P1014 ;\n\twikibase:qualifierValue pqv:P1014 ;\n\twikibase:reference pr:P1014 ;\n\twikibase:referenceValue prv:P1014 ;\n\twikibase:novalue wdno:P1014 ;\n\twikibase:directClaimNormalized wdtn:P1014 ;\n\twikibase:statementValueNormalized psn:P1014 ;\n\twikibase:qualifierValueNormalized pqn:P1014 ;\n\twikibase:referenceValueNormalized prn:P1014 .\n\np:P1014 a owl:ObjectProperty .\n\npsv:P1014 a owl:ObjectProperty .\n\npqv:P1014 a owl:ObjectProperty .\n\nprv:P1014 a owl:ObjectProperty .\n\nwdt:P1014 a owl:DatatypeProperty .\n\nps:P1014 a owl:DatatypeProperty .\n\npq:P1014 a owl:DatatypeProperty .\n\npr:P1014 a owl:DatatypeProperty .\n\npsn:P1014 a owl:ObjectProperty .\n\npqn:P1014 a owl:ObjectProperty .\n\nprn:P1014 a owl:ObjectProperty .\n\nwdtn:P1014 a owl:ObjectProperty .\n\nwdno:P1014 a owl:Class ;\n\towl:complementOf _:b3313e8714e8603bc734ad31fe890277 .\n\n_:b3313e8714e8603bc734ad31fe890277 a owl:Restriction ;\n\towl:onProperty wdt:P1014 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2752 a wikibase:Property ;\n\trdfs:label \"NZOR-ID\"@de ;\n\tskos:prefLabel \"NZOR-ID\"@de ;\n\tschema:name \"NZOR-ID\"@de ;\n\trdfs:label \"New Zealand Organisms Register ID\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register ID\"@en ;\n\tschema:name \"New Zealand Organisms Register ID\"@en ;\n\tschema:description \"Identifikator im New Zealand Organisms Register\"@de,\n\t\t\"identifier for a taxon names in the New Zealand Organisms Register\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2752 ;\n\twikibase:claim p:P2752 ;\n\twikibase:statementProperty ps:P2752 ;\n\twikibase:statementValue psv:P2752 ;\n\twikibase:qualifier pq:P2752 ;\n\twikibase:qualifierValue pqv:P2752 ;\n\twikibase:reference pr:P2752 ;\n\twikibase:referenceValue prv:P2752 ;\n\twikibase:novalue wdno:P2752 ;\n\twikibase:directClaimNormalized wdtn:P2752 ;\n\twikibase:statementValueNormalized psn:P2752 ;\n\twikibase:qualifierValueNormalized pqn:P2752 ;\n\twikibase:referenceValueNormalized prn:P2752 .\n\np:P2752 a owl:ObjectProperty .\n\npsv:P2752 a owl:ObjectProperty .\n\npqv:P2752 a owl:ObjectProperty .\n\nprv:P2752 a owl:ObjectProperty .\n\nwdt:P2752 a owl:DatatypeProperty .\n\nps:P2752 a owl:DatatypeProperty .\n\npq:P2752 a owl:DatatypeProperty .\n\npr:P2752 a owl:DatatypeProperty .\n\npsn:P2752 a owl:ObjectProperty .\n\npqn:P2752 a owl:ObjectProperty .\n\nprn:P2752 a owl:ObjectProperty .\n\nwdtn:P2752 a owl:ObjectProperty .\n\nwdno:P2752 a owl:Class ;\n\towl:complementOf _:7abc2b813b7dc941a17c84c2fcfe1b31 .\n\n_:7abc2b813b7dc941a17c84c2fcfe1b31 a owl:Restriction ;\n\towl:onProperty wdt:P2752 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P627 a wikibase:Property ;\n\trdfs:label \"IUCN-ID\"@de ;\n\tskos:prefLabel \"IUCN-ID\"@de ;\n\tschema:name \"IUCN-ID\"@de ;\n\trdfs:label \"IUCN taxon ID\"@en ;\n\tskos:prefLabel \"IUCN taxon ID\"@en ;\n\tschema:name \"IUCN taxon ID\"@en ;\n\tschema:description \"Referenz für IUCN Artenschutzstatus (P141)\"@de,\n\t\t\"identifier for a taxon in the International Union for Conservation of Nature database; source for conservation status (P141)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P627 ;\n\twikibase:claim p:P627 ;\n\twikibase:statementProperty ps:P627 ;\n\twikibase:statementValue psv:P627 ;\n\twikibase:qualifier pq:P627 ;\n\twikibase:qualifierValue pqv:P627 ;\n\twikibase:reference pr:P627 ;\n\twikibase:referenceValue prv:P627 ;\n\twikibase:novalue wdno:P627 ;\n\twikibase:directClaimNormalized wdtn:P627 ;\n\twikibase:statementValueNormalized psn:P627 ;\n\twikibase:qualifierValueNormalized pqn:P627 ;\n\twikibase:referenceValueNormalized prn:P627 .\n\np:P627 a owl:ObjectProperty .\n\npsv:P627 a owl:ObjectProperty .\n\npqv:P627 a owl:ObjectProperty .\n\nprv:P627 a owl:ObjectProperty .\n\nwdt:P627 a owl:DatatypeProperty .\n\nps:P627 a owl:DatatypeProperty .\n\npq:P627 a owl:DatatypeProperty .\n\npr:P627 a owl:DatatypeProperty .\n\npsn:P627 a owl:ObjectProperty .\n\npqn:P627 a owl:ObjectProperty .\n\nprn:P627 a owl:ObjectProperty .\n\nwdtn:P627 a owl:ObjectProperty .\n\nwdno:P627 a owl:Class ;\n\towl:complementOf _:4fcdb0497c5903913817304f5781c532 .\n\n_:4fcdb0497c5903913817304f5781c532 a owl:Restriction ;\n\towl:onProperty wdt:P627 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3031 a wikibase:Property ;\n\trdfs:label \"EPPO-Code\"@de ;\n\tskos:prefLabel \"EPPO-Code\"@de ;\n\tschema:name \"EPPO-Code\"@de ;\n\trdfs:label \"EPPO Code\"@en ;\n\tskos:prefLabel \"EPPO Code\"@en ;\n\tschema:name \"EPPO Code\"@en ;\n\tschema:description \"der EPPO-Code ist ein System zur schnellen Identifikation von Schadorganismen in landwirtschaftlich genutzten Kulturpflanzen\"@de,\n\t\t\"identifier for a taxon in the EPPO Global Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3031 ;\n\twikibase:claim p:P3031 ;\n\twikibase:statementProperty ps:P3031 ;\n\twikibase:statementValue psv:P3031 ;\n\twikibase:qualifier pq:P3031 ;\n\twikibase:qualifierValue pqv:P3031 ;\n\twikibase:reference pr:P3031 ;\n\twikibase:referenceValue prv:P3031 ;\n\twikibase:novalue wdno:P3031 ;\n\twikibase:directClaimNormalized wdtn:P3031 ;\n\twikibase:statementValueNormalized psn:P3031 ;\n\twikibase:qualifierValueNormalized pqn:P3031 ;\n\twikibase:referenceValueNormalized prn:P3031 .\n\np:P3031 a owl:ObjectProperty .\n\npsv:P3031 a owl:ObjectProperty .\n\npqv:P3031 a owl:ObjectProperty .\n\nprv:P3031 a owl:ObjectProperty .\n\nwdt:P3031 a owl:DatatypeProperty .\n\nps:P3031 a owl:DatatypeProperty .\n\npq:P3031 a owl:DatatypeProperty .\n\npr:P3031 a owl:DatatypeProperty .\n\npsn:P3031 a owl:ObjectProperty .\n\npqn:P3031 a owl:ObjectProperty .\n\nprn:P3031 a owl:ObjectProperty .\n\nwdtn:P3031 a owl:ObjectProperty .\n\nwdno:P3031 a owl:Class ;\n\towl:complementOf _:e744cd0c79cf1a4f2c8fde243102dd40 .\n\n_:e744cd0c79cf1a4f2c8fde243102dd40 a owl:Restriction ;\n\towl:onProperty wdt:P3031 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3151 a wikibase:Property ;\n\trdfs:label \"iNaturalist-Taxon-ID\"@de ;\n\tskos:prefLabel \"iNaturalist-Taxon-ID\"@de ;\n\tschema:name \"iNaturalist-Taxon-ID\"@de ;\n\trdfs:label \"iNaturalist taxon ID\"@en ;\n\tskos:prefLabel \"iNaturalist taxon ID\"@en ;\n\tschema:name \"iNaturalist taxon ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in iNaturalist\"@de,\n\t\t\"identifier in iNaturalist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3151 ;\n\twikibase:claim p:P3151 ;\n\twikibase:statementProperty ps:P3151 ;\n\twikibase:statementValue psv:P3151 ;\n\twikibase:qualifier pq:P3151 ;\n\twikibase:qualifierValue pqv:P3151 ;\n\twikibase:reference pr:P3151 ;\n\twikibase:referenceValue prv:P3151 ;\n\twikibase:novalue wdno:P3151 ;\n\twikibase:directClaimNormalized wdtn:P3151 ;\n\twikibase:statementValueNormalized psn:P3151 ;\n\twikibase:qualifierValueNormalized pqn:P3151 ;\n\twikibase:referenceValueNormalized prn:P3151 .\n\np:P3151 a owl:ObjectProperty .\n\npsv:P3151 a owl:ObjectProperty .\n\npqv:P3151 a owl:ObjectProperty .\n\nprv:P3151 a owl:ObjectProperty .\n\nwdt:P3151 a owl:DatatypeProperty .\n\nps:P3151 a owl:DatatypeProperty .\n\npq:P3151 a owl:DatatypeProperty .\n\npr:P3151 a owl:DatatypeProperty .\n\npsn:P3151 a owl:ObjectProperty .\n\npqn:P3151 a owl:ObjectProperty .\n\nprn:P3151 a owl:ObjectProperty .\n\nwdtn:P3151 a owl:ObjectProperty .\n\nwdno:P3151 a owl:Class ;\n\towl:complementOf _:31d695e397adbd65a632ab66939a23e5 .\n\n_:31d695e397adbd65a632ab66939a23e5 a owl:Restriction ;\n\towl:onProperty wdt:P3151 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3186 a wikibase:Property ;\n\trdfs:label \"INPN-TAXREF-ID\"@de ;\n\tskos:prefLabel \"INPN-TAXREF-ID\"@de ;\n\tschema:name \"INPN-TAXREF-ID\"@de ;\n\trdfs:label \"TAXREF ID\"@en ;\n\tskos:prefLabel \"TAXREF ID\"@en ;\n\tschema:name \"TAXREF ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept im Inventaire National du Patrimoine Naturel (INPN) des Muséum National d'Histoire Naturelle (MNHN)\"@de,\n\t\t\"identifier for a biological taxon in TAXREF, the national taxonomic reference for fauna, flora and Fungi of metropolitan France and overseas developed by the National Museum of Natural History\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3186 ;\n\twikibase:claim p:P3186 ;\n\twikibase:statementProperty ps:P3186 ;\n\twikibase:statementValue psv:P3186 ;\n\twikibase:qualifier pq:P3186 ;\n\twikibase:qualifierValue pqv:P3186 ;\n\twikibase:reference pr:P3186 ;\n\twikibase:referenceValue prv:P3186 ;\n\twikibase:novalue wdno:P3186 ;\n\twikibase:directClaimNormalized wdtn:P3186 ;\n\twikibase:statementValueNormalized psn:P3186 ;\n\twikibase:qualifierValueNormalized pqn:P3186 ;\n\twikibase:referenceValueNormalized prn:P3186 .\n\np:P3186 a owl:ObjectProperty .\n\npsv:P3186 a owl:ObjectProperty .\n\npqv:P3186 a owl:ObjectProperty .\n\nprv:P3186 a owl:ObjectProperty .\n\nwdt:P3186 a owl:DatatypeProperty .\n\nps:P3186 a owl:DatatypeProperty .\n\npq:P3186 a owl:DatatypeProperty .\n\npr:P3186 a owl:DatatypeProperty .\n\npsn:P3186 a owl:ObjectProperty .\n\npqn:P3186 a owl:ObjectProperty .\n\nprn:P3186 a owl:ObjectProperty .\n\nwdtn:P3186 a owl:ObjectProperty .\n\nwdno:P3186 a owl:Class ;\n\towl:complementOf _:0d44fe59112f39b6baefab91e5ecfa6c .\n\n_:0d44fe59112f39b6baefab91e5ecfa6c a owl:Restriction ;\n\towl:onProperty wdt:P3186 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3240 a wikibase:Property ;\n\trdfs:label \"NBN-ID\"@de ;\n\tskos:prefLabel \"NBN-ID\"@de ;\n\tschema:name \"NBN-ID\"@de ;\n\trdfs:label \"NBN System Key\"@mul ;\n\tskos:prefLabel \"NBN System Key\"@mul ;\n\tschema:name \"NBN System Key\"@mul ;\n\trdfs:label \"NBN System Key\"@en ;\n\tskos:prefLabel \"NBN System Key\"@en ;\n\tschema:name \"NBN System Key\"@en ;\n\tschema:description \"identifier of a taxon in the National Biodiversity Network (UK)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3240 ;\n\twikibase:claim p:P3240 ;\n\twikibase:statementProperty ps:P3240 ;\n\twikibase:statementValue psv:P3240 ;\n\twikibase:qualifier pq:P3240 ;\n\twikibase:qualifierValue pqv:P3240 ;\n\twikibase:reference pr:P3240 ;\n\twikibase:referenceValue prv:P3240 ;\n\twikibase:novalue wdno:P3240 ;\n\twikibase:directClaimNormalized wdtn:P3240 ;\n\twikibase:statementValueNormalized psn:P3240 ;\n\twikibase:qualifierValueNormalized pqn:P3240 ;\n\twikibase:referenceValueNormalized prn:P3240 .\n\np:P3240 a owl:ObjectProperty .\n\npsv:P3240 a owl:ObjectProperty .\n\npqv:P3240 a owl:ObjectProperty .\n\nprv:P3240 a owl:ObjectProperty .\n\nwdt:P3240 a owl:DatatypeProperty .\n\nps:P3240 a owl:DatatypeProperty .\n\npq:P3240 a owl:DatatypeProperty .\n\npr:P3240 a owl:DatatypeProperty .\n\npsn:P3240 a owl:ObjectProperty .\n\npqn:P3240 a owl:ObjectProperty .\n\nprn:P3240 a owl:ObjectProperty .\n\nwdtn:P3240 a owl:ObjectProperty .\n\nwdno:P3240 a owl:Class ;\n\towl:complementOf _:8c5bcb3534b61ba7ac85ad93d3f23a2f .\n\n_:8c5bcb3534b61ba7ac85ad93d3f23a2f a owl:Restriction ;\n\towl:onProperty wdt:P3240 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3405 a wikibase:Property ;\n\trdfs:label \"NSR-ID\"@de ;\n\tskos:prefLabel \"NSR-ID\"@de ;\n\tschema:name \"NSR-ID\"@de ;\n\trdfs:label \"Nederlands Soortenregister ID\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister ID\"@en ;\n\tschema:name \"Nederlands Soortenregister ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im Nederlands Soortenregister\"@de,\n\t\t\"identifier for a taxon in the ''Nederlands Soortenregister'', a database of taxa in the Netherlands by Naturalis Biodiversity Center\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3405 ;\n\twikibase:claim p:P3405 ;\n\twikibase:statementProperty ps:P3405 ;\n\twikibase:statementValue psv:P3405 ;\n\twikibase:qualifier pq:P3405 ;\n\twikibase:qualifierValue pqv:P3405 ;\n\twikibase:reference pr:P3405 ;\n\twikibase:referenceValue prv:P3405 ;\n\twikibase:novalue wdno:P3405 ;\n\twikibase:directClaimNormalized wdtn:P3405 ;\n\twikibase:statementValueNormalized psn:P3405 ;\n\twikibase:qualifierValueNormalized pqn:P3405 ;\n\twikibase:referenceValueNormalized prn:P3405 .\n\np:P3405 a owl:ObjectProperty .\n\npsv:P3405 a owl:ObjectProperty .\n\npqv:P3405 a owl:ObjectProperty .\n\nprv:P3405 a owl:ObjectProperty .\n\nwdt:P3405 a owl:DatatypeProperty .\n\nps:P3405 a owl:DatatypeProperty .\n\npq:P3405 a owl:DatatypeProperty .\n\npr:P3405 a owl:DatatypeProperty .\n\npsn:P3405 a owl:ObjectProperty .\n\npqn:P3405 a owl:ObjectProperty .\n\nprn:P3405 a owl:ObjectProperty .\n\nwdtn:P3405 a owl:ObjectProperty .\n\nwdno:P3405 a owl:Class ;\n\towl:complementOf _:1ce44f5ee81f62022e69a4f9a706fc62 .\n\n_:1ce44f5ee81f62022e69a4f9a706fc62 a owl:Restriction ;\n\towl:onProperty wdt:P3405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3591 a wikibase:Property ;\n\trdfs:label \"WCSPF-ID\"@de ;\n\tskos:prefLabel \"WCSPF-ID\"@de ;\n\tschema:name \"WCSPF-ID\"@de ;\n\trdfs:label \"WCSPF ID\"@en ;\n\tskos:prefLabel \"WCSPF ID\"@en ;\n\tschema:name \"WCSPF ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in der World Checklist of Selected Plant Families (WCSPF)\"@de,\n\t\t\"identifier of a plant taxon, in the World Checklist of Selected Plant Families\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3591 ;\n\twikibase:claim p:P3591 ;\n\twikibase:statementProperty ps:P3591 ;\n\twikibase:statementValue psv:P3591 ;\n\twikibase:qualifier pq:P3591 ;\n\twikibase:qualifierValue pqv:P3591 ;\n\twikibase:reference pr:P3591 ;\n\twikibase:referenceValue prv:P3591 ;\n\twikibase:novalue wdno:P3591 ;\n\twikibase:directClaimNormalized wdtn:P3591 ;\n\twikibase:statementValueNormalized psn:P3591 ;\n\twikibase:qualifierValueNormalized pqn:P3591 ;\n\twikibase:referenceValueNormalized prn:P3591 .\n\np:P3591 a owl:ObjectProperty .\n\npsv:P3591 a owl:ObjectProperty .\n\npqv:P3591 a owl:ObjectProperty .\n\nprv:P3591 a owl:ObjectProperty .\n\nwdt:P3591 a owl:DatatypeProperty .\n\nps:P3591 a owl:DatatypeProperty .\n\npq:P3591 a owl:DatatypeProperty .\n\npr:P3591 a owl:DatatypeProperty .\n\npsn:P3591 a owl:ObjectProperty .\n\npqn:P3591 a owl:ObjectProperty .\n\nprn:P3591 a owl:ObjectProperty .\n\nwdtn:P3591 a owl:ObjectProperty .\n\nwdno:P3591 a owl:Class ;\n\towl:complementOf _:6ad364611b81140818b2a9c1b2c8f7a2 .\n\n_:6ad364611b81140818b2a9c1b2c8f7a2 a owl:Restriction ;\n\towl:onProperty wdt:P3591 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P838 a wikibase:Property ;\n\trdfs:label \"BioLib-ID\"@de ;\n\tskos:prefLabel \"BioLib-ID\"@de ;\n\tschema:name \"BioLib-ID\"@de ;\n\trdfs:label \"BioLib taxon ID\"@en ;\n\tskos:prefLabel \"BioLib taxon ID\"@en ;\n\tschema:name \"BioLib taxon ID\"@en ;\n\tschema:description \"Identifikator in der Biological Library (BioLib)\"@de,\n\t\t\"identifier for a taxon in the biological encyclopedia BioLib\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P838 ;\n\twikibase:claim p:P838 ;\n\twikibase:statementProperty ps:P838 ;\n\twikibase:statementValue psv:P838 ;\n\twikibase:qualifier pq:P838 ;\n\twikibase:qualifierValue pqv:P838 ;\n\twikibase:reference pr:P838 ;\n\twikibase:referenceValue prv:P838 ;\n\twikibase:novalue wdno:P838 ;\n\twikibase:directClaimNormalized wdtn:P838 ;\n\twikibase:statementValueNormalized psn:P838 ;\n\twikibase:qualifierValueNormalized pqn:P838 ;\n\twikibase:referenceValueNormalized prn:P838 .\n\np:P838 a owl:ObjectProperty .\n\npsv:P838 a owl:ObjectProperty .\n\npqv:P838 a owl:ObjectProperty .\n\nprv:P838 a owl:ObjectProperty .\n\nwdt:P838 a owl:DatatypeProperty .\n\nps:P838 a owl:DatatypeProperty .\n\npq:P838 a owl:DatatypeProperty .\n\npr:P838 a owl:DatatypeProperty .\n\npsn:P838 a owl:ObjectProperty .\n\npqn:P838 a owl:ObjectProperty .\n\nprn:P838 a owl:ObjectProperty .\n\nwdtn:P838 a owl:ObjectProperty .\n\nwdno:P838 a owl:Class ;\n\towl:complementOf _:c0b134a70991a73595445bd125ff1333 .\n\n_:c0b134a70991a73595445bd125ff1333 a owl:Restriction ;\n\towl:onProperty wdt:P838 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3420 a wikibase:Property ;\n\trdfs:label \"Calflora-ID\"@de ;\n\tskos:prefLabel \"Calflora-ID\"@de ;\n\tschema:name \"Calflora-ID\"@de ;\n\trdfs:label \"Calflora ID\"@en ;\n\tskos:prefLabel \"Calflora ID\"@en ;\n\tschema:name \"Calflora ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon bei Calflora\"@de,\n\t\t\"identifier for a taxon in Calflora\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3420 ;\n\twikibase:claim p:P3420 ;\n\twikibase:statementProperty ps:P3420 ;\n\twikibase:statementValue psv:P3420 ;\n\twikibase:qualifier pq:P3420 ;\n\twikibase:qualifierValue pqv:P3420 ;\n\twikibase:reference pr:P3420 ;\n\twikibase:referenceValue prv:P3420 ;\n\twikibase:novalue wdno:P3420 ;\n\twikibase:directClaimNormalized wdtn:P3420 ;\n\twikibase:statementValueNormalized psn:P3420 ;\n\twikibase:qualifierValueNormalized pqn:P3420 ;\n\twikibase:referenceValueNormalized prn:P3420 .\n\np:P3420 a owl:ObjectProperty .\n\npsv:P3420 a owl:ObjectProperty .\n\npqv:P3420 a owl:ObjectProperty .\n\nprv:P3420 a owl:ObjectProperty .\n\nwdt:P3420 a owl:DatatypeProperty .\n\nps:P3420 a owl:DatatypeProperty .\n\npq:P3420 a owl:DatatypeProperty .\n\npr:P3420 a owl:DatatypeProperty .\n\npsn:P3420 a owl:ObjectProperty .\n\npqn:P3420 a owl:ObjectProperty .\n\nprn:P3420 a owl:ObjectProperty .\n\nwdtn:P3420 a owl:ObjectProperty .\n\nwdno:P3420 a owl:Class ;\n\towl:complementOf _:4626cdaff315771af2add5196658c55f .\n\n_:4626cdaff315771af2add5196658c55f a owl:Restriction ;\n\towl:onProperty wdt:P3420 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4122 a wikibase:Property ;\n\trdfs:label \"PalDat-ID\"@de ;\n\tskos:prefLabel \"PalDat-ID\"@de ;\n\tschema:name \"PalDat-ID\"@de ;\n\trdfs:label \"PalDat plant ID\"@en ;\n\tskos:prefLabel \"PalDat plant ID\"@en ;\n\tschema:name \"PalDat plant ID\"@en ;\n\tschema:description \"Identifikator in der Palynological Database (PalDat)\"@de,\n\t\t\"identifier for a plant species in the Palynological Database (PalDat) for pollen of the University of Vienna\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4122 ;\n\twikibase:claim p:P4122 ;\n\twikibase:statementProperty ps:P4122 ;\n\twikibase:statementValue psv:P4122 ;\n\twikibase:qualifier pq:P4122 ;\n\twikibase:qualifierValue pqv:P4122 ;\n\twikibase:reference pr:P4122 ;\n\twikibase:referenceValue prv:P4122 ;\n\twikibase:novalue wdno:P4122 ;\n\twikibase:directClaimNormalized wdtn:P4122 ;\n\twikibase:statementValueNormalized psn:P4122 ;\n\twikibase:qualifierValueNormalized pqn:P4122 ;\n\twikibase:referenceValueNormalized prn:P4122 .\n\np:P4122 a owl:ObjectProperty .\n\npsv:P4122 a owl:ObjectProperty .\n\npqv:P4122 a owl:ObjectProperty .\n\nprv:P4122 a owl:ObjectProperty .\n\nwdt:P4122 a owl:DatatypeProperty .\n\nps:P4122 a owl:DatatypeProperty .\n\npq:P4122 a owl:DatatypeProperty .\n\npr:P4122 a owl:DatatypeProperty .\n\npsn:P4122 a owl:ObjectProperty .\n\npqn:P4122 a owl:ObjectProperty .\n\nprn:P4122 a owl:ObjectProperty .\n\nwdtn:P4122 a owl:ObjectProperty .\n\nwdno:P4122 a owl:Class ;\n\towl:complementOf _:a5a87642131df39957cc0636be5cdbb0 .\n\n_:a5a87642131df39957cc0636be5cdbb0 a owl:Restriction ;\n\towl:onProperty wdt:P4122 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1417 a wikibase:Property ;\n\trdfs:label \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tskos:prefLabel \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tschema:name \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\trdfs:label \"Encyclopædia Britannica Online ID\"@en ;\n\tskos:prefLabel \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:name \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:description \"Kennung eines Artikels in der Onlineausgabe der Encyclopædia Britannica\"@de,\n\t\t\"identifier for an article in the online version of Encyclopædia Britannica\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1417 ;\n\twikibase:claim p:P1417 ;\n\twikibase:statementProperty ps:P1417 ;\n\twikibase:statementValue psv:P1417 ;\n\twikibase:qualifier pq:P1417 ;\n\twikibase:qualifierValue pqv:P1417 ;\n\twikibase:reference pr:P1417 ;\n\twikibase:referenceValue prv:P1417 ;\n\twikibase:novalue wdno:P1417 ;\n\twikibase:directClaimNormalized wdtn:P1417 ;\n\twikibase:statementValueNormalized psn:P1417 ;\n\twikibase:qualifierValueNormalized pqn:P1417 ;\n\twikibase:referenceValueNormalized prn:P1417 .\n\np:P1417 a owl:ObjectProperty .\n\npsv:P1417 a owl:ObjectProperty .\n\npqv:P1417 a owl:ObjectProperty .\n\nprv:P1417 a owl:ObjectProperty .\n\nwdt:P1417 a owl:DatatypeProperty .\n\nps:P1417 a owl:DatatypeProperty .\n\npq:P1417 a owl:DatatypeProperty .\n\npr:P1417 a owl:DatatypeProperty .\n\npsn:P1417 a owl:ObjectProperty .\n\npqn:P1417 a owl:ObjectProperty .\n\nprn:P1417 a owl:ObjectProperty .\n\nwdtn:P1417 a owl:ObjectProperty .\n\nwdno:P1417 a owl:Class ;\n\towl:complementOf _:0cb1ab8817799c4db539b18975ce292a .\n\n_:0cb1ab8817799c4db539b18975ce292a a owl:Restriction ;\n\towl:onProperty wdt:P1417 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4301 a wikibase:Property ;\n\trdfs:label \"PfaF-Kennung\"@de ;\n\tskos:prefLabel \"PfaF-Kennung\"@de ;\n\tschema:name \"PfaF-Kennung\"@de ;\n\trdfs:label \"PfaF ID\"@en ;\n\tskos:prefLabel \"PfaF ID\"@en ;\n\tschema:name \"PfaF ID\"@en ;\n\tschema:description \"Identifikator für ein Pflanzentaxon in der Plants-For-A-Future-Datenbank\"@de,\n\t\t\"identifier for a plant taxon, in the Plants For A Future database of uses of plants and their parts\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4301 ;\n\twikibase:claim p:P4301 ;\n\twikibase:statementProperty ps:P4301 ;\n\twikibase:statementValue psv:P4301 ;\n\twikibase:qualifier pq:P4301 ;\n\twikibase:qualifierValue pqv:P4301 ;\n\twikibase:reference pr:P4301 ;\n\twikibase:referenceValue prv:P4301 ;\n\twikibase:novalue wdno:P4301 ;\n\twikibase:directClaimNormalized wdtn:P4301 ;\n\twikibase:statementValueNormalized psn:P4301 ;\n\twikibase:qualifierValueNormalized pqn:P4301 ;\n\twikibase:referenceValueNormalized prn:P4301 .\n\np:P4301 a owl:ObjectProperty .\n\npsv:P4301 a owl:ObjectProperty .\n\npqv:P4301 a owl:ObjectProperty .\n\nprv:P4301 a owl:ObjectProperty .\n\nwdt:P4301 a owl:DatatypeProperty .\n\nps:P4301 a owl:DatatypeProperty .\n\npq:P4301 a owl:DatatypeProperty .\n\npr:P4301 a owl:DatatypeProperty .\n\npsn:P4301 a owl:ObjectProperty .\n\npqn:P4301 a owl:ObjectProperty .\n\nprn:P4301 a owl:ObjectProperty .\n\nwdtn:P4301 a owl:ObjectProperty .\n\nwdno:P4301 a owl:Class ;\n\towl:complementOf _:9a38347fb3f015804582338e450e1fbe .\n\n_:9a38347fb3f015804582338e450e1fbe a owl:Restriction ;\n\towl:onProperty wdt:P4301 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4311 a wikibase:Property ;\n\trdfs:label \"FOIH-Taxon-ID\"@de ;\n\tskos:prefLabel \"FOIH-Taxon-ID\"@de ;\n\tschema:name \"FOIH-Taxon-ID\"@de ;\n\trdfs:label \"FOIH taxon ID\"@en ;\n\tskos:prefLabel \"FOIH taxon ID\"@en ;\n\tschema:name \"FOIH taxon ID\"@en ;\n\tschema:description \"Identifikator für Taxa im Thesaurus der flämischen Organisation für unbewegliches Kulturerbe\"@de,\n\t\t\"identifier for a taxon in the thesaurus of the Flemish organization for Immovable Heritage\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4311 ;\n\twikibase:claim p:P4311 ;\n\twikibase:statementProperty ps:P4311 ;\n\twikibase:statementValue psv:P4311 ;\n\twikibase:qualifier pq:P4311 ;\n\twikibase:qualifierValue pqv:P4311 ;\n\twikibase:reference pr:P4311 ;\n\twikibase:referenceValue prv:P4311 ;\n\twikibase:novalue wdno:P4311 ;\n\twikibase:directClaimNormalized wdtn:P4311 ;\n\twikibase:statementValueNormalized psn:P4311 ;\n\twikibase:qualifierValueNormalized pqn:P4311 ;\n\twikibase:referenceValueNormalized prn:P4311 .\n\np:P4311 a owl:ObjectProperty .\n\npsv:P4311 a owl:ObjectProperty .\n\npqv:P4311 a owl:ObjectProperty .\n\nprv:P4311 a owl:ObjectProperty .\n\nwdt:P4311 a owl:DatatypeProperty .\n\nps:P4311 a owl:DatatypeProperty .\n\npq:P4311 a owl:DatatypeProperty .\n\npr:P4311 a owl:DatatypeProperty .\n\npsn:P4311 a owl:ObjectProperty .\n\npqn:P4311 a owl:ObjectProperty .\n\nprn:P4311 a owl:ObjectProperty .\n\nwdtn:P4311 a owl:ObjectProperty .\n\nwdno:P4311 a owl:Class ;\n\towl:complementOf _:b4b7cc24da1182c831879e07ac52ac8d .\n\n_:b4b7cc24da1182c831879e07ac52ac8d a owl:Restriction ;\n\towl:onProperty wdt:P4311 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q91885056 a wikibase:Item ;\n\trdfs:label \"Baum des Jahres\"@de ;\n\tskos:prefLabel \"Baum des Jahres\"@de ;\n\tschema:name \"Baum des Jahres\"@de ;\n\trdfs:label \"Tree of the year (Germany)\"@en ;\n\tskos:prefLabel \"Tree of the year (Germany)\"@en ;\n\tschema:name \"Tree of the year (Germany)\"@en ;\n\tschema:description \"jährliche deutsche Auswahl einer Baumart zur breiteren Förderung\"@de,\n\t\t\"annual German selection of a tree species for wider promotion\"@en .\n\nwd:P166 a wikibase:Property ;\n\trdfs:label \"Auszeichnung\"@de ;\n\tskos:prefLabel \"Auszeichnung\"@de ;\n\tschema:name \"Auszeichnung\"@de ;\n\trdfs:label \"award received\"@en ;\n\tskos:prefLabel \"award received\"@en ;\n\tschema:name \"award received\"@en ;\n\tschema:description \"erhaltene Auszeichnung einer Person, Organisation oder eines schöpferischen Werks\"@de,\n\t\t\"award or recognition received by a person, organization or creative work\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P166 ;\n\twikibase:claim p:P166 ;\n\twikibase:statementProperty ps:P166 ;\n\twikibase:statementValue psv:P166 ;\n\twikibase:qualifier pq:P166 ;\n\twikibase:qualifierValue pqv:P166 ;\n\twikibase:reference pr:P166 ;\n\twikibase:referenceValue prv:P166 ;\n\twikibase:novalue wdno:P166 .\n\np:P166 a owl:ObjectProperty .\n\npsv:P166 a owl:ObjectProperty .\n\npqv:P166 a owl:ObjectProperty .\n\nprv:P166 a owl:ObjectProperty .\n\nwdt:P166 a owl:ObjectProperty .\n\nps:P166 a owl:ObjectProperty .\n\npq:P166 a owl:ObjectProperty .\n\npr:P166 a owl:ObjectProperty .\n\nwdno:P166 a owl:Class ;\n\towl:complementOf _:7d9248d3103ddecb66c1e5cdef1c87b5 .\n\n_:7d9248d3103ddecb66c1e5cdef1c87b5 a owl:Restriction ;\n\towl:onProperty wdt:P166 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q91888395 a wikibase:Item ;\n\trdfs:label \"Baum des Jahres (Ungarn)\"@de ;\n\tskos:prefLabel \"Baum des Jahres (Ungarn)\"@de ;\n\tschema:name \"Baum des Jahres (Ungarn)\"@de ;\n\trdfs:label \"Tree of the Year (Hungary)\"@en ;\n\tskos:prefLabel \"Tree of the Year (Hungary)\"@en ;\n\tschema:name \"Tree of the Year (Hungary)\"@en ;\n\tschema:description \"Wettbewerb zur Wahl eines Baum des Jahres in Ungarn\"@de,\n\t\t\"competition to choose a tree of the year in Hungary\"@en .\n\nwd:Q91888146 a wikibase:Item ;\n\trdfs:label \"Österreichischer Baum des Jahres\"@de ;\n\tskos:prefLabel \"Österreichischer Baum des Jahres\"@de ;\n\tschema:name \"Österreichischer Baum des Jahres\"@de ;\n\trdfs:label \"Tree of the Year (Austria)\"@en ;\n\tskos:prefLabel \"Tree of the Year (Austria)\"@en ;\n\tschema:name \"Tree of the Year (Austria)\"@en ;\n\tschema:description \"österreichische Auszeichnung\"@de,\n\t\t\"Austrian award\"@en .\n\nwd:P4753 a wikibase:Property ;\n\trdfs:label \"Ecocrop-ID\"@de ;\n\tskos:prefLabel \"Ecocrop-ID\"@de ;\n\tschema:name \"Ecocrop-ID\"@de ;\n\trdfs:label \"Ecocrop ID\"@en ;\n\tskos:prefLabel \"Ecocrop ID\"@en ;\n\tschema:name \"Ecocrop ID\"@en ;\n\tschema:description \"identifier of a plant used as an agricultural crop in the Ecocrop database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4753 ;\n\twikibase:claim p:P4753 ;\n\twikibase:statementProperty ps:P4753 ;\n\twikibase:statementValue psv:P4753 ;\n\twikibase:qualifier pq:P4753 ;\n\twikibase:qualifierValue pqv:P4753 ;\n\twikibase:reference pr:P4753 ;\n\twikibase:referenceValue prv:P4753 ;\n\twikibase:novalue wdno:P4753 ;\n\twikibase:directClaimNormalized wdtn:P4753 ;\n\twikibase:statementValueNormalized psn:P4753 ;\n\twikibase:qualifierValueNormalized pqn:P4753 ;\n\twikibase:referenceValueNormalized prn:P4753 .\n\np:P4753 a owl:ObjectProperty .\n\npsv:P4753 a owl:ObjectProperty .\n\npqv:P4753 a owl:ObjectProperty .\n\nprv:P4753 a owl:ObjectProperty .\n\nwdt:P4753 a owl:DatatypeProperty .\n\nps:P4753 a owl:DatatypeProperty .\n\npq:P4753 a owl:DatatypeProperty .\n\npr:P4753 a owl:DatatypeProperty .\n\npsn:P4753 a owl:ObjectProperty .\n\npqn:P4753 a owl:ObjectProperty .\n\nprn:P4753 a owl:ObjectProperty .\n\nwdtn:P4753 a owl:ObjectProperty .\n\nwdno:P4753 a owl:Class ;\n\towl:complementOf _:8e7c271cf74abe077730806975e76934 .\n\n_:8e7c271cf74abe077730806975e76934 a owl:Restriction ;\n\towl:onProperty wdt:P4753 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5037 a wikibase:Property ;\n\trdfs:label \"POWO-URN\"@de ;\n\tskos:prefLabel \"POWO-URN\"@de ;\n\tschema:name \"POWO-URN\"@de ;\n\trdfs:label \"Plants of the World Online ID\"@en ;\n\tskos:prefLabel \"Plants of the World Online ID\"@en ;\n\tschema:name \"Plants of the World Online ID\"@en ;\n\tschema:description \"LSID für den wissenschaftlichen Namen eines Taxons in der Datenbank Plants of the World online (POWO)\"@de,\n\t\t\"identifier of a (vascular) plant name in the Plants of the World online database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5037 ;\n\twikibase:claim p:P5037 ;\n\twikibase:statementProperty ps:P5037 ;\n\twikibase:statementValue psv:P5037 ;\n\twikibase:qualifier pq:P5037 ;\n\twikibase:qualifierValue pqv:P5037 ;\n\twikibase:reference pr:P5037 ;\n\twikibase:referenceValue prv:P5037 ;\n\twikibase:novalue wdno:P5037 ;\n\twikibase:directClaimNormalized wdtn:P5037 ;\n\twikibase:statementValueNormalized psn:P5037 ;\n\twikibase:qualifierValueNormalized pqn:P5037 ;\n\twikibase:referenceValueNormalized prn:P5037 .\n\np:P5037 a owl:ObjectProperty .\n\npsv:P5037 a owl:ObjectProperty .\n\npqv:P5037 a owl:ObjectProperty .\n\nprv:P5037 a owl:ObjectProperty .\n\nwdt:P5037 a owl:DatatypeProperty .\n\nps:P5037 a owl:DatatypeProperty .\n\npq:P5037 a owl:DatatypeProperty .\n\npr:P5037 a owl:DatatypeProperty .\n\npsn:P5037 a owl:ObjectProperty .\n\npqn:P5037 a owl:ObjectProperty .\n\nprn:P5037 a owl:ObjectProperty .\n\nwdtn:P5037 a owl:ObjectProperty .\n\nwdno:P5037 a owl:Class ;\n\towl:complementOf _:e3823d3564c4e92668e101ce2eaea20a .\n\n_:e3823d3564c4e92668e101ce2eaea20a a owl:Restriction ;\n\towl:onProperty wdt:P5037 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5179 a wikibase:Property ;\n\trdfs:label \"FloraCatalana ID\"@en ;\n\tskos:prefLabel \"FloraCatalana ID\"@en ;\n\tschema:name \"FloraCatalana ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the FloraCatalana database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5179 ;\n\twikibase:claim p:P5179 ;\n\twikibase:statementProperty ps:P5179 ;\n\twikibase:statementValue psv:P5179 ;\n\twikibase:qualifier pq:P5179 ;\n\twikibase:qualifierValue pqv:P5179 ;\n\twikibase:reference pr:P5179 ;\n\twikibase:referenceValue prv:P5179 ;\n\twikibase:novalue wdno:P5179 ;\n\twikibase:directClaimNormalized wdtn:P5179 ;\n\twikibase:statementValueNormalized psn:P5179 ;\n\twikibase:qualifierValueNormalized pqn:P5179 ;\n\twikibase:referenceValueNormalized prn:P5179 .\n\np:P5179 a owl:ObjectProperty .\n\npsv:P5179 a owl:ObjectProperty .\n\npqv:P5179 a owl:ObjectProperty .\n\nprv:P5179 a owl:ObjectProperty .\n\nwdt:P5179 a owl:DatatypeProperty .\n\nps:P5179 a owl:DatatypeProperty .\n\npq:P5179 a owl:DatatypeProperty .\n\npr:P5179 a owl:DatatypeProperty .\n\npsn:P5179 a owl:ObjectProperty .\n\npqn:P5179 a owl:ObjectProperty .\n\nprn:P5179 a owl:ObjectProperty .\n\nwdtn:P5179 a owl:ObjectProperty .\n\nwdno:P5179 a owl:Class ;\n\towl:complementOf _:84d6f65176e76c526a030fa8ba7fd410 .\n\n_:84d6f65176e76c526a030fa8ba7fd410 a owl:Restriction ;\n\towl:onProperty wdt:P5179 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3130 a wikibase:Property ;\n\trdfs:label \"NSW-Flora-ID\"@de ;\n\tskos:prefLabel \"NSW-Flora-ID\"@de ;\n\tschema:name \"NSW-Flora-ID\"@de ;\n\trdfs:label \"NSW Flora ID\"@en ;\n\tskos:prefLabel \"NSW Flora ID\"@en ;\n\tschema:name \"NSW Flora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the NSW Flora Online\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3130 ;\n\twikibase:claim p:P3130 ;\n\twikibase:statementProperty ps:P3130 ;\n\twikibase:statementValue psv:P3130 ;\n\twikibase:qualifier pq:P3130 ;\n\twikibase:qualifierValue pqv:P3130 ;\n\twikibase:reference pr:P3130 ;\n\twikibase:referenceValue prv:P3130 ;\n\twikibase:novalue wdno:P3130 ;\n\twikibase:directClaimNormalized wdtn:P3130 ;\n\twikibase:statementValueNormalized psn:P3130 ;\n\twikibase:qualifierValueNormalized pqn:P3130 ;\n\twikibase:referenceValueNormalized prn:P3130 .\n\np:P3130 a owl:ObjectProperty .\n\npsv:P3130 a owl:ObjectProperty .\n\npqv:P3130 a owl:ObjectProperty .\n\nprv:P3130 a owl:ObjectProperty .\n\nwdt:P3130 a owl:DatatypeProperty .\n\nps:P3130 a owl:DatatypeProperty .\n\npq:P3130 a owl:DatatypeProperty .\n\npr:P3130 a owl:DatatypeProperty .\n\npsn:P3130 a owl:ObjectProperty .\n\npqn:P3130 a owl:ObjectProperty .\n\nprn:P3130 a owl:ObjectProperty .\n\nwdtn:P3130 a owl:ObjectProperty .\n\nwdno:P3130 a owl:Class ;\n\towl:complementOf _:bd20b33acfdea619a9f3ca924f25ada4 .\n\n_:bd20b33acfdea619a9f3ca924f25ada4 a owl:Restriction ;\n\towl:onProperty wdt:P3130 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5263 a wikibase:Property ;\n\trdfs:label \"NDOP-Taxon-ID\"@de ;\n\tskos:prefLabel \"NDOP-Taxon-ID\"@de ;\n\tschema:name \"NDOP-Taxon-ID\"@de ;\n\trdfs:label \"Czech NDOP taxon ID\"@en ;\n\tskos:prefLabel \"Czech NDOP taxon ID\"@en ;\n\tschema:name \"Czech NDOP taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the Conservancy Species Occurrence Finding Database, managed by the Nature Conservation Agency of the Czech Republic\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5263 ;\n\twikibase:claim p:P5263 ;\n\twikibase:statementProperty ps:P5263 ;\n\twikibase:statementValue psv:P5263 ;\n\twikibase:qualifier pq:P5263 ;\n\twikibase:qualifierValue pqv:P5263 ;\n\twikibase:reference pr:P5263 ;\n\twikibase:referenceValue prv:P5263 ;\n\twikibase:novalue wdno:P5263 ;\n\twikibase:directClaimNormalized wdtn:P5263 ;\n\twikibase:statementValueNormalized psn:P5263 ;\n\twikibase:qualifierValueNormalized pqn:P5263 ;\n\twikibase:referenceValueNormalized prn:P5263 .\n\np:P5263 a owl:ObjectProperty .\n\npsv:P5263 a owl:ObjectProperty .\n\npqv:P5263 a owl:ObjectProperty .\n\nprv:P5263 a owl:ObjectProperty .\n\nwdt:P5263 a owl:DatatypeProperty .\n\nps:P5263 a owl:DatatypeProperty .\n\npq:P5263 a owl:DatatypeProperty .\n\npr:P5263 a owl:DatatypeProperty .\n\npsn:P5263 a owl:ObjectProperty .\n\npqn:P5263 a owl:ObjectProperty .\n\nprn:P5263 a owl:ObjectProperty .\n\nwdtn:P5263 a owl:ObjectProperty .\n\nwdno:P5263 a owl:Class ;\n\towl:complementOf _:8fa24224d484a1329916a97de357af8c .\n\n_:8fa24224d484a1329916a97de357af8c a owl:Restriction ;\n\towl:onProperty wdt:P5263 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5055 a wikibase:Property ;\n\trdfs:label \"IRMNG-ID\"@de ;\n\tskos:prefLabel \"IRMNG-ID\"@de ;\n\tschema:name \"IRMNG-ID\"@de ;\n\trdfs:label \"IRMNG ID\"@en ;\n\tskos:prefLabel \"IRMNG ID\"@en ;\n\tschema:name \"IRMNG ID\"@en ;\n\tschema:description \"Identifikator im Interim Register of Marine and Nonmarine Genera (IRMNG)\"@de,\n\t\t\"identifier of a scientific name, in the Interim Register of Marine and Nonmarine Genera (IRMNG) database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5055 ;\n\twikibase:claim p:P5055 ;\n\twikibase:statementProperty ps:P5055 ;\n\twikibase:statementValue psv:P5055 ;\n\twikibase:qualifier pq:P5055 ;\n\twikibase:qualifierValue pqv:P5055 ;\n\twikibase:reference pr:P5055 ;\n\twikibase:referenceValue prv:P5055 ;\n\twikibase:novalue wdno:P5055 ;\n\twikibase:directClaimNormalized wdtn:P5055 ;\n\twikibase:statementValueNormalized psn:P5055 ;\n\twikibase:qualifierValueNormalized pqn:P5055 ;\n\twikibase:referenceValueNormalized prn:P5055 .\n\np:P5055 a owl:ObjectProperty .\n\npsv:P5055 a owl:ObjectProperty .\n\npqv:P5055 a owl:ObjectProperty .\n\nprv:P5055 a owl:ObjectProperty .\n\nwdt:P5055 a owl:DatatypeProperty .\n\nps:P5055 a owl:DatatypeProperty .\n\npq:P5055 a owl:DatatypeProperty .\n\npr:P5055 a owl:DatatypeProperty .\n\npsn:P5055 a owl:ObjectProperty .\n\npqn:P5055 a owl:ObjectProperty .\n\nprn:P5055 a owl:ObjectProperty .\n\nwdtn:P5055 a owl:ObjectProperty .\n\nwdno:P5055 a owl:Class ;\n\towl:complementOf _:eba65cbc5b51f8dc3ea346bef40b70b6 .\n\n_:eba65cbc5b51f8dc3ea346bef40b70b6 a owl:Restriction ;\n\towl:onProperty wdt:P5055 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1036 a wikibase:Property ;\n\trdfs:label \"Dewey-Dezimalklassifikation\"@de ;\n\tskos:prefLabel \"Dewey-Dezimalklassifikation\"@de ;\n\tschema:name \"Dewey-Dezimalklassifikation\"@de ;\n\trdfs:label \"Dewey Decimal Classification\"@en ;\n\tskos:prefLabel \"Dewey Decimal Classification\"@en ;\n\tschema:name \"Dewey Decimal Classification\"@en ;\n\tschema:description \"Klassifikation für die inhaltliche Erschließung (Verwendung mit dem Qualifikator P747: Ausgabe)\"@de,\n\t\t\"use with qualifier \\\"edition (P747)\\\" with item value \\\"DDC 23\\\" or create new item to represent the corresponding DDC edition\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1036 ;\n\twikibase:claim p:P1036 ;\n\twikibase:statementProperty ps:P1036 ;\n\twikibase:statementValue psv:P1036 ;\n\twikibase:qualifier pq:P1036 ;\n\twikibase:qualifierValue pqv:P1036 ;\n\twikibase:reference pr:P1036 ;\n\twikibase:referenceValue prv:P1036 ;\n\twikibase:novalue wdno:P1036 ;\n\twikibase:directClaimNormalized wdtn:P1036 ;\n\twikibase:statementValueNormalized psn:P1036 ;\n\twikibase:qualifierValueNormalized pqn:P1036 ;\n\twikibase:referenceValueNormalized prn:P1036 .\n\np:P1036 a owl:ObjectProperty .\n\npsv:P1036 a owl:ObjectProperty .\n\npqv:P1036 a owl:ObjectProperty .\n\nprv:P1036 a owl:ObjectProperty .\n\nwdt:P1036 a owl:DatatypeProperty .\n\nps:P1036 a owl:DatatypeProperty .\n\npq:P1036 a owl:DatatypeProperty .\n\npr:P1036 a owl:DatatypeProperty .\n\npsn:P1036 a owl:ObjectProperty .\n\npqn:P1036 a owl:ObjectProperty .\n\nprn:P1036 a owl:ObjectProperty .\n\nwdtn:P1036 a owl:ObjectProperty .\n\nwdno:P1036 a owl:Class ;\n\towl:complementOf _:2fb5c2af36e460068b89a8ca39c8bbcd .\n\n_:2fb5c2af36e460068b89a8ca39c8bbcd a owl:Restriction ;\n\towl:onProperty wdt:P1036 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P244 a wikibase:Property ;\n\trdfs:label \"LCAuth-Kennung\"@de ;\n\tskos:prefLabel \"LCAuth-Kennung\"@de ;\n\tschema:name \"LCAuth-Kennung\"@de ;\n\trdfs:label \"Library of Congress authority ID\"@en ;\n\tskos:prefLabel \"Library of Congress authority ID\"@en ;\n\tschema:name \"Library of Congress authority ID\"@en ;\n\tschema:description \"Identifikator eines Normdatensatzes in der Library of Congress (für einzelne Bücher siehe P1144). Zwischen den Buchstabe(n) und den folgenden Zahlen keine Leerstelle!\"@de,\n\t\t\"Library of Congress name authority (persons, families, corporate bodies, events, places, works and expressions) and subject authority identifier [Format: 1-2 specific letters followed by 8-10 digits (see regex). For manifestations, use P1144]\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P244 ;\n\twikibase:claim p:P244 ;\n\twikibase:statementProperty ps:P244 ;\n\twikibase:statementValue psv:P244 ;\n\twikibase:qualifier pq:P244 ;\n\twikibase:qualifierValue pqv:P244 ;\n\twikibase:reference pr:P244 ;\n\twikibase:referenceValue prv:P244 ;\n\twikibase:novalue wdno:P244 ;\n\twikibase:directClaimNormalized wdtn:P244 ;\n\twikibase:statementValueNormalized psn:P244 ;\n\twikibase:qualifierValueNormalized pqn:P244 ;\n\twikibase:referenceValueNormalized prn:P244 .\n\np:P244 a owl:ObjectProperty .\n\npsv:P244 a owl:ObjectProperty .\n\npqv:P244 a owl:ObjectProperty .\n\nprv:P244 a owl:ObjectProperty .\n\nwdt:P244 a owl:DatatypeProperty .\n\nps:P244 a owl:DatatypeProperty .\n\npq:P244 a owl:DatatypeProperty .\n\npr:P244 a owl:DatatypeProperty .\n\npsn:P244 a owl:ObjectProperty .\n\npqn:P244 a owl:ObjectProperty .\n\nprn:P244 a owl:ObjectProperty .\n\nwdtn:P244 a owl:ObjectProperty .\n\nwdno:P244 a owl:Class ;\n\towl:complementOf _:590c65ffccb1a1851cc444e4370c7714 .\n\n_:590c65ffccb1a1851cc444e4370c7714 a owl:Restriction ;\n\towl:onProperty wdt:P244 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P268 a wikibase:Property ;\n\trdfs:label \"BnF-Kennung\"@de ;\n\tskos:prefLabel \"BnF-Kennung\"@de ;\n\tschema:name \"BnF-Kennung\"@de ;\n\trdfs:label \"Bibliothèque nationale de France ID\"@en ;\n\tskos:prefLabel \"Bibliothèque nationale de France ID\"@en ;\n\tschema:name \"Bibliothèque nationale de France ID\"@en ;\n\tschema:description \"Identifikator eines Normdateneintrags in der französischen Nationalbibliothek: 8 Zahlen + 1 Prüfzeichen (ohne 'cb'), siehe https://w.wiki/Q26\"@de,\n\t\t\"identifier for the subject issued by BNF (Bibliothèque nationale de France). Format: 8 digits followed by a check-digit or letter, do not include the initial 'cb'.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P268 ;\n\twikibase:claim p:P268 ;\n\twikibase:statementProperty ps:P268 ;\n\twikibase:statementValue psv:P268 ;\n\twikibase:qualifier pq:P268 ;\n\twikibase:qualifierValue pqv:P268 ;\n\twikibase:reference pr:P268 ;\n\twikibase:referenceValue prv:P268 ;\n\twikibase:novalue wdno:P268 ;\n\twikibase:directClaimNormalized wdtn:P268 ;\n\twikibase:statementValueNormalized psn:P268 ;\n\twikibase:qualifierValueNormalized pqn:P268 ;\n\twikibase:referenceValueNormalized prn:P268 .\n\np:P268 a owl:ObjectProperty .\n\npsv:P268 a owl:ObjectProperty .\n\npqv:P268 a owl:ObjectProperty .\n\nprv:P268 a owl:ObjectProperty .\n\nwdt:P268 a owl:DatatypeProperty .\n\nps:P268 a owl:DatatypeProperty .\n\npq:P268 a owl:DatatypeProperty .\n\npr:P268 a owl:DatatypeProperty .\n\npsn:P268 a owl:ObjectProperty .\n\npqn:P268 a owl:ObjectProperty .\n\nprn:P268 a owl:ObjectProperty .\n\nwdtn:P268 a owl:ObjectProperty .\n\nwdno:P268 a owl:Class ;\n\towl:complementOf _:d3120d2b47ac0e3950d9219515d435cc .\n\n_:d3120d2b47ac0e3950d9219515d435cc a owl:Restriction ;\n\towl:onProperty wdt:P268 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1149 a wikibase:Property ;\n\trdfs:label \"LoC-Klassifikation\"@de ;\n\tskos:prefLabel \"LoC-Klassifikation\"@de ;\n\tschema:name \"LoC-Klassifikation\"@de ;\n\trdfs:label \"Library of Congress Classification\"@en ;\n\tskos:prefLabel \"Library of Congress Classification\"@en ;\n\tschema:name \"Library of Congress Classification\"@en ;\n\tschema:description \"Klassifikation der Library of Congress für die inhaltliche Erschließung\"@de,\n\t\t\"subject classification number used in the Library of Congress Classification system; does not include the shelflisting portion assigned to individual publications\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1149 ;\n\twikibase:claim p:P1149 ;\n\twikibase:statementProperty ps:P1149 ;\n\twikibase:statementValue psv:P1149 ;\n\twikibase:qualifier pq:P1149 ;\n\twikibase:qualifierValue pqv:P1149 ;\n\twikibase:reference pr:P1149 ;\n\twikibase:referenceValue prv:P1149 ;\n\twikibase:novalue wdno:P1149 ;\n\twikibase:directClaimNormalized wdtn:P1149 ;\n\twikibase:statementValueNormalized psn:P1149 ;\n\twikibase:qualifierValueNormalized pqn:P1149 ;\n\twikibase:referenceValueNormalized prn:P1149 .\n\np:P1149 a owl:ObjectProperty .\n\npsv:P1149 a owl:ObjectProperty .\n\npqv:P1149 a owl:ObjectProperty .\n\nprv:P1149 a owl:ObjectProperty .\n\nwdt:P1149 a owl:DatatypeProperty .\n\nps:P1149 a owl:DatatypeProperty .\n\npq:P1149 a owl:DatatypeProperty .\n\npr:P1149 a owl:DatatypeProperty .\n\npsn:P1149 a owl:ObjectProperty .\n\npqn:P1149 a owl:ObjectProperty .\n\nprn:P1149 a owl:ObjectProperty .\n\nwdtn:P1149 a owl:ObjectProperty .\n\nwdno:P1149 a owl:Class ;\n\towl:complementOf _:4cbe5124d45d6d2ed4d007e2a6f22828 .\n\n_:4cbe5124d45d6d2ed4d007e2a6f22828 a owl:Restriction ;\n\towl:onProperty wdt:P1149 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5945 a wikibase:Property ;\n\trdfs:label \"VicFlora-ID\"@de ;\n\tskos:prefLabel \"VicFlora-ID\"@de ;\n\tschema:name \"VicFlora-ID\"@de ;\n\trdfs:label \"VicFlora ID\"@en ;\n\tskos:prefLabel \"VicFlora ID\"@en ;\n\tschema:name \"VicFlora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'Flora of Victoria' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5945 ;\n\twikibase:claim p:P5945 ;\n\twikibase:statementProperty ps:P5945 ;\n\twikibase:statementValue psv:P5945 ;\n\twikibase:qualifier pq:P5945 ;\n\twikibase:qualifierValue pqv:P5945 ;\n\twikibase:reference pr:P5945 ;\n\twikibase:referenceValue prv:P5945 ;\n\twikibase:novalue wdno:P5945 ;\n\twikibase:directClaimNormalized wdtn:P5945 ;\n\twikibase:statementValueNormalized psn:P5945 ;\n\twikibase:qualifierValueNormalized pqn:P5945 ;\n\twikibase:referenceValueNormalized prn:P5945 .\n\np:P5945 a owl:ObjectProperty .\n\npsv:P5945 a owl:ObjectProperty .\n\npqv:P5945 a owl:ObjectProperty .\n\nprv:P5945 a owl:ObjectProperty .\n\nwdt:P5945 a owl:DatatypeProperty .\n\nps:P5945 a owl:DatatypeProperty .\n\npq:P5945 a owl:DatatypeProperty .\n\npr:P5945 a owl:DatatypeProperty .\n\npsn:P5945 a owl:ObjectProperty .\n\npqn:P5945 a owl:ObjectProperty .\n\nprn:P5945 a owl:ObjectProperty .\n\nwdtn:P5945 a owl:ObjectProperty .\n\nwdno:P5945 a owl:Class ;\n\towl:complementOf _:2746352d5347bafe24877cad3ed0d012 .\n\n_:2746352d5347bafe24877cad3ed0d012 a owl:Restriction ;\n\towl:onProperty wdt:P5945 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5984 a wikibase:Property ;\n\trdfs:label \"APNI-ID\"@de ;\n\tskos:prefLabel \"APNI-ID\"@de ;\n\tschema:name \"APNI-ID\"@de ;\n\trdfs:label \"APNI ID\"@en ;\n\tskos:prefLabel \"APNI ID\"@en ;\n\tschema:name \"APNI ID\"@en ;\n\tschema:description \"identifier for a plant, in the Australian Plant Name index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5984 ;\n\twikibase:claim p:P5984 ;\n\twikibase:statementProperty ps:P5984 ;\n\twikibase:statementValue psv:P5984 ;\n\twikibase:qualifier pq:P5984 ;\n\twikibase:qualifierValue pqv:P5984 ;\n\twikibase:reference pr:P5984 ;\n\twikibase:referenceValue prv:P5984 ;\n\twikibase:novalue wdno:P5984 ;\n\twikibase:directClaimNormalized wdtn:P5984 ;\n\twikibase:statementValueNormalized psn:P5984 ;\n\twikibase:qualifierValueNormalized pqn:P5984 ;\n\twikibase:referenceValueNormalized prn:P5984 .\n\np:P5984 a owl:ObjectProperty .\n\npsv:P5984 a owl:ObjectProperty .\n\npqv:P5984 a owl:ObjectProperty .\n\nprv:P5984 a owl:ObjectProperty .\n\nwdt:P5984 a owl:DatatypeProperty .\n\nps:P5984 a owl:DatatypeProperty .\n\npq:P5984 a owl:DatatypeProperty .\n\npr:P5984 a owl:DatatypeProperty .\n\npsn:P5984 a owl:ObjectProperty .\n\npqn:P5984 a owl:ObjectProperty .\n\nprn:P5984 a owl:ObjectProperty .\n\nwdtn:P5984 a owl:ObjectProperty .\n\nwdno:P5984 a owl:Class ;\n\towl:complementOf _:23d63bd73b8ff95adea3e7abdac0ecb1 .\n\n_:23d63bd73b8ff95adea3e7abdac0ecb1 a owl:Restriction ;\n\towl:onProperty wdt:P5984 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6094 a wikibase:Property ;\n\trdfs:label \"FloraWeb-ID\"@de ;\n\tskos:prefLabel \"FloraWeb-ID\"@de ;\n\tschema:name \"FloraWeb-ID\"@de ;\n\trdfs:label \"FloraWeb ID\"@en ;\n\tskos:prefLabel \"FloraWeb ID\"@en ;\n\tschema:name \"FloraWeb ID\"@en ;\n\tschema:description \"Identifikator der entsprechenden biologischen Art (Spezies) auf der Webseite „FloraWeb.de“\"@de,\n\t\t\"identifier for a species on the FloraWeb website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6094 ;\n\twikibase:claim p:P6094 ;\n\twikibase:statementProperty ps:P6094 ;\n\twikibase:statementValue psv:P6094 ;\n\twikibase:qualifier pq:P6094 ;\n\twikibase:qualifierValue pqv:P6094 ;\n\twikibase:reference pr:P6094 ;\n\twikibase:referenceValue prv:P6094 ;\n\twikibase:novalue wdno:P6094 ;\n\twikibase:directClaimNormalized wdtn:P6094 ;\n\twikibase:statementValueNormalized psn:P6094 ;\n\twikibase:qualifierValueNormalized pqn:P6094 ;\n\twikibase:referenceValueNormalized prn:P6094 .\n\np:P6094 a owl:ObjectProperty .\n\npsv:P6094 a owl:ObjectProperty .\n\npqv:P6094 a owl:ObjectProperty .\n\nprv:P6094 a owl:ObjectProperty .\n\nwdt:P6094 a owl:DatatypeProperty .\n\nps:P6094 a owl:DatatypeProperty .\n\npq:P6094 a owl:DatatypeProperty .\n\npr:P6094 a owl:DatatypeProperty .\n\npsn:P6094 a owl:ObjectProperty .\n\npqn:P6094 a owl:ObjectProperty .\n\nprn:P6094 a owl:ObjectProperty .\n\nwdtn:P6094 a owl:ObjectProperty .\n\nwdno:P6094 a owl:Class ;\n\towl:complementOf _:c82dc9f9cbcd4bb28f6a7b4db2052e7b .\n\n_:c82dc9f9cbcd4bb28f6a7b4db2052e7b a owl:Restriction ;\n\towl:onProperty wdt:P6094 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6034 a wikibase:Property ;\n\trdfs:label \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tskos:prefLabel \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tschema:name \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tschema:description \"identifier for a taxon in Plant Finder, on the Missouri Botanical Garden website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6034 ;\n\twikibase:claim p:P6034 ;\n\twikibase:statementProperty ps:P6034 ;\n\twikibase:statementValue psv:P6034 ;\n\twikibase:qualifier pq:P6034 ;\n\twikibase:qualifierValue pqv:P6034 ;\n\twikibase:reference pr:P6034 ;\n\twikibase:referenceValue prv:P6034 ;\n\twikibase:novalue wdno:P6034 ;\n\twikibase:directClaimNormalized wdtn:P6034 ;\n\twikibase:statementValueNormalized psn:P6034 ;\n\twikibase:qualifierValueNormalized pqn:P6034 ;\n\twikibase:referenceValueNormalized prn:P6034 .\n\np:P6034 a owl:ObjectProperty .\n\npsv:P6034 a owl:ObjectProperty .\n\npqv:P6034 a owl:ObjectProperty .\n\nprv:P6034 a owl:ObjectProperty .\n\nwdt:P6034 a owl:DatatypeProperty .\n\nps:P6034 a owl:DatatypeProperty .\n\npq:P6034 a owl:DatatypeProperty .\n\npr:P6034 a owl:DatatypeProperty .\n\npsn:P6034 a owl:ObjectProperty .\n\npqn:P6034 a owl:ObjectProperty .\n\nprn:P6034 a owl:ObjectProperty .\n\nwdtn:P6034 a owl:ObjectProperty .\n\nwdno:P6034 a owl:Class ;\n\towl:complementOf _:56b6ffb90e364d74324a1e490fb1c26b .\n\n_:56b6ffb90e364d74324a1e490fb1c26b a owl:Restriction ;\n\towl:onProperty wdt:P6034 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6177 a wikibase:Property ;\n\trdfs:label \"EUNIS-Taxon-ID\"@de ;\n\tskos:prefLabel \"EUNIS-Taxon-ID\"@de ;\n\tschema:name \"EUNIS-Taxon-ID\"@de ;\n\trdfs:label \"EUNIS ID for species\"@en ;\n\tskos:prefLabel \"EUNIS ID for species\"@en ;\n\tschema:name \"EUNIS ID for species\"@en ;\n\tschema:description \"Identifikator für Arten auf der Webseite des EUNIS Systems\"@de,\n\t\t\"identifier for a species on the European Nature Information System website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6177 ;\n\twikibase:claim p:P6177 ;\n\twikibase:statementProperty ps:P6177 ;\n\twikibase:statementValue psv:P6177 ;\n\twikibase:qualifier pq:P6177 ;\n\twikibase:qualifierValue pqv:P6177 ;\n\twikibase:reference pr:P6177 ;\n\twikibase:referenceValue prv:P6177 ;\n\twikibase:novalue wdno:P6177 ;\n\twikibase:directClaimNormalized wdtn:P6177 ;\n\twikibase:statementValueNormalized psn:P6177 ;\n\twikibase:qualifierValueNormalized pqn:P6177 ;\n\twikibase:referenceValueNormalized prn:P6177 .\n\np:P6177 a owl:ObjectProperty .\n\npsv:P6177 a owl:ObjectProperty .\n\npqv:P6177 a owl:ObjectProperty .\n\nprv:P6177 a owl:ObjectProperty .\n\nwdt:P6177 a owl:DatatypeProperty .\n\nps:P6177 a owl:DatatypeProperty .\n\npq:P6177 a owl:DatatypeProperty .\n\npr:P6177 a owl:DatatypeProperty .\n\npsn:P6177 a owl:ObjectProperty .\n\npqn:P6177 a owl:ObjectProperty .\n\nprn:P6177 a owl:ObjectProperty .\n\nwdtn:P6177 a owl:ObjectProperty .\n\nwdno:P6177 a owl:Class ;\n\towl:complementOf _:12782bbe5385c862570457fbd0b8859b .\n\n_:12782bbe5385c862570457fbd0b8859b a owl:Restriction ;\n\towl:onProperty wdt:P6177 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6161 a wikibase:Property ;\n\trdfs:label \"Invasive Plant Atlas of the United States ID\"@en ;\n\tskos:prefLabel \"Invasive Plant Atlas of the United States ID\"@en ;\n\tschema:name \"Invasive Plant Atlas of the United States ID\"@en ;\n\tschema:description \"identifier for a species on the Invasive Plant Atlas of the United States website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6161 ;\n\twikibase:claim p:P6161 ;\n\twikibase:statementProperty ps:P6161 ;\n\twikibase:statementValue psv:P6161 ;\n\twikibase:qualifier pq:P6161 ;\n\twikibase:qualifierValue pqv:P6161 ;\n\twikibase:reference pr:P6161 ;\n\twikibase:referenceValue prv:P6161 ;\n\twikibase:novalue wdno:P6161 ;\n\twikibase:directClaimNormalized wdtn:P6161 ;\n\twikibase:statementValueNormalized psn:P6161 ;\n\twikibase:qualifierValueNormalized pqn:P6161 ;\n\twikibase:referenceValueNormalized prn:P6161 .\n\np:P6161 a owl:ObjectProperty .\n\npsv:P6161 a owl:ObjectProperty .\n\npqv:P6161 a owl:ObjectProperty .\n\nprv:P6161 a owl:ObjectProperty .\n\nwdt:P6161 a owl:DatatypeProperty .\n\nps:P6161 a owl:DatatypeProperty .\n\npq:P6161 a owl:DatatypeProperty .\n\npr:P6161 a owl:DatatypeProperty .\n\npsn:P6161 a owl:ObjectProperty .\n\npqn:P6161 a owl:ObjectProperty .\n\nprn:P6161 a owl:ObjectProperty .\n\nwdtn:P6161 a owl:ObjectProperty .\n\nwdno:P6161 a owl:Class ;\n\towl:complementOf _:8761d32ade8ee192c35887bd8ff88f7e .\n\n_:8761d32ade8ee192c35887bd8ff88f7e a owl:Restriction ;\n\towl:onProperty wdt:P6161 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6341 a wikibase:Property ;\n\trdfs:label \"IFPNI-ID\"@de ;\n\tskos:prefLabel \"IFPNI-ID\"@de ;\n\tschema:name \"IFPNI-ID\"@de ;\n\trdfs:label \"IFPNI species ID\"@en ;\n\tskos:prefLabel \"IFPNI species ID\"@en ;\n\tschema:name \"IFPNI species ID\"@en ;\n\tschema:description \"identifier for a species at the International Fossil Plant Names Index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6341 ;\n\twikibase:claim p:P6341 ;\n\twikibase:statementProperty ps:P6341 ;\n\twikibase:statementValue psv:P6341 ;\n\twikibase:qualifier pq:P6341 ;\n\twikibase:qualifierValue pqv:P6341 ;\n\twikibase:reference pr:P6341 ;\n\twikibase:referenceValue prv:P6341 ;\n\twikibase:novalue wdno:P6341 ;\n\twikibase:directClaimNormalized wdtn:P6341 ;\n\twikibase:statementValueNormalized psn:P6341 ;\n\twikibase:qualifierValueNormalized pqn:P6341 ;\n\twikibase:referenceValueNormalized prn:P6341 .\n\np:P6341 a owl:ObjectProperty .\n\npsv:P6341 a owl:ObjectProperty .\n\npqv:P6341 a owl:ObjectProperty .\n\nprv:P6341 a owl:ObjectProperty .\n\nwdt:P6341 a owl:DatatypeProperty .\n\nps:P6341 a owl:DatatypeProperty .\n\npq:P6341 a owl:DatatypeProperty .\n\npr:P6341 a owl:DatatypeProperty .\n\npsn:P6341 a owl:ObjectProperty .\n\npqn:P6341 a owl:ObjectProperty .\n\nprn:P6341 a owl:ObjectProperty .\n\nwdtn:P6341 a owl:ObjectProperty .\n\nwdno:P6341 a owl:Class ;\n\towl:complementOf _:9b1847530e974ea35db150609413e96c .\n\n_:9b1847530e974ea35db150609413e96c a owl:Restriction ;\n\towl:onProperty wdt:P6341 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3914781 a wikibase:Item ;\n\trdfs:label \"Eichel\"@de ;\n\tskos:prefLabel \"Eichel\"@de ;\n\tschema:name \"Eichel\"@de ;\n\trdfs:label \"acorn\"@en ;\n\tskos:prefLabel \"acorn\"@en ;\n\tschema:name \"acorn\"@en ;\n\tschema:description \"Frucht der Eiche\"@de,\n\t\t\"fruit/nut of the oak tree\"@en .\n\nwd:P1672 a wikibase:Property ;\n\trdfs:label \"Ursprung von\"@de ;\n\tskos:prefLabel \"Ursprung von\"@de ;\n\tschema:name \"Ursprung von\"@de ;\n\trdfs:label \"this taxon is source of\"@en ;\n\tskos:prefLabel \"this taxon is source of\"@en ;\n\tschema:name \"this taxon is source of\"@en ;\n\tschema:description \"ein Naturprodukt wird durch Verarbeitung zu\"@de,\n\t\t\"links a taxon to natural products it produces. Note that it does not say \\\"this taxon is the source of\\\" or \\\"this taxon is a source of\\\" as this may vary. Some products may be yielded by more than one taxon.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1672 ;\n\twikibase:claim p:P1672 ;\n\twikibase:statementProperty ps:P1672 ;\n\twikibase:statementValue psv:P1672 ;\n\twikibase:qualifier pq:P1672 ;\n\twikibase:qualifierValue pqv:P1672 ;\n\twikibase:reference pr:P1672 ;\n\twikibase:referenceValue prv:P1672 ;\n\twikibase:novalue wdno:P1672 .\n\np:P1672 a owl:ObjectProperty .\n\npsv:P1672 a owl:ObjectProperty .\n\npqv:P1672 a owl:ObjectProperty .\n\nprv:P1672 a owl:ObjectProperty .\n\nwdt:P1672 a owl:ObjectProperty .\n\nps:P1672 a owl:ObjectProperty .\n\npq:P1672 a owl:ObjectProperty .\n\npr:P1672 a owl:ObjectProperty .\n\nwdno:P1672 a owl:Class ;\n\towl:complementOf _:3e72da6d1f4375bcd65f48901e370109 .\n\n_:3e72da6d1f4375bcd65f48901e370109 a owl:Restriction ;\n\towl:onProperty wdt:P1672 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q55748156 a wikibase:Item ;\n\trdfs:label \"oakwood from Quercus robur\"@en ;\n\tskos:prefLabel \"oakwood from Quercus robur\"@en ;\n\tschema:name \"oakwood from Quercus robur\"@en .\n\nwd:P6864 a wikibase:Property ;\n\trdfs:label \"eElurikkus-ID\"@de ;\n\tskos:prefLabel \"eElurikkus-ID\"@de ;\n\tschema:name \"eElurikkus-ID\"@de ;\n\trdfs:label \"eBiodiversity ID\"@en ;\n\tskos:prefLabel \"eBiodiversity ID\"@en ;\n\tschema:name \"eBiodiversity ID\"@en ;\n\tschema:description \"identifier for a taxon in the Estonian eBiodiversity portal\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6864 ;\n\twikibase:claim p:P6864 ;\n\twikibase:statementProperty ps:P6864 ;\n\twikibase:statementValue psv:P6864 ;\n\twikibase:qualifier pq:P6864 ;\n\twikibase:qualifierValue pqv:P6864 ;\n\twikibase:reference pr:P6864 ;\n\twikibase:referenceValue prv:P6864 ;\n\twikibase:novalue wdno:P6864 ;\n\twikibase:directClaimNormalized wdtn:P6864 ;\n\twikibase:statementValueNormalized psn:P6864 ;\n\twikibase:qualifierValueNormalized pqn:P6864 ;\n\twikibase:referenceValueNormalized prn:P6864 .\n\np:P6864 a owl:ObjectProperty .\n\npsv:P6864 a owl:ObjectProperty .\n\npqv:P6864 a owl:ObjectProperty .\n\nprv:P6864 a owl:ObjectProperty .\n\nwdt:P6864 a owl:DatatypeProperty .\n\nps:P6864 a owl:DatatypeProperty .\n\npq:P6864 a owl:DatatypeProperty .\n\npr:P6864 a owl:DatatypeProperty .\n\npsn:P6864 a owl:ObjectProperty .\n\npqn:P6864 a owl:ObjectProperty .\n\nprn:P6864 a owl:ObjectProperty .\n\nwdtn:P6864 a owl:ObjectProperty .\n\nwdno:P6864 a owl:Class ;\n\towl:complementOf _:28508e8c66a417bfe289622af2dc55f0 .\n\n_:28508e8c66a417bfe289622af2dc55f0 a owl:Restriction ;\n\towl:onProperty wdt:P6864 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6933 a wikibase:Property ;\n\trdfs:label \"SA-Flora-ID\"@de ;\n\tskos:prefLabel \"SA-Flora-ID\"@de ;\n\tschema:name \"SA-Flora-ID\"@de ;\n\trdfs:label \"SA Flora ID\"@en ;\n\tskos:prefLabel \"SA Flora ID\"@en ;\n\tschema:name \"SA Flora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'South Australian electronic Flora' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6933 ;\n\twikibase:claim p:P6933 ;\n\twikibase:statementProperty ps:P6933 ;\n\twikibase:statementValue psv:P6933 ;\n\twikibase:qualifier pq:P6933 ;\n\twikibase:qualifierValue pqv:P6933 ;\n\twikibase:reference pr:P6933 ;\n\twikibase:referenceValue prv:P6933 ;\n\twikibase:novalue wdno:P6933 ;\n\twikibase:directClaimNormalized wdtn:P6933 ;\n\twikibase:statementValueNormalized psn:P6933 ;\n\twikibase:qualifierValueNormalized pqn:P6933 ;\n\twikibase:referenceValueNormalized prn:P6933 .\n\np:P6933 a owl:ObjectProperty .\n\npsv:P6933 a owl:ObjectProperty .\n\npqv:P6933 a owl:ObjectProperty .\n\nprv:P6933 a owl:ObjectProperty .\n\nwdt:P6933 a owl:DatatypeProperty .\n\nps:P6933 a owl:DatatypeProperty .\n\npq:P6933 a owl:DatatypeProperty .\n\npr:P6933 a owl:DatatypeProperty .\n\npsn:P6933 a owl:ObjectProperty .\n\npqn:P6933 a owl:ObjectProperty .\n\nprn:P6933 a owl:ObjectProperty .\n\nwdtn:P6933 a owl:ObjectProperty .\n\nwdno:P6933 a owl:Class ;\n\towl:complementOf _:9aedc50c21286aab9afe201a2a4e9eac .\n\n_:9aedc50c21286aab9afe201a2a4e9eac a owl:Restriction ;\n\towl:onProperty wdt:P6933 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6142 a wikibase:Property ;\n\trdfs:label \"Verspreidingsatlas.nl ID\"@en ;\n\tskos:prefLabel \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:name \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:description \"identifier for a species on the verspreidingsatlas.nl website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6142 ;\n\twikibase:claim p:P6142 ;\n\twikibase:statementProperty ps:P6142 ;\n\twikibase:statementValue psv:P6142 ;\n\twikibase:qualifier pq:P6142 ;\n\twikibase:qualifierValue pqv:P6142 ;\n\twikibase:reference pr:P6142 ;\n\twikibase:referenceValue prv:P6142 ;\n\twikibase:novalue wdno:P6142 ;\n\twikibase:directClaimNormalized wdtn:P6142 ;\n\twikibase:statementValueNormalized psn:P6142 ;\n\twikibase:qualifierValueNormalized pqn:P6142 ;\n\twikibase:referenceValueNormalized prn:P6142 .\n\np:P6142 a owl:ObjectProperty .\n\npsv:P6142 a owl:ObjectProperty .\n\npqv:P6142 a owl:ObjectProperty .\n\nprv:P6142 a owl:ObjectProperty .\n\nwdt:P6142 a owl:DatatypeProperty .\n\nps:P6142 a owl:DatatypeProperty .\n\npq:P6142 a owl:DatatypeProperty .\n\npr:P6142 a owl:DatatypeProperty .\n\npsn:P6142 a owl:ObjectProperty .\n\npqn:P6142 a owl:ObjectProperty .\n\nprn:P6142 a owl:ObjectProperty .\n\nwdtn:P6142 a owl:ObjectProperty .\n\nwdno:P6142 a owl:Class ;\n\towl:complementOf _:832a4ae34d94bc7d68c4074f1a6f4896 .\n\n_:832a4ae34d94bc7d68c4074f1a6f4896 a owl:Restriction ;\n\towl:onProperty wdt:P6142 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7202 a wikibase:Property ;\n\trdfs:label \"Belgian-Species-List-ID\"@de ;\n\tskos:prefLabel \"Belgian-Species-List-ID\"@de ;\n\tschema:name \"Belgian-Species-List-ID\"@de ;\n\trdfs:label \"Belgian Species List ID\"@en ;\n\tskos:prefLabel \"Belgian Species List ID\"@en ;\n\tschema:name \"Belgian Species List ID\"@en ;\n\tschema:description \"identifier for a taxon in the Belgian Species List\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7202 ;\n\twikibase:claim p:P7202 ;\n\twikibase:statementProperty ps:P7202 ;\n\twikibase:statementValue psv:P7202 ;\n\twikibase:qualifier pq:P7202 ;\n\twikibase:qualifierValue pqv:P7202 ;\n\twikibase:reference pr:P7202 ;\n\twikibase:referenceValue prv:P7202 ;\n\twikibase:novalue wdno:P7202 ;\n\twikibase:directClaimNormalized wdtn:P7202 ;\n\twikibase:statementValueNormalized psn:P7202 ;\n\twikibase:qualifierValueNormalized pqn:P7202 ;\n\twikibase:referenceValueNormalized prn:P7202 .\n\np:P7202 a owl:ObjectProperty .\n\npsv:P7202 a owl:ObjectProperty .\n\npqv:P7202 a owl:ObjectProperty .\n\nprv:P7202 a owl:ObjectProperty .\n\nwdt:P7202 a owl:DatatypeProperty .\n\nps:P7202 a owl:DatatypeProperty .\n\npq:P7202 a owl:DatatypeProperty .\n\npr:P7202 a owl:DatatypeProperty .\n\npsn:P7202 a owl:ObjectProperty .\n\npqn:P7202 a owl:ObjectProperty .\n\nprn:P7202 a owl:ObjectProperty .\n\nwdtn:P7202 a owl:ObjectProperty .\n\nwdno:P7202 a owl:Class ;\n\towl:complementOf _:a08267a1e4cce76217317ed94826cc29 .\n\n_:a08267a1e4cce76217317ed94826cc29 a owl:Restriction ;\n\towl:onProperty wdt:P7202 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7496 a wikibase:Property ;\n\trdfs:label \"NZPCN-ID\"@de ;\n\tskos:prefLabel \"NZPCN-ID\"@de ;\n\tschema:name \"NZPCN-ID\"@de ;\n\trdfs:label \"NZPCN ID\"@en ;\n\tskos:prefLabel \"NZPCN ID\"@en ;\n\tschema:name \"NZPCN ID\"@en ;\n\tschema:description \"ID of a plant taxon held by the New Zealand Plant Conservation Network\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7496 ;\n\twikibase:claim p:P7496 ;\n\twikibase:statementProperty ps:P7496 ;\n\twikibase:statementValue psv:P7496 ;\n\twikibase:qualifier pq:P7496 ;\n\twikibase:qualifierValue pqv:P7496 ;\n\twikibase:reference pr:P7496 ;\n\twikibase:referenceValue prv:P7496 ;\n\twikibase:novalue wdno:P7496 ;\n\twikibase:directClaimNormalized wdtn:P7496 ;\n\twikibase:statementValueNormalized psn:P7496 ;\n\twikibase:qualifierValueNormalized pqn:P7496 ;\n\twikibase:referenceValueNormalized prn:P7496 .\n\np:P7496 a owl:ObjectProperty .\n\npsv:P7496 a owl:ObjectProperty .\n\npqv:P7496 a owl:ObjectProperty .\n\nprv:P7496 a owl:ObjectProperty .\n\nwdt:P7496 a owl:DatatypeProperty .\n\nps:P7496 a owl:DatatypeProperty .\n\npq:P7496 a owl:DatatypeProperty .\n\npr:P7496 a owl:DatatypeProperty .\n\npsn:P7496 a owl:ObjectProperty .\n\npqn:P7496 a owl:ObjectProperty .\n\nprn:P7496 a owl:ObjectProperty .\n\nwdtn:P7496 a owl:ObjectProperty .\n\nwdno:P7496 a owl:Class ;\n\towl:complementOf _:c915731133ce4872d3822cbca92d66a3 .\n\n_:c915731133ce4872d3822cbca92d66a3 a owl:Restriction ;\n\towl:onProperty wdt:P7496 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7546 a wikibase:Property ;\n\trdfs:label \"Flowers of India ID\"@en ;\n\tskos:prefLabel \"Flowers of India ID\"@en ;\n\tschema:name \"Flowers of India ID\"@en ;\n\tschema:description \"identifier for plant taxons\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7546 ;\n\twikibase:claim p:P7546 ;\n\twikibase:statementProperty ps:P7546 ;\n\twikibase:statementValue psv:P7546 ;\n\twikibase:qualifier pq:P7546 ;\n\twikibase:qualifierValue pqv:P7546 ;\n\twikibase:reference pr:P7546 ;\n\twikibase:referenceValue prv:P7546 ;\n\twikibase:novalue wdno:P7546 ;\n\twikibase:directClaimNormalized wdtn:P7546 ;\n\twikibase:statementValueNormalized psn:P7546 ;\n\twikibase:qualifierValueNormalized pqn:P7546 ;\n\twikibase:referenceValueNormalized prn:P7546 .\n\np:P7546 a owl:ObjectProperty .\n\npsv:P7546 a owl:ObjectProperty .\n\npqv:P7546 a owl:ObjectProperty .\n\nprv:P7546 a owl:ObjectProperty .\n\nwdt:P7546 a owl:DatatypeProperty .\n\nps:P7546 a owl:DatatypeProperty .\n\npq:P7546 a owl:DatatypeProperty .\n\npr:P7546 a owl:DatatypeProperty .\n\npsn:P7546 a owl:ObjectProperty .\n\npqn:P7546 a owl:ObjectProperty .\n\nprn:P7546 a owl:ObjectProperty .\n\nwdtn:P7546 a owl:ObjectProperty .\n\nwdno:P7546 a owl:Class ;\n\towl:complementOf _:f66c54497a687752882b3e23a67dbc9e .\n\n_:f66c54497a687752882b3e23a67dbc9e a owl:Restriction ;\n\towl:onProperty wdt:P7546 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7552 a wikibase:Property ;\n\trdfs:label \"FinBIF-ID\"@de ;\n\tskos:prefLabel \"FinBIF-ID\"@de ;\n\tschema:name \"FinBIF-ID\"@de ;\n\trdfs:label \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tschema:name \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tschema:description \"identifier for species found in Finland maintained by the Finnish Biodiversity Information Facility\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7552 ;\n\twikibase:claim p:P7552 ;\n\twikibase:statementProperty ps:P7552 ;\n\twikibase:statementValue psv:P7552 ;\n\twikibase:qualifier pq:P7552 ;\n\twikibase:qualifierValue pqv:P7552 ;\n\twikibase:reference pr:P7552 ;\n\twikibase:referenceValue prv:P7552 ;\n\twikibase:novalue wdno:P7552 ;\n\twikibase:directClaimNormalized wdtn:P7552 ;\n\twikibase:statementValueNormalized psn:P7552 ;\n\twikibase:qualifierValueNormalized pqn:P7552 ;\n\twikibase:referenceValueNormalized prn:P7552 .\n\np:P7552 a owl:ObjectProperty .\n\npsv:P7552 a owl:ObjectProperty .\n\npqv:P7552 a owl:ObjectProperty .\n\nprv:P7552 a owl:ObjectProperty .\n\nwdt:P7552 a owl:DatatypeProperty .\n\nps:P7552 a owl:DatatypeProperty .\n\npq:P7552 a owl:DatatypeProperty .\n\npr:P7552 a owl:DatatypeProperty .\n\npsn:P7552 a owl:ObjectProperty .\n\npqn:P7552 a owl:ObjectProperty .\n\nprn:P7552 a owl:ObjectProperty .\n\nwdtn:P7552 a owl:ObjectProperty .\n\nwdno:P7552 a owl:Class ;\n\towl:complementOf _:5bd46fc7bb5ad8cf4548112f178243cb .\n\n_:5bd46fc7bb5ad8cf4548112f178243cb a owl:Restriction ;\n\towl:onProperty wdt:P7552 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4214 a wikibase:Property ;\n\trdfs:label \"höchste beobachtete Lebensdauer\"@de ;\n\tskos:prefLabel \"höchste beobachtete Lebensdauer\"@de ;\n\tschema:name \"höchste beobachtete Lebensdauer\"@de ;\n\trdfs:label \"longest observed lifespan\"@en ;\n\tskos:prefLabel \"longest observed lifespan\"@en ;\n\tschema:name \"longest observed lifespan\"@en ;\n\tschema:description \"Alter des ältesten Exemplars eines Taxons, für das das Alter nachgewiesen werden kann\"@de,\n\t\t\"age of the oldest specimen of a taxon for which the age can be verified\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4214 ;\n\twikibase:claim p:P4214 ;\n\twikibase:statementProperty ps:P4214 ;\n\twikibase:statementValue psv:P4214 ;\n\twikibase:qualifier pq:P4214 ;\n\twikibase:qualifierValue pqv:P4214 ;\n\twikibase:reference pr:P4214 ;\n\twikibase:referenceValue prv:P4214 ;\n\twikibase:novalue wdno:P4214 ;\n\twikibase:directClaimNormalized wdtn:P4214 ;\n\twikibase:statementValueNormalized psn:P4214 ;\n\twikibase:qualifierValueNormalized pqn:P4214 ;\n\twikibase:referenceValueNormalized prn:P4214 .\n\np:P4214 a owl:ObjectProperty .\n\npsv:P4214 a owl:ObjectProperty .\n\npqv:P4214 a owl:ObjectProperty .\n\nprv:P4214 a owl:ObjectProperty .\n\nwdt:P4214 a owl:DatatypeProperty .\n\nps:P4214 a owl:DatatypeProperty .\n\npq:P4214 a owl:DatatypeProperty .\n\npr:P4214 a owl:DatatypeProperty .\n\npsn:P4214 a owl:ObjectProperty .\n\npqn:P4214 a owl:ObjectProperty .\n\nprn:P4214 a owl:ObjectProperty .\n\nwdtn:P4214 a owl:DatatypeProperty .\n\nwdno:P4214 a owl:Class ;\n\towl:complementOf _:0d35b212da24d138a8eb2e79ecd32e98 .\n\n_:0d35b212da24d138a8eb2e79ecd32e98 a owl:Restriction ;\n\towl:onProperty wdt:P4214 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6366 a wikibase:Property ;\n\trdfs:label \"Microsoft-Academic-Kennung\"@de ;\n\tskos:prefLabel \"Microsoft-Academic-Kennung\"@de ;\n\tschema:name \"Microsoft-Academic-Kennung\"@de ;\n\trdfs:label \"Microsoft Academic ID (discontinued)\"@en ;\n\tskos:prefLabel \"Microsoft Academic ID (discontinued)\"@en ;\n\tschema:name \"Microsoft Academic ID (discontinued)\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei Microsoft Academic\"@de,\n\t\t\"identifier for an object or topic in the Microsoft Academic Graph (until 31 December 2021)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6366 ;\n\twikibase:claim p:P6366 ;\n\twikibase:statementProperty ps:P6366 ;\n\twikibase:statementValue psv:P6366 ;\n\twikibase:qualifier pq:P6366 ;\n\twikibase:qualifierValue pqv:P6366 ;\n\twikibase:reference pr:P6366 ;\n\twikibase:referenceValue prv:P6366 ;\n\twikibase:novalue wdno:P6366 ;\n\twikibase:directClaimNormalized wdtn:P6366 ;\n\twikibase:statementValueNormalized psn:P6366 ;\n\twikibase:qualifierValueNormalized pqn:P6366 ;\n\twikibase:referenceValueNormalized prn:P6366 .\n\np:P6366 a owl:ObjectProperty .\n\npsv:P6366 a owl:ObjectProperty .\n\npqv:P6366 a owl:ObjectProperty .\n\nprv:P6366 a owl:ObjectProperty .\n\nwdt:P6366 a owl:DatatypeProperty .\n\nps:P6366 a owl:DatatypeProperty .\n\npq:P6366 a owl:DatatypeProperty .\n\npr:P6366 a owl:DatatypeProperty .\n\npsn:P6366 a owl:ObjectProperty .\n\npqn:P6366 a owl:ObjectProperty .\n\nprn:P6366 a owl:ObjectProperty .\n\nwdtn:P6366 a owl:ObjectProperty .\n\nwdno:P6366 a owl:Class ;\n\towl:complementOf _:6f940be26025c3cdbbbed9534272bb72 .\n\n_:6f940be26025c3cdbbbed9534272bb72 a owl:Restriction ;\n\towl:onProperty wdt:P6366 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6105 a wikibase:Property ;\n\trdfs:label \"Observation.org Taxon-ID\"@de ;\n\tskos:prefLabel \"Observation.org Taxon-ID\"@de ;\n\tschema:name \"Observation.org Taxon-ID\"@de ;\n\trdfs:label \"Observation.org taxon ID\"@en ;\n\tskos:prefLabel \"Observation.org taxon ID\"@en ;\n\tschema:name \"Observation.org taxon ID\"@en ;\n\tschema:description \"Taxon-Identifikator auf der Observation.org-Plattform\"@de,\n\t\t\"taxon identifier on the Observation.org platform\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6105 ;\n\twikibase:claim p:P6105 ;\n\twikibase:statementProperty ps:P6105 ;\n\twikibase:statementValue psv:P6105 ;\n\twikibase:qualifier pq:P6105 ;\n\twikibase:qualifierValue pqv:P6105 ;\n\twikibase:reference pr:P6105 ;\n\twikibase:referenceValue prv:P6105 ;\n\twikibase:novalue wdno:P6105 ;\n\twikibase:directClaimNormalized wdtn:P6105 ;\n\twikibase:statementValueNormalized psn:P6105 ;\n\twikibase:qualifierValueNormalized pqn:P6105 ;\n\twikibase:referenceValueNormalized prn:P6105 .\n\np:P6105 a owl:ObjectProperty .\n\npsv:P6105 a owl:ObjectProperty .\n\npqv:P6105 a owl:ObjectProperty .\n\nprv:P6105 a owl:ObjectProperty .\n\nwdt:P6105 a owl:DatatypeProperty .\n\nps:P6105 a owl:DatatypeProperty .\n\npq:P6105 a owl:DatatypeProperty .\n\npr:P6105 a owl:DatatypeProperty .\n\npsn:P6105 a owl:ObjectProperty .\n\npqn:P6105 a owl:ObjectProperty .\n\nprn:P6105 a owl:ObjectProperty .\n\nwdtn:P6105 a owl:ObjectProperty .\n\nwdno:P6105 a owl:Class ;\n\towl:complementOf _:fe2b47346dc9de49efdf3119fd5fbed3 .\n\n_:fe2b47346dc9de49efdf3119fd5fbed3 a owl:Restriction ;\n\towl:onProperty wdt:P6105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2347 a wikibase:Property ;\n\trdfs:label \"YSO-Kennung\"@de ;\n\tskos:prefLabel \"YSO-Kennung\"@de ;\n\tschema:name \"YSO-Kennung\"@de ;\n\trdfs:label \"YSO ID\"@en ;\n\tskos:prefLabel \"YSO ID\"@en ;\n\tschema:name \"YSO ID\"@en ;\n\tschema:description \"Identifikator eines Konzepts in der General Finnisch Ontologie YSO\"@de,\n\t\t\"identifier for a concept in the General Finnish Ontology YSO\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2347 ;\n\twikibase:claim p:P2347 ;\n\twikibase:statementProperty ps:P2347 ;\n\twikibase:statementValue psv:P2347 ;\n\twikibase:qualifier pq:P2347 ;\n\twikibase:qualifierValue pqv:P2347 ;\n\twikibase:reference pr:P2347 ;\n\twikibase:referenceValue prv:P2347 ;\n\twikibase:novalue wdno:P2347 ;\n\twikibase:directClaimNormalized wdtn:P2347 ;\n\twikibase:statementValueNormalized psn:P2347 ;\n\twikibase:qualifierValueNormalized pqn:P2347 ;\n\twikibase:referenceValueNormalized prn:P2347 .\n\np:P2347 a owl:ObjectProperty .\n\npsv:P2347 a owl:ObjectProperty .\n\npqv:P2347 a owl:ObjectProperty .\n\nprv:P2347 a owl:ObjectProperty .\n\nwdt:P2347 a owl:DatatypeProperty .\n\nps:P2347 a owl:DatatypeProperty .\n\npq:P2347 a owl:DatatypeProperty .\n\npr:P2347 a owl:DatatypeProperty .\n\npsn:P2347 a owl:ObjectProperty .\n\npqn:P2347 a owl:ObjectProperty .\n\nprn:P2347 a owl:ObjectProperty .\n\nwdtn:P2347 a owl:ObjectProperty .\n\nwdno:P2347 a owl:Class ;\n\towl:complementOf _:5938edce2b698c44bad94eb14b56af07 .\n\n_:5938edce2b698c44bad94eb14b56af07 a owl:Restriction ;\n\towl:onProperty wdt:P2347 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5019 a wikibase:Property ;\n\trdfs:label \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tskos:prefLabel \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tschema:name \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\trdfs:label \"Brockhaus Enzyklopädie online ID\"@en ;\n\tskos:prefLabel \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:name \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Onlineausgabe der Brockhaus Enzyklopädie\"@de,\n\t\t\"identifier for an article in the online version of Brockhaus Enzyklopädie\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5019 ;\n\twikibase:claim p:P5019 ;\n\twikibase:statementProperty ps:P5019 ;\n\twikibase:statementValue psv:P5019 ;\n\twikibase:qualifier pq:P5019 ;\n\twikibase:qualifierValue pqv:P5019 ;\n\twikibase:reference pr:P5019 ;\n\twikibase:referenceValue prv:P5019 ;\n\twikibase:novalue wdno:P5019 ;\n\twikibase:directClaimNormalized wdtn:P5019 ;\n\twikibase:statementValueNormalized psn:P5019 ;\n\twikibase:qualifierValueNormalized pqn:P5019 ;\n\twikibase:referenceValueNormalized prn:P5019 .\n\np:P5019 a owl:ObjectProperty .\n\npsv:P5019 a owl:ObjectProperty .\n\npqv:P5019 a owl:ObjectProperty .\n\nprv:P5019 a owl:ObjectProperty .\n\nwdt:P5019 a owl:DatatypeProperty .\n\nps:P5019 a owl:DatatypeProperty .\n\npq:P5019 a owl:DatatypeProperty .\n\npr:P5019 a owl:DatatypeProperty .\n\npsn:P5019 a owl:ObjectProperty .\n\npqn:P5019 a owl:ObjectProperty .\n\nprn:P5019 a owl:ObjectProperty .\n\nwdtn:P5019 a owl:ObjectProperty .\n\nwdno:P5019 a owl:Class ;\n\towl:complementOf _:8f2e067276b7b0125a88b1cdcccdf2ae .\n\n_:8f2e067276b7b0125a88b1cdcccdf2ae a owl:Restriction ;\n\towl:onProperty wdt:P5019 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8061 a wikibase:Property ;\n\trdfs:label \"AGROVOC-ID\"@de ;\n\tskos:prefLabel \"AGROVOC-ID\"@de ;\n\tschema:name \"AGROVOC-ID\"@de ;\n\trdfs:label \"AGROVOC ID\"@en ;\n\tskos:prefLabel \"AGROVOC ID\"@en ;\n\tschema:name \"AGROVOC ID\"@en ;\n\tschema:description \"mehrsprachige strukturierte Datenbank mit landwirtschaftlichen Konzepten, Begriffen, Definitionen und Beziehungen der FAO\"@de,\n\t\t\"identifier for a subject in AGROVOC thesaurus\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8061 ;\n\twikibase:claim p:P8061 ;\n\twikibase:statementProperty ps:P8061 ;\n\twikibase:statementValue psv:P8061 ;\n\twikibase:qualifier pq:P8061 ;\n\twikibase:qualifierValue pqv:P8061 ;\n\twikibase:reference pr:P8061 ;\n\twikibase:referenceValue prv:P8061 ;\n\twikibase:novalue wdno:P8061 ;\n\twikibase:directClaimNormalized wdtn:P8061 ;\n\twikibase:statementValueNormalized psn:P8061 ;\n\twikibase:qualifierValueNormalized pqn:P8061 ;\n\twikibase:referenceValueNormalized prn:P8061 .\n\np:P8061 a owl:ObjectProperty .\n\npsv:P8061 a owl:ObjectProperty .\n\npqv:P8061 a owl:ObjectProperty .\n\nprv:P8061 a owl:ObjectProperty .\n\nwdt:P8061 a owl:DatatypeProperty .\n\nps:P8061 a owl:DatatypeProperty .\n\npq:P8061 a owl:DatatypeProperty .\n\npr:P8061 a owl:DatatypeProperty .\n\npsn:P8061 a owl:ObjectProperty .\n\npqn:P8061 a owl:ObjectProperty .\n\nprn:P8061 a owl:ObjectProperty .\n\nwdtn:P8061 a owl:ObjectProperty .\n\nwdno:P8061 a owl:Class ;\n\towl:complementOf _:3040cec787dec7a705f1a8dd475991c6 .\n\n_:3040cec787dec7a705f1a8dd475991c6 a owl:Restriction ;\n\towl:onProperty wdt:P8061 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2004 a wikibase:Property ;\n\trdfs:label \"NALT-Kennung\"@de ;\n\tskos:prefLabel \"NALT-Kennung\"@de ;\n\tschema:name \"NALT-Kennung\"@de ;\n\trdfs:label \"NALT ID\"@en ;\n\tskos:prefLabel \"NALT ID\"@en ;\n\tschema:name \"NALT ID\"@en ;\n\tschema:description \"Identifikator einer Begriffskategorie im landwirtschaftlichen Thesaurus bei United States National Agricultural Library\"@de,\n\t\t\"identifier for subject headings in the Agricultural Thesaurus of the United States National Agricultural Library\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2004 ;\n\twikibase:claim p:P2004 ;\n\twikibase:statementProperty ps:P2004 ;\n\twikibase:statementValue psv:P2004 ;\n\twikibase:qualifier pq:P2004 ;\n\twikibase:qualifierValue pqv:P2004 ;\n\twikibase:reference pr:P2004 ;\n\twikibase:referenceValue prv:P2004 ;\n\twikibase:novalue wdno:P2004 ;\n\twikibase:directClaimNormalized wdtn:P2004 ;\n\twikibase:statementValueNormalized psn:P2004 ;\n\twikibase:qualifierValueNormalized pqn:P2004 ;\n\twikibase:referenceValueNormalized prn:P2004 .\n\np:P2004 a owl:ObjectProperty .\n\npsv:P2004 a owl:ObjectProperty .\n\npqv:P2004 a owl:ObjectProperty .\n\nprv:P2004 a owl:ObjectProperty .\n\nwdt:P2004 a owl:DatatypeProperty .\n\nps:P2004 a owl:DatatypeProperty .\n\npq:P2004 a owl:DatatypeProperty .\n\npr:P2004 a owl:DatatypeProperty .\n\npsn:P2004 a owl:ObjectProperty .\n\npqn:P2004 a owl:ObjectProperty .\n\nprn:P2004 a owl:ObjectProperty .\n\nwdtn:P2004 a owl:ObjectProperty .\n\nwdno:P2004 a owl:Class ;\n\towl:complementOf _:b3add30640272ab614276cb9e87840ad .\n\n_:b3add30640272ab614276cb9e87840ad a owl:Restriction ;\n\towl:onProperty wdt:P2004 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8408 a wikibase:Property ;\n\trdfs:label \"KBpedia-Kennung\"@de ;\n\tskos:prefLabel \"KBpedia-Kennung\"@de ;\n\tschema:name \"KBpedia-Kennung\"@de ;\n\trdfs:label \"KBpedia ID\"@en ;\n\tskos:prefLabel \"KBpedia ID\"@en ;\n\tschema:name \"KBpedia ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei KBpedia\"@de,\n\t\t\"identifier for the KBpedia knowledge graph, which provides consistent mappings across seven large-scale public knowledge bases including Wikidata, and is used to promote data interoperability and extraction of training sets for machine learning\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8408 ;\n\twikibase:claim p:P8408 ;\n\twikibase:statementProperty ps:P8408 ;\n\twikibase:statementValue psv:P8408 ;\n\twikibase:qualifier pq:P8408 ;\n\twikibase:qualifierValue pqv:P8408 ;\n\twikibase:reference pr:P8408 ;\n\twikibase:referenceValue prv:P8408 ;\n\twikibase:novalue wdno:P8408 ;\n\twikibase:directClaimNormalized wdtn:P8408 ;\n\twikibase:statementValueNormalized psn:P8408 ;\n\twikibase:qualifierValueNormalized pqn:P8408 ;\n\twikibase:referenceValueNormalized prn:P8408 .\n\np:P8408 a owl:ObjectProperty .\n\npsv:P8408 a owl:ObjectProperty .\n\npqv:P8408 a owl:ObjectProperty .\n\nprv:P8408 a owl:ObjectProperty .\n\nwdt:P8408 a owl:DatatypeProperty .\n\nps:P8408 a owl:DatatypeProperty .\n\npq:P8408 a owl:DatatypeProperty .\n\npr:P8408 a owl:DatatypeProperty .\n\npsn:P8408 a owl:ObjectProperty .\n\npqn:P8408 a owl:ObjectProperty .\n\nprn:P8408 a owl:ObjectProperty .\n\nwdtn:P8408 a owl:ObjectProperty .\n\nwdno:P8408 a owl:Class ;\n\towl:complementOf _:a5c6b2a39aa8787e5b2a55612fc3d63e .\n\n_:a5c6b2a39aa8787e5b2a55612fc3d63e a owl:Restriction ;\n\towl:onProperty wdt:P8408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7715 a wikibase:Property ;\n\trdfs:label \"World-Flora-Online-ID\"@de ;\n\tskos:prefLabel \"World-Flora-Online-ID\"@de ;\n\tschema:name \"World-Flora-Online-ID\"@de ;\n\trdfs:label \"World Flora Online ID\"@en ;\n\tskos:prefLabel \"World Flora Online ID\"@en ;\n\tschema:name \"World Flora Online ID\"@en ;\n\tschema:description \"identifier for a plant in World Flora Online\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7715 ;\n\twikibase:claim p:P7715 ;\n\twikibase:statementProperty ps:P7715 ;\n\twikibase:statementValue psv:P7715 ;\n\twikibase:qualifier pq:P7715 ;\n\twikibase:qualifierValue pqv:P7715 ;\n\twikibase:reference pr:P7715 ;\n\twikibase:referenceValue prv:P7715 ;\n\twikibase:novalue wdno:P7715 ;\n\twikibase:directClaimNormalized wdtn:P7715 ;\n\twikibase:statementValueNormalized psn:P7715 ;\n\twikibase:qualifierValueNormalized pqn:P7715 ;\n\twikibase:referenceValueNormalized prn:P7715 .\n\np:P7715 a owl:ObjectProperty .\n\npsv:P7715 a owl:ObjectProperty .\n\npqv:P7715 a owl:ObjectProperty .\n\nprv:P7715 a owl:ObjectProperty .\n\nwdt:P7715 a owl:DatatypeProperty .\n\nps:P7715 a owl:DatatypeProperty .\n\npq:P7715 a owl:DatatypeProperty .\n\npr:P7715 a owl:DatatypeProperty .\n\npsn:P7715 a owl:ObjectProperty .\n\npqn:P7715 a owl:ObjectProperty .\n\nprn:P7715 a owl:ObjectProperty .\n\nwdtn:P7715 a owl:ObjectProperty .\n\nwdno:P7715 a owl:Class ;\n\towl:complementOf _:d0f111360d13e6cf7be8fb1204acf6a7 .\n\n_:d0f111360d13e6cf7be8fb1204acf6a7 a owl:Restriction ;\n\towl:onProperty wdt:P7715 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8707 a wikibase:Property ;\n\trdfs:label \"NBIC-Taxon-ID\"@de ;\n\tskos:prefLabel \"NBIC-Taxon-ID\"@de ;\n\tschema:name \"NBIC-Taxon-ID\"@de ;\n\trdfs:label \"NBIC scientific name ID\"@en ;\n\tskos:prefLabel \"NBIC scientific name ID\"@en ;\n\tschema:name \"NBIC scientific name ID\"@en ;\n\tschema:description \"identifier for a taxon's scientific name in the Norwegian Biodiversity Information Centre database, a database on species and ecosystems in Norway\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8707 ;\n\twikibase:claim p:P8707 ;\n\twikibase:statementProperty ps:P8707 ;\n\twikibase:statementValue psv:P8707 ;\n\twikibase:qualifier pq:P8707 ;\n\twikibase:qualifierValue pqv:P8707 ;\n\twikibase:reference pr:P8707 ;\n\twikibase:referenceValue prv:P8707 ;\n\twikibase:novalue wdno:P8707 ;\n\twikibase:directClaimNormalized wdtn:P8707 ;\n\twikibase:statementValueNormalized psn:P8707 ;\n\twikibase:qualifierValueNormalized pqn:P8707 ;\n\twikibase:referenceValueNormalized prn:P8707 .\n\np:P8707 a owl:ObjectProperty .\n\npsv:P8707 a owl:ObjectProperty .\n\npqv:P8707 a owl:ObjectProperty .\n\nprv:P8707 a owl:ObjectProperty .\n\nwdt:P8707 a owl:DatatypeProperty .\n\nps:P8707 a owl:DatatypeProperty .\n\npq:P8707 a owl:DatatypeProperty .\n\npr:P8707 a owl:DatatypeProperty .\n\npsn:P8707 a owl:ObjectProperty .\n\npqn:P8707 a owl:ObjectProperty .\n\nprn:P8707 a owl:ObjectProperty .\n\nwdtn:P8707 a owl:ObjectProperty .\n\nwdno:P8707 a owl:Class ;\n\towl:complementOf _:dee2239e5b92581688afa8584199dddf .\n\n_:dee2239e5b92581688afa8584199dddf a owl:Restriction ;\n\towl:onProperty wdt:P8707 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8765 a wikibase:Property ;\n\trdfs:label \"Royal Horticultural Society plant ID\"@en ;\n\tskos:prefLabel \"Royal Horticultural Society plant ID\"@en ;\n\tschema:name \"Royal Horticultural Society plant ID\"@en ;\n\tschema:description \"identifier for plants listed on the Royal Horticultural Society website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8765 ;\n\twikibase:claim p:P8765 ;\n\twikibase:statementProperty ps:P8765 ;\n\twikibase:statementValue psv:P8765 ;\n\twikibase:qualifier pq:P8765 ;\n\twikibase:qualifierValue pqv:P8765 ;\n\twikibase:reference pr:P8765 ;\n\twikibase:referenceValue prv:P8765 ;\n\twikibase:novalue wdno:P8765 ;\n\twikibase:directClaimNormalized wdtn:P8765 ;\n\twikibase:statementValueNormalized psn:P8765 ;\n\twikibase:qualifierValueNormalized pqn:P8765 ;\n\twikibase:referenceValueNormalized prn:P8765 .\n\np:P8765 a owl:ObjectProperty .\n\npsv:P8765 a owl:ObjectProperty .\n\npqv:P8765 a owl:ObjectProperty .\n\nprv:P8765 a owl:ObjectProperty .\n\nwdt:P8765 a owl:DatatypeProperty .\n\nps:P8765 a owl:DatatypeProperty .\n\npq:P8765 a owl:DatatypeProperty .\n\npr:P8765 a owl:DatatypeProperty .\n\npsn:P8765 a owl:ObjectProperty .\n\npqn:P8765 a owl:ObjectProperty .\n\nprn:P8765 a owl:ObjectProperty .\n\nwdtn:P8765 a owl:ObjectProperty .\n\nwdno:P8765 a owl:Class ;\n\towl:complementOf _:3fbd419eaa8d90042aacff8aaa524fd3 .\n\n_:3fbd419eaa8d90042aacff8aaa524fd3 a owl:Restriction ;\n\towl:onProperty wdt:P8765 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8915 a wikibase:Property ;\n\trdfs:label \"ZOBODAT-Taxonkennung\"@de ;\n\tskos:prefLabel \"ZOBODAT-Taxonkennung\"@de ;\n\tschema:name \"ZOBODAT-Taxonkennung\"@de ;\n\trdfs:label \"ZOBODAT taxon ID\"@en ;\n\tskos:prefLabel \"ZOBODAT taxon ID\"@en ;\n\tschema:name \"ZOBODAT taxon ID\"@en ;\n\tschema:description \"Identifikator eines Taxons bei ZOBODAT, einer bibliografischen Datenenbank für deutschsprachige Arbeiten auf dem Gebiet der Zoologie\"@de,\n\t\t\"numerical identifier for a taxon in ZOBODAT, a bibliographic database of mostly German-language works on zoology\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8915 ;\n\twikibase:claim p:P8915 ;\n\twikibase:statementProperty ps:P8915 ;\n\twikibase:statementValue psv:P8915 ;\n\twikibase:qualifier pq:P8915 ;\n\twikibase:qualifierValue pqv:P8915 ;\n\twikibase:reference pr:P8915 ;\n\twikibase:referenceValue prv:P8915 ;\n\twikibase:novalue wdno:P8915 ;\n\twikibase:directClaimNormalized wdtn:P8915 ;\n\twikibase:statementValueNormalized psn:P8915 ;\n\twikibase:qualifierValueNormalized pqn:P8915 ;\n\twikibase:referenceValueNormalized prn:P8915 .\n\np:P8915 a owl:ObjectProperty .\n\npsv:P8915 a owl:ObjectProperty .\n\npqv:P8915 a owl:ObjectProperty .\n\nprv:P8915 a owl:ObjectProperty .\n\nwdt:P8915 a owl:DatatypeProperty .\n\nps:P8915 a owl:DatatypeProperty .\n\npq:P8915 a owl:DatatypeProperty .\n\npr:P8915 a owl:DatatypeProperty .\n\npsn:P8915 a owl:ObjectProperty .\n\npqn:P8915 a owl:ObjectProperty .\n\nprn:P8915 a owl:ObjectProperty .\n\nwdtn:P8915 a owl:ObjectProperty .\n\nwdno:P8915 a owl:Class ;\n\towl:complementOf _:d7603555fb9ce2ad9600cdad0d2edca6 .\n\n_:d7603555fb9ce2ad9600cdad0d2edca6 a owl:Restriction ;\n\towl:onProperty wdt:P8915 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6056 a wikibase:Property ;\n\trdfs:label \"SanbiRedList-ID\"@de ;\n\tskos:prefLabel \"SanbiRedList-ID\"@de ;\n\tschema:name \"SanbiRedList-ID\"@de ;\n\trdfs:label \"Red List of South African Plants ID\"@mul ;\n\tskos:prefLabel \"Red List of South African Plants ID\"@mul ;\n\tschema:name \"Red List of South African Plants ID\"@mul ;\n\trdfs:label \"Red List of South African Plants ID\"@en ;\n\tskos:prefLabel \"Red List of South African Plants ID\"@en ;\n\tschema:name \"Red List of South African Plants ID\"@en ;\n\tschema:description \"identifier for a species on the Red List of South African Plants website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6056 ;\n\twikibase:claim p:P6056 ;\n\twikibase:statementProperty ps:P6056 ;\n\twikibase:statementValue psv:P6056 ;\n\twikibase:qualifier pq:P6056 ;\n\twikibase:qualifierValue pqv:P6056 ;\n\twikibase:reference pr:P6056 ;\n\twikibase:referenceValue prv:P6056 ;\n\twikibase:novalue wdno:P6056 ;\n\twikibase:directClaimNormalized wdtn:P6056 ;\n\twikibase:statementValueNormalized psn:P6056 ;\n\twikibase:qualifierValueNormalized pqn:P6056 ;\n\twikibase:referenceValueNormalized prn:P6056 .\n\np:P6056 a owl:ObjectProperty .\n\npsv:P6056 a owl:ObjectProperty .\n\npqv:P6056 a owl:ObjectProperty .\n\nprv:P6056 a owl:ObjectProperty .\n\nwdt:P6056 a owl:DatatypeProperty .\n\nps:P6056 a owl:DatatypeProperty .\n\npq:P6056 a owl:DatatypeProperty .\n\npr:P6056 a owl:DatatypeProperty .\n\npsn:P6056 a owl:ObjectProperty .\n\npqn:P6056 a owl:ObjectProperty .\n\nprn:P6056 a owl:ObjectProperty .\n\nwdtn:P6056 a owl:ObjectProperty .\n\nwdno:P6056 a owl:Class ;\n\towl:complementOf _:584b8be549bd0449a5359cb559628a64 .\n\n_:584b8be549bd0449a5359cb559628a64 a owl:Restriction ;\n\towl:onProperty wdt:P6056 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P652 a wikibase:Property ;\n\trdfs:label \"UNII\"@de ;\n\tskos:prefLabel \"UNII\"@de ;\n\tschema:name \"UNII\"@de ;\n\trdfs:label \"UNII\"@en ;\n\tskos:prefLabel \"UNII\"@en ;\n\tschema:name \"UNII\"@en ;\n\tschema:description \"von der FDA definierter Identifikator für einzelnen Inhaltsstoff chemischer Verbindungen\"@de,\n\t\t\"identifier issued by the FDA / Unique Ingredient Identifier\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P652 ;\n\twikibase:claim p:P652 ;\n\twikibase:statementProperty ps:P652 ;\n\twikibase:statementValue psv:P652 ;\n\twikibase:qualifier pq:P652 ;\n\twikibase:qualifierValue pqv:P652 ;\n\twikibase:reference pr:P652 ;\n\twikibase:referenceValue prv:P652 ;\n\twikibase:novalue wdno:P652 ;\n\twikibase:directClaimNormalized wdtn:P652 ;\n\twikibase:statementValueNormalized psn:P652 ;\n\twikibase:qualifierValueNormalized pqn:P652 ;\n\twikibase:referenceValueNormalized prn:P652 .\n\np:P652 a owl:ObjectProperty .\n\npsv:P652 a owl:ObjectProperty .\n\npqv:P652 a owl:ObjectProperty .\n\nprv:P652 a owl:ObjectProperty .\n\nwdt:P652 a owl:DatatypeProperty .\n\nps:P652 a owl:DatatypeProperty .\n\npq:P652 a owl:DatatypeProperty .\n\npr:P652 a owl:DatatypeProperty .\n\npsn:P652 a owl:ObjectProperty .\n\npqn:P652 a owl:ObjectProperty .\n\nprn:P652 a owl:ObjectProperty .\n\nwdtn:P652 a owl:ObjectProperty .\n\nwdno:P652 a owl:Class ;\n\towl:complementOf _:7c87e9c7a1c397e21dfebf04b4dd19e9 .\n\n_:7c87e9c7a1c397e21dfebf04b4dd19e9 a owl:Restriction ;\n\towl:onProperty wdt:P652 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6756 a wikibase:Property ;\n\trdfs:label \"FoA-Online-ID\"@de ;\n\tskos:prefLabel \"FoA-Online-ID\"@de ;\n\tschema:name \"FoA-Online-ID\"@de ;\n\trdfs:label \"Flora of Australia ID (new)\"@en ;\n\tskos:prefLabel \"Flora of Australia ID (new)\"@en ;\n\tschema:name \"Flora of Australia ID (new)\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons bei Flora of Australia Online (neu)\"@de,\n\t\t\"identifier for a plant taxon, in an Australian Commonwealth database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6756 ;\n\twikibase:claim p:P6756 ;\n\twikibase:statementProperty ps:P6756 ;\n\twikibase:statementValue psv:P6756 ;\n\twikibase:qualifier pq:P6756 ;\n\twikibase:qualifierValue pqv:P6756 ;\n\twikibase:reference pr:P6756 ;\n\twikibase:referenceValue prv:P6756 ;\n\twikibase:novalue wdno:P6756 ;\n\twikibase:directClaimNormalized wdtn:P6756 ;\n\twikibase:statementValueNormalized psn:P6756 ;\n\twikibase:qualifierValueNormalized pqn:P6756 ;\n\twikibase:referenceValueNormalized prn:P6756 .\n\np:P6756 a owl:ObjectProperty .\n\npsv:P6756 a owl:ObjectProperty .\n\npqv:P6756 a owl:ObjectProperty .\n\nprv:P6756 a owl:ObjectProperty .\n\nwdt:P6756 a owl:DatatypeProperty .\n\nps:P6756 a owl:DatatypeProperty .\n\npq:P6756 a owl:DatatypeProperty .\n\npr:P6756 a owl:DatatypeProperty .\n\npsn:P6756 a owl:ObjectProperty .\n\npqn:P6756 a owl:ObjectProperty .\n\nprn:P6756 a owl:ObjectProperty .\n\nwdtn:P6756 a owl:ObjectProperty .\n\nwdno:P6756 a owl:Class ;\n\towl:complementOf _:da24400afd7ac2e594f14b74b4caa581 .\n\n_:da24400afd7ac2e594f14b74b4caa581 a owl:Restriction ;\n\towl:onProperty wdt:P6756 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9157 a wikibase:Property ;\n\trdfs:label \"OTT-ID\"@de ;\n\tskos:prefLabel \"OTT-ID\"@de ;\n\tschema:name \"OTT-ID\"@de ;\n\trdfs:label \"Open Tree of Life ID\"@en ;\n\tskos:prefLabel \"Open Tree of Life ID\"@en ;\n\tschema:name \"Open Tree of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in der Referenztaxonomie (OTT) des Projektes Open Tree of Life\"@de,\n\t\t\"identifier for an entity in Open Tree of Life, a comprehensive, dynamic and digitally-available tree of life by synthesizing published phylogenetic trees along with taxonomic data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9157 ;\n\twikibase:claim p:P9157 ;\n\twikibase:statementProperty ps:P9157 ;\n\twikibase:statementValue psv:P9157 ;\n\twikibase:qualifier pq:P9157 ;\n\twikibase:qualifierValue pqv:P9157 ;\n\twikibase:reference pr:P9157 ;\n\twikibase:referenceValue prv:P9157 ;\n\twikibase:novalue wdno:P9157 ;\n\twikibase:directClaimNormalized wdtn:P9157 ;\n\twikibase:statementValueNormalized psn:P9157 ;\n\twikibase:qualifierValueNormalized pqn:P9157 ;\n\twikibase:referenceValueNormalized prn:P9157 .\n\np:P9157 a owl:ObjectProperty .\n\npsv:P9157 a owl:ObjectProperty .\n\npqv:P9157 a owl:ObjectProperty .\n\nprv:P9157 a owl:ObjectProperty .\n\nwdt:P9157 a owl:DatatypeProperty .\n\nps:P9157 a owl:DatatypeProperty .\n\npq:P9157 a owl:DatatypeProperty .\n\npr:P9157 a owl:DatatypeProperty .\n\npsn:P9157 a owl:ObjectProperty .\n\npqn:P9157 a owl:ObjectProperty .\n\nprn:P9157 a owl:ObjectProperty .\n\nwdtn:P9157 a owl:ObjectProperty .\n\nwdno:P9157 a owl:Class ;\n\towl:complementOf _:746cb7f5a9cfa7771b15b745abbfaf11 .\n\n_:746cb7f5a9cfa7771b15b745abbfaf11 a owl:Restriction ;\n\towl:onProperty wdt:P9157 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8468 a wikibase:Property ;\n\trdfs:label \"Queensland Biota-ID\"@de ;\n\tskos:prefLabel \"Queensland Biota-ID\"@de ;\n\tschema:name \"Queensland Biota-ID\"@de ;\n\trdfs:label \"Queensland Biota ID\"@en ;\n\tskos:prefLabel \"Queensland Biota ID\"@en ;\n\tschema:name \"Queensland Biota ID\"@en ;\n\tschema:description \"identifier for a taxon, in a Queensland Government database of species profiles\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8468 ;\n\twikibase:claim p:P8468 ;\n\twikibase:statementProperty ps:P8468 ;\n\twikibase:statementValue psv:P8468 ;\n\twikibase:qualifier pq:P8468 ;\n\twikibase:qualifierValue pqv:P8468 ;\n\twikibase:reference pr:P8468 ;\n\twikibase:referenceValue prv:P8468 ;\n\twikibase:novalue wdno:P8468 ;\n\twikibase:directClaimNormalized wdtn:P8468 ;\n\twikibase:statementValueNormalized psn:P8468 ;\n\twikibase:qualifierValueNormalized pqn:P8468 ;\n\twikibase:referenceValueNormalized prn:P8468 .\n\np:P8468 a owl:ObjectProperty .\n\npsv:P8468 a owl:ObjectProperty .\n\npqv:P8468 a owl:ObjectProperty .\n\nprv:P8468 a owl:ObjectProperty .\n\nwdt:P8468 a owl:DatatypeProperty .\n\nps:P8468 a owl:DatatypeProperty .\n\npq:P8468 a owl:DatatypeProperty .\n\npr:P8468 a owl:DatatypeProperty .\n\npsn:P8468 a owl:ObjectProperty .\n\npqn:P8468 a owl:ObjectProperty .\n\nprn:P8468 a owl:ObjectProperty .\n\nwdtn:P8468 a owl:ObjectProperty .\n\nwdno:P8468 a owl:Class ;\n\towl:complementOf _:c783cdde1a151f2097303ba656e486d0 .\n\n_:c783cdde1a151f2097303ba656e486d0 a owl:Restriction ;\n\towl:onProperty wdt:P8468 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9501 a wikibase:Property ;\n\trdfs:label \"Oregon Flora Image Project ID\"@en ;\n\tskos:prefLabel \"Oregon Flora Image Project ID\"@en ;\n\tschema:name \"Oregon Flora Image Project ID\"@en ;\n\tschema:description \"identifier for a plant species on the Oregon Flora Image Project website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9501 ;\n\twikibase:claim p:P9501 ;\n\twikibase:statementProperty ps:P9501 ;\n\twikibase:statementValue psv:P9501 ;\n\twikibase:qualifier pq:P9501 ;\n\twikibase:qualifierValue pqv:P9501 ;\n\twikibase:reference pr:P9501 ;\n\twikibase:referenceValue prv:P9501 ;\n\twikibase:novalue wdno:P9501 ;\n\twikibase:directClaimNormalized wdtn:P9501 ;\n\twikibase:statementValueNormalized psn:P9501 ;\n\twikibase:qualifierValueNormalized pqn:P9501 ;\n\twikibase:referenceValueNormalized prn:P9501 .\n\np:P9501 a owl:ObjectProperty .\n\npsv:P9501 a owl:ObjectProperty .\n\npqv:P9501 a owl:ObjectProperty .\n\nprv:P9501 a owl:ObjectProperty .\n\nwdt:P9501 a owl:DatatypeProperty .\n\nps:P9501 a owl:DatatypeProperty .\n\npq:P9501 a owl:DatatypeProperty .\n\npr:P9501 a owl:DatatypeProperty .\n\npsn:P9501 a owl:ObjectProperty .\n\npqn:P9501 a owl:ObjectProperty .\n\nprn:P9501 a owl:ObjectProperty .\n\nwdtn:P9501 a owl:ObjectProperty .\n\nwdno:P9501 a owl:Class ;\n\towl:complementOf _:4517ab0aa7e991b3933d4501d5c7deb5 .\n\n_:4517ab0aa7e991b3933d4501d5c7deb5 a owl:Restriction ;\n\towl:onProperty wdt:P9501 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9654 a wikibase:Property ;\n\trdfs:label \"Burke Herbarium Image Collection ID\"@en ;\n\tskos:prefLabel \"Burke Herbarium Image Collection ID\"@en ;\n\tschema:name \"Burke Herbarium Image Collection ID\"@en ;\n\tschema:description \"identifier for a plant, macrofungus, or lichen species in the Burke Herbarium Image Collection\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9654 ;\n\twikibase:claim p:P9654 ;\n\twikibase:statementProperty ps:P9654 ;\n\twikibase:statementValue psv:P9654 ;\n\twikibase:qualifier pq:P9654 ;\n\twikibase:qualifierValue pqv:P9654 ;\n\twikibase:reference pr:P9654 ;\n\twikibase:referenceValue prv:P9654 ;\n\twikibase:novalue wdno:P9654 ;\n\twikibase:directClaimNormalized wdtn:P9654 ;\n\twikibase:statementValueNormalized psn:P9654 ;\n\twikibase:qualifierValueNormalized pqn:P9654 ;\n\twikibase:referenceValueNormalized prn:P9654 .\n\np:P9654 a owl:ObjectProperty .\n\npsv:P9654 a owl:ObjectProperty .\n\npqv:P9654 a owl:ObjectProperty .\n\nprv:P9654 a owl:ObjectProperty .\n\nwdt:P9654 a owl:DatatypeProperty .\n\nps:P9654 a owl:DatatypeProperty .\n\npq:P9654 a owl:DatatypeProperty .\n\npr:P9654 a owl:DatatypeProperty .\n\npsn:P9654 a owl:ObjectProperty .\n\npqn:P9654 a owl:ObjectProperty .\n\nprn:P9654 a owl:ObjectProperty .\n\nwdtn:P9654 a owl:ObjectProperty .\n\nwdno:P9654 a owl:Class ;\n\towl:complementOf _:5e54aeaf5b702c76725a9e190fa04939 .\n\n_:5e54aeaf5b702c76725a9e190fa04939 a owl:Restriction ;\n\towl:onProperty wdt:P9654 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3105 a wikibase:Property ;\n\trdfs:label \"Tela-Botanica-BDTFX-ID\"@de ;\n\tskos:prefLabel \"Tela-Botanica-BDTFX-ID\"@de ;\n\tschema:name \"Tela-Botanica-BDTFX-ID\"@de ;\n\trdfs:label \"Tela Botanica ID\"@en ;\n\tskos:prefLabel \"Tela Botanica ID\"@en ;\n\tschema:name \"Tela Botanica ID\"@en ;\n\tschema:description \"identifier for a plant taxon in Tela Botanica's 'base des trachéophytes de France métropolitaine' - BDTFX - (Metropolitan France Tracheophyte Database)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3105 ;\n\twikibase:claim p:P3105 ;\n\twikibase:statementProperty ps:P3105 ;\n\twikibase:statementValue psv:P3105 ;\n\twikibase:qualifier pq:P3105 ;\n\twikibase:qualifierValue pqv:P3105 ;\n\twikibase:reference pr:P3105 ;\n\twikibase:referenceValue prv:P3105 ;\n\twikibase:novalue wdno:P3105 ;\n\twikibase:directClaimNormalized wdtn:P3105 ;\n\twikibase:statementValueNormalized psn:P3105 ;\n\twikibase:qualifierValueNormalized pqn:P3105 ;\n\twikibase:referenceValueNormalized prn:P3105 .\n\np:P3105 a owl:ObjectProperty .\n\npsv:P3105 a owl:ObjectProperty .\n\npqv:P3105 a owl:ObjectProperty .\n\nprv:P3105 a owl:ObjectProperty .\n\nwdt:P3105 a owl:DatatypeProperty .\n\nps:P3105 a owl:DatatypeProperty .\n\npq:P3105 a owl:DatatypeProperty .\n\npr:P3105 a owl:DatatypeProperty .\n\npsn:P3105 a owl:ObjectProperty .\n\npqn:P3105 a owl:ObjectProperty .\n\nprn:P3105 a owl:ObjectProperty .\n\nwdtn:P3105 a owl:ObjectProperty .\n\nwdno:P3105 a owl:Class ;\n\towl:complementOf _:39ec9e8a1cc534a4563a511d4c8fda02 .\n\n_:39ec9e8a1cc534a4563a511d4c8fda02 a owl:Restriction ;\n\towl:onProperty wdt:P3105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9741 a wikibase:Property ;\n\trdfs:label \"Pladias ID\"@en ;\n\tskos:prefLabel \"Pladias ID\"@en ;\n\tschema:name \"Pladias ID\"@en ;\n\tschema:description \"taxon identifier in Pladias database of Czech plant species\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9741 ;\n\twikibase:claim p:P9741 ;\n\twikibase:statementProperty ps:P9741 ;\n\twikibase:statementValue psv:P9741 ;\n\twikibase:qualifier pq:P9741 ;\n\twikibase:qualifierValue pqv:P9741 ;\n\twikibase:reference pr:P9741 ;\n\twikibase:referenceValue prv:P9741 ;\n\twikibase:novalue wdno:P9741 ;\n\twikibase:directClaimNormalized wdtn:P9741 ;\n\twikibase:statementValueNormalized psn:P9741 ;\n\twikibase:qualifierValueNormalized pqn:P9741 ;\n\twikibase:referenceValueNormalized prn:P9741 .\n\np:P9741 a owl:ObjectProperty .\n\npsv:P9741 a owl:ObjectProperty .\n\npqv:P9741 a owl:ObjectProperty .\n\nprv:P9741 a owl:ObjectProperty .\n\nwdt:P9741 a owl:DatatypeProperty .\n\nps:P9741 a owl:DatatypeProperty .\n\npq:P9741 a owl:DatatypeProperty .\n\npr:P9741 a owl:DatatypeProperty .\n\npsn:P9741 a owl:ObjectProperty .\n\npqn:P9741 a owl:ObjectProperty .\n\nprn:P9741 a owl:ObjectProperty .\n\nwdtn:P9741 a owl:ObjectProperty .\n\nwdno:P9741 a owl:Class ;\n\towl:complementOf _:35a4923ba29d2b98e744ff0419641efa .\n\n_:35a4923ba29d2b98e744ff0419641efa a owl:Restriction ;\n\towl:onProperty wdt:P9741 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9799 a wikibase:Property ;\n\trdfs:label \"Palynodata taxa ID\"@en ;\n\tskos:prefLabel \"Palynodata taxa ID\"@en ;\n\tschema:name \"Palynodata taxa ID\"@en ;\n\tschema:description \"Kennung eines Taxons in der Palynodata-Datenbank\"@de,\n\t\t\"identifier of a taxon in the Palynodata database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9799 ;\n\twikibase:claim p:P9799 ;\n\twikibase:statementProperty ps:P9799 ;\n\twikibase:statementValue psv:P9799 ;\n\twikibase:qualifier pq:P9799 ;\n\twikibase:qualifierValue pqv:P9799 ;\n\twikibase:reference pr:P9799 ;\n\twikibase:referenceValue prv:P9799 ;\n\twikibase:novalue wdno:P9799 ;\n\twikibase:directClaimNormalized wdtn:P9799 ;\n\twikibase:statementValueNormalized psn:P9799 ;\n\twikibase:qualifierValueNormalized pqn:P9799 ;\n\twikibase:referenceValueNormalized prn:P9799 .\n\np:P9799 a owl:ObjectProperty .\n\npsv:P9799 a owl:ObjectProperty .\n\npqv:P9799 a owl:ObjectProperty .\n\nprv:P9799 a owl:ObjectProperty .\n\nwdt:P9799 a owl:DatatypeProperty .\n\nps:P9799 a owl:DatatypeProperty .\n\npq:P9799 a owl:DatatypeProperty .\n\npr:P9799 a owl:DatatypeProperty .\n\npsn:P9799 a owl:ObjectProperty .\n\npqn:P9799 a owl:ObjectProperty .\n\nprn:P9799 a owl:ObjectProperty .\n\nwdtn:P9799 a owl:ObjectProperty .\n\nwdno:P9799 a owl:Class ;\n\towl:complementOf _:c5610fa6af112054656ff9924a7ef36f .\n\n_:c5610fa6af112054656ff9924a7ef36f a owl:Restriction ;\n\towl:onProperty wdt:P9799 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10243 a wikibase:Property ;\n\trdfs:label \"NatureServe-Explorer-Kennung\"@de ;\n\tskos:prefLabel \"NatureServe-Explorer-Kennung\"@de ;\n\tschema:name \"NatureServe-Explorer-Kennung\"@de ;\n\trdfs:label \"NatureServe Explorer ID\"@en ;\n\tskos:prefLabel \"NatureServe Explorer ID\"@en ;\n\tschema:name \"NatureServe Explorer ID\"@en ;\n\tschema:description \"Kennung für eine Spezies oder ein Ökosystem in der NatureServe-Explorer-Datenbank\"@de,\n\t\t\"identifier of a species or ecosystem in the Americas in the NatureServe Explorer database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10243 ;\n\twikibase:claim p:P10243 ;\n\twikibase:statementProperty ps:P10243 ;\n\twikibase:statementValue psv:P10243 ;\n\twikibase:qualifier pq:P10243 ;\n\twikibase:qualifierValue pqv:P10243 ;\n\twikibase:reference pr:P10243 ;\n\twikibase:referenceValue prv:P10243 ;\n\twikibase:novalue wdno:P10243 ;\n\twikibase:directClaimNormalized wdtn:P10243 ;\n\twikibase:statementValueNormalized psn:P10243 ;\n\twikibase:qualifierValueNormalized pqn:P10243 ;\n\twikibase:referenceValueNormalized prn:P10243 .\n\np:P10243 a owl:ObjectProperty .\n\npsv:P10243 a owl:ObjectProperty .\n\npqv:P10243 a owl:ObjectProperty .\n\nprv:P10243 a owl:ObjectProperty .\n\nwdt:P10243 a owl:DatatypeProperty .\n\nps:P10243 a owl:DatatypeProperty .\n\npq:P10243 a owl:DatatypeProperty .\n\npr:P10243 a owl:DatatypeProperty .\n\npsn:P10243 a owl:ObjectProperty .\n\npqn:P10243 a owl:ObjectProperty .\n\nprn:P10243 a owl:ObjectProperty .\n\nwdtn:P10243 a owl:ObjectProperty .\n\nwdno:P10243 a owl:Class ;\n\towl:complementOf _:cc5236f8d312dce8a5d6ef9aa5118539 .\n\n_:cc5236f8d312dce8a5d6ef9aa5118539 a owl:Restriction ;\n\towl:onProperty wdt:P10243 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10283 a wikibase:Property ;\n\trdfs:label \"OpenAlex-Kennung\"@de ;\n\tskos:prefLabel \"OpenAlex-Kennung\"@de ;\n\tschema:name \"OpenAlex-Kennung\"@de ;\n\trdfs:label \"OpenAlex ID\"@en ;\n\tskos:prefLabel \"OpenAlex ID\"@en ;\n\tschema:name \"OpenAlex ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei OpenAlex\"@de,\n\t\t\"identifier for works, grants, authors, institutes, venues, concepts/subjects in OpenAlex\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10283 ;\n\twikibase:claim p:P10283 ;\n\twikibase:statementProperty ps:P10283 ;\n\twikibase:statementValue psv:P10283 ;\n\twikibase:qualifier pq:P10283 ;\n\twikibase:qualifierValue pqv:P10283 ;\n\twikibase:reference pr:P10283 ;\n\twikibase:referenceValue prv:P10283 ;\n\twikibase:novalue wdno:P10283 ;\n\twikibase:directClaimNormalized wdtn:P10283 ;\n\twikibase:statementValueNormalized psn:P10283 ;\n\twikibase:qualifierValueNormalized pqn:P10283 ;\n\twikibase:referenceValueNormalized prn:P10283 .\n\np:P10283 a owl:ObjectProperty .\n\npsv:P10283 a owl:ObjectProperty .\n\npqv:P10283 a owl:ObjectProperty .\n\nprv:P10283 a owl:ObjectProperty .\n\nwdt:P10283 a owl:DatatypeProperty .\n\nps:P10283 a owl:DatatypeProperty .\n\npq:P10283 a owl:DatatypeProperty .\n\npr:P10283 a owl:DatatypeProperty .\n\npsn:P10283 a owl:ObjectProperty .\n\npqn:P10283 a owl:ObjectProperty .\n\nprn:P10283 a owl:ObjectProperty .\n\nwdtn:P10283 a owl:ObjectProperty .\n\nwdno:P10283 a owl:Class ;\n\towl:complementOf _:32a5275a7dbbfba13192c77c3ada4d3a .\n\n_:32a5275a7dbbfba13192c77c3ada4d3a a owl:Restriction ;\n\towl:onProperty wdt:P10283 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4342 a wikibase:Property ;\n\trdfs:label \"SNL-Kennung\"@de ;\n\tskos:prefLabel \"SNL-Kennung\"@de ;\n\tschema:name \"SNL-Kennung\"@de ;\n\trdfs:label \"Great Norwegian Encyclopedia ID\"@en ;\n\tskos:prefLabel \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:name \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Online-Enzyklopädie snl.no\"@de,\n\t\t\"identifier of an article in the online encyclopedia snl.no\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4342 ;\n\twikibase:claim p:P4342 ;\n\twikibase:statementProperty ps:P4342 ;\n\twikibase:statementValue psv:P4342 ;\n\twikibase:qualifier pq:P4342 ;\n\twikibase:qualifierValue pqv:P4342 ;\n\twikibase:reference pr:P4342 ;\n\twikibase:referenceValue prv:P4342 ;\n\twikibase:novalue wdno:P4342 ;\n\twikibase:directClaimNormalized wdtn:P4342 ;\n\twikibase:statementValueNormalized psn:P4342 ;\n\twikibase:qualifierValueNormalized pqn:P4342 ;\n\twikibase:referenceValueNormalized prn:P4342 .\n\np:P4342 a owl:ObjectProperty .\n\npsv:P4342 a owl:ObjectProperty .\n\npqv:P4342 a owl:ObjectProperty .\n\nprv:P4342 a owl:ObjectProperty .\n\nwdt:P4342 a owl:DatatypeProperty .\n\nps:P4342 a owl:DatatypeProperty .\n\npq:P4342 a owl:DatatypeProperty .\n\npr:P4342 a owl:DatatypeProperty .\n\npsn:P4342 a owl:ObjectProperty .\n\npqn:P4342 a owl:ObjectProperty .\n\nprn:P4342 a owl:ObjectProperty .\n\nwdtn:P4342 a owl:ObjectProperty .\n\nwdno:P4342 a owl:Class ;\n\towl:complementOf _:798f6d589e42f1b7a13b07c18239c1c6 .\n\n_:798f6d589e42f1b7a13b07c18239c1c6 a owl:Restriction ;\n\towl:onProperty wdt:P4342 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8309 a wikibase:Property ;\n\trdfs:label \"Yle-Themenkennung\"@de ;\n\tskos:prefLabel \"Yle-Themenkennung\"@de ;\n\tschema:name \"Yle-Themenkennung\"@de ;\n\trdfs:label \"Yle topic ID\"@en ;\n\tskos:prefLabel \"Yle topic ID\"@en ;\n\tschema:name \"Yle topic ID\"@en ;\n\tschema:description \"Identifikator für Themen bei Yleisradio, der öffentlich-rechtlichen Rundfunkanstalt von Finnland\"@de,\n\t\t\"identifier for topics in Finland's national broadcaster Yle's web services\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8309 ;\n\twikibase:claim p:P8309 ;\n\twikibase:statementProperty ps:P8309 ;\n\twikibase:statementValue psv:P8309 ;\n\twikibase:qualifier pq:P8309 ;\n\twikibase:qualifierValue pqv:P8309 ;\n\twikibase:reference pr:P8309 ;\n\twikibase:referenceValue prv:P8309 ;\n\twikibase:novalue wdno:P8309 ;\n\twikibase:directClaimNormalized wdtn:P8309 ;\n\twikibase:statementValueNormalized psn:P8309 ;\n\twikibase:qualifierValueNormalized pqn:P8309 ;\n\twikibase:referenceValueNormalized prn:P8309 .\n\np:P8309 a owl:ObjectProperty .\n\npsv:P8309 a owl:ObjectProperty .\n\npqv:P8309 a owl:ObjectProperty .\n\nprv:P8309 a owl:ObjectProperty .\n\nwdt:P8309 a owl:DatatypeProperty .\n\nps:P8309 a owl:DatatypeProperty .\n\npq:P8309 a owl:DatatypeProperty .\n\npr:P8309 a owl:DatatypeProperty .\n\npsn:P8309 a owl:ObjectProperty .\n\npqn:P8309 a owl:ObjectProperty .\n\nprn:P8309 a owl:ObjectProperty .\n\nwdtn:P8309 a owl:ObjectProperty .\n\nwdno:P8309 a owl:Class ;\n\towl:complementOf _:319a8457f406453ce8c58dbafb56d5a7 .\n\n_:319a8457f406453ce8c58dbafb56d5a7 a owl:Restriction ;\n\towl:onProperty wdt:P8309 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6293 a wikibase:Property ;\n\trdfs:label \"YSA-ID\"@de ;\n\tskos:prefLabel \"YSA-ID\"@de ;\n\tschema:name \"YSA-ID\"@de ;\n\trdfs:label \"YSA ID\"@en ;\n\tskos:prefLabel \"YSA ID\"@en ;\n\tschema:name \"YSA ID\"@en ;\n\tschema:description \"identifier for a concept in the General Finnish Thesaurus YSA\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6293 ;\n\twikibase:claim p:P6293 ;\n\twikibase:statementProperty ps:P6293 ;\n\twikibase:statementValue psv:P6293 ;\n\twikibase:qualifier pq:P6293 ;\n\twikibase:qualifierValue pqv:P6293 ;\n\twikibase:reference pr:P6293 ;\n\twikibase:referenceValue prv:P6293 ;\n\twikibase:novalue wdno:P6293 ;\n\twikibase:directClaimNormalized wdtn:P6293 ;\n\twikibase:statementValueNormalized psn:P6293 ;\n\twikibase:qualifierValueNormalized pqn:P6293 ;\n\twikibase:referenceValueNormalized prn:P6293 .\n\np:P6293 a owl:ObjectProperty .\n\npsv:P6293 a owl:ObjectProperty .\n\npqv:P6293 a owl:ObjectProperty .\n\nprv:P6293 a owl:ObjectProperty .\n\nwdt:P6293 a owl:DatatypeProperty .\n\nps:P6293 a owl:DatatypeProperty .\n\npq:P6293 a owl:DatatypeProperty .\n\npr:P6293 a owl:DatatypeProperty .\n\npsn:P6293 a owl:ObjectProperty .\n\npqn:P6293 a owl:ObjectProperty .\n\nprn:P6293 a owl:ObjectProperty .\n\nwdtn:P6293 a owl:ObjectProperty .\n\nwdno:P6293 a owl:Class ;\n\towl:complementOf _:d4bb26f3c7a926c239f2bf402deeac77 .\n\n_:d4bb26f3c7a926c239f2bf402deeac77 a owl:Restriction ;\n\towl:onProperty wdt:P6293 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3579529 a wikibase:Item ;\n\trdfs:label \"Tammi\"@de ;\n\tskos:prefLabel \"Tammi\"@de ;\n\tschema:name \"Tammi\"@de ;\n\trdfs:label \"Tammi\"@mul ;\n\tskos:prefLabel \"Tammi\"@mul ;\n\tschema:name \"Tammi\"@mul ;\n\trdfs:label \"Tammi\"@en ;\n\tskos:prefLabel \"Tammi\"@en ;\n\tschema:name \"Tammi\"@en ;\n\tschema:description \"finnischer Buchverlag\"@de,\n\t\t\"Finnish publishing company\"@en .\n\nwd:P1889 a wikibase:Property ;\n\trdfs:label \"verschieden von\"@de ;\n\tskos:prefLabel \"verschieden von\"@de ;\n\tschema:name \"verschieden von\"@de ;\n\trdfs:label \"different from\"@en ;\n\tskos:prefLabel \"different from\"@en ;\n\tschema:name \"different from\"@en ;\n\tschema:description \"Objekt, das sich von einem anderen Objekt unterscheidet, die aber oft verwechselt werden\"@de,\n\t\t\"item that is different from another item, with which it may be confused\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1889 ;\n\twikibase:claim p:P1889 ;\n\twikibase:statementProperty ps:P1889 ;\n\twikibase:statementValue psv:P1889 ;\n\twikibase:qualifier pq:P1889 ;\n\twikibase:qualifierValue pqv:P1889 ;\n\twikibase:reference pr:P1889 ;\n\twikibase:referenceValue prv:P1889 ;\n\twikibase:novalue wdno:P1889 .\n\np:P1889 a owl:ObjectProperty .\n\npsv:P1889 a owl:ObjectProperty .\n\npqv:P1889 a owl:ObjectProperty .\n\nprv:P1889 a owl:ObjectProperty .\n\nwdt:P1889 a owl:ObjectProperty .\n\nps:P1889 a owl:ObjectProperty .\n\npq:P1889 a owl:ObjectProperty .\n\npr:P1889 a owl:ObjectProperty .\n\nwdno:P1889 a owl:Class ;\n\towl:complementOf _:4fcc9ce770ae6fe14cb8672fb35a8bc9 .\n\n_:4fcc9ce770ae6fe14cb8672fb35a8bc9 a owl:Restriction ;\n\towl:onProperty wdt:P1889 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6114 a wikibase:Property ;\n\trdfs:label \"Portal to the Flora of Italy ID\"@en ;\n\tskos:prefLabel \"Portal to the Flora of Italy ID\"@en ;\n\tschema:name \"Portal to the Flora of Italy ID\"@en ;\n\tschema:description \"identifier for a species on the Portal to the Flora of Italy website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6114 ;\n\twikibase:claim p:P6114 ;\n\twikibase:statementProperty ps:P6114 ;\n\twikibase:statementValue psv:P6114 ;\n\twikibase:qualifier pq:P6114 ;\n\twikibase:qualifierValue pqv:P6114 ;\n\twikibase:reference pr:P6114 ;\n\twikibase:referenceValue prv:P6114 ;\n\twikibase:novalue wdno:P6114 ;\n\twikibase:directClaimNormalized wdtn:P6114 ;\n\twikibase:statementValueNormalized psn:P6114 ;\n\twikibase:qualifierValueNormalized pqn:P6114 ;\n\twikibase:referenceValueNormalized prn:P6114 .\n\np:P6114 a owl:ObjectProperty .\n\npsv:P6114 a owl:ObjectProperty .\n\npqv:P6114 a owl:ObjectProperty .\n\nprv:P6114 a owl:ObjectProperty .\n\nwdt:P6114 a owl:DatatypeProperty .\n\nps:P6114 a owl:DatatypeProperty .\n\npq:P6114 a owl:DatatypeProperty .\n\npr:P6114 a owl:DatatypeProperty .\n\npsn:P6114 a owl:ObjectProperty .\n\npqn:P6114 a owl:ObjectProperty .\n\nprn:P6114 a owl:ObjectProperty .\n\nwdtn:P6114 a owl:ObjectProperty .\n\nwdno:P6114 a owl:Class ;\n\towl:complementOf _:b82d9f445d16ddd302faa7d06ec71921 .\n\n_:b82d9f445d16ddd302faa7d06ec71921 a owl:Restriction ;\n\towl:onProperty wdt:P6114 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10585 a wikibase:Property ;\n\trdfs:label \"CoL-ID\"@de ;\n\tskos:prefLabel \"CoL-ID\"@de ;\n\tschema:name \"CoL-ID\"@de ;\n\trdfs:label \"Catalogue of Life ID\"@en ;\n\tskos:prefLabel \"Catalogue of Life ID\"@en ;\n\tschema:name \"Catalogue of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept im Catalogue of Life (CoL)\"@de,\n\t\t\"identifier of a taxon or synonym in the Catalogue of Life\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10585 ;\n\twikibase:claim p:P10585 ;\n\twikibase:statementProperty ps:P10585 ;\n\twikibase:statementValue psv:P10585 ;\n\twikibase:qualifier pq:P10585 ;\n\twikibase:qualifierValue pqv:P10585 ;\n\twikibase:reference pr:P10585 ;\n\twikibase:referenceValue prv:P10585 ;\n\twikibase:novalue wdno:P10585 ;\n\twikibase:directClaimNormalized wdtn:P10585 ;\n\twikibase:statementValueNormalized psn:P10585 ;\n\twikibase:qualifierValueNormalized pqn:P10585 ;\n\twikibase:referenceValueNormalized prn:P10585 .\n\np:P10585 a owl:ObjectProperty .\n\npsv:P10585 a owl:ObjectProperty .\n\npqv:P10585 a owl:ObjectProperty .\n\nprv:P10585 a owl:ObjectProperty .\n\nwdt:P10585 a owl:DatatypeProperty .\n\nps:P10585 a owl:DatatypeProperty .\n\npq:P10585 a owl:DatatypeProperty .\n\npr:P10585 a owl:DatatypeProperty .\n\npsn:P10585 a owl:ObjectProperty .\n\npqn:P10585 a owl:ObjectProperty .\n\nprn:P10585 a owl:ObjectProperty .\n\nwdtn:P10585 a owl:ObjectProperty .\n\nwdno:P10585 a owl:Class ;\n\towl:complementOf _:0eab513998be3c909e4532fab5e7920d .\n\n_:0eab513998be3c909e4532fab5e7920d a owl:Restriction ;\n\towl:onProperty wdt:P10585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10793 a wikibase:Property ;\n\trdfs:label \"Woody Plants Database ID\"@en ;\n\tskos:prefLabel \"Woody Plants Database ID\"@en ;\n\tschema:name \"Woody Plants Database ID\"@en ;\n\tschema:description \"identifier for a taxon in Cornell University's Woody Plants Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10793 ;\n\twikibase:claim p:P10793 ;\n\twikibase:statementProperty ps:P10793 ;\n\twikibase:statementValue psv:P10793 ;\n\twikibase:qualifier pq:P10793 ;\n\twikibase:qualifierValue pqv:P10793 ;\n\twikibase:reference pr:P10793 ;\n\twikibase:referenceValue prv:P10793 ;\n\twikibase:novalue wdno:P10793 ;\n\twikibase:directClaimNormalized wdtn:P10793 ;\n\twikibase:statementValueNormalized psn:P10793 ;\n\twikibase:qualifierValueNormalized pqn:P10793 ;\n\twikibase:referenceValueNormalized prn:P10793 .\n\np:P10793 a owl:ObjectProperty .\n\npsv:P10793 a owl:ObjectProperty .\n\npqv:P10793 a owl:ObjectProperty .\n\nprv:P10793 a owl:ObjectProperty .\n\nwdt:P10793 a owl:DatatypeProperty .\n\nps:P10793 a owl:DatatypeProperty .\n\npq:P10793 a owl:DatatypeProperty .\n\npr:P10793 a owl:DatatypeProperty .\n\npsn:P10793 a owl:ObjectProperty .\n\npqn:P10793 a owl:ObjectProperty .\n\nprn:P10793 a owl:ObjectProperty .\n\nwdtn:P10793 a owl:ObjectProperty .\n\nwdno:P10793 a owl:Class ;\n\towl:complementOf _:e53a83dcdaf0eb30ffb88d3f54a6d266 .\n\n_:e53a83dcdaf0eb30ffb88d3f54a6d266 a owl:Restriction ;\n\towl:onProperty wdt:P10793 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P691 a wikibase:Property ;\n\trdfs:label \"NKČR-AUT-Kennung\"@de ;\n\tskos:prefLabel \"NKČR-AUT-Kennung\"@de ;\n\tschema:name \"NKČR-AUT-Kennung\"@de ;\n\trdfs:label \"NL CR AUT ID\"@en ;\n\tskos:prefLabel \"NL CR AUT ID\"@en ;\n\tschema:name \"NL CR AUT ID\"@en ;\n\tschema:description \"Identifikator in der Normdatenbank (AUT) der Nationalbibliothek der Tschechischen Republik (NK ČR)\"@de,\n\t\t\"identifier in the Czech National Authority Database of National Library of the Czech Republic (NL CR)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P691 ;\n\twikibase:claim p:P691 ;\n\twikibase:statementProperty ps:P691 ;\n\twikibase:statementValue psv:P691 ;\n\twikibase:qualifier pq:P691 ;\n\twikibase:qualifierValue pqv:P691 ;\n\twikibase:reference pr:P691 ;\n\twikibase:referenceValue prv:P691 ;\n\twikibase:novalue wdno:P691 ;\n\twikibase:directClaimNormalized wdtn:P691 ;\n\twikibase:statementValueNormalized psn:P691 ;\n\twikibase:qualifierValueNormalized pqn:P691 ;\n\twikibase:referenceValueNormalized prn:P691 .\n\np:P691 a owl:ObjectProperty .\n\npsv:P691 a owl:ObjectProperty .\n\npqv:P691 a owl:ObjectProperty .\n\nprv:P691 a owl:ObjectProperty .\n\nwdt:P691 a owl:DatatypeProperty .\n\nps:P691 a owl:DatatypeProperty .\n\npq:P691 a owl:DatatypeProperty .\n\npr:P691 a owl:DatatypeProperty .\n\npsn:P691 a owl:ObjectProperty .\n\npqn:P691 a owl:ObjectProperty .\n\nprn:P691 a owl:ObjectProperty .\n\nwdtn:P691 a owl:ObjectProperty .\n\nwdno:P691 a owl:Class ;\n\towl:complementOf _:eee17ba34d3dca4b3bf5b23f68ca71b1 .\n\n_:eee17ba34d3dca4b3bf5b23f68ca71b1 a owl:Restriction ;\n\towl:onProperty wdt:P691 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q112869398 a wikibase:Item ;\n\trdfs:label \"Flora Reipublicae Popularis Sinicae, volume 22\"@en ;\n\tskos:prefLabel \"Flora Reipublicae Popularis Sinicae, volume 22\"@en ;\n\tschema:name \"Flora Reipublicae Popularis Sinicae, volume 22\"@en .\n\nwd:P1343 a wikibase:Property ;\n\trdfs:label \"beschrieben in\"@de ;\n\tskos:prefLabel \"beschrieben in\"@de ;\n\tschema:name \"beschrieben in\"@de ;\n\trdfs:label \"described by source\"@en ;\n\tskos:prefLabel \"described by source\"@en ;\n\tschema:name \"described by source\"@en ;\n\tschema:description \"Werk, in dem das Objekt beschrieben wird\"@de,\n\t\t\"work where this item is described, in statistical contexts, a methodological note describing the data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1343 ;\n\twikibase:claim p:P1343 ;\n\twikibase:statementProperty ps:P1343 ;\n\twikibase:statementValue psv:P1343 ;\n\twikibase:qualifier pq:P1343 ;\n\twikibase:qualifierValue pqv:P1343 ;\n\twikibase:reference pr:P1343 ;\n\twikibase:referenceValue prv:P1343 ;\n\twikibase:novalue wdno:P1343 .\n\np:P1343 a owl:ObjectProperty .\n\npsv:P1343 a owl:ObjectProperty .\n\npqv:P1343 a owl:ObjectProperty .\n\nprv:P1343 a owl:ObjectProperty .\n\nwdt:P1343 a owl:ObjectProperty .\n\nps:P1343 a owl:ObjectProperty .\n\npq:P1343 a owl:ObjectProperty .\n\npr:P1343 a owl:ObjectProperty .\n\nwdno:P1343 a owl:Class ;\n\towl:complementOf _:9c5978c46703ed90be57b769a8622d59 .\n\n_:9c5978c46703ed90be57b769a8622d59 a owl:Restriction ;\n\towl:onProperty wdt:P1343 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q19133013 a wikibase:Item ;\n\trdfs:label \"Ботанический словарь\"@mul ;\n\tskos:prefLabel \"Ботанический словарь\"@mul ;\n\tschema:name \"Ботанический словарь\"@mul .\n\nwd:Q5862833 a wikibase:Item ;\n\trdfs:label \"Flora URSS\"@de ;\n\tskos:prefLabel \"Flora URSS\"@de ;\n\tschema:name \"Flora URSS\"@de ;\n\trdfs:label \"Flora URSS\"@en ;\n\tskos:prefLabel \"Flora URSS\"@en ;\n\tschema:name \"Flora URSS\"@en ;\n\tschema:description \"written work (flora)\"@en .\n\nwd:P8189 a wikibase:Property ;\n\trdfs:label \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tskos:prefLabel \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tschema:name \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\trdfs:label \"J9U ID\"@mul ;\n\tskos:prefLabel \"J9U ID\"@mul ;\n\tschema:name \"J9U ID\"@mul ;\n\trdfs:label \"National Library of Israel J9U ID\"@en ;\n\tskos:prefLabel \"National Library of Israel J9U ID\"@en ;\n\tschema:name \"National Library of Israel J9U ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags, der von der Israelischen Nationalbibliothek verwendet wird (neu)\"@de,\n\t\t\"identifier used by the National Library of Israel\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8189 ;\n\twikibase:claim p:P8189 ;\n\twikibase:statementProperty ps:P8189 ;\n\twikibase:statementValue psv:P8189 ;\n\twikibase:qualifier pq:P8189 ;\n\twikibase:qualifierValue pqv:P8189 ;\n\twikibase:reference pr:P8189 ;\n\twikibase:referenceValue prv:P8189 ;\n\twikibase:novalue wdno:P8189 ;\n\twikibase:directClaimNormalized wdtn:P8189 ;\n\twikibase:statementValueNormalized psn:P8189 ;\n\twikibase:qualifierValueNormalized pqn:P8189 ;\n\twikibase:referenceValueNormalized prn:P8189 .\n\np:P8189 a owl:ObjectProperty .\n\npsv:P8189 a owl:ObjectProperty .\n\npqv:P8189 a owl:ObjectProperty .\n\nprv:P8189 a owl:ObjectProperty .\n\nwdt:P8189 a owl:DatatypeProperty .\n\nps:P8189 a owl:DatatypeProperty .\n\npq:P8189 a owl:DatatypeProperty .\n\npr:P8189 a owl:DatatypeProperty .\n\npsn:P8189 a owl:ObjectProperty .\n\npqn:P8189 a owl:ObjectProperty .\n\nprn:P8189 a owl:ObjectProperty .\n\nwdtn:P8189 a owl:ObjectProperty .\n\nwdno:P8189 a owl:Class ;\n\towl:complementOf _:92bc7d972c1bed2e801eb42a65bd6c0a .\n\n_:92bc7d972c1bed2e801eb42a65bd6c0a a owl:Restriction ;\n\towl:onProperty wdt:P8189 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q148 a wikibase:Item ;\n\trdfs:label \"Volksrepublik China\"@de ;\n\tskos:prefLabel \"Volksrepublik China\"@de ;\n\tschema:name \"Volksrepublik China\"@de ;\n\trdfs:label \"People's Republic of China\"@en ;\n\tskos:prefLabel \"People's Republic of China\"@en ;\n\tschema:name \"People's Republic of China\"@en ;\n\tschema:description \"Staat in Ostasien\"@de,\n\t\t\"country in East Asia\"@en .\n\nwd:P9714 a wikibase:Property ;\n\trdfs:label \"Verbreitungsgebiet\"@de ;\n\tskos:prefLabel \"Verbreitungsgebiet\"@de ;\n\tschema:name \"Verbreitungsgebiet\"@de ;\n\trdfs:label \"taxon range\"@en ;\n\tskos:prefLabel \"taxon range\"@en ;\n\tschema:name \"taxon range\"@en ;\n\tschema:description \"Gebiet des aktuellen Auftretens einer Art oder einer höheren systematischen Gruppe\"@de,\n\t\t\"geographic area(s) where a taxon is found\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9714 ;\n\twikibase:claim p:P9714 ;\n\twikibase:statementProperty ps:P9714 ;\n\twikibase:statementValue psv:P9714 ;\n\twikibase:qualifier pq:P9714 ;\n\twikibase:qualifierValue pqv:P9714 ;\n\twikibase:reference pr:P9714 ;\n\twikibase:referenceValue prv:P9714 ;\n\twikibase:novalue wdno:P9714 .\n\np:P9714 a owl:ObjectProperty .\n\npsv:P9714 a owl:ObjectProperty .\n\npqv:P9714 a owl:ObjectProperty .\n\nprv:P9714 a owl:ObjectProperty .\n\nwdt:P9714 a owl:ObjectProperty .\n\nps:P9714 a owl:ObjectProperty .\n\npq:P9714 a owl:ObjectProperty .\n\npr:P9714 a owl:ObjectProperty .\n\nwdno:P9714 a owl:Class ;\n\towl:complementOf _:380f91ba7aff5a553e2dd1edebb93d29 .\n\n_:380f91ba7aff5a553e2dd1edebb93d29 a owl:Restriction ;\n\towl:onProperty wdt:P9714 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10791 a wikibase:Property ;\n\trdfs:label \"PlantFiles taxon ID\"@en ;\n\tskos:prefLabel \"PlantFiles taxon ID\"@en ;\n\tschema:name \"PlantFiles taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the PlantFiles database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10791 ;\n\twikibase:claim p:P10791 ;\n\twikibase:statementProperty ps:P10791 ;\n\twikibase:statementValue psv:P10791 ;\n\twikibase:qualifier pq:P10791 ;\n\twikibase:qualifierValue pqv:P10791 ;\n\twikibase:reference pr:P10791 ;\n\twikibase:referenceValue prv:P10791 ;\n\twikibase:novalue wdno:P10791 ;\n\twikibase:directClaimNormalized wdtn:P10791 ;\n\twikibase:statementValueNormalized psn:P10791 ;\n\twikibase:qualifierValueNormalized pqn:P10791 ;\n\twikibase:referenceValueNormalized prn:P10791 .\n\np:P10791 a owl:ObjectProperty .\n\npsv:P10791 a owl:ObjectProperty .\n\npqv:P10791 a owl:ObjectProperty .\n\nprv:P10791 a owl:ObjectProperty .\n\nwdt:P10791 a owl:DatatypeProperty .\n\nps:P10791 a owl:DatatypeProperty .\n\npq:P10791 a owl:DatatypeProperty .\n\npr:P10791 a owl:DatatypeProperty .\n\npsn:P10791 a owl:ObjectProperty .\n\npqn:P10791 a owl:ObjectProperty .\n\nprn:P10791 a owl:ObjectProperty .\n\nwdtn:P10791 a owl:ObjectProperty .\n\nwdno:P10791 a owl:Class ;\n\towl:complementOf _:10a49178ff1bbd416fc595130578d3df .\n\n_:10a49178ff1bbd416fc595130578d3df a owl:Restriction ;\n\towl:onProperty wdt:P10791 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3102 a wikibase:Property ;\n\trdfs:label \"Plantarium-ID\"@de ;\n\tskos:prefLabel \"Plantarium-ID\"@de ;\n\tschema:name \"Plantarium-ID\"@de ;\n\trdfs:label \"Plantarium ID\"@en ;\n\tskos:prefLabel \"Plantarium ID\"@en ;\n\tschema:name \"Plantarium ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Plantarium database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3102 ;\n\twikibase:claim p:P3102 ;\n\twikibase:statementProperty ps:P3102 ;\n\twikibase:statementValue psv:P3102 ;\n\twikibase:qualifier pq:P3102 ;\n\twikibase:qualifierValue pqv:P3102 ;\n\twikibase:reference pr:P3102 ;\n\twikibase:referenceValue prv:P3102 ;\n\twikibase:novalue wdno:P3102 ;\n\twikibase:directClaimNormalized wdtn:P3102 ;\n\twikibase:statementValueNormalized psn:P3102 ;\n\twikibase:qualifierValueNormalized pqn:P3102 ;\n\twikibase:referenceValueNormalized prn:P3102 .\n\np:P3102 a owl:ObjectProperty .\n\npsv:P3102 a owl:ObjectProperty .\n\npqv:P3102 a owl:ObjectProperty .\n\nprv:P3102 a owl:ObjectProperty .\n\nwdt:P3102 a owl:DatatypeProperty .\n\nps:P3102 a owl:DatatypeProperty .\n\npq:P3102 a owl:DatatypeProperty .\n\npr:P3102 a owl:DatatypeProperty .\n\npsn:P3102 a owl:ObjectProperty .\n\npqn:P3102 a owl:ObjectProperty .\n\nprn:P3102 a owl:ObjectProperty .\n\nwdtn:P3102 a owl:ObjectProperty .\n\nwdno:P3102 a owl:Class ;\n\towl:complementOf _:f9b47bd67e5b76bf31387b0d4eac646f .\n\n_:f9b47bd67e5b76bf31387b0d4eac646f a owl:Restriction ;\n\towl:onProperty wdt:P3102 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q56241615 a wikibase:Item ;\n\trdfs:label \"WikiProject Invasion Biology\"@en ;\n\tskos:prefLabel \"WikiProject Invasion Biology\"@en ;\n\tschema:name \"WikiProject Invasion Biology\"@en ;\n\tschema:description \"Wikiprojekt\"@de,\n\t\t\"Wikimedia collaborative project around invasive species\"@en .\n\nwd:P6104 a wikibase:Property ;\n\trdfs:label \"betreut von WikiProjekt\"@de ;\n\tskos:prefLabel \"betreut von WikiProjekt\"@de ;\n\tschema:name \"betreut von WikiProjekt\"@de ;\n\trdfs:label \"maintained by WikiProject\"@en ;\n\tskos:prefLabel \"maintained by WikiProject\"@en ;\n\tschema:name \"maintained by WikiProject\"@en ;\n\tschema:description \"WikiProjekt, welches diese Eigenschaft, dieses Objekt, oder dieses Lexem betreut. Für WikiProjekte außerhalb von Wikidata ergänze den Geltungsbereich mit einem Qualifikator \\\" ist Teil von\\\" (P361).\"@de,\n\t\t\"WikiProject that maintains this property, item, or linked pages. If the WikiProject is hosted outside of Wikidata, identify the hosting project using the qualifier \\\"part of\\\" (P361)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6104 ;\n\twikibase:claim p:P6104 ;\n\twikibase:statementProperty ps:P6104 ;\n\twikibase:statementValue psv:P6104 ;\n\twikibase:qualifier pq:P6104 ;\n\twikibase:qualifierValue pqv:P6104 ;\n\twikibase:reference pr:P6104 ;\n\twikibase:referenceValue prv:P6104 ;\n\twikibase:novalue wdno:P6104 .\n\np:P6104 a owl:ObjectProperty .\n\npsv:P6104 a owl:ObjectProperty .\n\npqv:P6104 a owl:ObjectProperty .\n\nprv:P6104 a owl:ObjectProperty .\n\nwdt:P6104 a owl:ObjectProperty .\n\nps:P6104 a owl:ObjectProperty .\n\npq:P6104 a owl:ObjectProperty .\n\npr:P6104 a owl:ObjectProperty .\n\nwdno:P6104 a owl:Class ;\n\towl:complementOf _:8ed522f108b0fd974fa8303edd0ec44c .\n\n_:8ed522f108b0fd974fa8303edd0ec44c a owl:Restriction ;\n\towl:onProperty wdt:P6104 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11067 a wikibase:Property ;\n\trdfs:label \"UConn Plant Database ID\"@en ;\n\tskos:prefLabel \"UConn Plant Database ID\"@en ;\n\tschema:name \"UConn Plant Database ID\"@en ;\n\tschema:description \"identifier for a woody landscape plant taxon in the UConn Plant Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11067 ;\n\twikibase:claim p:P11067 ;\n\twikibase:statementProperty ps:P11067 ;\n\twikibase:statementValue psv:P11067 ;\n\twikibase:qualifier pq:P11067 ;\n\twikibase:qualifierValue pqv:P11067 ;\n\twikibase:reference pr:P11067 ;\n\twikibase:referenceValue prv:P11067 ;\n\twikibase:novalue wdno:P11067 ;\n\twikibase:directClaimNormalized wdtn:P11067 ;\n\twikibase:statementValueNormalized psn:P11067 ;\n\twikibase:qualifierValueNormalized pqn:P11067 ;\n\twikibase:referenceValueNormalized prn:P11067 .\n\np:P11067 a owl:ObjectProperty .\n\npsv:P11067 a owl:ObjectProperty .\n\npqv:P11067 a owl:ObjectProperty .\n\nprv:P11067 a owl:ObjectProperty .\n\nwdt:P11067 a owl:DatatypeProperty .\n\nps:P11067 a owl:DatatypeProperty .\n\npq:P11067 a owl:DatatypeProperty .\n\npr:P11067 a owl:DatatypeProperty .\n\npsn:P11067 a owl:ObjectProperty .\n\npqn:P11067 a owl:ObjectProperty .\n\nprn:P11067 a owl:ObjectProperty .\n\nwdtn:P11067 a owl:ObjectProperty .\n\nwdno:P11067 a owl:Class ;\n\towl:complementOf _:4786f11d79f751559432f75158445022 .\n\n_:4786f11d79f751559432f75158445022 a owl:Restriction ;\n\towl:onProperty wdt:P11067 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10701 a wikibase:Property ;\n\trdfs:label \"Reflora ID\"@en ;\n\tskos:prefLabel \"Reflora ID\"@en ;\n\tschema:name \"Reflora ID\"@en ;\n\tschema:description \"identifier for a taxon on the Reflora Flora e Funga do Brasil website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10701 ;\n\twikibase:claim p:P10701 ;\n\twikibase:statementProperty ps:P10701 ;\n\twikibase:statementValue psv:P10701 ;\n\twikibase:qualifier pq:P10701 ;\n\twikibase:qualifierValue pqv:P10701 ;\n\twikibase:reference pr:P10701 ;\n\twikibase:referenceValue prv:P10701 ;\n\twikibase:novalue wdno:P10701 ;\n\twikibase:directClaimNormalized wdtn:P10701 ;\n\twikibase:statementValueNormalized psn:P10701 ;\n\twikibase:qualifierValueNormalized pqn:P10701 ;\n\twikibase:referenceValueNormalized prn:P10701 .\n\np:P10701 a owl:ObjectProperty .\n\npsv:P10701 a owl:ObjectProperty .\n\npqv:P10701 a owl:ObjectProperty .\n\nprv:P10701 a owl:ObjectProperty .\n\nwdt:P10701 a owl:DatatypeProperty .\n\nps:P10701 a owl:DatatypeProperty .\n\npq:P10701 a owl:DatatypeProperty .\n\npr:P10701 a owl:DatatypeProperty .\n\npsn:P10701 a owl:ObjectProperty .\n\npqn:P10701 a owl:ObjectProperty .\n\nprn:P10701 a owl:ObjectProperty .\n\nwdtn:P10701 a owl:ObjectProperty .\n\nwdno:P10701 a owl:Class ;\n\towl:complementOf _:dbfe4a31bd767a32457edef0ca19440f .\n\n_:dbfe4a31bd767a32457edef0ca19440f a owl:Restriction ;\n\towl:onProperty wdt:P10701 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q11009 a wikibase:Item ;\n\trdfs:label \"Nussfrucht\"@de ;\n\tskos:prefLabel \"Nussfrucht\"@de ;\n\tschema:name \"Nussfrucht\"@de ;\n\trdfs:label \"nut\"@en ;\n\tskos:prefLabel \"nut\"@en ;\n\tschema:name \"nut\"@en ;\n\tschema:description \"Schließfrucht, bei der alle drei Schichten der Fruchtwand verholzen\"@de,\n\t\t\"in botany, type of dry indehiscent fruit\"@en .\n\nwd:P4000 a wikibase:Property ;\n\trdfs:label \"Fruchttyp\"@de ;\n\tskos:prefLabel \"Fruchttyp\"@de ;\n\tschema:name \"Fruchttyp\"@de ;\n\trdfs:label \"has fruit type\"@en ;\n\tskos:prefLabel \"has fruit type\"@en ;\n\tschema:name \"has fruit type\"@en ;\n\tschema:description \"morphology of the fruit of this taxon, as defined in botany\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4000 ;\n\twikibase:claim p:P4000 ;\n\twikibase:statementProperty ps:P4000 ;\n\twikibase:statementValue psv:P4000 ;\n\twikibase:qualifier pq:P4000 ;\n\twikibase:qualifierValue pqv:P4000 ;\n\twikibase:reference pr:P4000 ;\n\twikibase:referenceValue prv:P4000 ;\n\twikibase:novalue wdno:P4000 .\n\np:P4000 a owl:ObjectProperty .\n\npsv:P4000 a owl:ObjectProperty .\n\npqv:P4000 a owl:ObjectProperty .\n\nprv:P4000 a owl:ObjectProperty .\n\nwdt:P4000 a owl:ObjectProperty .\n\nps:P4000 a owl:ObjectProperty .\n\npq:P4000 a owl:ObjectProperty .\n\npr:P4000 a owl:ObjectProperty .\n\nwdno:P4000 a owl:Class ;\n\towl:complementOf _:68811254c8a5b1c08bb4e074836b7a2c .\n\n_:68811254c8a5b1c08bb4e074836b7a2c a owl:Restriction ;\n\towl:onProperty wdt:P4000 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10711 a wikibase:Property ;\n\trdfs:label \"Invasive.org species ID\"@en ;\n\tskos:prefLabel \"Invasive.org species ID\"@en ;\n\tschema:name \"Invasive.org species ID\"@en ;\n\tschema:description \"identifier for a species on Invasive.org\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10711 ;\n\twikibase:claim p:P10711 ;\n\twikibase:statementProperty ps:P10711 ;\n\twikibase:statementValue psv:P10711 ;\n\twikibase:qualifier pq:P10711 ;\n\twikibase:qualifierValue pqv:P10711 ;\n\twikibase:reference pr:P10711 ;\n\twikibase:referenceValue prv:P10711 ;\n\twikibase:novalue wdno:P10711 ;\n\twikibase:directClaimNormalized wdtn:P10711 ;\n\twikibase:statementValueNormalized psn:P10711 ;\n\twikibase:qualifierValueNormalized pqn:P10711 ;\n\twikibase:referenceValueNormalized prn:P10711 .\n\np:P10711 a owl:ObjectProperty .\n\npsv:P10711 a owl:ObjectProperty .\n\npqv:P10711 a owl:ObjectProperty .\n\nprv:P10711 a owl:ObjectProperty .\n\nwdt:P10711 a owl:DatatypeProperty .\n\nps:P10711 a owl:DatatypeProperty .\n\npq:P10711 a owl:DatatypeProperty .\n\npr:P10711 a owl:DatatypeProperty .\n\npsn:P10711 a owl:ObjectProperty .\n\npqn:P10711 a owl:ObjectProperty .\n\nprn:P10711 a owl:ObjectProperty .\n\nwdtn:P10711 a owl:ObjectProperty .\n\nwdno:P10711 a owl:Class ;\n\towl:complementOf _:039a02f8db6756d359bdd91bf8f8b253 .\n\n_:039a02f8db6756d359bdd91bf8f8b253 a owl:Restriction ;\n\towl:onProperty wdt:P10711 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9495 a wikibase:Property ;\n\trdfs:label \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\tskos:prefLabel \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\tschema:name \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\trdfs:label \"National Historical Museums of Sweden ID\"@en ;\n\tskos:prefLabel \"National Historical Museums of Sweden ID\"@en ;\n\tschema:name \"National Historical Museums of Sweden ID\"@en ;\n\tschema:description \"authority identification for an entry in the collections of the National Historical Museums of Sweden\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9495 ;\n\twikibase:claim p:P9495 ;\n\twikibase:statementProperty ps:P9495 ;\n\twikibase:statementValue psv:P9495 ;\n\twikibase:qualifier pq:P9495 ;\n\twikibase:qualifierValue pqv:P9495 ;\n\twikibase:reference pr:P9495 ;\n\twikibase:referenceValue prv:P9495 ;\n\twikibase:novalue wdno:P9495 ;\n\twikibase:directClaimNormalized wdtn:P9495 ;\n\twikibase:statementValueNormalized psn:P9495 ;\n\twikibase:qualifierValueNormalized pqn:P9495 ;\n\twikibase:referenceValueNormalized prn:P9495 .\n\np:P9495 a owl:ObjectProperty .\n\npsv:P9495 a owl:ObjectProperty .\n\npqv:P9495 a owl:ObjectProperty .\n\nprv:P9495 a owl:ObjectProperty .\n\nwdt:P9495 a owl:DatatypeProperty .\n\nps:P9495 a owl:DatatypeProperty .\n\npq:P9495 a owl:DatatypeProperty .\n\npr:P9495 a owl:DatatypeProperty .\n\npsn:P9495 a owl:ObjectProperty .\n\npqn:P9495 a owl:ObjectProperty .\n\nprn:P9495 a owl:ObjectProperty .\n\nwdtn:P9495 a owl:ObjectProperty .\n\nwdno:P9495 a owl:Class ;\n\towl:complementOf _:b393b57caf3c635b71794ace5be1f20b .\n\n_:b393b57caf3c635b71794ace5be1f20b a owl:Restriction ;\n\towl:onProperty wdt:P9495 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11514 a wikibase:Property ;\n\trdfs:label \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tskos:prefLabel \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tschema:name \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\trdfs:label \"Great Russian Encyclopedia portal ID\"@en ;\n\tskos:prefLabel \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:name \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:description \"Identifikator eines Portals auf der offiziellen Website der Großen Russischen Enzyklopädie\"@de,\n\t\t\"identifier of an entry on the web portal based on the Great Russian Encyclopedia (for the older version of encyclopedia use P2924)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11514 ;\n\twikibase:claim p:P11514 ;\n\twikibase:statementProperty ps:P11514 ;\n\twikibase:statementValue psv:P11514 ;\n\twikibase:qualifier pq:P11514 ;\n\twikibase:qualifierValue pqv:P11514 ;\n\twikibase:reference pr:P11514 ;\n\twikibase:referenceValue prv:P11514 ;\n\twikibase:novalue wdno:P11514 ;\n\twikibase:directClaimNormalized wdtn:P11514 ;\n\twikibase:statementValueNormalized psn:P11514 ;\n\twikibase:qualifierValueNormalized pqn:P11514 ;\n\twikibase:referenceValueNormalized prn:P11514 .\n\np:P11514 a owl:ObjectProperty .\n\npsv:P11514 a owl:ObjectProperty .\n\npqv:P11514 a owl:ObjectProperty .\n\nprv:P11514 a owl:ObjectProperty .\n\nwdt:P11514 a owl:DatatypeProperty .\n\nps:P11514 a owl:DatatypeProperty .\n\npq:P11514 a owl:DatatypeProperty .\n\npr:P11514 a owl:DatatypeProperty .\n\npsn:P11514 a owl:ObjectProperty .\n\npqn:P11514 a owl:ObjectProperty .\n\nprn:P11514 a owl:ObjectProperty .\n\nwdtn:P11514 a owl:ObjectProperty .\n\nwdno:P11514 a owl:Class ;\n\towl:complementOf _:5d36652ac32d2710f4fb28e817a22714 .\n\n_:5d36652ac32d2710f4fb28e817a22714 a owl:Restriction ;\n\towl:onProperty wdt:P11514 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9503 a wikibase:Property ;\n\trdfs:label \"MyBIS species ID\"@en ;\n\tskos:prefLabel \"MyBIS species ID\"@en ;\n\tschema:name \"MyBIS species ID\"@en ;\n\tschema:description \"identifier for a species in the Malaysia Biodiversity Information System\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9503 ;\n\twikibase:claim p:P9503 ;\n\twikibase:statementProperty ps:P9503 ;\n\twikibase:statementValue psv:P9503 ;\n\twikibase:qualifier pq:P9503 ;\n\twikibase:qualifierValue pqv:P9503 ;\n\twikibase:reference pr:P9503 ;\n\twikibase:referenceValue prv:P9503 ;\n\twikibase:novalue wdno:P9503 ;\n\twikibase:directClaimNormalized wdtn:P9503 ;\n\twikibase:statementValueNormalized psn:P9503 ;\n\twikibase:qualifierValueNormalized pqn:P9503 ;\n\twikibase:referenceValueNormalized prn:P9503 .\n\np:P9503 a owl:ObjectProperty .\n\npsv:P9503 a owl:ObjectProperty .\n\npqv:P9503 a owl:ObjectProperty .\n\nprv:P9503 a owl:ObjectProperty .\n\nwdt:P9503 a owl:DatatypeProperty .\n\nps:P9503 a owl:DatatypeProperty .\n\npq:P9503 a owl:DatatypeProperty .\n\npr:P9503 a owl:DatatypeProperty .\n\npsn:P9503 a owl:ObjectProperty .\n\npqn:P9503 a owl:ObjectProperty .\n\nprn:P9503 a owl:ObjectProperty .\n\nwdtn:P9503 a owl:ObjectProperty .\n\nwdno:P9503 a owl:Class ;\n\towl:complementOf _:56f00452e5530ef78b1cc211ceeb6c7e .\n\n_:56f00452e5530ef78b1cc211ceeb6c7e a owl:Restriction ;\n\towl:onProperty wdt:P9503 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11824 a wikibase:Property ;\n\trdfs:label \"KPU Plant Database ID\"@en ;\n\tskos:prefLabel \"KPU Plant Database ID\"@en ;\n\tschema:name \"KPU Plant Database ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the KPU Plant Database of the Kwantlen Polytechnic University School of Horticulture\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11824 ;\n\twikibase:claim p:P11824 ;\n\twikibase:statementProperty ps:P11824 ;\n\twikibase:statementValue psv:P11824 ;\n\twikibase:qualifier pq:P11824 ;\n\twikibase:qualifierValue pqv:P11824 ;\n\twikibase:reference pr:P11824 ;\n\twikibase:referenceValue prv:P11824 ;\n\twikibase:novalue wdno:P11824 ;\n\twikibase:directClaimNormalized wdtn:P11824 ;\n\twikibase:statementValueNormalized psn:P11824 ;\n\twikibase:qualifierValueNormalized pqn:P11824 ;\n\twikibase:referenceValueNormalized prn:P11824 .\n\np:P11824 a owl:ObjectProperty .\n\npsv:P11824 a owl:ObjectProperty .\n\npqv:P11824 a owl:ObjectProperty .\n\nprv:P11824 a owl:ObjectProperty .\n\nwdt:P11824 a owl:DatatypeProperty .\n\nps:P11824 a owl:DatatypeProperty .\n\npq:P11824 a owl:DatatypeProperty .\n\npr:P11824 a owl:DatatypeProperty .\n\npsn:P11824 a owl:ObjectProperty .\n\npqn:P11824 a owl:ObjectProperty .\n\nprn:P11824 a owl:ObjectProperty .\n\nwdtn:P11824 a owl:ObjectProperty .\n\nwdno:P11824 a owl:Class ;\n\towl:complementOf _:a80fb22c15f40f8cf5bcd9e45efd5c6a .\n\n_:a80fb22c15f40f8cf5bcd9e45efd5c6a a owl:Restriction ;\n\towl:onProperty wdt:P11824 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2892 a wikibase:Property ;\n\trdfs:label \"UMLS CUI\"@de ;\n\tskos:prefLabel \"UMLS CUI\"@de ;\n\tschema:name \"UMLS CUI\"@de ;\n\trdfs:label \"UMLS CUI\"@en ;\n\tskos:prefLabel \"UMLS CUI\"@en ;\n\tschema:name \"UMLS CUI\"@en ;\n\tschema:description \"NLM Unified Medical Language System (UMLS) controlled biomedical vocabulary unique identifier\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2892 ;\n\twikibase:claim p:P2892 ;\n\twikibase:statementProperty ps:P2892 ;\n\twikibase:statementValue psv:P2892 ;\n\twikibase:qualifier pq:P2892 ;\n\twikibase:qualifierValue pqv:P2892 ;\n\twikibase:reference pr:P2892 ;\n\twikibase:referenceValue prv:P2892 ;\n\twikibase:novalue wdno:P2892 ;\n\twikibase:directClaimNormalized wdtn:P2892 ;\n\twikibase:statementValueNormalized psn:P2892 ;\n\twikibase:qualifierValueNormalized pqn:P2892 ;\n\twikibase:referenceValueNormalized prn:P2892 .\n\np:P2892 a owl:ObjectProperty .\n\npsv:P2892 a owl:ObjectProperty .\n\npqv:P2892 a owl:ObjectProperty .\n\nprv:P2892 a owl:ObjectProperty .\n\nwdt:P2892 a owl:DatatypeProperty .\n\nps:P2892 a owl:DatatypeProperty .\n\npq:P2892 a owl:DatatypeProperty .\n\npr:P2892 a owl:DatatypeProperty .\n\npsn:P2892 a owl:ObjectProperty .\n\npqn:P2892 a owl:ObjectProperty .\n\nprn:P2892 a owl:ObjectProperty .\n\nwdtn:P2892 a owl:ObjectProperty .\n\nwdno:P2892 a owl:Class ;\n\towl:complementOf _:7f1dcb74568bce8b9b5e3a764e58321b .\n\n_:7f1dcb74568bce8b9b5e3a764e58321b a owl:Restriction ;\n\towl:onProperty wdt:P2892 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10366 a wikibase:Property ;\n\trdfs:label \"Gardens Navigator ID\"@en ;\n\tskos:prefLabel \"Gardens Navigator ID\"@en ;\n\tschema:name \"Gardens Navigator ID\"@en ;\n\tschema:description \"identifier for a plant taxon on Gardens Navigator\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10366 ;\n\twikibase:claim p:P10366 ;\n\twikibase:statementProperty ps:P10366 ;\n\twikibase:statementValue psv:P10366 ;\n\twikibase:qualifier pq:P10366 ;\n\twikibase:qualifierValue pqv:P10366 ;\n\twikibase:reference pr:P10366 ;\n\twikibase:referenceValue prv:P10366 ;\n\twikibase:novalue wdno:P10366 ;\n\twikibase:directClaimNormalized wdtn:P10366 ;\n\twikibase:statementValueNormalized psn:P10366 ;\n\twikibase:qualifierValueNormalized pqn:P10366 ;\n\twikibase:referenceValueNormalized prn:P10366 .\n\np:P10366 a owl:ObjectProperty .\n\npsv:P10366 a owl:ObjectProperty .\n\npqv:P10366 a owl:ObjectProperty .\n\nprv:P10366 a owl:ObjectProperty .\n\nwdt:P10366 a owl:DatatypeProperty .\n\nps:P10366 a owl:DatatypeProperty .\n\npq:P10366 a owl:DatatypeProperty .\n\npr:P10366 a owl:DatatypeProperty .\n\npsn:P10366 a owl:ObjectProperty .\n\npqn:P10366 a owl:ObjectProperty .\n\nprn:P10366 a owl:ObjectProperty .\n\nwdtn:P10366 a owl:ObjectProperty .\n\nwdno:P10366 a owl:Class ;\n\towl:complementOf _:0a327d65911100bcfc4aa553a63160f4 .\n\n_:0a327d65911100bcfc4aa553a63160f4 a owl:Restriction ;\n\towl:onProperty wdt:P10366 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1813 a wikibase:Property ;\n\trdfs:label \"Kurzname\"@de ;\n\tskos:prefLabel \"Kurzname\"@de ;\n\tschema:name \"Kurzname\"@de ;\n\trdfs:label \"short name\"@en ;\n\tskos:prefLabel \"short name\"@en ;\n\tschema:name \"short name\"@en ;\n\tschema:description \"kurzer Name eines Ortes, einer Organisation, Person etc.\"@de,\n\t\t\"short name of a place, organisation, person, journal, Wikidata property, etc. Used by some Wikipedia templates\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1813 ;\n\twikibase:claim p:P1813 ;\n\twikibase:statementProperty ps:P1813 ;\n\twikibase:statementValue psv:P1813 ;\n\twikibase:qualifier pq:P1813 ;\n\twikibase:qualifierValue pqv:P1813 ;\n\twikibase:reference pr:P1813 ;\n\twikibase:referenceValue prv:P1813 ;\n\twikibase:novalue wdno:P1813 .\n\np:P1813 a owl:ObjectProperty .\n\npsv:P1813 a owl:ObjectProperty .\n\npqv:P1813 a owl:ObjectProperty .\n\nprv:P1813 a owl:ObjectProperty .\n\nwdt:P1813 a owl:DatatypeProperty .\n\nps:P1813 a owl:DatatypeProperty .\n\npq:P1813 a owl:DatatypeProperty .\n\npr:P1813 a owl:DatatypeProperty .\n\nwdno:P1813 a owl:Class ;\n\towl:complementOf _:4a7b6a517307eeaf8a892e11937a0f7f .\n\n_:4a7b6a517307eeaf8a892e11937a0f7f a owl:Restriction ;\n\towl:onProperty wdt:P1813 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7537 a wikibase:Property ;\n\trdfs:label \"India Biodiversity Portal species ID\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal species ID\"@en ;\n\tschema:name \"India Biodiversity Portal species ID\"@en ;\n\tschema:description \"identifier for species found in India maintained by the 'India Biodiversity Portal' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7537 ;\n\twikibase:claim p:P7537 ;\n\twikibase:statementProperty ps:P7537 ;\n\twikibase:statementValue psv:P7537 ;\n\twikibase:qualifier pq:P7537 ;\n\twikibase:qualifierValue pqv:P7537 ;\n\twikibase:reference pr:P7537 ;\n\twikibase:referenceValue prv:P7537 ;\n\twikibase:novalue wdno:P7537 ;\n\twikibase:directClaimNormalized wdtn:P7537 ;\n\twikibase:statementValueNormalized psn:P7537 ;\n\twikibase:qualifierValueNormalized pqn:P7537 ;\n\twikibase:referenceValueNormalized prn:P7537 .\n\np:P7537 a owl:ObjectProperty .\n\npsv:P7537 a owl:ObjectProperty .\n\npqv:P7537 a owl:ObjectProperty .\n\nprv:P7537 a owl:ObjectProperty .\n\nwdt:P7537 a owl:DatatypeProperty .\n\nps:P7537 a owl:DatatypeProperty .\n\npq:P7537 a owl:DatatypeProperty .\n\npr:P7537 a owl:DatatypeProperty .\n\npsn:P7537 a owl:ObjectProperty .\n\npqn:P7537 a owl:ObjectProperty .\n\nprn:P7537 a owl:ObjectProperty .\n\nwdtn:P7537 a owl:ObjectProperty .\n\nwdno:P7537 a owl:Class ;\n\towl:complementOf _:45bfeffd386632be7dfa03e971418aee .\n\n_:45bfeffd386632be7dfa03e971418aee a owl:Restriction ;\n\towl:onProperty wdt:P7537 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7587 a wikibase:Property ;\n\trdfs:label \"eFloraSA-ID\"@de ;\n\tskos:prefLabel \"eFloraSA-ID\"@de ;\n\tschema:name \"eFloraSA-ID\"@de ;\n\trdfs:label \"eFloraSA ID\"@en ;\n\tskos:prefLabel \"eFloraSA ID\"@en ;\n\tschema:name \"eFloraSA ID\"@en ;\n\tschema:description \"Electronic Flora of South Australia: Factsheet ID\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7587 ;\n\twikibase:claim p:P7587 ;\n\twikibase:statementProperty ps:P7587 ;\n\twikibase:statementValue psv:P7587 ;\n\twikibase:qualifier pq:P7587 ;\n\twikibase:qualifierValue pqv:P7587 ;\n\twikibase:reference pr:P7587 ;\n\twikibase:referenceValue prv:P7587 ;\n\twikibase:novalue wdno:P7587 ;\n\twikibase:directClaimNormalized wdtn:P7587 ;\n\twikibase:statementValueNormalized psn:P7587 ;\n\twikibase:qualifierValueNormalized pqn:P7587 ;\n\twikibase:referenceValueNormalized prn:P7587 .\n\np:P7587 a owl:ObjectProperty .\n\npsv:P7587 a owl:ObjectProperty .\n\npqv:P7587 a owl:ObjectProperty .\n\nprv:P7587 a owl:ObjectProperty .\n\nwdt:P7587 a owl:DatatypeProperty .\n\nps:P7587 a owl:DatatypeProperty .\n\npq:P7587 a owl:DatatypeProperty .\n\npr:P7587 a owl:DatatypeProperty .\n\npsn:P7587 a owl:ObjectProperty .\n\npqn:P7587 a owl:ObjectProperty .\n\nprn:P7587 a owl:ObjectProperty .\n\nwdtn:P7587 a owl:ObjectProperty .\n\nwdno:P7587 a owl:Class ;\n\towl:complementOf _:d33b174d2739b1f99e60ac834b832726 .\n\n_:d33b174d2739b1f99e60ac834b832726 a owl:Restriction ;\n\towl:onProperty wdt:P7587 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10333 a wikibase:Property ;\n\trdfs:label \"New York Flora Atlas ID\"@en ;\n\tskos:prefLabel \"New York Flora Atlas ID\"@en ;\n\tschema:name \"New York Flora Atlas ID\"@en ;\n\tschema:description \"identifier of a taxon in the New York Flora Atlas\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10333 ;\n\twikibase:claim p:P10333 ;\n\twikibase:statementProperty ps:P10333 ;\n\twikibase:statementValue psv:P10333 ;\n\twikibase:qualifier pq:P10333 ;\n\twikibase:qualifierValue pqv:P10333 ;\n\twikibase:reference pr:P10333 ;\n\twikibase:referenceValue prv:P10333 ;\n\twikibase:novalue wdno:P10333 ;\n\twikibase:directClaimNormalized wdtn:P10333 ;\n\twikibase:statementValueNormalized psn:P10333 ;\n\twikibase:qualifierValueNormalized pqn:P10333 ;\n\twikibase:referenceValueNormalized prn:P10333 .\n\np:P10333 a owl:ObjectProperty .\n\npsv:P10333 a owl:ObjectProperty .\n\npqv:P10333 a owl:ObjectProperty .\n\nprv:P10333 a owl:ObjectProperty .\n\nwdt:P10333 a owl:DatatypeProperty .\n\nps:P10333 a owl:DatatypeProperty .\n\npq:P10333 a owl:DatatypeProperty .\n\npr:P10333 a owl:DatatypeProperty .\n\npsn:P10333 a owl:ObjectProperty .\n\npqn:P10333 a owl:ObjectProperty .\n\nprn:P10333 a owl:ObjectProperty .\n\nwdtn:P10333 a owl:ObjectProperty .\n\nwdno:P10333 a owl:Class ;\n\towl:complementOf _:977e4838728f677df23a8fe2cdfda12c .\n\n_:977e4838728f677df23a8fe2cdfda12c a owl:Restriction ;\n\towl:onProperty wdt:P10333 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11078 a wikibase:Property ;\n\trdfs:label \"Naturbasen species ID\"@en ;\n\tskos:prefLabel \"Naturbasen species ID\"@en ;\n\tschema:name \"Naturbasen species ID\"@en ;\n\tschema:description \"identifier for a species at Naturbasen\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11078 ;\n\twikibase:claim p:P11078 ;\n\twikibase:statementProperty ps:P11078 ;\n\twikibase:statementValue psv:P11078 ;\n\twikibase:qualifier pq:P11078 ;\n\twikibase:qualifierValue pqv:P11078 ;\n\twikibase:reference pr:P11078 ;\n\twikibase:referenceValue prv:P11078 ;\n\twikibase:novalue wdno:P11078 ;\n\twikibase:directClaimNormalized wdtn:P11078 ;\n\twikibase:statementValueNormalized psn:P11078 ;\n\twikibase:qualifierValueNormalized pqn:P11078 ;\n\twikibase:referenceValueNormalized prn:P11078 .\n\np:P11078 a owl:ObjectProperty .\n\npsv:P11078 a owl:ObjectProperty .\n\npqv:P11078 a owl:ObjectProperty .\n\nprv:P11078 a owl:ObjectProperty .\n\nwdt:P11078 a owl:DatatypeProperty .\n\nps:P11078 a owl:DatatypeProperty .\n\npq:P11078 a owl:DatatypeProperty .\n\npr:P11078 a owl:DatatypeProperty .\n\npsn:P11078 a owl:ObjectProperty .\n\npqn:P11078 a owl:ObjectProperty .\n\nprn:P11078 a owl:ObjectProperty .\n\nwdtn:P11078 a owl:ObjectProperty .\n\nwdno:P11078 a owl:Class ;\n\towl:complementOf _:e58a71e648b560b769dd209adadbd823 .\n\n_:e58a71e648b560b769dd209adadbd823 a owl:Restriction ;\n\towl:onProperty wdt:P11078 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10561 a wikibase:Property ;\n\trdfs:label \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tskos:prefLabel \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tschema:name \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tschema:description \"identifier for a North American tree taxon in the Virginia Tech Dendrology Factsheets database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10561 ;\n\twikibase:claim p:P10561 ;\n\twikibase:statementProperty ps:P10561 ;\n\twikibase:statementValue psv:P10561 ;\n\twikibase:qualifier pq:P10561 ;\n\twikibase:qualifierValue pqv:P10561 ;\n\twikibase:reference pr:P10561 ;\n\twikibase:referenceValue prv:P10561 ;\n\twikibase:novalue wdno:P10561 ;\n\twikibase:directClaimNormalized wdtn:P10561 ;\n\twikibase:statementValueNormalized psn:P10561 ;\n\twikibase:qualifierValueNormalized pqn:P10561 ;\n\twikibase:referenceValueNormalized prn:P10561 .\n\np:P10561 a owl:ObjectProperty .\n\npsv:P10561 a owl:ObjectProperty .\n\npqv:P10561 a owl:ObjectProperty .\n\nprv:P10561 a owl:ObjectProperty .\n\nwdt:P10561 a owl:DatatypeProperty .\n\nps:P10561 a owl:DatatypeProperty .\n\npq:P10561 a owl:DatatypeProperty .\n\npr:P10561 a owl:DatatypeProperty .\n\npsn:P10561 a owl:ObjectProperty .\n\npqn:P10561 a owl:ObjectProperty .\n\nprn:P10561 a owl:ObjectProperty .\n\nwdtn:P10561 a owl:ObjectProperty .\n\nwdno:P10561 a owl:Class ;\n\towl:complementOf _:ad1d030a72e2da213f8858c667e0f4a9 .\n\n_:ad1d030a72e2da213f8858c667e0f4a9 a owl:Restriction ;\n\towl:onProperty wdt:P10561 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11829 a wikibase:Property ;\n\trdfs:label \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tskos:prefLabel \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tschema:name \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tschema:description \"identifier of a plant taxon in the Chicago Botanic Garden's Plant Finder database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11829 ;\n\twikibase:claim p:P11829 ;\n\twikibase:statementProperty ps:P11829 ;\n\twikibase:statementValue psv:P11829 ;\n\twikibase:qualifier pq:P11829 ;\n\twikibase:qualifierValue pqv:P11829 ;\n\twikibase:reference pr:P11829 ;\n\twikibase:referenceValue prv:P11829 ;\n\twikibase:novalue wdno:P11829 ;\n\twikibase:directClaimNormalized wdtn:P11829 ;\n\twikibase:statementValueNormalized psn:P11829 ;\n\twikibase:qualifierValueNormalized pqn:P11829 ;\n\twikibase:referenceValueNormalized prn:P11829 .\n\np:P11829 a owl:ObjectProperty .\n\npsv:P11829 a owl:ObjectProperty .\n\npqv:P11829 a owl:ObjectProperty .\n\nprv:P11829 a owl:ObjectProperty .\n\nwdt:P11829 a owl:DatatypeProperty .\n\nps:P11829 a owl:DatatypeProperty .\n\npq:P11829 a owl:DatatypeProperty .\n\npr:P11829 a owl:DatatypeProperty .\n\npsn:P11829 a owl:ObjectProperty .\n\npqn:P11829 a owl:ObjectProperty .\n\nprn:P11829 a owl:ObjectProperty .\n\nwdtn:P11829 a owl:ObjectProperty .\n\nwdno:P11829 a owl:Class ;\n\towl:complementOf _:4efcdbd1babb7f9368819b2031f641f0 .\n\n_:4efcdbd1babb7f9368819b2031f641f0 a owl:Restriction ;\n\towl:onProperty wdt:P11829 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9691 a wikibase:Property ;\n\trdfs:label \"E-Flora BC species ID\"@en ;\n\tskos:prefLabel \"E-Flora BC species ID\"@en ;\n\tschema:name \"E-Flora BC species ID\"@en ;\n\tschema:description \"identifier for a plant species, subspecies, or variety on E-Flora BC\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9691 ;\n\twikibase:claim p:P9691 ;\n\twikibase:statementProperty ps:P9691 ;\n\twikibase:statementValue psv:P9691 ;\n\twikibase:qualifier pq:P9691 ;\n\twikibase:qualifierValue pqv:P9691 ;\n\twikibase:reference pr:P9691 ;\n\twikibase:referenceValue prv:P9691 ;\n\twikibase:novalue wdno:P9691 ;\n\twikibase:directClaimNormalized wdtn:P9691 ;\n\twikibase:statementValueNormalized psn:P9691 ;\n\twikibase:qualifierValueNormalized pqn:P9691 ;\n\twikibase:referenceValueNormalized prn:P9691 .\n\np:P9691 a owl:ObjectProperty .\n\npsv:P9691 a owl:ObjectProperty .\n\npqv:P9691 a owl:ObjectProperty .\n\nprv:P9691 a owl:ObjectProperty .\n\nwdt:P9691 a owl:DatatypeProperty .\n\nps:P9691 a owl:DatatypeProperty .\n\npq:P9691 a owl:DatatypeProperty .\n\npr:P9691 a owl:DatatypeProperty .\n\npsn:P9691 a owl:ObjectProperty .\n\npqn:P9691 a owl:ObjectProperty .\n\nprn:P9691 a owl:ObjectProperty .\n\nwdtn:P9691 a owl:ObjectProperty .\n\nwdno:P9691 a owl:Class ;\n\towl:complementOf _:be203aeb01ed15a712da339bcb855b41 .\n\n_:be203aeb01ed15a712da339bcb855b41 a owl:Restriction ;\n\towl:onProperty wdt:P9691 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9408 a wikibase:Property ;\n\trdfs:label \"Washington Flora Checklist ID\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@de ;\n\tschema:name \"Washington Flora Checklist ID\"@de ;\n\trdfs:label \"Washington Flora Checklist ID\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@en ;\n\tschema:name \"Washington Flora Checklist ID\"@en ;\n\tschema:description \"Identifikator für die Washington Flora Checklist\"@de,\n\t\t\"identifier in the Washington Flora Checklist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9408 ;\n\twikibase:claim p:P9408 ;\n\twikibase:statementProperty ps:P9408 ;\n\twikibase:statementValue psv:P9408 ;\n\twikibase:qualifier pq:P9408 ;\n\twikibase:qualifierValue pqv:P9408 ;\n\twikibase:reference pr:P9408 ;\n\twikibase:referenceValue prv:P9408 ;\n\twikibase:novalue wdno:P9408 ;\n\twikibase:directClaimNormalized wdtn:P9408 ;\n\twikibase:statementValueNormalized psn:P9408 ;\n\twikibase:qualifierValueNormalized pqn:P9408 ;\n\twikibase:referenceValueNormalized prn:P9408 .\n\np:P9408 a owl:ObjectProperty .\n\npsv:P9408 a owl:ObjectProperty .\n\npqv:P9408 a owl:ObjectProperty .\n\nprv:P9408 a owl:ObjectProperty .\n\nwdt:P9408 a owl:DatatypeProperty .\n\nps:P9408 a owl:DatatypeProperty .\n\npq:P9408 a owl:DatatypeProperty .\n\npr:P9408 a owl:DatatypeProperty .\n\npsn:P9408 a owl:ObjectProperty .\n\npqn:P9408 a owl:ObjectProperty .\n\nprn:P9408 a owl:ObjectProperty .\n\nwdtn:P9408 a owl:ObjectProperty .\n\nwdno:P9408 a owl:Class ;\n\towl:complementOf _:fed86cc56db5ba320e1c445ba9ded27d .\n\n_:fed86cc56db5ba320e1c445ba9ded27d a owl:Restriction ;\n\towl:onProperty wdt:P9408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10709 a wikibase:Property ;\n\trdfs:label \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tskos:prefLabel \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tschema:name \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tschema:description \"identifier for a taxon in the North Carolina Extension Gardener Plant Toolbox\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10709 ;\n\twikibase:claim p:P10709 ;\n\twikibase:statementProperty ps:P10709 ;\n\twikibase:statementValue psv:P10709 ;\n\twikibase:qualifier pq:P10709 ;\n\twikibase:qualifierValue pqv:P10709 ;\n\twikibase:reference pr:P10709 ;\n\twikibase:referenceValue prv:P10709 ;\n\twikibase:novalue wdno:P10709 ;\n\twikibase:directClaimNormalized wdtn:P10709 ;\n\twikibase:statementValueNormalized psn:P10709 ;\n\twikibase:qualifierValueNormalized pqn:P10709 ;\n\twikibase:referenceValueNormalized prn:P10709 .\n\np:P10709 a owl:ObjectProperty .\n\npsv:P10709 a owl:ObjectProperty .\n\npqv:P10709 a owl:ObjectProperty .\n\nprv:P10709 a owl:ObjectProperty .\n\nwdt:P10709 a owl:DatatypeProperty .\n\nps:P10709 a owl:DatatypeProperty .\n\npq:P10709 a owl:DatatypeProperty .\n\npr:P10709 a owl:DatatypeProperty .\n\npsn:P10709 a owl:ObjectProperty .\n\npqn:P10709 a owl:ObjectProperty .\n\nprn:P10709 a owl:ObjectProperty .\n\nwdtn:P10709 a owl:ObjectProperty .\n\nwdno:P10709 a owl:Class ;\n\towl:complementOf _:c2814fd2df4f87f1c9636338ac8e2141 .\n\n_:c2814fd2df4f87f1c9636338ac8e2141 a owl:Restriction ;\n\towl:onProperty wdt:P10709 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7544 a wikibase:Property ;\n\trdfs:label \"Indian Medicinal Plants Database ID\"@en ;\n\tskos:prefLabel \"Indian Medicinal Plants Database ID\"@en ;\n\tschema:name \"Indian Medicinal Plants Database ID\"@en ;\n\tschema:description \"identifier for medicinal plants found in India maintained by the 'Indian Medicinal Plants Database'\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7544 ;\n\twikibase:claim p:P7544 ;\n\twikibase:statementProperty ps:P7544 ;\n\twikibase:statementValue psv:P7544 ;\n\twikibase:qualifier pq:P7544 ;\n\twikibase:qualifierValue pqv:P7544 ;\n\twikibase:reference pr:P7544 ;\n\twikibase:referenceValue prv:P7544 ;\n\twikibase:novalue wdno:P7544 ;\n\twikibase:directClaimNormalized wdtn:P7544 ;\n\twikibase:statementValueNormalized psn:P7544 ;\n\twikibase:qualifierValueNormalized pqn:P7544 ;\n\twikibase:referenceValueNormalized prn:P7544 .\n\np:P7544 a owl:ObjectProperty .\n\npsv:P7544 a owl:ObjectProperty .\n\npqv:P7544 a owl:ObjectProperty .\n\nprv:P7544 a owl:ObjectProperty .\n\nwdt:P7544 a owl:DatatypeProperty .\n\nps:P7544 a owl:DatatypeProperty .\n\npq:P7544 a owl:DatatypeProperty .\n\npr:P7544 a owl:DatatypeProperty .\n\npsn:P7544 a owl:ObjectProperty .\n\npqn:P7544 a owl:ObjectProperty .\n\nprn:P7544 a owl:ObjectProperty .\n\nwdtn:P7544 a owl:ObjectProperty .\n\nwdno:P7544 a owl:Class ;\n\towl:complementOf _:85fed6cf4f156256e618ab7676b9aeae .\n\n_:85fed6cf4f156256e618ab7676b9aeae a owl:Restriction ;\n\towl:onProperty wdt:P7544 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6098 a wikibase:Property ;\n\trdfs:label \"info flora\"@de ;\n\tskos:prefLabel \"info flora\"@de ;\n\tschema:name \"info flora\"@de ;\n\trdfs:label \"Info Flora ID\"@en ;\n\tskos:prefLabel \"Info Flora ID\"@en ;\n\tschema:name \"Info Flora ID\"@en ;\n\tschema:description \"Das nationale Daten- und Informationszentrum der Schweizer Flora\"@de,\n\t\t\"identifier for a taxon on the Info Flora website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6098 ;\n\twikibase:claim p:P6098 ;\n\twikibase:statementProperty ps:P6098 ;\n\twikibase:statementValue psv:P6098 ;\n\twikibase:qualifier pq:P6098 ;\n\twikibase:qualifierValue pqv:P6098 ;\n\twikibase:reference pr:P6098 ;\n\twikibase:referenceValue prv:P6098 ;\n\twikibase:novalue wdno:P6098 ;\n\twikibase:directClaimNormalized wdtn:P6098 ;\n\twikibase:statementValueNormalized psn:P6098 ;\n\twikibase:qualifierValueNormalized pqn:P6098 ;\n\twikibase:referenceValueNormalized prn:P6098 .\n\np:P6098 a owl:ObjectProperty .\n\npsv:P6098 a owl:ObjectProperty .\n\npqv:P6098 a owl:ObjectProperty .\n\nprv:P6098 a owl:ObjectProperty .\n\nwdt:P6098 a owl:DatatypeProperty .\n\nps:P6098 a owl:DatatypeProperty .\n\npq:P6098 a owl:DatatypeProperty .\n\npr:P6098 a owl:DatatypeProperty .\n\npsn:P6098 a owl:ObjectProperty .\n\npqn:P6098 a owl:ObjectProperty .\n\nprn:P6098 a owl:ObjectProperty .\n\nwdtn:P6098 a owl:ObjectProperty .\n\nwdno:P6098 a owl:Class ;\n\towl:complementOf _:408733e9ca58c486f18000074d79a337 .\n\n_:408733e9ca58c486f18000074d79a337 a owl:Restriction ;\n\towl:onProperty wdt:P6098 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12137 a wikibase:Property ;\n\trdfs:label \"Linked Open Data Comune Firenze ID\"@en ;\n\tskos:prefLabel \"Linked Open Data Comune Firenze ID\"@en ;\n\tschema:name \"Linked Open Data Comune Firenze ID\"@en ;\n\tschema:description \"identifier for an entity in the Linked Open Data platform of the municipality of Florence (Italy)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12137 ;\n\twikibase:claim p:P12137 ;\n\twikibase:statementProperty ps:P12137 ;\n\twikibase:statementValue psv:P12137 ;\n\twikibase:qualifier pq:P12137 ;\n\twikibase:qualifierValue pqv:P12137 ;\n\twikibase:reference pr:P12137 ;\n\twikibase:referenceValue prv:P12137 ;\n\twikibase:novalue wdno:P12137 ;\n\twikibase:directClaimNormalized wdtn:P12137 ;\n\twikibase:statementValueNormalized psn:P12137 ;\n\twikibase:qualifierValueNormalized pqn:P12137 ;\n\twikibase:referenceValueNormalized prn:P12137 .\n\np:P12137 a owl:ObjectProperty .\n\npsv:P12137 a owl:ObjectProperty .\n\npqv:P12137 a owl:ObjectProperty .\n\nprv:P12137 a owl:ObjectProperty .\n\nwdt:P12137 a owl:DatatypeProperty .\n\nps:P12137 a owl:DatatypeProperty .\n\npq:P12137 a owl:DatatypeProperty .\n\npr:P12137 a owl:DatatypeProperty .\n\npsn:P12137 a owl:ObjectProperty .\n\npqn:P12137 a owl:ObjectProperty .\n\nprn:P12137 a owl:ObjectProperty .\n\nwdtn:P12137 a owl:ObjectProperty .\n\nwdno:P12137 a owl:Class ;\n\towl:complementOf _:dd4ffc1d52f2d0314d72c363c0eb0c45 .\n\n_:dd4ffc1d52f2d0314d72c363c0eb0c45 a owl:Restriction ;\n\towl:onProperty wdt:P12137 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4333 a wikibase:Property ;\n\trdfs:label \"GenBank assembly accession number\"@en ;\n\tskos:prefLabel \"GenBank assembly accession number\"@en ;\n\tschema:name \"GenBank assembly accession number\"@en ;\n\tschema:description \"unique identifier of a genome assembly\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4333 ;\n\twikibase:claim p:P4333 ;\n\twikibase:statementProperty ps:P4333 ;\n\twikibase:statementValue psv:P4333 ;\n\twikibase:qualifier pq:P4333 ;\n\twikibase:qualifierValue pqv:P4333 ;\n\twikibase:reference pr:P4333 ;\n\twikibase:referenceValue prv:P4333 ;\n\twikibase:novalue wdno:P4333 ;\n\twikibase:directClaimNormalized wdtn:P4333 ;\n\twikibase:statementValueNormalized psn:P4333 ;\n\twikibase:qualifierValueNormalized pqn:P4333 ;\n\twikibase:referenceValueNormalized prn:P4333 .\n\np:P4333 a owl:ObjectProperty .\n\npsv:P4333 a owl:ObjectProperty .\n\npqv:P4333 a owl:ObjectProperty .\n\nprv:P4333 a owl:ObjectProperty .\n\nwdt:P4333 a owl:DatatypeProperty .\n\nps:P4333 a owl:DatatypeProperty .\n\npq:P4333 a owl:DatatypeProperty .\n\npr:P4333 a owl:DatatypeProperty .\n\npsn:P4333 a owl:ObjectProperty .\n\npqn:P4333 a owl:ObjectProperty .\n\nprn:P4333 a owl:ObjectProperty .\n\nwdtn:P4333 a owl:ObjectProperty .\n\nwdno:P4333 a owl:Class ;\n\towl:complementOf _:7f7e5b06fed779ce334bcdb230aea33b .\n\n_:7f7e5b06fed779ce334bcdb230aea33b a owl:Restriction ;\n\towl:onProperty wdt:P4333 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12179 a wikibase:Property ;\n\trdfs:label \"Flora of the Southeastern United States ID\"@de ;\n\tskos:prefLabel \"Flora of the Southeastern United States ID\"@de ;\n\tschema:name \"Flora of the Southeastern United States ID\"@de ;\n\trdfs:label \"Flora of the Southeastern United States ID\"@en ;\n\tskos:prefLabel \"Flora of the Southeastern United States ID\"@en ;\n\tschema:name \"Flora of the Southeastern United States ID\"@en ;\n\tschema:description \"Kennung einer Pflanzenart in der Datenbank der Flora of the Southeastern United States\"@de,\n\t\t\"identifier for a plant taxon in the Flora of the Southeastern United States database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12179 ;\n\twikibase:claim p:P12179 ;\n\twikibase:statementProperty ps:P12179 ;\n\twikibase:statementValue psv:P12179 ;\n\twikibase:qualifier pq:P12179 ;\n\twikibase:qualifierValue pqv:P12179 ;\n\twikibase:reference pr:P12179 ;\n\twikibase:referenceValue prv:P12179 ;\n\twikibase:novalue wdno:P12179 ;\n\twikibase:directClaimNormalized wdtn:P12179 ;\n\twikibase:statementValueNormalized psn:P12179 ;\n\twikibase:qualifierValueNormalized pqn:P12179 ;\n\twikibase:referenceValueNormalized prn:P12179 .\n\np:P12179 a owl:ObjectProperty .\n\npsv:P12179 a owl:ObjectProperty .\n\npqv:P12179 a owl:ObjectProperty .\n\nprv:P12179 a owl:ObjectProperty .\n\nwdt:P12179 a owl:DatatypeProperty .\n\nps:P12179 a owl:DatatypeProperty .\n\npq:P12179 a owl:DatatypeProperty .\n\npr:P12179 a owl:DatatypeProperty .\n\npsn:P12179 a owl:ObjectProperty .\n\npqn:P12179 a owl:ObjectProperty .\n\nprn:P12179 a owl:ObjectProperty .\n\nwdtn:P12179 a owl:ObjectProperty .\n\nwdno:P12179 a owl:Class ;\n\towl:complementOf _:b0e03a17f49d34ffa9e8c818337badb4 .\n\n_:b0e03a17f49d34ffa9e8c818337badb4 a owl:Restriction ;\n\towl:onProperty wdt:P12179 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12182 a wikibase:Property ;\n\trdfs:label \"Go Botany taxon ID\"@de ;\n\tskos:prefLabel \"Go Botany taxon ID\"@de ;\n\tschema:name \"Go Botany taxon ID\"@de ;\n\trdfs:label \"Go Botany taxon ID\"@en ;\n\tskos:prefLabel \"Go Botany taxon ID\"@en ;\n\tschema:name \"Go Botany taxon ID\"@en ;\n\tschema:description \"Identifikator für Gefäßpflanzen in Neuengland auf der Go Botany website\"@de,\n\t\t\"identifier for a vascular plant taxon in New England on the Go Botany website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12182 ;\n\twikibase:claim p:P12182 ;\n\twikibase:statementProperty ps:P12182 ;\n\twikibase:statementValue psv:P12182 ;\n\twikibase:qualifier pq:P12182 ;\n\twikibase:qualifierValue pqv:P12182 ;\n\twikibase:reference pr:P12182 ;\n\twikibase:referenceValue prv:P12182 ;\n\twikibase:novalue wdno:P12182 ;\n\twikibase:directClaimNormalized wdtn:P12182 ;\n\twikibase:statementValueNormalized psn:P12182 ;\n\twikibase:qualifierValueNormalized pqn:P12182 ;\n\twikibase:referenceValueNormalized prn:P12182 .\n\np:P12182 a owl:ObjectProperty .\n\npsv:P12182 a owl:ObjectProperty .\n\npqv:P12182 a owl:ObjectProperty .\n\nprv:P12182 a owl:ObjectProperty .\n\nwdt:P12182 a owl:DatatypeProperty .\n\nps:P12182 a owl:DatatypeProperty .\n\npq:P12182 a owl:DatatypeProperty .\n\npr:P12182 a owl:DatatypeProperty .\n\npsn:P12182 a owl:ObjectProperty .\n\npqn:P12182 a owl:ObjectProperty .\n\nprn:P12182 a owl:ObjectProperty .\n\nwdtn:P12182 a owl:ObjectProperty .\n\nwdno:P12182 a owl:Class ;\n\towl:complementOf _:bace7506f7af22282f01e0d4d53470da .\n\n_:bace7506f7af22282f01e0d4d53470da a owl:Restriction ;\n\towl:onProperty wdt:P12182 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12086 a wikibase:Property ;\n\trdfs:label \"WikiKids-Kennung\"@de ;\n\tskos:prefLabel \"WikiKids-Kennung\"@de ;\n\tschema:name \"WikiKids-Kennung\"@de ;\n\trdfs:label \"WikiKids ID\"@en ;\n\tskos:prefLabel \"WikiKids ID\"@en ;\n\tschema:name \"WikiKids ID\"@en ;\n\tschema:description \"Identifikator für Artikel auf WikiKids\"@de,\n\t\t\"identifier of the article on WikiKids\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12086 ;\n\twikibase:claim p:P12086 ;\n\twikibase:statementProperty ps:P12086 ;\n\twikibase:statementValue psv:P12086 ;\n\twikibase:qualifier pq:P12086 ;\n\twikibase:qualifierValue pqv:P12086 ;\n\twikibase:reference pr:P12086 ;\n\twikibase:referenceValue prv:P12086 ;\n\twikibase:novalue wdno:P12086 ;\n\twikibase:directClaimNormalized wdtn:P12086 ;\n\twikibase:statementValueNormalized psn:P12086 ;\n\twikibase:qualifierValueNormalized pqn:P12086 ;\n\twikibase:referenceValueNormalized prn:P12086 .\n\np:P12086 a owl:ObjectProperty .\n\npsv:P12086 a owl:ObjectProperty .\n\npqv:P12086 a owl:ObjectProperty .\n\nprv:P12086 a owl:ObjectProperty .\n\nwdt:P12086 a owl:DatatypeProperty .\n\nps:P12086 a owl:DatatypeProperty .\n\npq:P12086 a owl:DatatypeProperty .\n\npr:P12086 a owl:DatatypeProperty .\n\npsn:P12086 a owl:ObjectProperty .\n\npqn:P12086 a owl:ObjectProperty .\n\nprn:P12086 a owl:ObjectProperty .\n\nwdtn:P12086 a owl:ObjectProperty .\n\nwdno:P12086 a owl:Class ;\n\towl:complementOf _:5edc28fbdeef0f4c3e59e8785d4b919a .\n\n_:5edc28fbdeef0f4c3e59e8785d4b919a a owl:Restriction ;\n\towl:onProperty wdt:P12086 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6507 a wikibase:Property ;\n\trdfs:label \"Zitation der Autoren des Taxons\"@de ;\n\tskos:prefLabel \"Zitation der Autoren des Taxons\"@de ;\n\tschema:name \"Zitation der Autoren des Taxons\"@de ;\n\trdfs:label \"taxon author citation\"@en ;\n\tskos:prefLabel \"taxon author citation\"@en ;\n\tschema:name \"taxon author citation\"@en ;\n\tschema:description \"Zitation des Autors/der Autoren des Taxons unter Verwendung der entsprechenden Nomenklatur (ICBN, ICZN, ...)\"@de,\n\t\t\"valid author citation for a name using the appropriate nomenclature (ICNafp, ICZN, etc.)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6507 ;\n\twikibase:claim p:P6507 ;\n\twikibase:statementProperty ps:P6507 ;\n\twikibase:statementValue psv:P6507 ;\n\twikibase:qualifier pq:P6507 ;\n\twikibase:qualifierValue pqv:P6507 ;\n\twikibase:reference pr:P6507 ;\n\twikibase:referenceValue prv:P6507 ;\n\twikibase:novalue wdno:P6507 .\n\np:P6507 a owl:ObjectProperty .\n\npsv:P6507 a owl:ObjectProperty .\n\npqv:P6507 a owl:ObjectProperty .\n\nprv:P6507 a owl:ObjectProperty .\n\nwdt:P6507 a owl:DatatypeProperty .\n\nps:P6507 a owl:DatatypeProperty .\n\npq:P6507 a owl:DatatypeProperty .\n\npr:P6507 a owl:DatatypeProperty .\n\nwdno:P6507 a owl:Class ;\n\towl:complementOf _:37fbc20ab98055c0d576c3d0c6ad5138 .\n\n_:37fbc20ab98055c0d576c3d0c6ad5138 a owl:Restriction ;\n\towl:onProperty wdt:P6507 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q96279266 a wikibase:Item ;\n\trdfs:label \"5\"@en ;\n\tskos:prefLabel \"5\"@en ;\n\tschema:name \"5\"@en ;\n\tschema:description \"hardiness zone on USDA scale\"@en .\n\nwd:P8193 a wikibase:Property ;\n\trdfs:label \"Winterhärte der Pflanze\"@de ;\n\tskos:prefLabel \"Winterhärte der Pflanze\"@de ;\n\tschema:name \"Winterhärte der Pflanze\"@de ;\n\trdfs:label \"hardiness of plant\"@en ;\n\tskos:prefLabel \"hardiness of plant\"@en ;\n\tschema:name \"hardiness of plant\"@en ;\n\tschema:description \"recommended hardiness zone for plant, ability of plant to survive adverse growing conditions\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8193 ;\n\twikibase:claim p:P8193 ;\n\twikibase:statementProperty ps:P8193 ;\n\twikibase:statementValue psv:P8193 ;\n\twikibase:qualifier pq:P8193 ;\n\twikibase:qualifierValue pqv:P8193 ;\n\twikibase:reference pr:P8193 ;\n\twikibase:referenceValue prv:P8193 ;\n\twikibase:novalue wdno:P8193 .\n\np:P8193 a owl:ObjectProperty .\n\npsv:P8193 a owl:ObjectProperty .\n\npqv:P8193 a owl:ObjectProperty .\n\nprv:P8193 a owl:ObjectProperty .\n\nwdt:P8193 a owl:ObjectProperty .\n\nps:P8193 a owl:ObjectProperty .\n\npq:P8193 a owl:ObjectProperty .\n\npr:P8193 a owl:ObjectProperty .\n\nwdno:P8193 a owl:Class ;\n\towl:complementOf _:fe991027e45e2b05fac52ef4d2bad64c .\n\n_:fe991027e45e2b05fac52ef4d2bad64c a owl:Restriction ;\n\towl:onProperty wdt:P8193 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1131316 a wikibase:Item ;\n\trdfs:label \"laubabwerfend\"@de ;\n\tskos:prefLabel \"laubabwerfend\"@de ;\n\tschema:name \"laubabwerfend\"@de ;\n\trdfs:label \"deciduous plant\"@mul ;\n\tskos:prefLabel \"deciduous plant\"@mul ;\n\tschema:name \"deciduous plant\"@mul ;\n\trdfs:label \"deciduous plant\"@en ;\n\tskos:prefLabel \"deciduous plant\"@en ;\n\tschema:name \"deciduous plant\"@en ;\n\tschema:description \"trees or shrubs that lose their leaves seasonally\"@en .\n\nwd:P10906 a wikibase:Property ;\n\trdfs:label \"foliage type\"@en ;\n\tskos:prefLabel \"foliage type\"@en ;\n\tschema:name \"foliage type\"@en ;\n\tschema:description \"type of foliage characteristic of a plant, e.g. deciduous, semi-deciduous, semi-evergreen, or evergreen\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10906 ;\n\twikibase:claim p:P10906 ;\n\twikibase:statementProperty ps:P10906 ;\n\twikibase:statementValue psv:P10906 ;\n\twikibase:qualifier pq:P10906 ;\n\twikibase:qualifierValue pqv:P10906 ;\n\twikibase:reference pr:P10906 ;\n\twikibase:referenceValue prv:P10906 ;\n\twikibase:novalue wdno:P10906 .\n\np:P10906 a owl:ObjectProperty .\n\npsv:P10906 a owl:ObjectProperty .\n\npqv:P10906 a owl:ObjectProperty .\n\nprv:P10906 a owl:ObjectProperty .\n\nwdt:P10906 a owl:ObjectProperty .\n\nps:P10906 a owl:ObjectProperty .\n\npq:P10906 a owl:ObjectProperty .\n\npr:P10906 a owl:ObjectProperty .\n\nwdno:P10906 a owl:Class ;\n\towl:complementOf _:1226ffec3988f387aa0bf8a0088306e4 .\n\n_:1226ffec3988f387aa0bf8a0088306e4 a owl:Restriction ;\n\towl:onProperty wdt:P10906 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11650 a wikibase:Property ;\n\trdfs:label \"Moscow University Herbarium ID\"@en ;\n\tskos:prefLabel \"Moscow University Herbarium ID\"@en ;\n\tschema:name \"Moscow University Herbarium ID\"@en ;\n\tschema:description \"ID for a taxon in the Moscow Digital Herbarium\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11650 ;\n\twikibase:claim p:P11650 ;\n\twikibase:statementProperty ps:P11650 ;\n\twikibase:statementValue psv:P11650 ;\n\twikibase:qualifier pq:P11650 ;\n\twikibase:qualifierValue pqv:P11650 ;\n\twikibase:reference pr:P11650 ;\n\twikibase:referenceValue prv:P11650 ;\n\twikibase:novalue wdno:P11650 ;\n\twikibase:directClaimNormalized wdtn:P11650 ;\n\twikibase:statementValueNormalized psn:P11650 ;\n\twikibase:qualifierValueNormalized pqn:P11650 ;\n\twikibase:referenceValueNormalized prn:P11650 .\n\np:P11650 a owl:ObjectProperty .\n\npsv:P11650 a owl:ObjectProperty .\n\npqv:P11650 a owl:ObjectProperty .\n\nprv:P11650 a owl:ObjectProperty .\n\nwdt:P11650 a owl:DatatypeProperty .\n\nps:P11650 a owl:DatatypeProperty .\n\npq:P11650 a owl:DatatypeProperty .\n\npr:P11650 a owl:DatatypeProperty .\n\npsn:P11650 a owl:ObjectProperty .\n\npqn:P11650 a owl:ObjectProperty .\n\nprn:P11650 a owl:ObjectProperty .\n\nwdtn:P11650 a owl:ObjectProperty .\n\nwdno:P11650 a owl:Class ;\n\towl:complementOf _:0927e58471e834ca178b8e14fe641c97 .\n\n_:0927e58471e834ca178b8e14fe641c97 a owl:Restriction ;\n\towl:onProperty wdt:P11650 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9826 a wikibase:Property ;\n\trdfs:label \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tskos:prefLabel \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tschema:name \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tschema:description \"ID for an entry on the Great Encyclopedia of Cyrill and Methodius\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9826 ;\n\twikibase:claim p:P9826 ;\n\twikibase:statementProperty ps:P9826 ;\n\twikibase:statementValue psv:P9826 ;\n\twikibase:qualifier pq:P9826 ;\n\twikibase:qualifierValue pqv:P9826 ;\n\twikibase:reference pr:P9826 ;\n\twikibase:referenceValue prv:P9826 ;\n\twikibase:novalue wdno:P9826 ;\n\twikibase:directClaimNormalized wdtn:P9826 ;\n\twikibase:statementValueNormalized psn:P9826 ;\n\twikibase:qualifierValueNormalized pqn:P9826 ;\n\twikibase:referenceValueNormalized prn:P9826 .\n\np:P9826 a owl:ObjectProperty .\n\npsv:P9826 a owl:ObjectProperty .\n\npqv:P9826 a owl:ObjectProperty .\n\nprv:P9826 a owl:ObjectProperty .\n\nwdt:P9826 a owl:DatatypeProperty .\n\nps:P9826 a owl:DatatypeProperty .\n\npq:P9826 a owl:DatatypeProperty .\n\npr:P9826 a owl:DatatypeProperty .\n\npsn:P9826 a owl:ObjectProperty .\n\npqn:P9826 a owl:ObjectProperty .\n\nprn:P9826 a owl:ObjectProperty .\n\nwdtn:P9826 a owl:ObjectProperty .\n\nwdno:P9826 a owl:Class ;\n\towl:complementOf _:cc6554edbf7ab9315ead116edf9686c9 .\n\n_:cc6554edbf7ab9315ead116edf9686c9 a owl:Restriction ;\n\towl:onProperty wdt:P9826 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12187 a wikibase:Property ;\n\trdfs:label \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\tskos:prefLabel \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\tschema:name \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\trdfs:label \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tskos:prefLabel \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tschema:name \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tschema:description \"ID für einen Metadaten-Thesaurus-Eintrag im Thesaurus Linguae Aegyptiae\"@de,\n\t\t\"identifier for a metadata thesaurus entry in the Thesaurus Linguae Aegyptiae\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12187 ;\n\twikibase:claim p:P12187 ;\n\twikibase:statementProperty ps:P12187 ;\n\twikibase:statementValue psv:P12187 ;\n\twikibase:qualifier pq:P12187 ;\n\twikibase:qualifierValue pqv:P12187 ;\n\twikibase:reference pr:P12187 ;\n\twikibase:referenceValue prv:P12187 ;\n\twikibase:novalue wdno:P12187 ;\n\twikibase:directClaimNormalized wdtn:P12187 ;\n\twikibase:statementValueNormalized psn:P12187 ;\n\twikibase:qualifierValueNormalized pqn:P12187 ;\n\twikibase:referenceValueNormalized prn:P12187 .\n\np:P12187 a owl:ObjectProperty .\n\npsv:P12187 a owl:ObjectProperty .\n\npqv:P12187 a owl:ObjectProperty .\n\nprv:P12187 a owl:ObjectProperty .\n\nwdt:P12187 a owl:DatatypeProperty .\n\nps:P12187 a owl:DatatypeProperty .\n\npq:P12187 a owl:DatatypeProperty .\n\npr:P12187 a owl:DatatypeProperty .\n\npsn:P12187 a owl:ObjectProperty .\n\npqn:P12187 a owl:ObjectProperty .\n\nprn:P12187 a owl:ObjectProperty .\n\nwdtn:P12187 a owl:ObjectProperty .\n\nwdno:P12187 a owl:Class ;\n\towl:complementOf _:861d0f55c824450b02ee3e31501d4526 .\n\n_:861d0f55c824450b02ee3e31501d4526 a owl:Restriction ;\n\towl:onProperty wdt:P12187 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12670 a wikibase:Property ;\n\trdfs:label \"Flora Croatica Database taxon ID\"@en ;\n\tskos:prefLabel \"Flora Croatica Database taxon ID\"@en ;\n\tschema:name \"Flora Croatica Database taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the Flora Croatica Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12670 ;\n\twikibase:claim p:P12670 ;\n\twikibase:statementProperty ps:P12670 ;\n\twikibase:statementValue psv:P12670 ;\n\twikibase:qualifier pq:P12670 ;\n\twikibase:qualifierValue pqv:P12670 ;\n\twikibase:reference pr:P12670 ;\n\twikibase:referenceValue prv:P12670 ;\n\twikibase:novalue wdno:P12670 ;\n\twikibase:directClaimNormalized wdtn:P12670 ;\n\twikibase:statementValueNormalized psn:P12670 ;\n\twikibase:qualifierValueNormalized pqn:P12670 ;\n\twikibase:referenceValueNormalized prn:P12670 .\n\np:P12670 a owl:ObjectProperty .\n\npsv:P12670 a owl:ObjectProperty .\n\npqv:P12670 a owl:ObjectProperty .\n\nprv:P12670 a owl:ObjectProperty .\n\nwdt:P12670 a owl:DatatypeProperty .\n\nps:P12670 a owl:DatatypeProperty .\n\npq:P12670 a owl:DatatypeProperty .\n\npr:P12670 a owl:DatatypeProperty .\n\npsn:P12670 a owl:ObjectProperty .\n\npqn:P12670 a owl:ObjectProperty .\n\nprn:P12670 a owl:ObjectProperty .\n\nwdtn:P12670 a owl:ObjectProperty .\n\nwdno:P12670 a owl:Class ;\n\towl:complementOf _:274fedb043cfdbe42575509c67dc1147 .\n\n_:274fedb043cfdbe42575509c67dc1147 a owl:Restriction ;\n\towl:onProperty wdt:P12670 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12296 a wikibase:Property ;\n\trdfs:label \"SERNEC taxon ID\"@en ;\n\tskos:prefLabel \"SERNEC taxon ID\"@en ;\n\tschema:name \"SERNEC taxon ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the SERNEC data portal\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12296 ;\n\twikibase:claim p:P12296 ;\n\twikibase:statementProperty ps:P12296 ;\n\twikibase:statementValue psv:P12296 ;\n\twikibase:qualifier pq:P12296 ;\n\twikibase:qualifierValue pqv:P12296 ;\n\twikibase:reference pr:P12296 ;\n\twikibase:referenceValue prv:P12296 ;\n\twikibase:novalue wdno:P12296 ;\n\twikibase:directClaimNormalized wdtn:P12296 ;\n\twikibase:statementValueNormalized psn:P12296 ;\n\twikibase:qualifierValueNormalized pqn:P12296 ;\n\twikibase:referenceValueNormalized prn:P12296 .\n\np:P12296 a owl:ObjectProperty .\n\npsv:P12296 a owl:ObjectProperty .\n\npqv:P12296 a owl:ObjectProperty .\n\nprv:P12296 a owl:ObjectProperty .\n\nwdt:P12296 a owl:DatatypeProperty .\n\nps:P12296 a owl:DatatypeProperty .\n\npq:P12296 a owl:DatatypeProperty .\n\npr:P12296 a owl:DatatypeProperty .\n\npsn:P12296 a owl:ObjectProperty .\n\npqn:P12296 a owl:ObjectProperty .\n\nprn:P12296 a owl:ObjectProperty .\n\nwdtn:P12296 a owl:ObjectProperty .\n\nwdno:P12296 a owl:Class ;\n\towl:complementOf _:b357d6074377d20abc8f39eb42fee8ad .\n\n_:b357d6074377d20abc8f39eb42fee8ad a owl:Restriction ;\n\towl:onProperty wdt:P12296 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12292 a wikibase:Property ;\n\trdfs:label \"Biota of New Zealand ID\"@en ;\n\tskos:prefLabel \"Biota of New Zealand ID\"@en ;\n\tschema:name \"Biota of New Zealand ID\"@en ;\n\tschema:description \"identifier for a taxon in the Biota of New Zealand database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12292 ;\n\twikibase:claim p:P12292 ;\n\twikibase:statementProperty ps:P12292 ;\n\twikibase:statementValue psv:P12292 ;\n\twikibase:qualifier pq:P12292 ;\n\twikibase:qualifierValue pqv:P12292 ;\n\twikibase:reference pr:P12292 ;\n\twikibase:referenceValue prv:P12292 ;\n\twikibase:novalue wdno:P12292 ;\n\twikibase:directClaimNormalized wdtn:P12292 ;\n\twikibase:statementValueNormalized psn:P12292 ;\n\twikibase:qualifierValueNormalized pqn:P12292 ;\n\twikibase:referenceValueNormalized prn:P12292 .\n\np:P12292 a owl:ObjectProperty .\n\npsv:P12292 a owl:ObjectProperty .\n\npqv:P12292 a owl:ObjectProperty .\n\nprv:P12292 a owl:ObjectProperty .\n\nwdt:P12292 a owl:DatatypeProperty .\n\nps:P12292 a owl:DatatypeProperty .\n\npq:P12292 a owl:DatatypeProperty .\n\npr:P12292 a owl:DatatypeProperty .\n\npsn:P12292 a owl:ObjectProperty .\n\npqn:P12292 a owl:ObjectProperty .\n\nprn:P12292 a owl:ObjectProperty .\n\nwdtn:P12292 a owl:ObjectProperty .\n\nwdno:P12292 a owl:Class ;\n\towl:complementOf _:1cc1b6493f222337c779ec315ef9c771 .\n\n_:1cc1b6493f222337c779ec315ef9c771 a owl:Restriction ;\n\towl:onProperty wdt:P12292 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12100 a wikibase:Property ;\n\trdfs:label \"FloraVeg.EU taxon ID\"@en ;\n\tskos:prefLabel \"FloraVeg.EU taxon ID\"@en ;\n\tschema:name \"FloraVeg.EU taxon ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the FloraVeg.EU online database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12100 ;\n\twikibase:claim p:P12100 ;\n\twikibase:statementProperty ps:P12100 ;\n\twikibase:statementValue psv:P12100 ;\n\twikibase:qualifier pq:P12100 ;\n\twikibase:qualifierValue pqv:P12100 ;\n\twikibase:reference pr:P12100 ;\n\twikibase:referenceValue prv:P12100 ;\n\twikibase:novalue wdno:P12100 ;\n\twikibase:directClaimNormalized wdtn:P12100 ;\n\twikibase:statementValueNormalized psn:P12100 ;\n\twikibase:qualifierValueNormalized pqn:P12100 ;\n\twikibase:referenceValueNormalized prn:P12100 .\n\np:P12100 a owl:ObjectProperty .\n\npsv:P12100 a owl:ObjectProperty .\n\npqv:P12100 a owl:ObjectProperty .\n\nprv:P12100 a owl:ObjectProperty .\n\nwdt:P12100 a owl:DatatypeProperty .\n\nps:P12100 a owl:DatatypeProperty .\n\npq:P12100 a owl:DatatypeProperty .\n\npr:P12100 a owl:DatatypeProperty .\n\npsn:P12100 a owl:ObjectProperty .\n\npqn:P12100 a owl:ObjectProperty .\n\nprn:P12100 a owl:ObjectProperty .\n\nwdtn:P12100 a owl:ObjectProperty .\n\nwdno:P12100 a owl:Class ;\n\towl:complementOf _:924ce445c3665034fec04dbfb71c3d71 .\n\n_:924ce445c3665034fec04dbfb71c3d71 a owl:Restriction ;\n\towl:onProperty wdt:P12100 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12554 a wikibase:Property ;\n\trdfs:label \"CalPhotos Taxon Kennung\"@de ;\n\tskos:prefLabel \"CalPhotos Taxon Kennung\"@de ;\n\tschema:name \"CalPhotos Taxon Kennung\"@de ;\n\trdfs:label \"CalPhotos taxon ID\"@en ;\n\tskos:prefLabel \"CalPhotos taxon ID\"@en ;\n\tschema:name \"CalPhotos taxon ID\"@en ;\n\tschema:description \"Kennung einer Pflanzen-, Tier- oder Fossilienart oder Unterart auf der CalPhotos Webseite\"@de,\n\t\t\"identifier for a plant, animal, or fossil species or subspecies on the CalPhotos website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12554 ;\n\twikibase:claim p:P12554 ;\n\twikibase:statementProperty ps:P12554 ;\n\twikibase:statementValue psv:P12554 ;\n\twikibase:qualifier pq:P12554 ;\n\twikibase:qualifierValue pqv:P12554 ;\n\twikibase:reference pr:P12554 ;\n\twikibase:referenceValue prv:P12554 ;\n\twikibase:novalue wdno:P12554 ;\n\twikibase:directClaimNormalized wdtn:P12554 ;\n\twikibase:statementValueNormalized psn:P12554 ;\n\twikibase:qualifierValueNormalized pqn:P12554 ;\n\twikibase:referenceValueNormalized prn:P12554 .\n\np:P12554 a owl:ObjectProperty .\n\npsv:P12554 a owl:ObjectProperty .\n\npqv:P12554 a owl:ObjectProperty .\n\nprv:P12554 a owl:ObjectProperty .\n\nwdt:P12554 a owl:DatatypeProperty .\n\nps:P12554 a owl:DatatypeProperty .\n\npq:P12554 a owl:DatatypeProperty .\n\npr:P12554 a owl:DatatypeProperty .\n\npsn:P12554 a owl:ObjectProperty .\n\npqn:P12554 a owl:ObjectProperty .\n\nprn:P12554 a owl:ObjectProperty .\n\nwdtn:P12554 a owl:ObjectProperty .\n\nwdno:P12554 a owl:Class ;\n\towl:complementOf _:62b2d6a641a641e8c1142cb698bf3873 .\n\n_:62b2d6a641a641e8c1142cb698bf3873 a owl:Restriction ;\n\towl:onProperty wdt:P12554 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9423 a wikibase:Property ;\n\trdfs:label \"OregonFlora Taxon ID\"@de ;\n\tskos:prefLabel \"OregonFlora Taxon ID\"@de ;\n\tschema:name \"OregonFlora Taxon ID\"@de ;\n\trdfs:label \"OregonFlora taxon ID\"@en ;\n\tskos:prefLabel \"OregonFlora taxon ID\"@en ;\n\tschema:name \"OregonFlora taxon ID\"@en ;\n\tschema:description \"numerical identifier for a taxon on the OregonFlora website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9423 ;\n\twikibase:claim p:P9423 ;\n\twikibase:statementProperty ps:P9423 ;\n\twikibase:statementValue psv:P9423 ;\n\twikibase:qualifier pq:P9423 ;\n\twikibase:qualifierValue pqv:P9423 ;\n\twikibase:reference pr:P9423 ;\n\twikibase:referenceValue prv:P9423 ;\n\twikibase:novalue wdno:P9423 ;\n\twikibase:directClaimNormalized wdtn:P9423 ;\n\twikibase:statementValueNormalized psn:P9423 ;\n\twikibase:qualifierValueNormalized pqn:P9423 ;\n\twikibase:referenceValueNormalized prn:P9423 .\n\np:P9423 a owl:ObjectProperty .\n\npsv:P9423 a owl:ObjectProperty .\n\npqv:P9423 a owl:ObjectProperty .\n\nprv:P9423 a owl:ObjectProperty .\n\nwdt:P9423 a owl:DatatypeProperty .\n\nps:P9423 a owl:DatatypeProperty .\n\npq:P9423 a owl:DatatypeProperty .\n\npr:P9423 a owl:DatatypeProperty .\n\npsn:P9423 a owl:ObjectProperty .\n\npqn:P9423 a owl:ObjectProperty .\n\nprn:P9423 a owl:ObjectProperty .\n\nwdtn:P9423 a owl:ObjectProperty .\n\nwdno:P9423 a owl:Class ;\n\towl:complementOf _:0b239b159d0a9461692637845f10bd5b .\n\n_:0b239b159d0a9461692637845f10bd5b a owl:Restriction ;\n\towl:onProperty wdt:P9423 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q111328943 a wikibase:Item ;\n\trdfs:label \"Quercus longaeva\"@de ;\n\tskos:prefLabel \"Quercus longaeva\"@de ;\n\tschema:name \"Quercus longaeva\"@de ;\n\trdfs:label \"Quercus longaeva\"@mul ;\n\tskos:prefLabel \"Quercus longaeva\"@mul ;\n\tschema:name \"Quercus longaeva\"@mul ;\n\trdfs:label \"Quercus longaeva\"@en ;\n\tskos:prefLabel \"Quercus longaeva\"@en ;\n\tschema:name \"Quercus longaeva\"@en ;\n\tschema:description \"Art der Gattung Eichen (Quercus)\"@de,\n\t\t\"species of plant\"@en .\n\nwd:P1420 a wikibase:Property ;\n\trdfs:label \"taxonomische Synonyme\"@de ;\n\tskos:prefLabel \"taxonomische Synonyme\"@de ;\n\tschema:name \"taxonomische Synonyme\"@de ;\n\trdfs:label \"taxon synonym\"@en ;\n\tskos:prefLabel \"taxon synonym\"@en ;\n\tschema:name \"taxon synonym\"@en ;\n\tschema:description \"Synonym(e) des anerkannten wissenschaftlichen Namens eines Taxons\"@de,\n\t\t\"name listed as synonym of this item's taxon name\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1420 ;\n\twikibase:claim p:P1420 ;\n\twikibase:statementProperty ps:P1420 ;\n\twikibase:statementValue psv:P1420 ;\n\twikibase:qualifier pq:P1420 ;\n\twikibase:qualifierValue pqv:P1420 ;\n\twikibase:reference pr:P1420 ;\n\twikibase:referenceValue prv:P1420 ;\n\twikibase:novalue wdno:P1420 .\n\np:P1420 a owl:ObjectProperty .\n\npsv:P1420 a owl:ObjectProperty .\n\npqv:P1420 a owl:ObjectProperty .\n\nprv:P1420 a owl:ObjectProperty .\n\nwdt:P1420 a owl:ObjectProperty .\n\nps:P1420 a owl:ObjectProperty .\n\npq:P1420 a owl:ObjectProperty .\n\npr:P1420 a owl:ObjectProperty .\n\nwdno:P1420 a owl:Class ;\n\towl:complementOf _:d06784ab434f77cd97aceea40b5d94ec .\n\n_:d06784ab434f77cd97aceea40b5d94ec a owl:Restriction ;\n\towl:onProperty wdt:P1420 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1843 a wikibase:Property ;\n\trdfs:label \"einheimische Namen\"@de ;\n\tskos:prefLabel \"einheimische Namen\"@de ;\n\tschema:name \"einheimische Namen\"@de ;\n\trdfs:label \"taxon common name\"@en ;\n\tskos:prefLabel \"taxon common name\"@en ;\n\tschema:name \"taxon common name\"@en ;\n\tschema:description \"einheimischer Name eines Taxons\"@de,\n\t\t\"common or vernacular name of a biological taxon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1843 ;\n\twikibase:claim p:P1843 ;\n\twikibase:statementProperty ps:P1843 ;\n\twikibase:statementValue psv:P1843 ;\n\twikibase:qualifier pq:P1843 ;\n\twikibase:qualifierValue pqv:P1843 ;\n\twikibase:reference pr:P1843 ;\n\twikibase:referenceValue prv:P1843 ;\n\twikibase:novalue wdno:P1843 .\n\np:P1843 a owl:ObjectProperty .\n\npsv:P1843 a owl:ObjectProperty .\n\npqv:P1843 a owl:ObjectProperty .\n\nprv:P1843 a owl:ObjectProperty .\n\nwdt:P1843 a owl:DatatypeProperty .\n\nps:P1843 a owl:DatatypeProperty .\n\npq:P1843 a owl:DatatypeProperty .\n\npr:P1843 a owl:DatatypeProperty .\n\nwdno:P1843 a owl:Class ;\n\towl:complementOf _:7bfe1ef45e254e59572c648515b3bc8b .\n\n_:7bfe1ef45e254e59572c648515b3bc8b a owl:Restriction ;\n\towl:onProperty wdt:P1843 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12364191 a wikibase:Item ;\n\trdfs:label \"lobate leaf\"@en ;\n\tskos:prefLabel \"lobate leaf\"@en ;\n\tschema:name \"lobate leaf\"@en ;\n\tschema:description \"a simple leaf divided by clefts, may be pinnately lobed or palmately lobed\"@en .\n\nwd:P12616 a wikibase:Property ;\n\trdfs:label \"leaf morphology\"@en ;\n\tskos:prefLabel \"leaf morphology\"@en ;\n\tschema:name \"leaf morphology\"@en ;\n\tschema:description \"characterization of aspects of the shape of a plant’s leaves\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12616 ;\n\twikibase:claim p:P12616 ;\n\twikibase:statementProperty ps:P12616 ;\n\twikibase:statementValue psv:P12616 ;\n\twikibase:qualifier pq:P12616 ;\n\twikibase:qualifierValue pqv:P12616 ;\n\twikibase:reference pr:P12616 ;\n\twikibase:referenceValue prv:P12616 ;\n\twikibase:novalue wdno:P12616 .\n\np:P12616 a owl:ObjectProperty .\n\npsv:P12616 a owl:ObjectProperty .\n\npqv:P12616 a owl:ObjectProperty .\n\nprv:P12616 a owl:ObjectProperty .\n\nwdt:P12616 a owl:ObjectProperty .\n\nps:P12616 a owl:ObjectProperty .\n\npq:P12616 a owl:ObjectProperty .\n\npr:P12616 a owl:ObjectProperty .\n\nwdno:P12616 a owl:Class ;\n\towl:complementOf _:f99045990917eedb7a53f541ddcb212e .\n\n_:f99045990917eedb7a53f541ddcb212e a owl:Restriction ;\n\towl:onProperty wdt:P12616 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12379403 a wikibase:Item ;\n\trdfs:label \"obovate leaf\"@en ;\n\tskos:prefLabel \"obovate leaf\"@en ;\n\tschema:name \"obovate leaf\"@en .\n\nwd:Q131939033 a wikibase:Item ;\n\trdfs:label \"sitzendes Blatt\"@de ;\n\tskos:prefLabel \"sitzendes Blatt\"@de ;\n\tschema:name \"sitzendes Blatt\"@de ;\n\trdfs:label \"sessile leaf\"@en ;\n\tskos:prefLabel \"sessile leaf\"@en ;\n\tschema:name \"sessile leaf\"@en ;\n\tschema:description \"das Blatt Besitzt es keinen Stiel\"@de .\n\nwd:Q136087938 a wikibase:Item ;\n\trdfs:label \"lobate leaf edge\"@en ;\n\tskos:prefLabel \"lobate leaf edge\"@en ;\n\tschema:name \"lobate leaf edge\"@en .\n\nwd:P13591 a wikibase:Property ;\n\trdfs:label \"Yale-LUX-Kennung\"@de ;\n\tskos:prefLabel \"Yale-LUX-Kennung\"@de ;\n\tschema:name \"Yale-LUX-Kennung\"@de ;\n\trdfs:label \"‎Yale LUX ID\"@mul ;\n\tskos:prefLabel \"‎Yale LUX ID\"@mul ;\n\tschema:name \"‎Yale LUX ID\"@mul ;\n\trdfs:label \"‎Yale LUX ID\"@en ;\n\tskos:prefLabel \"‎Yale LUX ID\"@en ;\n\tschema:name \"‎Yale LUX ID\"@en ;\n\tschema:description \"Identifikator für Entitäten in „Yale's LUX cross collection knowledge graph“\"@de,\n\t\t\"identifier for an entity in Yale's LUX cross collection knowledge graph\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13591 ;\n\twikibase:claim p:P13591 ;\n\twikibase:statementProperty ps:P13591 ;\n\twikibase:statementValue psv:P13591 ;\n\twikibase:qualifier pq:P13591 ;\n\twikibase:qualifierValue pqv:P13591 ;\n\twikibase:reference pr:P13591 ;\n\twikibase:referenceValue prv:P13591 ;\n\twikibase:novalue wdno:P13591 ;\n\twikibase:directClaimNormalized wdtn:P13591 ;\n\twikibase:statementValueNormalized psn:P13591 ;\n\twikibase:qualifierValueNormalized pqn:P13591 ;\n\twikibase:referenceValueNormalized prn:P13591 .\n\np:P13591 a owl:ObjectProperty .\n\npsv:P13591 a owl:ObjectProperty .\n\npqv:P13591 a owl:ObjectProperty .\n\nprv:P13591 a owl:ObjectProperty .\n\nwdt:P13591 a owl:DatatypeProperty .\n\nps:P13591 a owl:DatatypeProperty .\n\npq:P13591 a owl:DatatypeProperty .\n\npr:P13591 a owl:DatatypeProperty .\n\npsn:P13591 a owl:ObjectProperty .\n\npqn:P13591 a owl:ObjectProperty .\n\nprn:P13591 a owl:ObjectProperty .\n\nwdtn:P13591 a owl:ObjectProperty .\n\nwdno:P13591 a owl:Class ;\n\towl:complementOf _:55becf346eaa836338c53def16cbe97b .\n\n_:55becf346eaa836338c53def16cbe97b a owl:Restriction ;\n\towl:onProperty wdt:P13591 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P13734 a wikibase:Property ;\n\trdfs:label \"EASIN ID\"@en ;\n\tskos:prefLabel \"EASIN ID\"@en ;\n\tschema:name \"EASIN ID\"@en ;\n\tschema:description \"identifier for an alien species on the Catalogue of Alien Species by the European Alien Species Information Network\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13734 ;\n\twikibase:claim p:P13734 ;\n\twikibase:statementProperty ps:P13734 ;\n\twikibase:statementValue psv:P13734 ;\n\twikibase:qualifier pq:P13734 ;\n\twikibase:qualifierValue pqv:P13734 ;\n\twikibase:reference pr:P13734 ;\n\twikibase:referenceValue prv:P13734 ;\n\twikibase:novalue wdno:P13734 ;\n\twikibase:directClaimNormalized wdtn:P13734 ;\n\twikibase:statementValueNormalized psn:P13734 ;\n\twikibase:qualifierValueNormalized pqn:P13734 ;\n\twikibase:referenceValueNormalized prn:P13734 .\n\np:P13734 a owl:ObjectProperty .\n\npsv:P13734 a owl:ObjectProperty .\n\npqv:P13734 a owl:ObjectProperty .\n\nprv:P13734 a owl:ObjectProperty .\n\nwdt:P13734 a owl:DatatypeProperty .\n\nps:P13734 a owl:DatatypeProperty .\n\npq:P13734 a owl:DatatypeProperty .\n\npr:P13734 a owl:DatatypeProperty .\n\npsn:P13734 a owl:ObjectProperty .\n\npqn:P13734 a owl:ObjectProperty .\n\nprn:P13734 a owl:ObjectProperty .\n\nwdtn:P13734 a owl:ObjectProperty .\n\nwdno:P13734 a owl:Class ;\n\towl:complementOf _:abe6951a229e13e2bfdca260cb3f1e2e .\n\n_:abe6951a229e13e2bfdca260cb3f1e2e a owl:Restriction ;\n\towl:onProperty wdt:P13734 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6870 a wikibase:Property ;\n\trdfs:label \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\tskos:prefLabel \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\tschema:name \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\trdfs:label \"Latvian National Encyclopedia Online ID\"@en ;\n\tskos:prefLabel \"Latvian National Encyclopedia Online ID\"@en ;\n\tschema:name \"Latvian National Encyclopedia Online ID\"@en ;\n\tschema:description \"Identifikator für einen Artikel in der lettischen Nationalenzyklopädie (Nacionālā enciklopēdija)\"@de,\n\t\t\"identifier for an article in the website of the Latvian National Encyclopedia\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6870 ;\n\twikibase:claim p:P6870 ;\n\twikibase:statementProperty ps:P6870 ;\n\twikibase:statementValue psv:P6870 ;\n\twikibase:qualifier pq:P6870 ;\n\twikibase:qualifierValue pqv:P6870 ;\n\twikibase:reference pr:P6870 ;\n\twikibase:referenceValue prv:P6870 ;\n\twikibase:novalue wdno:P6870 ;\n\twikibase:directClaimNormalized wdtn:P6870 ;\n\twikibase:statementValueNormalized psn:P6870 ;\n\twikibase:qualifierValueNormalized pqn:P6870 ;\n\twikibase:referenceValueNormalized prn:P6870 .\n\np:P6870 a owl:ObjectProperty .\n\npsv:P6870 a owl:ObjectProperty .\n\npqv:P6870 a owl:ObjectProperty .\n\nprv:P6870 a owl:ObjectProperty .\n\nwdt:P6870 a owl:DatatypeProperty .\n\nps:P6870 a owl:DatatypeProperty .\n\npq:P6870 a owl:DatatypeProperty .\n\npr:P6870 a owl:DatatypeProperty .\n\npsn:P6870 a owl:ObjectProperty .\n\npqn:P6870 a owl:ObjectProperty .\n\nprn:P6870 a owl:ObjectProperty .\n\nwdtn:P6870 a owl:ObjectProperty .\n\nwdno:P6870 a owl:Class ;\n\towl:complementOf _:9c6f1e1820fdf936671b8600e1475089 .\n\n_:9c6f1e1820fdf936671b8600e1475089 a owl:Restriction ;\n\towl:onProperty wdt:P6870 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3101 a wikibase:Property ;\n\trdfs:label \"FloraBase-ID\"@de ;\n\tskos:prefLabel \"FloraBase-ID\"@de ;\n\tschema:name \"FloraBase-ID\"@de ;\n\trdfs:label \"FloraBase ID\"@en ;\n\tskos:prefLabel \"FloraBase ID\"@en ;\n\tschema:name \"FloraBase ID\"@en ;\n\tschema:description \"Identifikator in FloraBase - the Western Australian Flora\"@de,\n\t\t\"identifier for a plant taxon, in the Government of Western Australia's FloraBase database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3101 ;\n\twikibase:claim p:P3101 ;\n\twikibase:statementProperty ps:P3101 ;\n\twikibase:statementValue psv:P3101 ;\n\twikibase:qualifier pq:P3101 ;\n\twikibase:qualifierValue pqv:P3101 ;\n\twikibase:reference pr:P3101 ;\n\twikibase:referenceValue prv:P3101 ;\n\twikibase:novalue wdno:P3101 ;\n\twikibase:directClaimNormalized wdtn:P3101 ;\n\twikibase:statementValueNormalized psn:P3101 ;\n\twikibase:qualifierValueNormalized pqn:P3101 ;\n\twikibase:referenceValueNormalized prn:P3101 .\n\np:P3101 a owl:ObjectProperty .\n\npsv:P3101 a owl:ObjectProperty .\n\npqv:P3101 a owl:ObjectProperty .\n\nprv:P3101 a owl:ObjectProperty .\n\nwdt:P3101 a owl:DatatypeProperty .\n\nps:P3101 a owl:DatatypeProperty .\n\npq:P3101 a owl:DatatypeProperty .\n\npr:P3101 a owl:DatatypeProperty .\n\npsn:P3101 a owl:ObjectProperty .\n\npqn:P3101 a owl:ObjectProperty .\n\nprn:P3101 a owl:ObjectProperty .\n\nwdtn:P3101 a owl:ObjectProperty .\n\nwdno:P3101 a owl:Class ;\n\towl:complementOf _:2f5ab10124576f39347070565fca3ca1 .\n\n_:2f5ab10124576f39347070565fca3ca1 a owl:Restriction ;\n\towl:onProperty wdt:P3101 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P13478 a wikibase:Property ;\n\trdfs:label \"nomenklatorischer Typ von\"@de ;\n\tskos:prefLabel \"nomenklatorischer Typ von\"@de ;\n\tschema:name \"nomenklatorischer Typ von\"@de ;\n\trdfs:label \"nomenclatural type of\"@en ;\n\tskos:prefLabel \"nomenclatural type of\"@en ;\n\tschema:name \"nomenclatural type of\"@en ;\n\tschema:description \"taxon item of which this item is the taxonomic type (name-bearing type), e.g. the family for which this genus is the type, the genus for which this species is the type, the taxon for which this type specimen is the type, ect...\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13478 ;\n\twikibase:claim p:P13478 ;\n\twikibase:statementProperty ps:P13478 ;\n\twikibase:statementValue psv:P13478 ;\n\twikibase:qualifier pq:P13478 ;\n\twikibase:qualifierValue pqv:P13478 ;\n\twikibase:reference pr:P13478 ;\n\twikibase:referenceValue prv:P13478 ;\n\twikibase:novalue wdno:P13478 .\n\np:P13478 a owl:ObjectProperty .\n\npsv:P13478 a owl:ObjectProperty .\n\npqv:P13478 a owl:ObjectProperty .\n\nprv:P13478 a owl:ObjectProperty .\n\nwdt:P13478 a owl:ObjectProperty .\n\nps:P13478 a owl:ObjectProperty .\n\npq:P13478 a owl:ObjectProperty .\n\npr:P13478 a owl:ObjectProperty .\n\nwdno:P13478 a owl:Class ;\n\towl:complementOf _:e7bb5000b48e13ecb8f85d41964076ac .\n\n_:e7bb5000b48e13ecb8f85d41964076ac a owl:Restriction ;\n\towl:onProperty wdt:P13478 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5252 a wikibase:Property ;\n\trdfs:label \"Winteransicht\"@de ;\n\tskos:prefLabel \"Winteransicht\"@de ;\n\tschema:name \"Winteransicht\"@de ;\n\trdfs:label \"winter view\"@en ;\n\tskos:prefLabel \"winter view\"@en ;\n\tschema:name \"winter view\"@en ;\n\tschema:description \"Bild des Objekts im Winter, vorzugsweise mit Schnee\"@de,\n\t\t\"image of the subject in winter, preferably with snow\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5252 ;\n\twikibase:claim p:P5252 ;\n\twikibase:statementProperty ps:P5252 ;\n\twikibase:statementValue psv:P5252 ;\n\twikibase:qualifier pq:P5252 ;\n\twikibase:qualifierValue pqv:P5252 ;\n\twikibase:reference pr:P5252 ;\n\twikibase:referenceValue prv:P5252 ;\n\twikibase:novalue wdno:P5252 .\n\np:P5252 a owl:ObjectProperty .\n\npsv:P5252 a owl:ObjectProperty .\n\npqv:P5252 a owl:ObjectProperty .\n\nprv:P5252 a owl:ObjectProperty .\n\nwdt:P5252 a owl:ObjectProperty .\n\nps:P5252 a owl:ObjectProperty .\n\npq:P5252 a owl:ObjectProperty .\n\npr:P5252 a owl:ObjectProperty .\n\nwdno:P5252 a owl:Class ;\n\towl:complementOf _:af8d2087e237b7efd42011dd38f5e9b1 .\n\n_:af8d2087e237b7efd42011dd38f5e9b1 a owl:Restriction ;\n\towl:onProperty wdt:P5252 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21856107 a wikibase:Item ;\n\trdfs:label \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\tskos:prefLabel \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\tschema:name \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\trdfs:label \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tskos:prefLabel \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tschema:name \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tschema:description \"book by Carolus Linnaeus\"@en .\n\nwd:P248 a wikibase:Property ;\n\trdfs:label \"nachgewiesen in\"@de ;\n\tskos:prefLabel \"nachgewiesen in\"@de ;\n\tschema:name \"nachgewiesen in\"@de ;\n\trdfs:label \"stated in\"@en ;\n\tskos:prefLabel \"stated in\"@en ;\n\tschema:name \"stated in\"@en ;\n\tschema:description \"für die Angabe der Quelle der Behauptung im Fundstellenfeld\"@de,\n\t\t\"to be used in the references field to refer to the information document or database in which a claim is made; for qualifiers use P805; for the type of document in which a claim is made use P3865\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P248 ;\n\twikibase:claim p:P248 ;\n\twikibase:statementProperty ps:P248 ;\n\twikibase:statementValue psv:P248 ;\n\twikibase:qualifier pq:P248 ;\n\twikibase:qualifierValue pqv:P248 ;\n\twikibase:reference pr:P248 ;\n\twikibase:referenceValue prv:P248 ;\n\twikibase:novalue wdno:P248 .\n\np:P248 a owl:ObjectProperty .\n\npsv:P248 a owl:ObjectProperty .\n\npqv:P248 a owl:ObjectProperty .\n\nprv:P248 a owl:ObjectProperty .\n\nwdt:P248 a owl:ObjectProperty .\n\nps:P248 a owl:ObjectProperty .\n\npq:P248 a owl:ObjectProperty .\n\npr:P248 a owl:ObjectProperty .\n\nwdno:P248 a owl:Class ;\n\towl:complementOf _:a2b31078afaf5caae811f4ac846f5f35 .\n\n_:a2b31078afaf5caae811f4ac846f5f35 a owl:Restriction ;\n\towl:onProperty wdt:P248 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P304 a wikibase:Property ;\n\trdfs:label \"Seite(n)\"@de ;\n\tskos:prefLabel \"Seite(n)\"@de ;\n\tschema:name \"Seite(n)\"@de ;\n\trdfs:label \"page(s)\"@en ;\n\tskos:prefLabel \"page(s)\"@en ;\n\tschema:name \"page(s)\"@en ;\n\tschema:description \"Seitenangabe für eine Fundstelle\"@de,\n\t\t\"page number of source referenced for statement. Note \\\"column(s)\\\" (P3903) and \\\"folio(s)\\\" (P7416) for other numbering systems\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P304 ;\n\twikibase:claim p:P304 ;\n\twikibase:statementProperty ps:P304 ;\n\twikibase:statementValue psv:P304 ;\n\twikibase:qualifier pq:P304 ;\n\twikibase:qualifierValue pqv:P304 ;\n\twikibase:reference pr:P304 ;\n\twikibase:referenceValue prv:P304 ;\n\twikibase:novalue wdno:P304 .\n\np:P304 a owl:ObjectProperty .\n\npsv:P304 a owl:ObjectProperty .\n\npqv:P304 a owl:ObjectProperty .\n\nprv:P304 a owl:ObjectProperty .\n\nwdt:P304 a owl:DatatypeProperty .\n\nps:P304 a owl:DatatypeProperty .\n\npq:P304 a owl:DatatypeProperty .\n\npr:P304 a owl:DatatypeProperty .\n\nwdno:P304 a owl:Class ;\n\towl:complementOf _:49f6b1d5994a21499c8de6a108f33226 .\n\n_:49f6b1d5994a21499c8de6a108f33226 a owl:Restriction ;\n\towl:onProperty wdt:P304 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P687 a wikibase:Property ;\n\trdfs:label \"BHL-Seiten-ID\"@de ;\n\tskos:prefLabel \"BHL-Seiten-ID\"@de ;\n\tschema:name \"BHL-Seiten-ID\"@de ;\n\trdfs:label \"BHL page ID\"@en ;\n\tskos:prefLabel \"BHL page ID\"@en ;\n\tschema:name \"BHL page ID\"@en ;\n\tschema:description \"Identifikator einer Seite in der Biodiversity Heritage Library (BHL)\"@de,\n\t\t\"identifier for a page in the Biodiversity Heritage Library (BHL)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P687 ;\n\twikibase:claim p:P687 ;\n\twikibase:statementProperty ps:P687 ;\n\twikibase:statementValue psv:P687 ;\n\twikibase:qualifier pq:P687 ;\n\twikibase:qualifierValue pqv:P687 ;\n\twikibase:reference pr:P687 ;\n\twikibase:referenceValue prv:P687 ;\n\twikibase:novalue wdno:P687 ;\n\twikibase:directClaimNormalized wdtn:P687 ;\n\twikibase:statementValueNormalized psn:P687 ;\n\twikibase:qualifierValueNormalized pqn:P687 ;\n\twikibase:referenceValueNormalized prn:P687 .\n\np:P687 a owl:ObjectProperty .\n\npsv:P687 a owl:ObjectProperty .\n\npqv:P687 a owl:ObjectProperty .\n\nprv:P687 a owl:ObjectProperty .\n\nwdt:P687 a owl:DatatypeProperty .\n\nps:P687 a owl:DatatypeProperty .\n\npq:P687 a owl:DatatypeProperty .\n\npr:P687 a owl:DatatypeProperty .\n\npsn:P687 a owl:ObjectProperty .\n\npqn:P687 a owl:ObjectProperty .\n\nprn:P687 a owl:ObjectProperty .\n\nwdtn:P687 a owl:ObjectProperty .\n\nwdno:P687 a owl:Class ;\n\towl:complementOf _:7abca516490bbd632bf135aef23e1bea .\n\n_:7abca516490bbd632bf135aef23e1bea a owl:Restriction ;\n\towl:onProperty wdt:P687 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1361864 a wikibase:Item ;\n\trdfs:label \"Erstbeschreibung\"@de ;\n\tskos:prefLabel \"Erstbeschreibung\"@de ;\n\tschema:name \"Erstbeschreibung\"@de ;\n\trdfs:label \"first valid description\"@en ;\n\tskos:prefLabel \"first valid description\"@en ;\n\tschema:name \"first valid description\"@en ;\n\tschema:description \"erstmalige, bestimmten formalen Ansprüchen genügende wissenschaftliche Beschreibung eines der Wissenschaft bisher unbekannten Lebewesens\"@de,\n\t\t\"formal description of a new taxon\"@en .\n\nwd:P6184 a wikibase:Property ;\n\trdfs:label \"Nachweis fungiert als\"@de ;\n\tskos:prefLabel \"Nachweis fungiert als\"@de ;\n\tschema:name \"Nachweis fungiert als\"@de ;\n\trdfs:label \"reference has role\"@en ;\n\tskos:prefLabel \"reference has role\"@en ;\n\tschema:name \"reference has role\"@en ;\n\tschema:description \"die Rolle oder Besonderheit der angegebenen Referenz\"@de,\n\t\t\"role, or specific nature, of the given reference\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6184 ;\n\twikibase:claim p:P6184 ;\n\twikibase:statementProperty ps:P6184 ;\n\twikibase:statementValue psv:P6184 ;\n\twikibase:qualifier pq:P6184 ;\n\twikibase:qualifierValue pqv:P6184 ;\n\twikibase:reference pr:P6184 ;\n\twikibase:referenceValue prv:P6184 ;\n\twikibase:novalue wdno:P6184 .\n\np:P6184 a owl:ObjectProperty .\n\npsv:P6184 a owl:ObjectProperty .\n\npqv:P6184 a owl:ObjectProperty .\n\nprv:P6184 a owl:ObjectProperty .\n\nwdt:P6184 a owl:ObjectProperty .\n\nps:P6184 a owl:ObjectProperty .\n\npq:P6184 a owl:ObjectProperty .\n\npr:P6184 a owl:ObjectProperty .\n\nwdno:P6184 a owl:Class ;\n\towl:complementOf _:6c69348bdc0fb40f4302205367e7575d .\n\n_:6c69348bdc0fb40f4302205367e7575d a owl:Restriction ;\n\towl:onProperty wdt:P6184 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q115962546 a wikibase:Item ;\n\trdfs:label \"Rote Liste der IUCN 2022.2\"@de ;\n\tskos:prefLabel \"Rote Liste der IUCN 2022.2\"@de ;\n\tschema:name \"Rote Liste der IUCN 2022.2\"@de ;\n\trdfs:label \"The IUCN Red List of Threatened Species 2022.2\"@en ;\n\tskos:prefLabel \"The IUCN Red List of Threatened Species 2022.2\"@en ;\n\tschema:name \"The IUCN Red List of Threatened Species 2022.2\"@en .\n\nwd:P813 a wikibase:Property ;\n\trdfs:label \"abgerufen am\"@de ;\n\tskos:prefLabel \"abgerufen am\"@de ;\n\tschema:name \"abgerufen am\"@de ;\n\trdfs:label \"retrieved\"@en ;\n\tskos:prefLabel \"retrieved\"@en ;\n\tschema:name \"retrieved\"@en ;\n\tschema:description \"Datum, an dem die belegte Information zuletzt geprüft wurde\"@de,\n\t\t\"date or point in time that information was retrieved from a database or website (for use in online sources)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P813 ;\n\twikibase:claim p:P813 ;\n\twikibase:statementProperty ps:P813 ;\n\twikibase:statementValue psv:P813 ;\n\twikibase:qualifier pq:P813 ;\n\twikibase:qualifierValue pqv:P813 ;\n\twikibase:reference pr:P813 ;\n\twikibase:referenceValue prv:P813 ;\n\twikibase:novalue wdno:P813 .\n\np:P813 a owl:ObjectProperty .\n\npsv:P813 a owl:ObjectProperty .\n\npqv:P813 a owl:ObjectProperty .\n\nprv:P813 a owl:ObjectProperty .\n\nwdt:P813 a owl:DatatypeProperty .\n\nps:P813 a owl:DatatypeProperty .\n\npq:P813 a owl:DatatypeProperty .\n\npr:P813 a owl:DatatypeProperty .\n\nwdno:P813 a owl:Class ;\n\towl:complementOf _:a84dea0fd38ed74f926ea4bdef778770 .\n\n_:a84dea0fd38ed74f926ea4bdef778770 a owl:Restriction ;\n\towl:onProperty wdt:P813 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1043 a wikibase:Item ;\n\trdfs:label \"Carl von Linné\"@de ;\n\tskos:prefLabel \"Carl von Linné\"@de ;\n\tschema:name \"Carl von Linné\"@de ;\n\trdfs:label \"Carl Linnaeus\"@mul ;\n\tskos:prefLabel \"Carl Linnaeus\"@mul ;\n\tschema:name \"Carl Linnaeus\"@mul ;\n\trdfs:label \"Carl Linnaeus\"@en ;\n\tskos:prefLabel \"Carl Linnaeus\"@en ;\n\tschema:name \"Carl Linnaeus\"@en ;\n\tschema:description \"schwedischer Naturwissenschaftler, der die Grundlagen der modernen Taxonomie entwickelte\"@de,\n\t\t\"Swedish botanist, physician, and zoologist (1707–1778)\"@en .\n\nwd:P405 a wikibase:Property ;\n\trdfs:label \"Autor(en) des Taxons\"@de ;\n\tskos:prefLabel \"Autor(en) des Taxons\"@de ;\n\tschema:name \"Autor(en) des Taxons\"@de ;\n\trdfs:label \"taxon author\"@en ;\n\tskos:prefLabel \"taxon author\"@en ;\n\tschema:name \"taxon author\"@en ;\n\tschema:description \"Autor(en) des nomenklatorischen Namens\"@de,\n\t\t\"the author(s) that (optionally) may be cited with the scientific name\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P405 ;\n\twikibase:claim p:P405 ;\n\twikibase:statementProperty ps:P405 ;\n\twikibase:statementValue psv:P405 ;\n\twikibase:qualifier pq:P405 ;\n\twikibase:qualifierValue pqv:P405 ;\n\twikibase:reference pr:P405 ;\n\twikibase:referenceValue prv:P405 ;\n\twikibase:novalue wdno:P405 .\n\np:P405 a owl:ObjectProperty .\n\npsv:P405 a owl:ObjectProperty .\n\npqv:P405 a owl:ObjectProperty .\n\nprv:P405 a owl:ObjectProperty .\n\nwdt:P405 a owl:ObjectProperty .\n\nps:P405 a owl:ObjectProperty .\n\npq:P405 a owl:ObjectProperty .\n\npr:P405 a owl:ObjectProperty .\n\nwdno:P405 a owl:Class ;\n\towl:complementOf _:09743fef9c80f246289e32d731a678be .\n\n_:09743fef9c80f246289e32d731a678be a owl:Restriction ;\n\towl:onProperty wdt:P405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P574 a wikibase:Property ;\n\trdfs:label \"veröffentlicht im Jahr\"@de ;\n\tskos:prefLabel \"veröffentlicht im Jahr\"@de ;\n\tschema:name \"veröffentlicht im Jahr\"@de ;\n\trdfs:label \"year of publication of scientific name for taxon\"@en ;\n\tskos:prefLabel \"year of publication of scientific name for taxon\"@en ;\n\tschema:name \"year of publication of scientific name for taxon\"@en ;\n\tschema:description \"Jahr, in dem die Erstbeschreibung oder Umkombination veröffentlicht wurde\"@de,\n\t\t\"year when this taxon was formally described (for animals); year when this taxon name was formally established (for plants)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P574 ;\n\twikibase:claim p:P574 ;\n\twikibase:statementProperty ps:P574 ;\n\twikibase:statementValue psv:P574 ;\n\twikibase:qualifier pq:P574 ;\n\twikibase:qualifierValue pqv:P574 ;\n\twikibase:reference pr:P574 ;\n\twikibase:referenceValue prv:P574 ;\n\twikibase:novalue wdno:P574 .\n\np:P574 a owl:ObjectProperty .\n\npsv:P574 a owl:ObjectProperty .\n\npqv:P574 a owl:ObjectProperty .\n\nprv:P574 a owl:ObjectProperty .\n\nwdt:P574 a owl:DatatypeProperty .\n\nps:P574 a owl:DatatypeProperty .\n\npq:P574 a owl:DatatypeProperty .\n\npr:P574 a owl:DatatypeProperty .\n\nwdno:P574 a owl:Class ;\n\towl:complementOf _:9ed7c35cce0b9f9b47cc5f1822000494 .\n\n_:9ed7c35cce0b9f9b47cc5f1822000494 a owl:Restriction ;\n\towl:onProperty wdt:P574 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q10884 a wikibase:Item ;\n\trdfs:label \"Baum\"@de ;\n\tskos:prefLabel \"Baum\"@de ;\n\tschema:name \"Baum\"@de ;\n\trdfs:label \"tree\"@en ;\n\tskos:prefLabel \"tree\"@en ;\n\tschema:name \"tree\"@en ;\n\tschema:description \"eine verholzte Pflanze, die aus einer Wurzel, einem Stamm und einer Krone besteht\"@de,\n\t\t\"perennial woody plant\"@en .\n\nwd:P180 a wikibase:Property ;\n\trdfs:label \"Motiv\"@de ;\n\tskos:prefLabel \"Motiv\"@de ;\n\tschema:name \"Motiv\"@de ;\n\trdfs:label \"depicts\"@en ;\n\tskos:prefLabel \"depicts\"@en ;\n\tschema:name \"depicts\"@en ;\n\tschema:description \"Gegenstand der Darstellung (z. B. Person, Ort, Objekt oder Ereignis), siehe auch Schlagwort (P921)\"@de,\n\t\t\"entity visually depicted in an image, literarily described in a work, or otherwise incorporated into an audiovisual or other medium; see also P921, 'main subject'\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P180 ;\n\twikibase:claim p:P180 ;\n\twikibase:statementProperty ps:P180 ;\n\twikibase:statementValue psv:P180 ;\n\twikibase:qualifier pq:P180 ;\n\twikibase:qualifierValue pqv:P180 ;\n\twikibase:reference pr:P180 ;\n\twikibase:referenceValue prv:P180 ;\n\twikibase:novalue wdno:P180 .\n\np:P180 a owl:ObjectProperty .\n\npsv:P180 a owl:ObjectProperty .\n\npqv:P180 a owl:ObjectProperty .\n\nprv:P180 a owl:ObjectProperty .\n\nwdt:P180 a owl:ObjectProperty .\n\nps:P180 a owl:ObjectProperty .\n\npq:P180 a owl:ObjectProperty .\n\npr:P180 a owl:ObjectProperty .\n\nwdno:P180 a owl:Class ;\n\towl:complementOf _:20c681d1555b7d642c63c655f8ceb64a .\n\n_:20c681d1555b7d642c63c655f8ceb64a a owl:Restriction ;\n\towl:onProperty wdt:P180 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1364 a wikibase:Item ;\n\trdfs:label \"Frucht\"@de ;\n\tskos:prefLabel \"Frucht\"@de ;\n\tschema:name \"Frucht\"@de ;\n\trdfs:label \"fruit\"@en ;\n\tskos:prefLabel \"fruit\"@en ;\n\tschema:name \"fruit\"@en ;\n\tschema:description \"Blüte im Zustand der Samenreife\"@de,\n\t\t\"botanical term for the mature ovary or ovaries of one or more flowers. For foods commonly known as fruit, use Q3314483\"@en .\n\nwd:P5961 a wikibase:Property ;\n\trdfs:label \"dargestellter Teil\"@de ;\n\tskos:prefLabel \"dargestellter Teil\"@de ;\n\tschema:name \"dargestellter Teil\"@de ;\n\trdfs:label \"depicted part\"@en ;\n\tskos:prefLabel \"depicted part\"@en ;\n\tschema:name \"depicted part\"@en ;\n\tschema:description \"Zur Verwendung als Qualifikator von \\\"Motiv\\\" (P180)\"@de,\n\t\t\"use as qualifier for \\\"depicts\\\" (P180) or image (P18)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5961 ;\n\twikibase:claim p:P5961 ;\n\twikibase:statementProperty ps:P5961 ;\n\twikibase:statementValue psv:P5961 ;\n\twikibase:qualifier pq:P5961 ;\n\twikibase:qualifierValue pqv:P5961 ;\n\twikibase:reference pr:P5961 ;\n\twikibase:referenceValue prv:P5961 ;\n\twikibase:novalue wdno:P5961 .\n\np:P5961 a owl:ObjectProperty .\n\npsv:P5961 a owl:ObjectProperty .\n\npqv:P5961 a owl:ObjectProperty .\n\nprv:P5961 a owl:ObjectProperty .\n\nwdt:P5961 a owl:ObjectProperty .\n\nps:P5961 a owl:ObjectProperty .\n\npq:P5961 a owl:ObjectProperty .\n\npr:P5961 a owl:ObjectProperty .\n\nwdno:P5961 a owl:Class ;\n\towl:complementOf _:d93d7c0b22e00f757b773c6b3a5ac203 .\n\n_:d93d7c0b22e00f757b773c6b3a5ac203 a owl:Restriction ;\n\towl:onProperty wdt:P5961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3796486 a wikibase:Item ;\n\trdfs:label \"Botanische Illustration\"@de ;\n\tskos:prefLabel \"Botanische Illustration\"@de ;\n\tschema:name \"Botanische Illustration\"@de ;\n\trdfs:label \"botanical illustration\"@en ;\n\tskos:prefLabel \"botanical illustration\"@en ;\n\tschema:name \"botanical illustration\"@en ;\n\tschema:description \"Zeichnung oder Gemälde von Pflanzen und ihrer Pflanzenteile\"@de,\n\t\t\"drawing or painted image of plants and their components\"@en .\n\nwd:P3831 a wikibase:Property ;\n\trdfs:label \"Objekt der Aussage fungiert als\"@de ;\n\tskos:prefLabel \"Objekt der Aussage fungiert als\"@de ;\n\tschema:name \"Objekt der Aussage fungiert als\"@de ;\n\trdfs:label \"object of statement has role\"@en ;\n\tskos:prefLabel \"object of statement has role\"@en ;\n\tschema:name \"object of statement has role\"@en ;\n\tschema:description \"Rolle des Objekts der Aussage im konkreten Zusammenhang. Für die Rolle des Subjekts P2868 verwenden\"@de,\n\t\t\"(qualifier) role held by the predicate value (object) of a statement in the context of that statement; for the role of the item the statement appears on (subject), use P2868\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3831 ;\n\twikibase:claim p:P3831 ;\n\twikibase:statementProperty ps:P3831 ;\n\twikibase:statementValue psv:P3831 ;\n\twikibase:qualifier pq:P3831 ;\n\twikibase:qualifierValue pqv:P3831 ;\n\twikibase:reference pr:P3831 ;\n\twikibase:referenceValue prv:P3831 ;\n\twikibase:novalue wdno:P3831 .\n\np:P3831 a owl:ObjectProperty .\n\npsv:P3831 a owl:ObjectProperty .\n\npqv:P3831 a owl:ObjectProperty .\n\nprv:P3831 a owl:ObjectProperty .\n\nwdt:P3831 a owl:ObjectProperty .\n\nps:P3831 a owl:ObjectProperty .\n\npq:P3831 a owl:ObjectProperty .\n\npr:P3831 a owl:ObjectProperty .\n\nwdno:P3831 a owl:Class ;\n\towl:complementOf _:4941dbdb9a38c5a500b05366e45fe45d .\n\n_:4941dbdb9a38c5a500b05366e45fe45d a owl:Restriction ;\n\towl:onProperty wdt:P3831 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q61726742 a wikibase:Item ;\n\trdfs:label \"herbarium specimen\"@en ;\n\tskos:prefLabel \"herbarium specimen\"@en ;\n\tschema:name \"herbarium specimen\"@en ;\n\tschema:description \"specimen housed in a herbarium\"@en .\n\nwd:Q8447 a wikibase:Item ;\n\trdfs:label \"französischsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"französischsprachige Wikipedia\"@de ;\n\tschema:name \"französischsprachige Wikipedia\"@de ;\n\trdfs:label \"French Wikipedia\"@en ;\n\tskos:prefLabel \"French Wikipedia\"@en ;\n\tschema:name \"French Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in französischer Sprache\"@de,\n\t\t\"French-language edition of Wikipedia\"@en .\n\nwd:P143 a wikibase:Property ;\n\trdfs:label \"importiert aus Wikimedia-Projekt\"@de ;\n\tskos:prefLabel \"importiert aus Wikimedia-Projekt\"@de ;\n\tschema:name \"importiert aus Wikimedia-Projekt\"@de ;\n\trdfs:label \"imported from Wikimedia project\"@en ;\n\tskos:prefLabel \"imported from Wikimedia project\"@en ;\n\tschema:name \"imported from Wikimedia project\"@en ;\n\tschema:description \"Angaben übernommen aus (nur für Fundstellen)\"@de,\n\t\t\"source of this claim's value; used in references section by bots or humans importing data from Wikimedia projects\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P143 ;\n\twikibase:claim p:P143 ;\n\twikibase:statementProperty ps:P143 ;\n\twikibase:statementValue psv:P143 ;\n\twikibase:qualifier pq:P143 ;\n\twikibase:qualifierValue pqv:P143 ;\n\twikibase:reference pr:P143 ;\n\twikibase:referenceValue prv:P143 ;\n\twikibase:novalue wdno:P143 .\n\np:P143 a owl:ObjectProperty .\n\npsv:P143 a owl:ObjectProperty .\n\npqv:P143 a owl:ObjectProperty .\n\nprv:P143 a owl:ObjectProperty .\n\nwdt:P143 a owl:ObjectProperty .\n\nps:P143 a owl:ObjectProperty .\n\npq:P143 a owl:ObjectProperty .\n\npr:P143 a owl:ObjectProperty .\n\nwdno:P143 a owl:Class ;\n\towl:complementOf _:66a2156e9cbfe8d655274b862fca1b59 .\n\n_:66a2156e9cbfe8d655274b862fca1b59 a owl:Restriction ;\n\towl:onProperty wdt:P143 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12159796 a wikibase:Item ;\n\trdfs:label \"Taxonomiedatenbank des NCBI\"@de ;\n\tskos:prefLabel \"Taxonomiedatenbank des NCBI\"@de ;\n\tschema:name \"Taxonomiedatenbank des NCBI\"@de ;\n\trdfs:label \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tskos:prefLabel \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:name \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:description \"Taxonomiedatenbank für Molekularbiologie\"@de,\n\t\t\"curated classification and nomenclature for all of the organisms in the public sequence databases\"@en .\n\nwd:Q82575 a wikibase:Item ;\n\trdfs:label \"Integrated Taxonomic Information System\"@de ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@de ;\n\tschema:name \"Integrated Taxonomic Information System\"@de ;\n\trdfs:label \"Integrated Taxonomic Information System\"@en ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@en ;\n\tschema:name \"Integrated Taxonomic Information System\"@en ;\n\tschema:description \"Projekt zur Standardisierung und Bereitstellung taxonomischer Informationen\"@de,\n\t\t\"authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world\"@en .\n\nwd:Q15241312 a wikibase:Item ;\n\trdfs:label \"Freebase-Datendump\"@de ;\n\tskos:prefLabel \"Freebase-Datendump\"@de ;\n\tschema:name \"Freebase-Datendump\"@de ;\n\trdfs:label \"Freebase Data Dumps\"@en ;\n\tskos:prefLabel \"Freebase Data Dumps\"@en ;\n\tschema:name \"Freebase Data Dumps\"@en ;\n\tschema:description \"Datenbankdumps des Google Knowledge Graph\"@de,\n\t\t\"dumps of the public part of Google's Knowledge Graph\"@en .\n\nwd:P577 a wikibase:Property ;\n\trdfs:label \"Veröffentlichungsdatum\"@de ;\n\tskos:prefLabel \"Veröffentlichungsdatum\"@de ;\n\tschema:name \"Veröffentlichungsdatum\"@de ;\n\trdfs:label \"publication date\"@en ;\n\tskos:prefLabel \"publication date\"@en ;\n\tschema:name \"publication date\"@en ;\n\tschema:description \"Zeitpunkt, an dem ein Werk (zuerst) veröffentlicht wurde; (aktualisierte Fassungen/Versionen haben ein eigenes Veröffentlichungsdatum)\"@de,\n\t\t\"date or point in time when a work or product was first published or released\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P577 ;\n\twikibase:claim p:P577 ;\n\twikibase:statementProperty ps:P577 ;\n\twikibase:statementValue psv:P577 ;\n\twikibase:qualifier pq:P577 ;\n\twikibase:qualifierValue pqv:P577 ;\n\twikibase:reference pr:P577 ;\n\twikibase:referenceValue prv:P577 ;\n\twikibase:novalue wdno:P577 .\n\np:P577 a owl:ObjectProperty .\n\npsv:P577 a owl:ObjectProperty .\n\npqv:P577 a owl:ObjectProperty .\n\nprv:P577 a owl:ObjectProperty .\n\nwdt:P577 a owl:DatatypeProperty .\n\nps:P577 a owl:DatatypeProperty .\n\npq:P577 a owl:DatatypeProperty .\n\npr:P577 a owl:DatatypeProperty .\n\nwdno:P577 a owl:Class ;\n\towl:complementOf _:eca5fcd2c546d0e0c20e05f61e0aa797 .\n\n_:eca5fcd2c546d0e0c20e05f61e0aa797 a owl:Restriction ;\n\towl:onProperty wdt:P577 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q48183 a wikibase:Item ;\n\trdfs:label \"deutschsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"deutschsprachige Wikipedia\"@de ;\n\tschema:name \"deutschsprachige Wikipedia\"@de ;\n\trdfs:label \"German Wikipedia\"@en ;\n\tskos:prefLabel \"German Wikipedia\"@en ;\n\tschema:name \"German Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in deutscher Sprache\"@de,\n\t\t\"German-language edition of Wikipedia\"@en .\n\nwd:Q2578548 a wikibase:Item ;\n\trdfs:label \"Tropicos\"@de ;\n\tskos:prefLabel \"Tropicos\"@de ;\n\tschema:name \"Tropicos\"@de ;\n\trdfs:label \"Tropicos\"@mul ;\n\tskos:prefLabel \"Tropicos\"@mul ;\n\tschema:name \"Tropicos\"@mul ;\n\trdfs:label \"Tropicos\"@en ;\n\tskos:prefLabel \"Tropicos\"@en ;\n\tschema:name \"Tropicos\"@en ;\n\tschema:description \"database on tropical plants, mainly the ecozone Neotropica\"@en .\n\nwd:Q82486 a wikibase:Item ;\n\trdfs:label \"Encyclopedia of Life\"@mul ;\n\tskos:prefLabel \"Encyclopedia of Life\"@mul ;\n\tschema:name \"Encyclopedia of Life\"@mul ;\n\tschema:description \"ein Kooperationsprojekt zur Erstellung einer Enzyklopädie, die alle in der Wissenschaft bekannten lebenden Arten dokumentiert.\"@de,\n\t\t\"collaborative project intended to create an encyclopedia documenting all living species known to science\"@en .\n\nwd:Q15628808 a wikibase:Item ;\n\trdfs:label \"The Plant List 1.1\"@de ;\n\tskos:prefLabel \"The Plant List 1.1\"@de ;\n\tschema:name \"The Plant List 1.1\"@de ;\n\trdfs:label \"The Plant List 1.1\"@en ;\n\tskos:prefLabel \"The Plant List 1.1\"@en ;\n\tschema:name \"The Plant List 1.1\"@en ;\n\tschema:description \"enumeration\"@en .\n\nwd:Q1429295 a wikibase:Item ;\n\trdfs:label \"Flora of North America\"@de ;\n\tskos:prefLabel \"Flora of North America\"@de ;\n\tschema:name \"Flora of North America\"@de ;\n\trdfs:label \"Flora of North America\"@en ;\n\tskos:prefLabel \"Flora of North America\"@en ;\n\tschema:name \"Flora of North America\"@en ;\n\tschema:description \"mehrbändiges Werk über die Flora von Nordamerika\"@de,\n\t\t\"book, website, database\"@en .\n\nwd:Q19544711 a wikibase:Item ;\n\trdfs:label \"Vascular Plants of Canada\"@de ;\n\tskos:prefLabel \"Vascular Plants of Canada\"@de ;\n\tschema:name \"Vascular Plants of Canada\"@de ;\n\trdfs:label \"Database of Vascular Plants of Canada\"@en ;\n\tskos:prefLabel \"Database of Vascular Plants of Canada\"@en ;\n\tschema:name \"Database of Vascular Plants of Canada\"@en ;\n\tschema:description \"community contributed taxonomic checklist of all vascular plants of Canada, Saint Pierre and Miquelon, and Greenland\"@en .\n\nwd:Q5460442 a wikibase:Item ;\n\trdfs:label \"Flora of China\"@de ;\n\tskos:prefLabel \"Flora of China\"@de ;\n\tschema:name \"Flora of China\"@de ;\n\trdfs:label \"Flora of China\"@en ;\n\tskos:prefLabel \"Flora of China\"@en ;\n\tschema:name \"Flora of China\"@en ;\n\tschema:description \"mehrteilige Publikation über die chinesische Flora\"@de,\n\t\t\"English-language multi-volume book and online database\"@en .\n\nwd:Q19576476 a wikibase:Item ;\n\trdfs:label \"GRIN Taxonomie der Pflanzen\"@de ;\n\tskos:prefLabel \"GRIN Taxonomie der Pflanzen\"@de ;\n\tschema:name \"GRIN Taxonomie der Pflanzen\"@de ;\n\trdfs:label \"GRIN Taxonomy for Plants\"@en ;\n\tskos:prefLabel \"GRIN Taxonomy for Plants\"@en ;\n\tschema:name \"GRIN Taxonomy for Plants\"@en ;\n\tschema:description \"taxonomische Datenbank des Germplasm Resources Information Network (GRIN)\"@de,\n\t\t\"Germplasm Resources Information Network\"@en .\n\nwd:Q19636200 a wikibase:Item ;\n\trdfs:label \"USDA Plants Database\"@de ;\n\tskos:prefLabel \"USDA Plants Database\"@de ;\n\tschema:name \"USDA Plants Database\"@de ;\n\trdfs:label \"United States Department of Agriculture Plants Database\"@en ;\n\tskos:prefLabel \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:name \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:description \"database of plants found in the USA\"@en .\n\nwd:Q1531570 a wikibase:Item ;\n\trdfs:label \"Global Biodiversity Information Facility\"@de ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@de ;\n\tschema:name \"Global Biodiversity Information Facility\"@de ;\n\trdfs:label \"Global Biodiversity Information Facility\"@mul ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@mul ;\n\tschema:name \"Global Biodiversity Information Facility\"@mul ;\n\trdfs:label \"Global Biodiversity Information Facility\"@en ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@en ;\n\tschema:name \"Global Biodiversity Information Facility\"@en ;\n\tschema:description \"internationale Organisation\"@de,\n\t\t\"aggregator of scientific data on biodiversity; data portal\"@en .\n\nwd:Q20425914 a wikibase:Item ;\n\trdfs:label \"Dyntaxa\"@de ;\n\tskos:prefLabel \"Dyntaxa\"@de ;\n\tschema:name \"Dyntaxa\"@de ;\n\trdfs:label \"Dyntaxa\"@en ;\n\tskos:prefLabel \"Dyntaxa\"@en ;\n\tschema:name \"Dyntaxa\"@en ;\n\tschema:description \"Schwedische Taxonomie-Datenbank\"@de,\n\t\t\"Swedish taxonomy database\"@en .\n\nwd:Q20862705 a wikibase:Item ;\n\trdfs:label \"African Plant Database\"@de ;\n\tskos:prefLabel \"African Plant Database\"@de ;\n\tschema:name \"African Plant Database\"@de ;\n\trdfs:label \"African Plant Database\"@en ;\n\tskos:prefLabel \"African Plant Database\"@en ;\n\tschema:name \"African Plant Database\"@en .\n\nwd:Q23893915 a wikibase:Item ;\n\trdfs:label \"New Zealand Organisms Register\"@de ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@de ;\n\tschema:name \"New Zealand Organisms Register\"@de ;\n\trdfs:label \"New Zealand Organisms Register\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@en ;\n\tschema:name \"New Zealand Organisms Register\"@en ;\n\tschema:description \"Datenbank\"@de,\n\t\t\"catalogue of scientific names of New Zealand biota\"@en .\n\nwd:Q32059 a wikibase:Item ;\n\trdfs:label \"Rote Liste gefährdeter Arten\"@de ;\n\tskos:prefLabel \"Rote Liste gefährdeter Arten\"@de ;\n\tschema:name \"Rote Liste gefährdeter Arten\"@de ;\n\trdfs:label \"IUCN Red List\"@en ;\n\tskos:prefLabel \"IUCN Red List\"@en ;\n\tschema:name \"IUCN Red List\"@en ;\n\tschema:description \"Liste weltweit gefährdeter Tier- und Pflanzenarten\"@de,\n\t\t\"inventory of the global conservation status of biological species\"@en .\n\nwd:Q26936509 a wikibase:Item ;\n\trdfs:label \"TAXREF v9.0\"@de ;\n\tskos:prefLabel \"TAXREF v9.0\"@de ;\n\tschema:name \"TAXREF v9.0\"@de ;\n\trdfs:label \"TAXREF v9.0\"@en ;\n\tskos:prefLabel \"TAXREF v9.0\"@en ;\n\tschema:name \"TAXREF v9.0\"@en .\n\nwd:Q45029859 a wikibase:Item ;\n\trdfs:label \"TAXREF v10.0\"@de ;\n\tskos:prefLabel \"TAXREF v10.0\"@de ;\n\tschema:name \"TAXREF v10.0\"@de ;\n\trdfs:label \"TAXREF v10.0\"@en ;\n\tskos:prefLabel \"TAXREF v10.0\"@en ;\n\tschema:name \"TAXREF v10.0\"@en .\n\nwd:Q45029998 a wikibase:Item ;\n\trdfs:label \"TAXREF v11.0\"@de ;\n\tskos:prefLabel \"TAXREF v11.0\"@de ;\n\tschema:name \"TAXREF v11.0\"@de ;\n\trdfs:label \"TAXREF v11.0\"@en ;\n\tskos:prefLabel \"TAXREF v11.0\"@en ;\n\tschema:name \"TAXREF v11.0\"@en .\n\nwd:Q58035056 a wikibase:Item ;\n\trdfs:label \"TAXREF v12.0\"@de ;\n\tskos:prefLabel \"TAXREF v12.0\"@de ;\n\tschema:name \"TAXREF v12.0\"@de ;\n\trdfs:label \"TAXREF v12.0\"@en ;\n\tskos:prefLabel \"TAXREF v12.0\"@en ;\n\tschema:name \"TAXREF v12.0\"@en .\n\nwd:Q79844869 a wikibase:Item ;\n\trdfs:label \"TAXREF v13.0\"@de ;\n\tskos:prefLabel \"TAXREF v13.0\"@de ;\n\tschema:name \"TAXREF v13.0\"@de ;\n\trdfs:label \"TAXREF v13.0\"@en ;\n\tskos:prefLabel \"TAXREF v13.0\"@en ;\n\tschema:name \"TAXREF v13.0\"@en .\n\nwd:Q104290728 a wikibase:Item ;\n\trdfs:label \"TAXREF v14.0\"@de ;\n\tskos:prefLabel \"TAXREF v14.0\"@de ;\n\tschema:name \"TAXREF v14.0\"@de ;\n\trdfs:label \"TAXREF v14.0\"@en ;\n\tskos:prefLabel \"TAXREF v14.0\"@en ;\n\tschema:name \"TAXREF v14.0\"@en .\n\nwd:Q110438362 a wikibase:Item ;\n\trdfs:label \"TAXREF v15.0\"@de ;\n\tskos:prefLabel \"TAXREF v15.0\"@de ;\n\tschema:name \"TAXREF v15.0\"@de ;\n\trdfs:label \"TAXREF v15.0\"@en ;\n\tskos:prefLabel \"TAXREF v15.0\"@en ;\n\tschema:name \"TAXREF v15.0\"@en .\n\nwd:Q116008531 a wikibase:Item ;\n\trdfs:label \"TAXREF v16.0\"@de ;\n\tskos:prefLabel \"TAXREF v16.0\"@de ;\n\tschema:name \"TAXREF v16.0\"@de ;\n\trdfs:label \"TAXREF v16.0\"@en ;\n\tskos:prefLabel \"TAXREF v16.0\"@en ;\n\tschema:name \"TAXREF v16.0\"@en .\n\nwd:Q6970988 a wikibase:Item ;\n\trdfs:label \"National Biodiversity Network\"@de ;\n\tskos:prefLabel \"National Biodiversity Network\"@de ;\n\tschema:name \"National Biodiversity Network\"@de ;\n\trdfs:label \"National Biodiversity Network\"@en ;\n\tskos:prefLabel \"National Biodiversity Network\"@en ;\n\tschema:name \"National Biodiversity Network\"@en ;\n\tschema:description \"UK biodiversity database\"@en .\n\nwd:Q2246990 a wikibase:Item ;\n\trdfs:label \"Nederlands Soortenregister\"@de ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@de ;\n\tschema:name \"Nederlands Soortenregister\"@de ;\n\trdfs:label \"Nederlands Soortenregister\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@en ;\n\tschema:name \"Nederlands Soortenregister\"@en ;\n\tschema:description \"gibt einen Überblick über die Biodiversität der Niederlande\"@de,\n\t\t\"Dutch database of species\"@en .\n\nwd:Q8035497 a wikibase:Item ;\n\trdfs:label \"World Checklist of Selected Plant Families\"@de ;\n\tskos:prefLabel \"World Checklist of Selected Plant Families\"@de ;\n\tschema:name \"World Checklist of Selected Plant Families\"@de ;\n\trdfs:label \"World Checklist of Selected Plant Families\"@en ;\n\tskos:prefLabel \"World Checklist of Selected Plant Families\"@en ;\n\tschema:name \"World Checklist of Selected Plant Families\"@en ;\n\tschema:description \"project in Kew Gardens\"@en .\n\nwd:Q191168 a wikibase:Item ;\n\trdfs:label \"tschechischsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"tschechischsprachige Wikipedia\"@de ;\n\tschema:name \"tschechischsprachige Wikipedia\"@de ;\n\trdfs:label \"Czech Wikipedia\"@en ;\n\tskos:prefLabel \"Czech Wikipedia\"@en ;\n\tschema:name \"Czech Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in tschechischer Sprache\"@de,\n\t\t\"Czech-language edition of Wikipedia\"@en .\n\nwd:P1810 a wikibase:Property ;\n\trdfs:label \"genannt als\"@de ;\n\tskos:prefLabel \"genannt als\"@de ;\n\tschema:name \"genannt als\"@de ;\n\trdfs:label \"subject named as\"@en ;\n\tskos:prefLabel \"subject named as\"@en ;\n\tschema:name \"subject named as\"@en ;\n\tschema:description \"Name, unter dem ein Subjekt in einer Datenbank geführt wird oder als Mitwirkender an einem Werk genannt wird\"@de,\n\t\t\"name by which a subject is recorded in a database, mentioned as a contributor of a work, or is referred to in a particular context\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1810 ;\n\twikibase:claim p:P1810 ;\n\twikibase:statementProperty ps:P1810 ;\n\twikibase:statementValue psv:P1810 ;\n\twikibase:qualifier pq:P1810 ;\n\twikibase:qualifierValue pqv:P1810 ;\n\twikibase:reference pr:P1810 ;\n\twikibase:referenceValue prv:P1810 ;\n\twikibase:novalue wdno:P1810 .\n\np:P1810 a owl:ObjectProperty .\n\npsv:P1810 a owl:ObjectProperty .\n\npqv:P1810 a owl:ObjectProperty .\n\nprv:P1810 a owl:ObjectProperty .\n\nwdt:P1810 a owl:DatatypeProperty .\n\nps:P1810 a owl:DatatypeProperty .\n\npq:P1810 a owl:DatatypeProperty .\n\npr:P1810 a owl:DatatypeProperty .\n\nwdno:P1810 a owl:Class ;\n\towl:complementOf _:1d6e1ecf4f0164f6a3471dd66d38c9d8 .\n\n_:1d6e1ecf4f0164f6a3471dd66d38c9d8 a owl:Restriction ;\n\towl:onProperty wdt:P1810 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P585 a wikibase:Property ;\n\trdfs:label \"Zeitpunkt/Stand\"@de ;\n\tskos:prefLabel \"Zeitpunkt/Stand\"@de ;\n\tschema:name \"Zeitpunkt/Stand\"@de ;\n\trdfs:label \"point in time\"@en ;\n\tskos:prefLabel \"point in time\"@en ;\n\tschema:name \"point in time\"@en ;\n\tschema:description \"Moment, an dem etwas stattfand, existierte oder wahr war\"@de,\n\t\t\"date something took place, existed or a statement was true; for providing time use the \\\"refine date\\\" property (P4241)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P585 ;\n\twikibase:claim p:P585 ;\n\twikibase:statementProperty ps:P585 ;\n\twikibase:statementValue psv:P585 ;\n\twikibase:qualifier pq:P585 ;\n\twikibase:qualifierValue pqv:P585 ;\n\twikibase:reference pr:P585 ;\n\twikibase:referenceValue prv:P585 ;\n\twikibase:novalue wdno:P585 .\n\np:P585 a owl:ObjectProperty .\n\npsv:P585 a owl:ObjectProperty .\n\npqv:P585 a owl:ObjectProperty .\n\nprv:P585 a owl:ObjectProperty .\n\nwdt:P585 a owl:DatatypeProperty .\n\nps:P585 a owl:DatatypeProperty .\n\npq:P585 a owl:DatatypeProperty .\n\npr:P585 a owl:DatatypeProperty .\n\nwdno:P585 a owl:Class ;\n\towl:complementOf _:dd1c08307a09e1466ce90c482ad42ea9 .\n\n_:dd1c08307a09e1466ce90c482ad42ea9 a owl:Restriction ;\n\towl:onProperty wdt:P585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P854 a wikibase:Property ;\n\trdfs:label \"URL der Fundstelle\"@de ;\n\tskos:prefLabel \"URL der Fundstelle\"@de ;\n\tschema:name \"URL der Fundstelle\"@de ;\n\trdfs:label \"reference URL\"@en ;\n\tskos:prefLabel \"reference URL\"@en ;\n\tschema:name \"reference URL\"@en ;\n\tschema:description \"Internetadresse für Quellenangaben. Benutze P4656 für Interwiki-Links\"@de,\n\t\t\"should be used for Internet URLs as references. Use \\\"Wikimedia import URL\\\" (P4656) for imports from WMF sites\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P854 ;\n\twikibase:claim p:P854 ;\n\twikibase:statementProperty ps:P854 ;\n\twikibase:statementValue psv:P854 ;\n\twikibase:qualifier pq:P854 ;\n\twikibase:qualifierValue pqv:P854 ;\n\twikibase:reference pr:P854 ;\n\twikibase:referenceValue prv:P854 ;\n\twikibase:novalue wdno:P854 .\n\np:P854 a owl:ObjectProperty .\n\npsv:P854 a owl:ObjectProperty .\n\npqv:P854 a owl:ObjectProperty .\n\nprv:P854 a owl:ObjectProperty .\n\nwdt:P854 a owl:ObjectProperty .\n\nps:P854 a owl:ObjectProperty .\n\npq:P854 a owl:ObjectProperty .\n\npr:P854 a owl:ObjectProperty .\n\nwdno:P854 a owl:Class ;\n\towl:complementOf _:7317e7e5a3edc1980ecfe7616bb5fa1d .\n\n_:7317e7e5a3edc1980ecfe7616bb5fa1d a owl:Restriction ;\n\towl:onProperty wdt:P854 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q47542613 a wikibase:Item ;\n\trdfs:label \"Plants of the World Online\"@de ;\n\tskos:prefLabel \"Plants of the World Online\"@de ;\n\tschema:name \"Plants of the World Online\"@de ;\n\trdfs:label \"Plants of the World Online\"@en ;\n\tskos:prefLabel \"Plants of the World Online\"@en ;\n\tschema:name \"Plants of the World Online\"@en ;\n\tschema:description \"online database of the world's plants\"@en .\n\nwd:Q54859980 a wikibase:Item ;\n\trdfs:label \"Portál informačního systému ochrany přírody\"@en ;\n\tskos:prefLabel \"Portál informačního systému ochrany přírody\"@en ;\n\tschema:name \"Portál informačního systému ochrany přírody\"@en .\n\nwd:P1065 a wikibase:Property ;\n\trdfs:label \"URL des Archivs\"@de ;\n\tskos:prefLabel \"URL des Archivs\"@de ;\n\tschema:name \"URL des Archivs\"@de ;\n\trdfs:label \"archive URL\"@en ;\n\tskos:prefLabel \"archive URL\"@en ;\n\tschema:name \"archive URL\"@en ;\n\tschema:description \"Internetadresse (URL) zu dem archivierten Inhalt\"@de,\n\t\t\"URL to the archived web page specified with URL property\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1065 ;\n\twikibase:claim p:P1065 ;\n\twikibase:statementProperty ps:P1065 ;\n\twikibase:statementValue psv:P1065 ;\n\twikibase:qualifier pq:P1065 ;\n\twikibase:qualifierValue pqv:P1065 ;\n\twikibase:reference pr:P1065 ;\n\twikibase:referenceValue prv:P1065 ;\n\twikibase:novalue wdno:P1065 .\n\np:P1065 a owl:ObjectProperty .\n\npsv:P1065 a owl:ObjectProperty .\n\npqv:P1065 a owl:ObjectProperty .\n\nprv:P1065 a owl:ObjectProperty .\n\nwdt:P1065 a owl:ObjectProperty .\n\nps:P1065 a owl:ObjectProperty .\n\npq:P1065 a owl:ObjectProperty .\n\npr:P1065 a owl:ObjectProperty .\n\nwdno:P1065 a owl:Class ;\n\towl:complementOf _:03a90254ec54e448bc2aaf8d845e29f8 .\n\n_:03a90254ec54e448bc2aaf8d845e29f8 a owl:Restriction ;\n\towl:onProperty wdt:P1065 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2960 a wikibase:Property ;\n\trdfs:label \"Archivierungsdatum\"@de ;\n\tskos:prefLabel \"Archivierungsdatum\"@de ;\n\tschema:name \"Archivierungsdatum\"@de ;\n\trdfs:label \"archive date\"@en ;\n\tskos:prefLabel \"archive date\"@en ;\n\tschema:name \"archive date\"@en ;\n\tschema:description \"Datum, an dem ein Dokument archiviert wurde\"@de,\n\t\t\"date a document was archived\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2960 ;\n\twikibase:claim p:P2960 ;\n\twikibase:statementProperty ps:P2960 ;\n\twikibase:statementValue psv:P2960 ;\n\twikibase:qualifier pq:P2960 ;\n\twikibase:qualifierValue pqv:P2960 ;\n\twikibase:reference pr:P2960 ;\n\twikibase:referenceValue prv:P2960 ;\n\twikibase:novalue wdno:P2960 .\n\np:P2960 a owl:ObjectProperty .\n\npsv:P2960 a owl:ObjectProperty .\n\npqv:P2960 a owl:ObjectProperty .\n\nprv:P2960 a owl:ObjectProperty .\n\nwdt:P2960 a owl:DatatypeProperty .\n\nps:P2960 a owl:DatatypeProperty .\n\npq:P2960 a owl:DatatypeProperty .\n\npr:P2960 a owl:DatatypeProperty .\n\nwdno:P2960 a owl:Class ;\n\towl:complementOf _:e8842935d39a233def3d267ae3737d8c .\n\n_:e8842935d39a233def3d267ae3737d8c a owl:Restriction ;\n\towl:onProperty wdt:P2960 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q51885189 a wikibase:Item ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:description \"taxonomic database\"@en .\n\nwd:Q36578 a wikibase:Item ;\n\trdfs:label \"Gemeinsame Normdatei\"@de ;\n\tskos:prefLabel \"Gemeinsame Normdatei\"@de ;\n\tschema:name \"Gemeinsame Normdatei\"@de ;\n\trdfs:label \"Gemeinsame Normdatei\"@mul ;\n\tskos:prefLabel \"Gemeinsame Normdatei\"@mul ;\n\tschema:name \"Gemeinsame Normdatei\"@mul ;\n\trdfs:label \"Integrated Authority File\"@en ;\n\tskos:prefLabel \"Integrated Authority File\"@en ;\n\tschema:name \"Integrated Authority File\"@en ;\n\tschema:description \"internationale Normdatei zur Ansetzung von Namen und Sachbegriffen\"@de,\n\t\t\"German National Library authority file for personal names, subject headings and corporate bodies\"@en .\n\nwd:Q18912790 a wikibase:Item ;\n\trdfs:label \"Library of Congress Name Authority File\"@de ;\n\tskos:prefLabel \"Library of Congress Name Authority File\"@de ;\n\tschema:name \"Library of Congress Name Authority File\"@de ;\n\trdfs:label \"Library of Congress Name Authority File\"@en ;\n\tskos:prefLabel \"Library of Congress Name Authority File\"@en ;\n\tschema:name \"Library of Congress Name Authority File\"@en ;\n\tschema:description \"Normdatei zur Ansetzung von Personen, Körperschaften und Werktiteln\"@de,\n\t\t\"authoritative data for names of persons, organizations, events, places, and titles for subsequent uniform access to bibliographic resources\"@en .\n\nwd:Q58380943 a wikibase:Item ;\n\trdfs:label \"VicFlora\"@de ;\n\tskos:prefLabel \"VicFlora\"@de ;\n\tschema:name \"VicFlora\"@de ;\n\trdfs:label \"VicFlora\"@en ;\n\tskos:prefLabel \"VicFlora\"@en ;\n\tschema:name \"VicFlora\"@en ;\n\tschema:description \"Flora of Victoria, Australia online database\"@en .\n\nwd:Q167402 a wikibase:Item ;\n\trdfs:label \"Australian Plant Name Index\"@de ;\n\tskos:prefLabel \"Australian Plant Name Index\"@de ;\n\tschema:name \"Australian Plant Name Index\"@de ;\n\trdfs:label \"Australian Plant Name Index\"@en ;\n\tskos:prefLabel \"Australian Plant Name Index\"@en ;\n\tschema:name \"Australian Plant Name Index\"@en ;\n\tschema:description \"Botanische Online-Datenbank\"@de,\n\t\t\"database of Australian plant names\"@en .\n\nwd:Q20073251 a wikibase:Item ;\n\trdfs:label \"FloraWeb\"@de ;\n\tskos:prefLabel \"FloraWeb\"@de ;\n\tschema:name \"FloraWeb\"@de ;\n\trdfs:label \"FloraWeb\"@mul ;\n\tskos:prefLabel \"FloraWeb\"@mul ;\n\tschema:name \"FloraWeb\"@mul ;\n\trdfs:label \"FloraWeb\"@en ;\n\tskos:prefLabel \"FloraWeb\"@en ;\n\tschema:name \"FloraWeb\"@en ;\n\tschema:description \"Daten und Informationen zu Wildpflanzen Deutschlands\"@de .\n\nwd:Q374924 a wikibase:Item ;\n\trdfs:label \"European Nature Information System\"@de ;\n\tskos:prefLabel \"European Nature Information System\"@de ;\n\tschema:name \"European Nature Information System\"@de ;\n\trdfs:label \"European Nature Information System\"@en ;\n\tskos:prefLabel \"European Nature Information System\"@en ;\n\tschema:name \"European Nature Information System\"@en ;\n\tschema:description \"Datenbank zur Umweltberichterstattung\"@de .\n\nwd:Q12360981 a wikibase:Item ;\n\trdfs:label \"eBiodiversity\"@en ;\n\tskos:prefLabel \"eBiodiversity\"@en ;\n\tschema:name \"eBiodiversity\"@en ;\n\tschema:description \"portal for the taxa found in Estonia\"@en .\n\nwd:Q64007131 a wikibase:Item ;\n\trdfs:label \"Belgian Species List\"@de ;\n\tskos:prefLabel \"Belgian Species List\"@de ;\n\tschema:name \"Belgian Species List\"@de ;\n\trdfs:label \"Belgian Species List\"@en ;\n\tskos:prefLabel \"Belgian Species List\"@en ;\n\tschema:name \"Belgian Species List\"@en ;\n\tschema:description \"taxonomy database\"@en .\n\nwd:Q72729671 a wikibase:Item ;\n\trdfs:label \"Finnish Biodiversity Information Facility\"@de ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility\"@de ;\n\tschema:name \"Finnish Biodiversity Information Facility\"@de ;\n\trdfs:label \"Finnish Biodiversity Information Facility\"@en ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility\"@en ;\n\tschema:name \"Finnish Biodiversity Information Facility\"@en ;\n\tschema:description \"open access data repository for Finnish biodiversity information\"@en .\n\nwd:Q89345680 a wikibase:Item ;\n\trdfs:label \"YSO-Wikidata mapping project\"@en ;\n\tskos:prefLabel \"YSO-Wikidata mapping project\"@en ;\n\tschema:name \"YSO-Wikidata mapping project\"@en ;\n\tschema:description \"project where concepts of the Finnish General Ontology are matched with Wikidata equivalents\"@en .\n\nwd:Q64139102 a wikibase:Item ;\n\trdfs:label \"KBpedia\"@de ;\n\tskos:prefLabel \"KBpedia\"@de ;\n\tschema:name \"KBpedia\"@de ;\n\trdfs:label \"KBpedia\"@en ;\n\tskos:prefLabel \"KBpedia\"@en ;\n\tschema:name \"KBpedia\"@en ;\n\tschema:description \"Ontologie\"@de,\n\t\t\"free ontology aimed at making data and knowledge interoperable for machine learning\"@en .\n\nwd:Q77076820 a wikibase:Item ;\n\trdfs:label \"World Flora Online\"@de ;\n\tskos:prefLabel \"World Flora Online\"@de ;\n\tschema:name \"World Flora Online\"@de ;\n\trdfs:label \"World Flora Online\"@mul ;\n\tskos:prefLabel \"World Flora Online\"@mul ;\n\tschema:name \"World Flora Online\"@mul ;\n\trdfs:label \"World Flora Online\"@en ;\n\tskos:prefLabel \"World Flora Online\"@en ;\n\tschema:name \"World Flora Online\"@en ;\n\tschema:description \"Online-Florenwerk, Nachfolger der „Plant List“\"@de,\n\t\t\"online flora for plants\"@en .\n\nwd:Q57715373 a wikibase:Item ;\n\trdfs:label \"Red List of South African Plants\"@de ;\n\tskos:prefLabel \"Red List of South African Plants\"@de ;\n\tschema:name \"Red List of South African Plants\"@de ;\n\trdfs:label \"Red List of South African Plants\"@en ;\n\tskos:prefLabel \"Red List of South African Plants\"@en ;\n\tschema:name \"Red List of South African Plants\"@en ;\n\tschema:description \"list of national conservation statuses of South Africa's indigenous plants\"@en .\n\nwd:Q105527638 a wikibase:Item ;\n\trdfs:label \"Open Tree of Life, Version 3.2\"@de ;\n\tskos:prefLabel \"Open Tree of Life, Version 3.2\"@de ;\n\tschema:name \"Open Tree of Life, Version 3.2\"@de ;\n\trdfs:label \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tskos:prefLabel \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:name \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:description \"version of Open Tree of Life reference taxonomy\"@en .\n\nwd:Q107380242 a wikibase:Item ;\n\trdfs:label \"BDTFX v7.00\"@de ;\n\tskos:prefLabel \"BDTFX v7.00\"@de ;\n\tschema:name \"BDTFX v7.00\"@de ;\n\trdfs:label \"BDTFX v7.00\"@en ;\n\tskos:prefLabel \"BDTFX v7.00\"@en ;\n\tschema:name \"BDTFX v7.00\"@en .\n\nwd:Q107507571 a wikibase:Item ;\n\trdfs:label \"OpenAlex\"@de ;\n\tskos:prefLabel \"OpenAlex\"@de ;\n\tschema:name \"OpenAlex\"@de ;\n\trdfs:label \"OpenAlex\"@mul ;\n\tskos:prefLabel \"OpenAlex\"@mul ;\n\tschema:name \"OpenAlex\"@mul ;\n\trdfs:label \"OpenAlex\"@en ;\n\tskos:prefLabel \"OpenAlex\"@en ;\n\tschema:name \"OpenAlex\"@en ;\n\tschema:description \"freier Katalog wissenschaftlicher Arbeiten, Autoren, Institutionen, Veranstaltungsorte und Konzepte\"@de,\n\t\t\"open catalog of scholarly papers, authors, institutions, venues, and concepts\"@en .\n\nwd:Q114640452 a wikibase:Item .\n\nwd:P805 a wikibase:Property ;\n\trdfs:label \"beschreibendes Datenobjekt\"@de ;\n\tskos:prefLabel \"beschreibendes Datenobjekt\"@de ;\n\tschema:name \"beschreibendes Datenobjekt\"@de ;\n\trdfs:label \"statement is subject of\"@en ;\n\tskos:prefLabel \"statement is subject of\"@en ;\n\tschema:name \"statement is subject of\"@en ;\n\tschema:description \"(nur als Qualifikator) Datenobjekt zum Thema der Aussage\"@de,\n\t\t\"(qualifying) item that describes the relation identified in this statement\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P805 ;\n\twikibase:claim p:P805 ;\n\twikibase:statementProperty ps:P805 ;\n\twikibase:statementValue psv:P805 ;\n\twikibase:qualifier pq:P805 ;\n\twikibase:qualifierValue pqv:P805 ;\n\twikibase:reference pr:P805 ;\n\twikibase:referenceValue prv:P805 ;\n\twikibase:novalue wdno:P805 .\n\np:P805 a owl:ObjectProperty .\n\npsv:P805 a owl:ObjectProperty .\n\npqv:P805 a owl:ObjectProperty .\n\nprv:P805 a owl:ObjectProperty .\n\nwdt:P805 a owl:ObjectProperty .\n\nps:P805 a owl:ObjectProperty .\n\npq:P805 a owl:ObjectProperty .\n\npr:P805 a owl:ObjectProperty .\n\nwdno:P805 a owl:Class ;\n\towl:complementOf _:b0057da68fba9959eba43619c1638733 .\n\n_:b0057da68fba9959eba43619c1638733 a owl:Restriction ;\n\towl:onProperty wdt:P805 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q7737 a wikibase:Item ;\n\trdfs:label \"Russisch\"@de ;\n\tskos:prefLabel \"Russisch\"@de ;\n\tschema:name \"Russisch\"@de ;\n\trdfs:label \"Russian\"@en ;\n\tskos:prefLabel \"Russian\"@en ;\n\tschema:name \"Russian\"@en ;\n\tschema:description \"ostslawische Sprache\"@de,\n\t\t\"East Slavic language\"@en .\n\nwd:P407 a wikibase:Property ;\n\trdfs:label \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\tskos:prefLabel \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\tschema:name \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\trdfs:label \"language of work or name\"@en ;\n\tskos:prefLabel \"language of work or name\"@en ;\n\tschema:name \"language of work or name\"@en ;\n\tschema:description \"zugeordnete menschliche Sprache (für Personen benutze P103 und P1412)\"@de,\n\t\t\"language associated with this creative work (such as books, shows, songs, broadcasts or websites) or a name (for persons use \\\"native language\\\" (P103) and \\\"languages spoken, written or signed\\\" (P1412))\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P407 ;\n\twikibase:claim p:P407 ;\n\twikibase:statementProperty ps:P407 ;\n\twikibase:statementValue psv:P407 ;\n\twikibase:qualifier pq:P407 ;\n\twikibase:qualifierValue pqv:P407 ;\n\twikibase:reference pr:P407 ;\n\twikibase:referenceValue prv:P407 ;\n\twikibase:novalue wdno:P407 .\n\np:P407 a owl:ObjectProperty .\n\npsv:P407 a owl:ObjectProperty .\n\npqv:P407 a owl:ObjectProperty .\n\nprv:P407 a owl:ObjectProperty .\n\nwdt:P407 a owl:ObjectProperty .\n\nps:P407 a owl:ObjectProperty .\n\npq:P407 a owl:ObjectProperty .\n\npr:P407 a owl:ObjectProperty .\n\nwdno:P407 a owl:Class ;\n\towl:complementOf _:7ecb658fb35d6b90057eeb2a2a932c62 .\n\n_:7ecb658fb35d6b90057eeb2a2a932c62 a owl:Restriction ;\n\towl:onProperty wdt:P407 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P478 a wikibase:Property ;\n\trdfs:label \"Band/Jahrgang\"@de ;\n\tskos:prefLabel \"Band/Jahrgang\"@de ;\n\tschema:name \"Band/Jahrgang\"@de ;\n\trdfs:label \"volume\"@en ;\n\tskos:prefLabel \"volume\"@en ;\n\tschema:name \"volume\"@en ;\n\tschema:description \"Nummer eines Buches aus einer Sammlung/Serie oder Jahrgang einer Zeitschrift\"@de,\n\t\t\"volume of a book or music release in a collection/series or a published collection of journal issues in a serial publication\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P478 ;\n\twikibase:claim p:P478 ;\n\twikibase:statementProperty ps:P478 ;\n\twikibase:statementValue psv:P478 ;\n\twikibase:qualifier pq:P478 ;\n\twikibase:qualifierValue pqv:P478 ;\n\twikibase:reference pr:P478 ;\n\twikibase:referenceValue prv:P478 ;\n\twikibase:novalue wdno:P478 .\n\np:P478 a owl:ObjectProperty .\n\npsv:P478 a owl:ObjectProperty .\n\npqv:P478 a owl:ObjectProperty .\n\nprv:P478 a owl:ObjectProperty .\n\nwdt:P478 a owl:DatatypeProperty .\n\nps:P478 a owl:DatatypeProperty .\n\npq:P478 a owl:DatatypeProperty .\n\npr:P478 a owl:DatatypeProperty .\n\nwdno:P478 a owl:Class ;\n\towl:complementOf _:535dab7014016140dd170125242aa305 .\n\n_:535dab7014016140dd170125242aa305 a owl:Restriction ;\n\towl:onProperty wdt:P478 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21339272 a wikibase:Item ;\n\trdfs:label \"Wladimir Petrowitsch Malejew\"@de ;\n\tskos:prefLabel \"Wladimir Petrowitsch Malejew\"@de ;\n\tschema:name \"Wladimir Petrowitsch Malejew\"@de ;\n\trdfs:label \"Vladimir Maleyev\"@en ;\n\tskos:prefLabel \"Vladimir Maleyev\"@en ;\n\tschema:name \"Vladimir Maleyev\"@en ;\n\tschema:description \"Russian (Soviet) botanist (1894-1941)\"@en .\n\nwd:P50 a wikibase:Property ;\n\trdfs:label \"Autor\"@de ;\n\tskos:prefLabel \"Autor\"@de ;\n\tschema:name \"Autor\"@de ;\n\trdfs:label \"author\"@en ;\n\tskos:prefLabel \"author\"@en ;\n\tschema:name \"author\"@en ;\n\tschema:description \"Person oder Personen, die ein schriftliches Werk verfasst hat bzw. haben; P2093 verwenden, falls der Autor in Wikidata nicht bekannt ist\"@de,\n\t\t\"main creator(s) of a written work (use on works, not humans); use P2093 (author name string) when Wikidata item is unknown or does not exist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P50 ;\n\twikibase:claim p:P50 ;\n\twikibase:statementProperty ps:P50 ;\n\twikibase:statementValue psv:P50 ;\n\twikibase:qualifier pq:P50 ;\n\twikibase:qualifierValue pqv:P50 ;\n\twikibase:reference pr:P50 ;\n\twikibase:referenceValue prv:P50 ;\n\twikibase:novalue wdno:P50 .\n\np:P50 a owl:ObjectProperty .\n\npsv:P50 a owl:ObjectProperty .\n\npqv:P50 a owl:ObjectProperty .\n\nprv:P50 a owl:ObjectProperty .\n\nwdt:P50 a owl:ObjectProperty .\n\nps:P50 a owl:ObjectProperty .\n\npq:P50 a owl:ObjectProperty .\n\npr:P50 a owl:ObjectProperty .\n\nwdno:P50 a owl:Class ;\n\towl:complementOf _:b031acc4c46aca4c83feb5878a7c4a6a .\n\n_:b031acc4c46aca4c83feb5878a7c4a6a a owl:Restriction ;\n\towl:onProperty wdt:P50 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q106509962 a wikibase:Item ;\n\trdfs:label \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\tskos:prefLabel \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\tschema:name \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\trdfs:label \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tskos:prefLabel \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tschema:name \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tschema:description \"National Library of Israel authorities database\"@en .\n\nwd:Q47974 a wikibase:Item ;\n\trdfs:label \"Shaanxi\"@de ;\n\tskos:prefLabel \"Shaanxi\"@de ;\n\tschema:name \"Shaanxi\"@de ;\n\trdfs:label \"Shaanxi\"@mul ;\n\tskos:prefLabel \"Shaanxi\"@mul ;\n\tschema:name \"Shaanxi\"@mul ;\n\trdfs:label \"Shaanxi\"@en ;\n\tskos:prefLabel \"Shaanxi\"@en ;\n\tschema:name \"Shaanxi\"@en ;\n\tschema:description \"Provinz von China\"@de,\n\t\t\"province of central China with its capital Xi'an, the ancient homeland of the Zhou and center of several major dynasty\"@en .\n\nwd:P131 a wikibase:Property ;\n\trdfs:label \"liegt in der Verwaltungseinheit\"@de ;\n\tskos:prefLabel \"liegt in der Verwaltungseinheit\"@de ;\n\tschema:name \"liegt in der Verwaltungseinheit\"@de ;\n\trdfs:label \"located in the administrative territorial entity\"@en ;\n\tskos:prefLabel \"located in the administrative territorial entity\"@en ;\n\tschema:name \"located in the administrative territorial entity\"@en ;\n\tschema:description \"administratives Gebiet, auf dem sich das Subjekt befindet. Für andere Orte oder Gebiete, und für Veranstaltungen: benutze P276. Fällt das Subjekt nur teilweise in das Gebiet, benutze P1382.\"@de,\n\t\t\"the item is located on the territory of the following administrative entity. Use P276 for specifying locations that are non-administrative places and for items about events. Use P1382 if the item falls only partially into the administrative entity\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P131 ;\n\twikibase:claim p:P131 ;\n\twikibase:statementProperty ps:P131 ;\n\twikibase:statementValue psv:P131 ;\n\twikibase:qualifier pq:P131 ;\n\twikibase:qualifierValue pqv:P131 ;\n\twikibase:reference pr:P131 ;\n\twikibase:referenceValue prv:P131 ;\n\twikibase:novalue wdno:P131 .\n\np:P131 a owl:ObjectProperty .\n\npsv:P131 a owl:ObjectProperty .\n\npqv:P131 a owl:ObjectProperty .\n\nprv:P131 a owl:ObjectProperty .\n\nwdt:P131 a owl:ObjectProperty .\n\nps:P131 a owl:ObjectProperty .\n\npq:P131 a owl:ObjectProperty .\n\npr:P131 a owl:ObjectProperty .\n\nwdno:P131 a owl:Class ;\n\towl:complementOf _:1d2a8f0c3b3451be4d4228f97153e08d .\n\n_:1d2a8f0c3b3451be4d4228f97153e08d a owl:Restriction ;\n\towl:onProperty wdt:P131 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q113432740 a wikibase:Item ;\n\trdfs:label \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tskos:prefLabel \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:name \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article\"@en .\n\nwd:Q119459346 a wikibase:Item ;\n\trdfs:label \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tskos:prefLabel \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tschema:name \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tschema:description \"heuristic to use with P887 (heuristic) as provenance for assigning an identifier\"@en .\n\nwd:P887 a wikibase:Property ;\n\trdfs:label \"basierend auf Heuristik\"@de ;\n\tskos:prefLabel \"basierend auf Heuristik\"@de ;\n\tschema:name \"basierend auf Heuristik\"@de ;\n\trdfs:label \"based on heuristic\"@en ;\n\tskos:prefLabel \"based on heuristic\"@en ;\n\tschema:name \"based on heuristic\"@en ;\n\tschema:description \"der Eigenschaftswert basiert auf einer Heuristik; als Fundstelle zu benutzen\"@de,\n\t\t\"indicates that the property value is determined based on some heuristic (Q201413); to be used as source\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P887 ;\n\twikibase:claim p:P887 ;\n\twikibase:statementProperty ps:P887 ;\n\twikibase:statementValue psv:P887 ;\n\twikibase:qualifier pq:P887 ;\n\twikibase:qualifierValue pqv:P887 ;\n\twikibase:reference pr:P887 ;\n\twikibase:referenceValue prv:P887 ;\n\twikibase:novalue wdno:P887 .\n\np:P887 a owl:ObjectProperty .\n\npsv:P887 a owl:ObjectProperty .\n\npqv:P887 a owl:ObjectProperty .\n\nprv:P887 a owl:ObjectProperty .\n\nwdt:P887 a owl:ObjectProperty .\n\nps:P887 a owl:ObjectProperty .\n\npq:P887 a owl:ObjectProperty .\n\npr:P887 a owl:ObjectProperty .\n\nwdno:P887 a owl:Class ;\n\towl:complementOf _:e011110d3fc77cb743b2b08b63c4f19a .\n\n_:e011110d3fc77cb743b2b08b63c4f19a a owl:Restriction ;\n\towl:onProperty wdt:P887 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q118645236 a wikibase:Item ;\n\trdfs:label \"UMLS 2023\"@en ;\n\tskos:prefLabel \"UMLS 2023\"@en ;\n\tschema:name \"UMLS 2023\"@en ;\n\tschema:description \"Language System release in 2023\"@en .\n\nwd:Q116288654 a wikibase:Item ;\n\trdfs:label \"inferred from taxon name\"@en ;\n\tskos:prefLabel \"inferred from taxon name\"@en ;\n\tschema:name \"inferred from taxon name\"@en ;\n\tschema:description \"deducing information about an item based on its taxon name\"@en .\n\nwd:Q50658883 a wikibase:Item ;\n\trdfs:label \"India Biodiversity Portal\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal\"@en ;\n\tschema:name \"India Biodiversity Portal\"@en ;\n\tschema:description \"web repository of information on India's biodiversity\"@en .\n\nwd:Q58824067 a wikibase:Item ;\n\trdfs:label \"eFloraSA\"@de ;\n\tskos:prefLabel \"eFloraSA\"@de ;\n\tschema:name \"eFloraSA\"@de ;\n\trdfs:label \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\tskos:prefLabel \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\tschema:name \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\trdfs:label \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tskos:prefLabel \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tschema:name \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tschema:description \"Electronic Flora of South Australia\"@en .\n\nwd:Q110392228 a wikibase:Item ;\n\trdfs:label \"New York Flora Atlas\"@en ;\n\tskos:prefLabel \"New York Flora Atlas\"@en ;\n\tschema:name \"New York Flora Atlas\"@en ;\n\tschema:description \"website on distribution of plants within New York State, as well as information on plant habitats, associated ecological communities, and taxonomy\"@en .\n\nwd:Q113107292 a wikibase:Item ;\n\trdfs:label \"Naturbasen\"@de ;\n\tskos:prefLabel \"Naturbasen\"@de ;\n\tschema:name \"Naturbasen\"@de ;\n\trdfs:label \"Naturbasen\"@en ;\n\tskos:prefLabel \"Naturbasen\"@en ;\n\tschema:name \"Naturbasen\"@en ;\n\tschema:description \"website on biodiversity in Denmark\"@en .\n\nwd:Q111206949 a wikibase:Item ;\n\trdfs:label \"Virginia Tech Dendrology Factsheets\"@en ;\n\tskos:prefLabel \"Virginia Tech Dendrology Factsheets\"@en ;\n\tschema:name \"Virginia Tech Dendrology Factsheets\"@en ;\n\tschema:description \"online database on trees of North America\"@en .\n\nwd:Q116213766 a wikibase:Item ;\n\trdfs:label \"Plant Finder\"@en ;\n\tskos:prefLabel \"Plant Finder\"@en ;\n\tschema:name \"Plant Finder\"@en ;\n\tschema:description \"online database of plants in the Chicago Botanic Garden\"@en .\n\nwd:Q107282072 a wikibase:Item ;\n\trdfs:label \"E-Flora BC\"@en ;\n\tskos:prefLabel \"E-Flora BC\"@en ;\n\tschema:name \"E-Flora BC\"@en ;\n\tschema:description \"online biogeographic atlas of the vascular plants (established and non-established), bryophytes, lichens, algae, fungi and slime molds of British Columbia\"@en .\n\nwd:Q106140471 a wikibase:Item ;\n\trdfs:label \"Washington Flora Checklist\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist\"@de ;\n\tschema:name \"Washington Flora Checklist\"@de ;\n\trdfs:label \"Washington Flora Checklist\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist\"@en ;\n\tschema:name \"Washington Flora Checklist\"@en ;\n\tschema:description \"list of the native and naturalized vascular plants of Washington State, with current classifications, nomenclature and synonymy\"@en .\n\nwd:Q111543964 a wikibase:Item ;\n\trdfs:label \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tskos:prefLabel \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tschema:name \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tschema:description \"website containing detailed descriptions and photographs of 4,620 plants that grow in and around North Carolina\"@en .\n\nwd:Q73389793 a wikibase:Item ;\n\trdfs:label \"Indian Medicinal Plants Database\"@en ;\n\tskos:prefLabel \"Indian Medicinal Plants Database\"@en ;\n\tschema:name \"Indian Medicinal Plants Database\"@en .\n\nwd:Q58006102 a wikibase:Item ;\n\trdfs:label \"Info flora\"@de ;\n\tskos:prefLabel \"Info flora\"@de ;\n\tschema:name \"Info flora\"@de ;\n\trdfs:label \"Info Flora\"@en ;\n\tskos:prefLabel \"Info Flora\"@en ;\n\tschema:name \"Info Flora\"@en ;\n\tschema:description \"Das nationale Daten- und Informationszentrum der Schweizer Flora\"@de .\n\nwd:Q123468062 a wikibase:Item ;\n\trdfs:label \"Flora of the Southeastern United States\"@en ;\n\tskos:prefLabel \"Flora of the Southeastern United States\"@en ;\n\tschema:name \"Flora of the Southeastern United States\"@en ;\n\tschema:description \"website\"@en .\n\nwd:Q111544237 a wikibase:Item ;\n\trdfs:label \"Go Botany\"@en ;\n\tskos:prefLabel \"Go Botany\"@en ;\n\tschema:name \"Go Botany\"@en ;\n\tschema:description \"website of the Native Plant Trust providing information on over 1,200 common native and naturalized New England plants\"@en .\n\nwd:Q97219228 a wikibase:Item ;\n\trdfs:label \"Flora Croatica Database\"@en ;\n\tskos:prefLabel \"Flora Croatica Database\"@en ;\n\tschema:name \"Flora Croatica Database\"@en ;\n\tschema:description \"database of Vascular Plants Taxonomy & Bibliography of Croatian Flora\"@en .\n\nwd:Q124259488 a wikibase:Item ;\n\trdfs:label \"SERNEC\"@en ;\n\tskos:prefLabel \"SERNEC\"@en ;\n\tschema:name \"SERNEC\"@en ;\n\tschema:description \"website of SERNEC, the SouthEast Regional Network of Expertise and Collections\"@en .\n\nwd:Q123473103 a wikibase:Item ;\n\trdfs:label \"Biota of New Zealand\"@en ;\n\tskos:prefLabel \"Biota of New Zealand\"@en ;\n\tschema:name \"Biota of New Zealand\"@en ;\n\tschema:description \"online database of the biota of New Zealand\"@en .\n\nwd:Q122629978 a wikibase:Item ;\n\trdfs:label \"FloraVeg.EU\"@en ;\n\tskos:prefLabel \"FloraVeg.EU\"@en ;\n\tschema:name \"FloraVeg.EU\"@en ;\n\tschema:description \"online database of European vegetation, habitats and flora\"@en .\n\nwd:Q18379771 a wikibase:Item ;\n\trdfs:label \"CalPhotos\"@en ;\n\tskos:prefLabel \"CalPhotos\"@en ;\n\tschema:name \"CalPhotos\"@en ;\n\tschema:description \"online collection of photos of plants, animals, fossils, people, and landscapes from around the world\"@en .\n\nwd:Q111694088 a wikibase:Item ;\n\trdfs:label \"Woody Plants Database\"@en ;\n\tskos:prefLabel \"Woody Plants Database\"@en ;\n\tschema:name \"Woody Plants Database\"@en ;\n\tschema:description \"online database of woody plant species, focusing on woody plants used for landscaping in New York and the Northeast\"@en .\n\nwd:Q111693859 a wikibase:Item ;\n\trdfs:label \"PlantFiles\"@en ;\n\tskos:prefLabel \"PlantFiles\"@en ;\n\tschema:name \"PlantFiles\"@en ;\n\tschema:description \"online plant database\"@en .\n\nwd:Q894631 a wikibase:Item ;\n\trdfs:label \"Botanical Society of the British Isles\"@de ;\n\tskos:prefLabel \"Botanical Society of the British Isles\"@de ;\n\tschema:name \"Botanical Society of the British Isles\"@de ;\n\trdfs:label \"Botanical Society of Britain and Ireland\"@en ;\n\tskos:prefLabel \"Botanical Society of Britain and Ireland\"@en ;\n\tschema:name \"Botanical Society of Britain and Ireland\"@en ;\n\tschema:description \"botanische Gesellschaft\"@de,\n\t\t\"learned society\"@en .\n\nwd:Q112867914 a wikibase:Item ;\n\trdfs:label \"List of plant species in China (2022 Edition)\"@en ;\n\tskos:prefLabel \"List of plant species in China (2022 Edition)\"@en ;\n\tschema:name \"List of plant species in China (2022 Edition)\"@en .\n\nwd:Q113193153 a wikibase:Item ;\n\trdfs:label \"A dataset on catalogue of alien plants in China\"@de ;\n\tskos:prefLabel \"A dataset on catalogue of alien plants in China\"@de ;\n\tschema:name \"A dataset on catalogue of alien plants in China\"@de ;\n\trdfs:label \"A dataset on catalogue of alien plants in China\"@en ;\n\tskos:prefLabel \"A dataset on catalogue of alien plants in China\"@en ;\n\tschema:name \"A dataset on catalogue of alien plants in China\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article, dataset\"@en .\n\nwd:P356 a wikibase:Property ;\n\trdfs:label \"DOI\"@de ;\n\tskos:prefLabel \"DOI\"@de ;\n\tschema:name \"DOI\"@de ;\n\trdfs:label \"DOI\"@mul ;\n\tskos:prefLabel \"DOI\"@mul ;\n\tschema:name \"DOI\"@mul ;\n\trdfs:label \"DOI\"@en ;\n\tskos:prefLabel \"DOI\"@en ;\n\tschema:name \"DOI\"@en ;\n\tschema:description \"digitaler Identifikator für physische, digitale oder abstrakte Objekte\"@de,\n\t\t\"serial code used to uniquely identify digital objects like academic papers (use upper case letters only)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P356 ;\n\twikibase:claim p:P356 ;\n\twikibase:statementProperty ps:P356 ;\n\twikibase:statementValue psv:P356 ;\n\twikibase:qualifier pq:P356 ;\n\twikibase:qualifierValue pqv:P356 ;\n\twikibase:reference pr:P356 ;\n\twikibase:referenceValue prv:P356 ;\n\twikibase:novalue wdno:P356 ;\n\twikibase:directClaimNormalized wdtn:P356 ;\n\twikibase:statementValueNormalized psn:P356 ;\n\twikibase:qualifierValueNormalized pqn:P356 ;\n\twikibase:referenceValueNormalized prn:P356 .\n\np:P356 a owl:ObjectProperty .\n\npsv:P356 a owl:ObjectProperty .\n\npqv:P356 a owl:ObjectProperty .\n\nprv:P356 a owl:ObjectProperty .\n\nwdt:P356 a owl:DatatypeProperty .\n\nps:P356 a owl:DatatypeProperty .\n\npq:P356 a owl:DatatypeProperty .\n\npr:P356 a owl:DatatypeProperty .\n\npsn:P356 a owl:ObjectProperty .\n\npqn:P356 a owl:ObjectProperty .\n\nprn:P356 a owl:ObjectProperty .\n\nwdtn:P356 a owl:ObjectProperty .\n\nwdno:P356 a owl:Class ;\n\towl:complementOf _:7c656241912b24503f517964814479d9 .\n\n_:7c656241912b24503f517964814479d9 a owl:Restriction ;\n\towl:onProperty wdt:P356 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q113333457 a wikibase:Item ;\n\trdfs:label \"A Scientific Dataset of useful plants of China\"@de ;\n\tskos:prefLabel \"A Scientific Dataset of useful plants of China\"@de ;\n\tschema:name \"A Scientific Dataset of useful plants of China\"@de ;\n\trdfs:label \"A Scientific Dataset of useful plants of China\"@en ;\n\tskos:prefLabel \"A Scientific Dataset of useful plants of China\"@en ;\n\tschema:name \"A Scientific Dataset of useful plants of China\"@en ;\n\tschema:description \"Datenbank chinesischer Nutzpflanzen\"@de,\n\t\t\"dataset\"@en .\n\nwd:Q124478613 a wikibase:Item ;\n\trdfs:label \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tskos:prefLabel \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tschema:name \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tschema:description \"key for identifying ferns and seed plants; ed. A. Martinčič et al.; 3rd edition (1999)\"@en .\n\nwd:Q135518565 a wikibase:Item ;\n\trdfs:label \"EASIN Catalogue of Alien Species\"@en ;\n\tskos:prefLabel \"EASIN Catalogue of Alien Species\"@en ;\n\tschema:name \"EASIN Catalogue of Alien Species\"@en ;\n\tschema:description \"catalogue of alien species by the European Alien Species Information Network\"@en .\n\nwd:Q16764841 owl:sameAs wd:Q165145 .\n\nwd:Q97214575 owl:sameAs wd:Q165145 .\n\nwd:Q97307875 owl:sameAs wd:Q165145 .\n\nwd:Q130710270 owl:sameAs wd:Q165145 .\n\nwd:Q130710271 owl:sameAs wd:Q165145 .\n\nwdv:043329e001a17d1b3aae568fd3ec4251 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+930\"^^xsd:decimal ;\n\twikibase:quantityUnit .\n\nwdv:61dc588f3a33dc6696cabc0152164205 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+29328480000\"^^xsd:decimal ;\n\twikibase:quantityUnit ;\n\twikibase:quantityNormalized wdv:61dc588f3a33dc6696cabc0152164205 .\n\nwdv:043329e001a17d1b3aae568fd3ec4251 wikibase:quantityNormalized wdv:61dc588f3a33dc6696cabc0152164205 .\n\nwdv:039c0e76075a6942e780b1763d702c4a a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-01-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:4153fee0d70688a29ab9db6b000d1c1f a wikibase:TimeValue ;\n\twikibase:timeValue \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:c6fd65290009e13960296ecddf69c9f8 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-06-24T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:247bc4aa290b8a982f05b3b8fd2c979b a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-11-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f987783e1f9c9fa0cb0b774d330af52d a wikibase:TimeValue ;\n\twikibase:timeValue \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a7b25af64e51beb832d00ddb8d12b299 a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-05-05T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:cd3b945d020ffc574208857838dcfd0c a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-10-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:b7298f354b9c49842236f2836226a6fc a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-11-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:16d827b538b3bcdbb2dc54dd43d775f5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-02T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ac42dad640eb90e22818a63eb55daff3 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:6fa67d23025f7a9ffc03042f5bb78278 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d50ee04f9a85500d10f606199d4f96a9 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:32bfdb4b43666a09cad46eb3711ad48f a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-05-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:329cede4352fa35f370aa05ac3d8507a a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-06-27T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ed078216138fde868f522b5a485fda72 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-08-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:58f1ae1c0c2985970e3dd7c6dd87501b a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:710d2aa95e907f035a26a28f5ff02483 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-07-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1647d164dfd9ef5d0e311eafef75ca75 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-09-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:e781b1dd5903541abe8015934513842d a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-12-27T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:6c2f1d7e8acf90f7f670bc874a9a659a a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-01-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f52d5669675ffcac8490243435a8f479 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:86d08cb380a7d361151c510ebb4a98ec a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1b3e92cb4009608b77880de2e2253c55 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:35e1319e7e3e50fa61855eed888fdb47 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7e2a1c688bf5e9403281f2e785802575 a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-01-07T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:801966f49847b708154c18279deab3b0 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-05T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:72a0e216d244994e85cd6d730e6d9bc1 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-12-16T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:c7fbe36e05b19b3f6f98287268477919 a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-02-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:9930877c43e09a3dd26a2b4a0d5aa9c8 a wikibase:TimeValue ;\n\twikibase:timeValue \"1989-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:855c01435baadba4a7ae59257604d2bc a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-05-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:418aedfba643e02a5ba758952f8f7765 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5ab009f176c683ca055c711fde6476a5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:661ff2b4418d67a0c2d981a3179501fd a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-04-15T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5109fb9608768ce30181f0a02f9777b3 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-06-08T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:57969e969fcac232b6568124729fb241 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-07-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7b3bc14b466ea65a7f5e3f04a80c6f5b a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-06-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:e845f80d8a78f4d2337e9a316a5e42ba a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:51f80fa62dc38000550e1fc0fda2b59b a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:07e550cce6e0bf63dccf1aa9d8f84890 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:727a99af5e74c2de716e38b3e7e8e2ed a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:757c83ba4abe51b585250f934cb5a035 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-07-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:0e2531a07e9448df72a642e89d49fb69 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ad5f9c94378da3fa8bd53315a8f6bbef a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-11-12T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a1a2e4c5b0ebeafb0c12450e7cf514c8 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-01-20T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:664bae4effccc18fd4ad1ae188fab025 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1da8087a7dd4839390f06bd089d8e330 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:8e85c176da4d13f00385c00b15f77559 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-08T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:22d4f832fdefcef9ac387c783743479a a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:0df57471937b1f3375e9cba38ef420bb a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-07-04T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3b2ff2744ee9af4b07734336d1723792 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3b489e24891cc935d5c8c20e402d4315 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:4b6fcb2429083a7ef5021ca23059c45c a wikibase:TimeValue ;\n\twikibase:timeValue \"1878-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7d90d021a736d1126469a1c14712f70c a wikibase:TimeValue ;\n\twikibase:timeValue \"1936-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ef5da3df3946c3862162925f9fc98e24 a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-06-16T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1deff99bd5ccadb8e8b385772ff4d247 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-03-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:01ddc8c044da0455bc6bbcff8f994832 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-04-22T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ecc1a0a561cbd6057d67573eeb16e1f5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-06-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:02a77ce14b8ce0840cbf0bd0cdada7a7 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-06-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3fea4c5bca9b285063d01bb6565f1b3d a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2becdb7a37d48a71bf512f8a8ce2c940 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-06-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:82772e1d68fb76f81ad9dbc73c7ce075 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-08-22T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d0f25a2420df81f2d393521305e46bb5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5a152a5904b586c064410033df37c9fd a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a87ed9063c6b1aee5ccbb07b847c8dba a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ff7533549e53d0091ac78287d30e5cbb a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:447c4991e1f62b61a509db92d5b4e735 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-10-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d52a85e9f28ecb2fac7274239c2aef82 a wikibase:TimeValue ;\n\twikibase:timeValue \"2025-08-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a a wikibase:Reference ;\n\tpr:P248 wd:Q21856107 ;\n\tpr:P304 \"996\" ;\n\tpr:P687 \"359017\" ;\n\tpr:P6184 wd:Q1361864 .\n\nwdref:75402fc8ea5100b364db601b3ed88777b189f22e a wikibase:Reference ;\n\tpr:P248 wd:Q115962546 ;\n\tpr:P627 \"63532\" ;\n\tpr:P813 \"2023-01-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:039c0e76075a6942e780b1763d702c4a .\n\nwdref:d4bd87b862b12d99d26e86472d44f26858dee639 a wikibase:Reference ;\n\tpr:P143 wd:Q8447 .\n\nwdref:3d1d776b6f1d89ea5cd7b5f8db0a2f64ef67a804 a wikibase:Reference ;\n\tpr:P248 wd:Q12159796 ;\n\tpr:P813 \"2019-06-24T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:c6fd65290009e13960296ecddf69c9f8 .\n\nwdref:d39590feb5a714a291345f9d30a2cf68c0a97b66 a wikibase:Reference ;\n\tpr:P248 wd:Q82575 ;\n\tpr:P813 \"2014-11-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:247bc4aa290b8a982f05b3b8fd2c979b .\n\nwdref:2b00cb481cddcac7623114367489b5c194901c4a a wikibase:Reference ;\n\tpr:P248 wd:Q15241312 ;\n\tpr:P577 \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P577 wdv:f987783e1f9c9fa0cb0b774d330af52d .\n\nwdref:9a24f7c0208b05d6be97077d855671d1dfdbc0dd a wikibase:Reference ;\n\tpr:P143 wd:Q48183 .\n\nwdref:f81fe8e1506f3271f6ad35f3041f04dca1b1f7da a wikibase:Reference ;\n\tpr:P248 wd:Q2578548 ;\n\tpr:P813 \"2014-05-05T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a7b25af64e51beb832d00ddb8d12b299 .\n\nwdref:4e6a4543025cd3fc2a830bc6a7a83d94f32979a0 a wikibase:Reference ;\n\tpr:P248 wd:Q82486 ;\n\tpr:P813 \"2014-10-31T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:cd3b945d020ffc574208857838dcfd0c .\n\nwdref:a1d0f2ade207352295b2a3c1e7f58b61fa9f0afb a wikibase:Reference ;\n\tpr:P248 wd:Q15628808 ;\n\tpr:P813 \"2016-11-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:b7298f354b9c49842236f2836226a6fc .\n\nwdref:1005109b015da4ea28bf4b4a6075532a85144b72 a wikibase:Reference ;\n\tpr:P248 wd:Q1429295 ;\n\tpr:P813 \"2015-03-02T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:16d827b538b3bcdbb2dc54dd43d775f5 .\n\nwdref:a09a55f5df426ebeabfde6b0f3e5dbdfc1a99201 a wikibase:Reference ;\n\tpr:P248 wd:Q19544711 ;\n\tpr:P813 \"2015-03-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ac42dad640eb90e22818a63eb55daff3 .\n\nwdref:37709dc34274fc7b79ae6056ef25c396b30231ef a wikibase:Reference ;\n\tpr:P248 wd:Q5460442 ;\n\tpr:P813 \"2015-03-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:6fa67d23025f7a9ffc03042f5bb78278 .\n\nwdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec a wikibase:Reference ;\n\tpr:P248 wd:Q19576476 ;\n\tpr:P813 \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 .\n\nwdref:3ee42bed39fe58bd06a245cf377da864298c8a8c a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2015-03-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d50ee04f9a85500d10f606199d4f96a9 .\n\nwdref:b5ad2569bcf6622780b588eb1117c5be83d6a41a a wikibase:Reference ;\n\tpr:P248 wd:Q1531570 ;\n\tpr:P813 \"2015-05-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:32bfdb4b43666a09cad46eb3711ad48f .\n\nwdref:ded4d9855a794a13f212738b71babf44289d7193 a wikibase:Reference ;\n\tpr:P248 wd:Q20425914 ;\n\tpr:P813 \"2015-06-27T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:329cede4352fa35f370aa05ac3d8507a .\n\nwdref:f901ac280448f09da5efea3ba1884c7d4a496027 a wikibase:Reference ;\n\tpr:P248 wd:Q20862705 ;\n\tpr:P813 \"2015-08-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ed078216138fde868f522b5a485fda72 .\n\nwdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 a wikibase:Reference ;\n\tpr:P248 wd:Q23893915 ;\n\tpr:P813 \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:58f1ae1c0c2985970e3dd7c6dd87501b .\n\nwdref:6f8626cb03bb3ca6ee0a5c2ece82d7e62dc83598 a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-07-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:710d2aa95e907f035a26a28f5ff02483 .\n\nwdref:6f367a5bd07124a084786476520b5e616561c065 a wikibase:Reference ;\n\tpr:P248 wd:Q26936509 ;\n\tpr:P813 \"2016-09-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1647d164dfd9ef5d0e311eafef75ca75 .\n\nwdref:1ac5c51e8e692e5256710c5a6d6e288f535ccff9 a wikibase:Reference ;\n\tpr:P248 wd:Q45029859 ;\n\tpr:P813 \"2017-12-27T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:e781b1dd5903541abe8015934513842d .\n\nwdref:cf7fd8f44fda657c76a55dc510aa72bfa5b7d36b a wikibase:Reference ;\n\tpr:P248 wd:Q45029998 ;\n\tpr:P813 \"2018-01-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:6c2f1d7e8acf90f7f670bc874a9a659a .\n\nwdref:fc0d92af6b98a071aff12f3ac58f8e63d269aad8 a wikibase:Reference ;\n\tpr:P248 wd:Q58035056 ;\n\tpr:P813 \"2018-11-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:f52d5669675ffcac8490243435a8f479 .\n\nwdref:de8a49acdcf832419a5a6ba08567d671cdab1f9e a wikibase:Reference ;\n\tpr:P248 wd:Q79844869 ;\n\tpr:P813 \"2020-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:86d08cb380a7d361151c510ebb4a98ec .\n\nwdref:14326af8a3cdabe39d383c48265c7492c7bd2e45 a wikibase:Reference ;\n\tpr:P248 wd:Q104290728 ;\n\tpr:P813 \"2020-12-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1b3e92cb4009608b77880de2e2253c55 .\n\nwdref:7db1626f2a102c0854df622bef2772a11216c99f a wikibase:Reference ;\n\tpr:P248 wd:Q110438362 ;\n\tpr:P813 \"2022-01-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:35e1319e7e3e50fa61855eed888fdb47 .\n\nwdref:8e0be4dc867f902bec79db264192d2ddc273f01f a wikibase:Reference ;\n\tpr:P248 wd:Q116008531 ;\n\tpr:P813 \"2023-01-07T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:7e2a1c688bf5e9403281f2e785802575 .\n\nwdref:88d4460c262f012ed854b894d871b3c6faf85f39 a wikibase:Reference ;\n\tpr:P248 wd:Q6970988 ;\n\tpr:P813 \"2016-10-05T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:801966f49847b708154c18279deab3b0 .\n\nwdref:6df21c27373a2bde6ee75834c667ad037609ae83 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2016-12-16T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:72a0e216d244994e85cd6d730e6d9bc1 .\n\nwdref:80e889a54fb2429cbff6e51048c39c6a1280cea4 a wikibase:Reference ;\n\tpr:P248 wd:Q8035497 ;\n\tpr:P813 \"2017-02-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:c7fbe36e05b19b3f6f98287268477919 .\n\nwdref:3bf39867b037e8e494a8389ae8a03bad6825a7fc a wikibase:Reference ;\n\tpr:P143 wd:Q191168 .\n\nwdref:114afd4cf4950218b462673fa92b0ef05598deb6 a wikibase:Reference ;\n\tpr:P854 ;\n\tpr:P813 \"2019-05-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:855c01435baadba4a7ae59257604d2bc .\n\nwdref:bdf9bfa7e703825b14294c2be7dfa4186d7b041e a wikibase:Reference ;\n\tpr:P248 wd:Q47542613 ;\n\tpr:P813 \"2018-04-15T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:661ff2b4418d67a0c2d981a3179501fd .\n\nwdref:c43f7cca51643668a94140c8bf2e097967c52d8f a wikibase:Reference ;\n\tpr:P248 wd:Q54859980 ;\n\tpr:P813 \"2018-06-08T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5109fb9608768ce30181f0a02f9777b3 ;\n\tpr:P854 ;\n\tpr:P1065 ;\n\tpr:P2960 \"2018-07-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P2960 wdv:57969e969fcac232b6568124729fb241 .\n\nwdref:600bdd890d8e3c4c23219321dc839bbe89bfaaa2 a wikibase:Reference ;\n\tpr:P248 wd:Q51885189 ;\n\tpr:P813 \"2018-06-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:7b3bc14b466ea65a7f5e3f04a80c6f5b .\n\nwdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 a wikibase:Reference ;\n\tpr:P248 wd:Q36578 .\n\nwdref:200610d082e6b441027a5ca3f3103396c55fcfd9 a wikibase:Reference ;\n\tpr:P248 wd:Q18912790 .\n\nwdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 a wikibase:Reference ;\n\tpr:P248 wd:Q58380943 ;\n\tpr:P813 \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:e845f80d8a78f4d2337e9a316a5e42ba .\n\nwdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa a wikibase:Reference ;\n\tpr:P248 wd:Q167402 ;\n\tpr:P813 \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:51f80fa62dc38000550e1fc0fda2b59b .\n\nwdref:72bdb9539d2e1574209db20ee4b2fc3abd3679f9 a wikibase:Reference ;\n\tpr:P248 wd:Q20073251 ;\n\tpr:P813 \"2020-12-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:07e550cce6e0bf63dccf1aa9d8f84890 .\n\nwdref:22ce2135adfe2d45928ca94b0363b3ec9f8bb95f a wikibase:Reference ;\n\tpr:P248 wd:Q374924 ;\n\tpr:P813 \"2018-11-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:727a99af5e74c2de716e38b3e7e8e2ed .\n\nwdref:a0cc3fef75da4fc0af0eecc1215e7c8a0733ee18 a wikibase:Reference ;\n\tpr:P813 \"2019-07-01T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:757c83ba4abe51b585250f934cb5a035 ;\n\tpr:P248 wd:Q12360981 .\n\nwdref:1d3b14364cabecbdb80f4cca466d63b80a938fde a wikibase:Reference ;\n\tpr:P248 wd:Q64007131 ;\n\tpr:P813 \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:0e2531a07e9448df72a642e89d49fb69 .\n\nwdref:07a7d9dc3b3d90a7819d98ab2fadfb1c9da6fd90 a wikibase:Reference ;\n\tpr:P248 wd:Q72729671 ;\n\tpr:P813 \"2019-11-12T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ad5f9c94378da3fa8bd53315a8f6bbef .\n\nwdref:96fbcc47bec0804bf008a41aac0d8a6f5d3bc6fb a wikibase:Reference ;\n\tpr:P854 ;\n\tpr:P813 \"2020-01-20T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a1a2e4c5b0ebeafb0c12450e7cf514c8 .\n\nwdref:f9bf1a1f034ddd51bd9928ac535e0f57d748e2cf a wikibase:Reference ;\n\tpr:P248 wd:Q89345680 .\n\nwdref:9a681f9dd95c90224547c404e11295f4f7dcf54e a wikibase:Reference ;\n\tpr:P248 wd:Q64139102 ;\n\tpr:P813 \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:664bae4effccc18fd4ad1ae188fab025 .\n\nwdref:ba81ba3d7197b0b21226d78ff78e9bca98c9060a a wikibase:Reference ;\n\tpr:P248 wd:Q77076820 ;\n\tpr:P813 \"2020-07-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1da8087a7dd4839390f06bd089d8e330 .\n\nwdref:8931dd12107a5b80dd44729771d17987008c9ff8 a wikibase:Reference ;\n\tpr:P248 wd:Q57715373 ;\n\tpr:P813 \"2020-12-08T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:8e85c176da4d13f00385c00b15f77559 .\n\nwdref:62990530a319358633159fa90952b2c8ed25f57e a wikibase:Reference ;\n\tpr:P248 wd:Q105527638 ;\n\tpr:P813 \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:22d4f832fdefcef9ac387c783743479a .\n\nwdref:28d1170718b10bb4ed207b2bfd230c6882c07789 a wikibase:Reference ;\n\tpr:P248 wd:Q107380242 ;\n\tpr:P813 \"2021-07-04T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:0df57471937b1f3375e9cba38ef420bb .\n\nwdref:e0b27d817c9a9b3247df341000fc490bafcba862 a wikibase:Reference ;\n\tpr:P248 wd:Q107507571 ;\n\tpr:P813 \"2022-01-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:3b2ff2744ee9af4b07734336d1723792 ;\n\tpr:P854 ;\n\tpr:P1065 ;\n\tpr:P2960 \"2022-01-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P2960 wdv:3b489e24891cc935d5c8c20e402d4315 .\n\nwdref:ecb7a39cf436eb1fba419853af168ef9f2ba1dab a wikibase:Reference ;\n\tpr:P248 wd:Q106509962 .\n\nwdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5 a wikibase:Reference ;\n\tpr:P248 wd:Q113432740 .\n\nwdref:22d5690dd7dbc0c61260ced6e331cbdb4322e6d1 a wikibase:Reference ;\n\tpr:P887 wd:Q119459346 ;\n\tpr:P248 wd:Q118645236 ;\n\tpr:P813 \"2023-06-16T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ef5da3df3946c3862162925f9fc98e24 .\n\nwdref:f20547ee50ef51494aeef73dfd45ba7be046ad14 a wikibase:Reference ;\n\tpr:P887 wd:Q116288654 .\n\nwdref:ef6dade85f49421e7db939f985e8ae99cc59823f a wikibase:Reference ;\n\tpr:P248 wd:Q50658883 .\n\nwdref:d1d7c4990e31806a1a6aad395ad1dcc7089d1efe a wikibase:Reference ;\n\tpr:P248 wd:Q58824067 .\n\nwdref:6a34e1f3bf074d6799e51cef91875a05ef435336 a wikibase:Reference ;\n\tpr:P248 wd:Q110392228 .\n\nwdref:06ae9714a8c680ab276f8e1db442f688c9b0e8e5 a wikibase:Reference ;\n\tpr:P248 wd:Q113107292 .\n\nwdref:6c2c858bc4fb0306293e3560b32c6eb59a01f0d7 a wikibase:Reference ;\n\tpr:P248 wd:Q111206949 .\n\nwdref:cab3057f5db9ea4280db3b574cbcba243caae14c a wikibase:Reference ;\n\tpr:P248 wd:Q116213766 .\n\nwdref:7ea084c3db5e67ecde9e295586e301a55e432449 a wikibase:Reference ;\n\tpr:P248 wd:Q107282072 .\n\nwdref:2f7c729d9a31ad15d727154e099f70e505f0c904 a wikibase:Reference ;\n\tpr:P248 wd:Q106140471 .\n\nwdref:fa3cad23c75341067cf975ccc9fb47e2893382c3 a wikibase:Reference ;\n\tpr:P248 wd:Q111543964 .\n\nwdref:22784a394cd3aea5e288e494960389a0d1663ac6 a wikibase:Reference ;\n\tpr:P248 wd:Q73389793 .\n\nwdref:5ea8dd57a23332a6b159dde3772f673cdce6b4ac a wikibase:Reference ;\n\tpr:P248 wd:Q58006102 .\n\nwdref:4ec3aeebaa6ec8a593cb8c2c60b57743a320e249 a wikibase:Reference ;\n\tpr:P248 wd:Q123468062 .\n\nwdref:94e0a80b9416e444fed447703b3373de7dd3fff6 a wikibase:Reference ;\n\tpr:P248 wd:Q111544237 .\n\nwdref:9181bc4f4878fcc4158a8e608171fd52a8868f7c a wikibase:Reference ;\n\tpr:P854 .\n\nwdref:1b33b4d83351dde126b8c32d5fda20c7ba8f9f2d a wikibase:Reference ;\n\tpr:P248 wd:Q97219228 ;\n\tpr:P813 \"2024-04-22T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:01ddc8c044da0455bc6bbcff8f994832 .\n\nwdref:d99c41681887e3d38d2389b7dea47c05ad94a96a a wikibase:Reference ;\n\tpr:P248 wd:Q124259488 .\n\nwdref:a643ae02b2a6b287036f9865b6be7b276cf7d962 a wikibase:Reference ;\n\tpr:P248 wd:Q123473103 .\n\nwdref:8383d79aab066851aeeddbd2d25b2e5147655873 a wikibase:Reference ;\n\tpr:P248 wd:Q122629978 .\n\nwdref:a06cc0f86df889b618446dcbe0f7700371fd0ad7 a wikibase:Reference ;\n\tpr:P248 wd:Q18379771 .\n\nwdref:f6086d69a610608336e3082a79eaee238b84d644 a wikibase:Reference ;\n\tpr:P248 wd:Q47542613 .\n\nwdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e a wikibase:Reference ;\n\tpr:P248 wd:Q64007131 ;\n\tpr:P813 \"2019-06-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ecc1a0a561cbd6057d67573eeb16e1f5 ;\n\tpr:P854 .\n\nwdref:c64768a6caa1534e0e82f29fc4805235c3846107 a wikibase:Reference ;\n\tpr:P248 wd:Q20073251 ;\n\tpr:P854 ;\n\tpr:P813 \"2015-06-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:02a77ce14b8ce0840cbf0bd0cdada7a7 .\n\nwdref:eada84c58a38325085267509899037535799e978 a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-10-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:3fea4c5bca9b285063d01bb6565f1b3d .\n\nwdref:0352ad5356f9ad167b7390e04bdfa308a084d922 a wikibase:Reference ;\n\tpr:P248 wd:Q111694088 ;\n\tpr:P10793 \"208\" ;\n\tpr:P813 \"2022-06-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2becdb7a37d48a71bf512f8a8ce2c940 .\n\nwdref:ac585a9e426b7d61e460f519e31537d45f63ab94 a wikibase:Reference ;\n\tpr:P248 wd:Q111693859 ;\n\tpr:P10791 \"63879\" ;\n\tpr:P813 \"2022-08-22T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:82772e1d68fb76f81ad9dbc73c7ce075 .\n\nwdref:27680a583a745484413daff9c9e620fa68d31749 a wikibase:Reference ;\n\tpr:P248 wd:Q894631 .\n\nwdref:4a9b7589786948d52b86be8f72188bae741e4a0c a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d0f25a2420df81f2d393521305e46bb5 .\n\nwdref:362e3c5d6de1d193ef97205ba38834ba075191fc a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5a152a5904b586c064410033df37c9fd .\n\nwdref:c0a11c33e1269de68db514169e1aa70667fa8666 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a87ed9063c6b1aee5ccbb07b847c8dba .\n\nwdref:e4038602d6b6524c2ae63f184cdd1cc3ec67a37a a wikibase:Reference ;\n\tpr:P248 wd:Q54859980 ;\n\tpr:P813 \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ff7533549e53d0091ac78287d30e5cbb ;\n\tpr:P854 .\n\nwdref:e7ababbc02c927e7a635872c9d70efe98410c8d3 a wikibase:Reference ;\n\tpr:P248 wd:Q72729671 ;\n\tpr:P813 \"2019-10-31T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:447c4991e1f62b61a509db92d5b4e735 ;\n\tpr:P854 .\n\nwdref:61224d88b30998fe0b42c1a46f5c697733a95d49 a wikibase:Reference ;\n\tpr:P248 wd:Q112867914 .\n\nwdref:96fd73e6eed9326f46a773a2147935e22ea6be64 a wikibase:Reference ;\n\tpr:P248 wd:Q112869398 ;\n\tpr:P304 \"239\" .\n\nwdref:bbae94e02e82d1e842e8612397e5e45f07cb1db5 a wikibase:Reference ;\n\tpr:P248 wd:Q113193153 .\n\nwdref:4aa3ef7b09734f4d57c3e7f552074cb7fa18c5b1 a wikibase:Reference ;\n\tpr:P356 \"10.17520/BIODS.2023093\" ;\n\tprn:P356 .\n\nwdref:cc2271e27add77b47c98d28a96827ed0a10cda8d a wikibase:Reference ;\n\tpr:P248 wd:Q113333457 .\n\nwdref:25371c05886d508f0bd3b89319c1e188ec3c8883 a wikibase:Reference ;\n\tpr:P854 .\n\nwdref:f76860944072719f61df28202589e186d5b936fc a wikibase:Reference ;\n\tpr:P248 wd:Q124478613 .\n\nwdref:7f65d78cb2248e5d0f7eec2715fc0f39c9b6fd3c a wikibase:Reference ;\n\tpr:P248 wd:Q135518565 ;\n\tpr:P813 \"2025-08-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d52a85e9f28ecb2fac7274239c2aef82 .\n", + "body_type": "text", + "headers": { + "accept-ch": [ + "" + ], + "access-control-allow-origin": [ + "*" + ], + "age": [ + "2" + ], + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-transform" + ], + "content-type": [ + "text/turtle; charset=UTF-8" + ], + "date": [ + "Thu, 19 Feb 2026 20:31:42 GMT" + ], + "last-modified": [ + "Mon, 19 Jan 2026 04:30:16 GMT" + ], + "nel": [ + "{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}" + ], + "report-to": [ + "{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }" + ], + "server": [ + "mw-web.eqiad.main-7b5496b6b9-l8l7t" + ], + "server-timing": [ + "cache;desc=\"pass\", host;desc=\"cp3070\"" + ], + "set-cookie": [ + "WMF-Last-Access=19-Feb-2026;Path=/;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "WMF-Last-Access-Global=19-Feb-2026;Path=/;Domain=.wikidata.org;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "GeoIP=DE:NW:D__sseldorf:51.26:6.82:v4; Path=/; secure; Domain=.wikidata.org", + "NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600", + "WMF-Uniq=7yuXV03wBjaWzDvciqLH0gMMAAAAAFvdqm81I24lLun2C3opW9fJ2PJjkejo1MDk;Domain=.wikidata.org;Path=/;HttpOnly;secure;SameSite=None;Expires=Fri, 19 Feb 2027 00:00:00 GMT" + ], + "strict-transport-security": [ + "max-age=106384710; includeSubDomains; preload" + ], + "transfer-encoding": [ + "chunked" + ], + "vary": [ + "Accept-Encoding,User-Agent" + ], + "x-analytics": [ + "" + ], + "x-cache": [ + "cp3070 miss, cp3070 pass" + ], + "x-cache-status": [ + "pass" + ], + "x-client-ip": [ + "92.208.183.237" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "DENY" + ], + "x-request-id": [ + "4150de3b-1063-46a7-8540-bc3b46f87aed" + ] + }, + "status": 200 + } + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/preparation/xylem/test/cassettes/wikidata_fetch_q165145.json b/preparation/xylem/test/cassettes/wikidata_fetch_q165145.json new file mode 100644 index 0000000..24ec25b --- /dev/null +++ b/preparation/xylem/test/cassettes/wikidata_fetch_q165145.json @@ -0,0 +1,100 @@ +{ + "interactions": [ + { + "recorded_at": "2026-02-19T20:31:45.412453Z", + "request": { + "body": "", + "body_type": "text", + "headers": { + "accept-encoding": [ + "gzip" + ], + "user-agent": [ + "req/0.5.16" + ] + }, + "method": "GET", + "query_string": "uselang=de", + "uri": "https://www.wikidata.org/wiki/Special:EntityData/Q165145.ttl" + }, + "response": { + "body": "@prefix rdf: .\n@prefix xsd: .\n@prefix ontolex: .\n@prefix dct: .\n@prefix rdfs: .\n@prefix owl: .\n@prefix wikibase: .\n@prefix skos: .\n@prefix schema: .\n@prefix cc: .\n@prefix geo: .\n@prefix prov: .\n@prefix wd: .\n@prefix data: .\n@prefix wds: .\n@prefix wdref: .\n@prefix wdv: .\n@prefix wdt: .\n@prefix wdtn: .\n@prefix p: .\n@prefix ps: .\n@prefix psv: .\n@prefix psn: .\n@prefix pq: .\n@prefix pqv: .\n@prefix pqn: .\n@prefix pr: .\n@prefix prv: .\n@prefix prn: .\n@prefix wdno: .\n\ndata:Q165145 a schema:Dataset ;\n\tschema:about wd:Q165145 ;\n\tcc:license ;\n\tschema:softwareVersion \"1.0.0\" ;\n\tschema:version \"2456016475\"^^xsd:integer ;\n\tschema:dateModified \"2026-01-19T04:30:16Z\"^^xsd:dateTime ;\n\twikibase:statements \"198\"^^xsd:integer ;\n\twikibase:sitelinks \"81\"^^xsd:integer ;\n\twikibase:identifiers \"129\"^^xsd:integer .\n\nwd:Q165145 a wikibase:Item .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"commons\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"species\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@en .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"de\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stieleiche\"@de .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"es\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@es .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ru\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб черешчатый\"@ru .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"it\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@it .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ja\" ;\n\tschema:isPartOf ;\n\tschema:name \"ヨーロッパナラ\"@ja .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Zomereik\"@nl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dąb szypułkowy\"@pl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Carvalho-roble\"@pt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"zh\" ;\n\tschema:isPartOf ;\n\tschema:name \"夏櫟\"@zh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ek\"@sv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fa\" ;\n\tschema:isPartOf ;\n\tschema:name \"بلوط قرمز اروپایی\"@fa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kocsányos tölgy\"@hu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tammi\"@fi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ar\" ;\n\tschema:isPartOf ;\n\tschema:name \"سنديان قوي\"@ar .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"vi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@vi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sommereik\"@nb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"uk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб звичайний\"@uk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ko\" ;\n\tschema:isPartOf ;\n\tschema:name \"로부르참나무\"@ko .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ca\" ;\n\tschema:isPartOf ;\n\tschema:name \"Roure pènol\"@ca .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dub letní\"@cs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stejar\"@ro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"da\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stilk-eg\"@da .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"bg\" ;\n\tschema:isPartOf ;\n\tschema:name \"Обикновен дъб\"@bg .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"af\" ;\n\tschema:isPartOf ;\n\tschema:name \"Steeleik\"@af .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ast\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ast .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"az\" ;\n\tschema:isPartOf ;\n\tschema:name \"Yay palıdı\"@az .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"azb\" ;\n\tschema:isPartOf ;\n\tschema:name \"یای پالیدی\"@azb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sgs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ōžouls\"@sgs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"be\" ;\n\tschema:isPartOf ;\n\tschema:name \"Дуб звычайны\"@be .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"bs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@bs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ceb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ceb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Derwen mes coesynnog\"@cy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"egl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Róra\"@egl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"eo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tigfrukta kverko\"@eo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"et\" ;\n\tschema:isPartOf ;\n\tschema:name \"Harilik tamm\"@et .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"eu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Haritz kandudun\"@eu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ga\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dair ghallda\"@ga .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"gl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Carballo común\"@gl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@hr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hsb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Šiškaty dub\"@hsb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"hy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Կաղնի ամառային\"@hy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"io\" ;\n\tschema:isPartOf ;\n\tschema:name \"Rovro\"@io .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"is\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sumareik\"@is .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ka\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ka .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"kk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Кәдімгі емен\"@kk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"kw\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dar\"@kw .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"la\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@la .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Stilleech\"@lb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lmo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@lmo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Paprastasis ąžuolas\"@lt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"lv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Parastais ozols\"@lv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"mhr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тумо\"@mhr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"mrj\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тум\"@mrj .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"myv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Тумо\"@myv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"nn\" ;\n\tschema:isPartOf ;\n\tschema:name \"Sommareik\"@nn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"olo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tammi\"@olo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pms\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@pms .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"pnb\" ;\n\tschema:isPartOf ;\n\tschema:name \"یورپی بلوط\"@pnb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"qu\" ;\n\tschema:isPartOf ;\n\tschema:name \"K'aspicha ruwli\"@qu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"rm\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ruver cumin\"@rm .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dub letný\"@sk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dob (drevo)\"@sl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"war\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@war .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"se\" ;\n\tschema:isPartOf ;\n\tschema:name \"Eaika\"@se .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"wuu\" ;\n\tschema:isPartOf ;\n\tschema:name \"夏栎\"@wuu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"tr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Saplı meşe\"@tr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"arz\" ;\n\tschema:isPartOf ;\n\tschema:name \"سنديان قوى\"@arz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"fr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Chêne pédonculé\"@fr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Лужњак\"@sr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"cv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Ахаль юман\"@cv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"uz\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@uz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"frr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Someriakebuum\"@frr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"he\" ;\n\tschema:isPartOf ;\n\tschema:name \"אלון אנגלי\"@he .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"vro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Tamm\"@vro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"id\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pasang inggris\"@id .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"co\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@co .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"sh\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrast lužnjak\"@sh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q165145 ;\n\tschema:inLanguage \"ia\" ;\n\tschema:isPartOf ;\n\tschema:name \"Quercus robur\"@ia .\n\n wikibase:wikiGroup \"wikipedia\" .\n\nwd:Q165145 wdt:P181 ;\n\twdt:P105 wd:Q7432 ;\n\twdt:P141 wd:Q211005 ;\n\twdt:P171 wd:Q12004 ;\n\twdt:P225 \"Quercus robur\" ;\n\twdt:P18 ;\n\twdt:P373 \"Quercus robur\" ;\n\twdt:P685 \"38942\" ;\n\twdtn:P685 ;\n\twdt:P935 \"Quercus robur\" ;\n\twdt:P815 \"19405\" ;\n\twdt:P31 wd:Q16521,\n\t\twd:Q188840 ;\n\twdt:P646 \"/m/01cm3t\" ;\n\twdt:P227 \"4128387-9\" ;\n\twdtn:P227 ;\n\twdt:P960 \"13100004\" ;\n\twdt:P830 \"1151323\" ;\n\twdt:P961 \"296690-1\" ;\n\twdtn:P961 ;\n\twdt:P1070 \"kew-174750\" ;\n\twdt:P1727 \"210001863\" ;\n\twdt:P1745 \"5969\" ;\n\twdt:P1747 \"210001863\" ;\n\twdt:P1421 ;\n\twdt:P1772 \"QURO2\" ;\n\twdt:P846 \"2878688\" ;\n\twdt:P1939 \"221406\" ;\n\twdt:P2036 \"13665\" ;\n\twdt:P910 wd:Q9528983 ;\n\twdt:P1014 \"300375065\" ;\n\twdtn:P1014 ;\n\twdt:P2752 \"e73e770d-f7bf-472d-a04b-1c80caf9b226\" ;\n\twdt:P627 \"63532\" ;\n\twdt:P3031 \"QUERO\" ;\n\twdtn:P3031 ;\n\twdt:P3151 \"56133\" ;\n\twdt:P3186 \"116759\" ;\n\twdtn:P3186 ;\n\twdt:P3240 \"NBNSYS0000003845\" ;\n\twdt:P3405 \"120602\" ;\n\twdt:P3591 \"174750\" ;\n\twdt:P838 \"3458\" ;\n\twdt:P3420 \"12827\" ;\n\twdt:P4122 \"Quercus_robur\" ;\n\twdt:P1417 \"plant/English-oak\" ;\n\twdt:P4301 \"Quercus robur\" ;\n\twdt:P4311 \"321\" ;\n\twdtn:P4311 ;\n\twdt:P166 wd:Q91885056,\n\t\twd:Q91888395,\n\t\twd:Q91888146 ;\n\twdt:P4753 \"9138\" ;\n\twdt:P5037 \"urn:lsid:ipni.org:names:304293-2\" ;\n\twdtn:P5037 ;\n\twdt:P5179 \"VTax4660\" ;\n\twdt:P3130 \"Quercus~robur\" ;\n\twdt:P5263 \"39092\" ;\n\twdt:P5055 \"11400298\" ;\n\twdtn:P5055 ;\n\twdt:P1036 \"583.46\",\n\t\t\"634.9721\" ;\n\twdt:P244 \"sh85043922\" ;\n\twdtn:P244 ;\n\twdt:P268 \"123953078\" ;\n\twdtn:P268 ;\n\twdt:P1149 \"SD397.E54\" ;\n\twdtn:P1149 ;\n\twdt:P5945 \"b7415528-aa5c-435d-a13c-a2b33d726385\" ;\n\twdt:P5984 \"71373\" ;\n\twdt:P6094 \"4685\" ;\n\twdt:P6034 \"280706\" ;\n\twdt:P6177 \"172457\" ;\n\twdtn:P6177 ;\n\twdt:P6161 \"9742\" ;\n\twdt:P6341 \"5A7D29A9-16F5-4ED1-BFB7-6CCB7E8780FA\" ;\n\twdt:P1672 wd:Q3914781,\n\t\twd:Q55748156 ;\n\twdt:P6864 \"6698\" ;\n\twdt:P6933 \"Quercus_robur\" ;\n\twdt:P6142 \"1037\" ;\n\twdt:P7202 \"23805\" ;\n\twdt:P7496 \"3137\" ;\n\twdt:P7546 \"English Oak\" ;\n\twdt:P7552 \"MX.37990\" ;\n\twdt:P4214 \"+930\"^^xsd:decimal ;\n\twdt:P6366 \"2776211871\" ;\n\twdtn:P6366 ;\n\twdt:P6105 \"7286\" ;\n\twdt:P2347 \"9418\" ;\n\twdtn:P2347 ;\n\twdt:P5019 \"sommereiche\",\n\t\t\"stieleiche\" ;\n\twdt:P8061 \"c_15794\" ;\n\twdtn:P8061 ;\n\twdt:P2004 \"37168\" ;\n\twdtn:P2004 ;\n\twdt:P8408 \"QuercusRobur\" ;\n\twdtn:P8408 ;\n\twdt:P7715 \"wfo-0000292858\" ;\n\twdt:P8707 \"102156\" ;\n\twdt:P8765 \"14294\" ;\n\twdt:P8915 \"58343\" ;\n\twdt:P6056 \"1901-1\" ;\n\twdt:P652 \"R7QMG0BT2W\" ;\n\twdt:P6756 \"Quercus robur\" ;\n\twdt:P9157 \"239659\" ;\n\twdt:P8468 \"36783\" ;\n\twdt:P9501 \"que_rob\" ;\n\twdt:P9654 \"Quercus robur\" ;\n\twdt:P3105 \"75316\" ;\n\twdt:P9741 \"4000\" ;\n\twdt:P9799 \"50324\" ;\n\twdt:P10243 \"2.147862\" ;\n\twdt:P10283 \"C2776211871\" ;\n\twdt:P4342 \"sommereik\" ;\n\twdt:P8309 \"18-217471\" ;\n\twdt:P6293 \"Y104061\" ;\n\twdtn:P6293 ;\n\twdt:P1889 wd:Q3579529 ;\n\twdt:P6114 \"271\" ;\n\twdt:P10585 \"4R5YN\" ;\n\twdt:P10793 \"208\" ;\n\twdt:P691 \"ph114370\" ;\n\twdt:P1343 wd:Q112869398,\n\t\twd:Q19133013,\n\t\twd:Q5862833 ;\n\twdt:P8189 \"987007548267005171\" ;\n\twdt:P9714 wd:Q148 ;\n\twdt:P10791 \"63879\" ;\n\twdt:P3102 \"31185\" ;\n\twdt:P6104 wd:Q56241615 ;\n\twdt:P11067 \"379\" ;\n\twdt:P10701 \"FB613391\" ;\n\twdt:P4000 wd:Q11009 ;\n\twdt:P10711 \"9742\" ;\n\twdt:P9495 \"term/c7d94169-dfa7-42e2-bf08-d1418cc8b61c\" ;\n\twdt:P11514 \"dub-chereshchatyi-b6e7e5\" ;\n\twdt:P9503 \"43685\" ;\n\twdt:P11824 \"quro\" ;\n\twdt:P2892 \"C0330306\" ;\n\twdt:P10366 \"9213\" ;\n\twdt:P1813 \"Q. robur\"@mul ;\n\twdt:P7537 \"266641\" ;\n\twdt:P7587 \"Quercus_robur\" ;\n\twdt:P10333 \"1510\" ;\n\twdt:P11078 \"4150/stilk-eg\" ;\n\twdt:P10561 \"551\" ;\n\twdt:P11829 \"quercus_robur--english_oak\" ;\n\twdt:P9691 \"Quercus robur\" ;\n\twdt:P9408 \"78825\" ;\n\twdt:P10709 \"quercus-robur\" ;\n\twdt:P7544 \"ce8f554e95e82bc275cb5942d4d5f68c\" ;\n\twdt:P6098 \"quercus-robur\" ;\n\twdt:P12137 \"specie/quercus-pedunculata\" ;\n\twdt:P4333 \"GCA_900291515.1\",\n\t\t\"GCA_932294415.1\",\n\t\t\"GCA_932294425.1\" ;\n\twdt:P12179 \"3377\" ;\n\twdt:P12182 \"species/quercus/robur\" ;\n\twdt:P12086 \"Zomereik\" ;\n\twdt:P6507 \"L.\" ;\n\twdt:P8193 wd:Q96279266 ;\n\twdt:P10906 wd:Q1131316 ;\n\twdt:P11650 \"18523517\" ;\n\twdt:P9826 \"Дуб черешчатый, летний – Quercus robur L.\" ;\n\twdt:P12187 \"VHZZX2NB4BA3PGJCBVEZ2ZHW7I\" ;\n\twdt:P12670 \"8266\" ;\n\twdt:P12296 \"97611\" ;\n\twdt:P12292 \"c6e3073b-2ed1-442b-b756-86e3dcc59059\" ;\n\twdt:P12100 \"Quercus robur\" ;\n\twdt:P12554 \"Quercus+robur\" ;\n\twdt:P9423 \"7775\" ;\n\twdt:P1420 wd:Q111328943 ;\n\twdt:P1843 \"Pedunculate Oak\"@en ;\n\twdt:P12616 wd:Q12364191,\n\t\twd:Q12379403,\n\t\twd:Q131939033,\n\t\twd:Q136087938 ;\n\twdt:P13591 \"concept/4c553524-61f0-42eb-bdcf-1ef6854af849\" ;\n\twdt:P13734 \"R12771\" ;\n\twdt:P6870 \"158799\" ;\n\twdt:P3101 \"48566\" ;\n\twdt:P13478 wd:Q12004 ;\n\twdt:P5252 ;\n\tp:P181 wds:Q165145-defdc223-4826-6b30-118e-26b1c4f6e5ff .\n\nwds:Q165145-defdc223-4826-6b30-118e-26b1c4f6e5ff a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P181 .\n\nwd:Q165145 p:P105 wds:q165145-21562EF6-999C-4DBA-91E0-A644CF828D24 .\n\nwds:q165145-21562EF6-999C-4DBA-91E0-A644CF828D24 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P105 wd:Q7432 ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P141 wds:q165145-F7478F89-C140-4F2B-92DB-6C29C2CF3980 .\n\nwds:q165145-F7478F89-C140-4F2B-92DB-6C29C2CF3980 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P141 wd:Q211005 ;\n\tprov:wasDerivedFrom wdref:75402fc8ea5100b364db601b3ed88777b189f22e .\n\nwd:Q165145 p:P171 wds:q165145-A13B0CE6-D42D-4456-B2BA-F91FB3737403 .\n\nwds:q165145-A13B0CE6-D42D-4456-B2BA-F91FB3737403 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P171 wd:Q12004 ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P225 wds:q165145-FB614D8C-1D5F-4F7A-A063-BBCD03C9637E .\n\nwds:q165145-FB614D8C-1D5F-4F7A-A063-BBCD03C9637E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P225 \"Quercus robur\" ;\n\tpq:P405 wd:Q1043 ;\n\tpq:P574 \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P574 wdv:4153fee0d70688a29ab9db6b000d1c1f ;\n\tprov:wasDerivedFrom wdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a .\n\nwd:Q165145 p:P18 wds:q165145-5EB7FEC2-8174-4754-9D31-220383903E1C .\n\nwds:q165145-5EB7FEC2-8174-4754-9D31-220383903E1C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:PreferredRank ;\n\tps:P18 ;\n\tpq:P180 wd:Q10884 .\n\nwd:Q165145 p:P18 wds:Q165145-984E8CCB-71AD-436B-8423-F9B52446E231 .\n\nwds:Q165145-984E8CCB-71AD-436B-8423-F9B52446E231 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P5961 wd:Q1364 .\n\nwd:Q165145 p:P18 wds:Q165145-250e1058-482b-152b-9134-66053c5d1a9c .\n\nwds:Q165145-250e1058-482b-152b-9134-66053c5d1a9c a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P3831 wd:Q3796486 .\n\nwd:Q165145 p:P18 wds:Q165145-744195a3-4c0a-c62a-bbc0-3a9d7c1fa0dd .\n\nwds:Q165145-744195a3-4c0a-c62a-bbc0-3a9d7c1fa0dd a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P180 wd:Q61726742 .\n\nwd:Q165145 p:P373 wds:q165145-AE31A915-EB2E-4C6E-B875-7934C039652E .\n\nwds:q165145-AE31A915-EB2E-4C6E-B875-7934C039652E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P373 \"Quercus robur\" .\n\nwd:Q165145 p:P685 wds:Q165145-54AE35FD-7860-41DA-B2B9-63204539A891 .\n\nwds:Q165145-54AE35FD-7860-41DA-B2B9-63204539A891 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P685 \"38942\" ;\n\tpsn:P685 ;\n\tprov:wasDerivedFrom wdref:d4bd87b862b12d99d26e86472d44f26858dee639,\n\t\twdref:3d1d776b6f1d89ea5cd7b5f8db0a2f64ef67a804 .\n\nwd:Q165145 p:P935 wds:Q165145-9A967448-DDDF-4C61-8915-F43EBADF1BC6 .\n\nwds:Q165145-9A967448-DDDF-4C61-8915-F43EBADF1BC6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P935 \"Quercus robur\" .\n\nwd:Q165145 p:P815 wds:Q165145-5C7F98B3-CF25-42FB-AC71-B1AE58EFE454 .\n\nwds:Q165145-5C7F98B3-CF25-42FB-AC71-B1AE58EFE454 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P815 \"19405\" ;\n\tprov:wasDerivedFrom wdref:d39590feb5a714a291345f9d30a2cf68c0a97b66 .\n\nwd:Q165145 p:P31 wds:Q165145-C23A37AA-2FDD-498A-B512-BAE655485C3D .\n\nwds:Q165145-C23A37AA-2FDD-498A-B512-BAE655485C3D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P31 wd:Q16521 .\n\nwd:Q165145 p:P31 wds:Q165145-d8314244-4c01-9035-a912-874345c50871 .\n\nwds:Q165145-d8314244-4c01-9035-a912-874345c50871 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P31 wd:Q188840 .\n\nwd:Q165145 p:P646 wds:Q165145-FF230685-BA43-4D40-B759-2526EB24F310 .\n\nwds:Q165145-FF230685-BA43-4D40-B759-2526EB24F310 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P646 \"/m/01cm3t\" ;\n\tprov:wasDerivedFrom wdref:2b00cb481cddcac7623114367489b5c194901c4a .\n\nwd:Q165145 p:P227 wds:Q165145-65C7DB25-61E3-4222-80BF-696C8771739F .\n\nwds:Q165145-65C7DB25-61E3-4222-80BF-696C8771739F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P227 \"4128387-9\" ;\n\tpsn:P227 ;\n\tprov:wasDerivedFrom wdref:9a24f7c0208b05d6be97077d855671d1dfdbc0dd .\n\nwd:Q165145 p:P960 wds:Q165145-20DB8AA0-CB44-41D7-8846-520994C4E3FE .\n\nwds:Q165145-20DB8AA0-CB44-41D7-8846-520994C4E3FE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P960 \"13100004\" ;\n\tprov:wasDerivedFrom wdref:f81fe8e1506f3271f6ad35f3041f04dca1b1f7da .\n\nwd:Q165145 p:P830 wds:Q165145-712CEFE0-5A22-4694-A3EB-6499C6CF8161 .\n\nwds:Q165145-712CEFE0-5A22-4694-A3EB-6499C6CF8161 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P830 \"1151323\" ;\n\tprov:wasDerivedFrom wdref:4e6a4543025cd3fc2a830bc6a7a83d94f32979a0 .\n\nwd:Q165145 p:P961 wds:Q165145-C56C7F5D-831C-44F7-B810-12CB6113E777 .\n\nwds:Q165145-C56C7F5D-831C-44F7-B810-12CB6113E777 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P961 \"296690-1\" ;\n\tpsn:P961 .\n\nwd:Q165145 p:P1070 wds:Q165145-3EB3AAEA-526A-4F38-A43C-9F50438E85DC .\n\nwds:Q165145-3EB3AAEA-526A-4F38-A43C-9F50438E85DC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1070 \"kew-174750\" ;\n\tprov:wasDerivedFrom wdref:a1d0f2ade207352295b2a3c1e7f58b61fa9f0afb .\n\nwd:Q165145 p:P1727 wds:Q165145-9103C96B-929E-4476-8A19-EF8C3D5818CC .\n\nwds:Q165145-9103C96B-929E-4476-8A19-EF8C3D5818CC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1727 \"210001863\" ;\n\tprov:wasDerivedFrom wdref:1005109b015da4ea28bf4b4a6075532a85144b72 .\n\nwd:Q165145 p:P1745 wds:Q165145-BC3FCB9D-EF68-4242-A0BA-B4D91F0B8FC1 .\n\nwds:Q165145-BC3FCB9D-EF68-4242-A0BA-B4D91F0B8FC1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1745 \"5969\" ;\n\tprov:wasDerivedFrom wdref:a09a55f5df426ebeabfde6b0f3e5dbdfc1a99201 .\n\nwd:Q165145 p:P1747 wds:Q165145-2FE80428-8837-406D-833F-8DDF76A5A71D .\n\nwds:Q165145-2FE80428-8837-406D-833F-8DDF76A5A71D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1747 \"210001863\" ;\n\tprov:wasDerivedFrom wdref:37709dc34274fc7b79ae6056ef25c396b30231ef .\n\nwd:Q165145 p:P1421 wds:Q165145-D76096F3-BE0E-4631-9952-ABD0A9E70CA9 .\n\nwds:Q165145-D76096F3-BE0E-4631-9952-ABD0A9E70CA9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1421 ;\n\tprov:wasDerivedFrom wdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec .\n\nwd:Q165145 p:P1772 wds:Q165145-6AA36140-6501-44D9-86C9-CBA0B27C2381 .\n\nwds:Q165145-6AA36140-6501-44D9-86C9-CBA0B27C2381 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1772 \"QURO2\" ;\n\tprov:wasDerivedFrom wdref:3ee42bed39fe58bd06a245cf377da864298c8a8c .\n\nwd:Q165145 p:P846 wds:Q165145-A7A2ECBA-321F-430F-80C5-A347A2F30798 .\n\nwds:Q165145-A7A2ECBA-321F-430F-80C5-A347A2F30798 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P846 \"2878688\" ;\n\tprov:wasDerivedFrom wdref:b5ad2569bcf6622780b588eb1117c5be83d6a41a .\n\nwd:Q165145 p:P1939 wds:Q165145-98DA3FB1-93D7-4B82-9F66-EC7E7B9B9A3C .\n\nwds:Q165145-98DA3FB1-93D7-4B82-9F66-EC7E7B9B9A3C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1939 \"221406\" ;\n\tprov:wasDerivedFrom wdref:ded4d9855a794a13f212738b71babf44289d7193 .\n\nwd:Q165145 p:P2036 wds:Q165145-879D1687-ECC9-428B-978E-D1E446BDFA5E .\n\nwds:Q165145-879D1687-ECC9-428B-978E-D1E446BDFA5E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2036 \"13665\" ;\n\tprov:wasDerivedFrom wdref:f901ac280448f09da5efea3ba1884c7d4a496027 .\n\nwd:Q165145 p:P910 wds:Q165145-D620B835-F42E-49FE-A536-B7A12CAE9191 .\n\nwds:Q165145-D620B835-F42E-49FE-A536-B7A12CAE9191 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P910 wd:Q9528983 .\n\nwd:Q165145 p:P1014 wds:Q165145-A06312E7-CEC3-4D3A-841C-2274B8BF0577 .\n\nwds:Q165145-A06312E7-CEC3-4D3A-841C-2274B8BF0577 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1014 \"300375065\" ;\n\tpsn:P1014 .\n\nwd:Q165145 p:P2752 wds:Q165145-4266232F-6892-4D9D-A77A-6AF7EC04953C .\n\nwds:Q165145-4266232F-6892-4D9D-A77A-6AF7EC04953C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2752 \"e73e770d-f7bf-472d-a04b-1c80caf9b226\" ;\n\tprov:wasDerivedFrom wdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 .\n\nwd:Q165145 p:P627 wds:Q165145-7219FF95-7AC9-4C1F-A663-5CDFE5AA1DD1 .\n\nwds:Q165145-7219FF95-7AC9-4C1F-A663-5CDFE5AA1DD1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P627 \"63532\" ;\n\tprov:wasDerivedFrom wdref:6f8626cb03bb3ca6ee0a5c2ece82d7e62dc83598 .\n\nwd:Q165145 p:P3031 wds:Q165145-AB21421D-9839-4C4A-B5FD-ACA13380A88C .\n\nwds:Q165145-AB21421D-9839-4C4A-B5FD-ACA13380A88C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3031 \"QUERO\" ;\n\tpsn:P3031 .\n\nwd:Q165145 p:P3151 wds:Q165145-95F04A07-9963-45BD-A729-787E60EE684B .\n\nwds:Q165145-95F04A07-9963-45BD-A729-787E60EE684B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3151 \"56133\" .\n\nwd:Q165145 p:P3186 wds:Q165145-D31A6035-6D20-45F7-B7F6-0481737F04D4 .\n\nwds:Q165145-D31A6035-6D20-45F7-B7F6-0481737F04D4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3186 \"116759\" ;\n\tpsn:P3186 ;\n\tprov:wasDerivedFrom wdref:6f367a5bd07124a084786476520b5e616561c065,\n\t\twdref:1ac5c51e8e692e5256710c5a6d6e288f535ccff9,\n\t\twdref:cf7fd8f44fda657c76a55dc510aa72bfa5b7d36b,\n\t\twdref:fc0d92af6b98a071aff12f3ac58f8e63d269aad8,\n\t\twdref:de8a49acdcf832419a5a6ba08567d671cdab1f9e,\n\t\twdref:14326af8a3cdabe39d383c48265c7492c7bd2e45,\n\t\twdref:7db1626f2a102c0854df622bef2772a11216c99f,\n\t\twdref:8e0be4dc867f902bec79db264192d2ddc273f01f .\n\nwd:Q165145 p:P3240 wds:Q165145-f39db2cc-488c-2645-bc9f-727feee3d9e2 .\n\nwds:Q165145-f39db2cc-488c-2645-bc9f-727feee3d9e2 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3240 \"NBNSYS0000003845\" ;\n\tprov:wasDerivedFrom wdref:88d4460c262f012ed854b894d871b3c6faf85f39 .\n\nwd:Q165145 p:P3405 wds:Q165145-628EB597-A487-4A71-AFB4-455BBB9376A4 .\n\nwds:Q165145-628EB597-A487-4A71-AFB4-455BBB9376A4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3405 \"120602\" ;\n\tprov:wasDerivedFrom wdref:6df21c27373a2bde6ee75834c667ad037609ae83 .\n\nwd:Q165145 p:P3591 wds:Q165145-1388F478-2305-4984-9D45-803F7D6AA177 .\n\nwds:Q165145-1388F478-2305-4984-9D45-803F7D6AA177 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3591 \"174750\" ;\n\tprov:wasDerivedFrom wdref:80e889a54fb2429cbff6e51048c39c6a1280cea4 .\n\nwd:Q165145 p:P838 wds:Q165145-7F94BBAE-43F8-4EDB-8863-50CC9357E33A .\n\nwds:Q165145-7F94BBAE-43F8-4EDB-8863-50CC9357E33A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P838 \"3458\" ;\n\tprov:wasDerivedFrom wdref:3bf39867b037e8e494a8389ae8a03bad6825a7fc .\n\nwd:Q165145 p:P3420 wds:Q165145-C514F387-14B5-4E93-A59F-5D31D9E771A9 .\n\nwds:Q165145-C514F387-14B5-4E93-A59F-5D31D9E771A9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3420 \"12827\" .\n\nwd:Q165145 p:P4122 wds:Q165145-01D708BD-E19D-4F94-A1EE-1BC56F9B0CD8 .\n\nwds:Q165145-01D708BD-E19D-4F94-A1EE-1BC56F9B0CD8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4122 \"Quercus_robur\" .\n\nwd:Q165145 p:P1417 wds:Q165145-D2F7B0C4-15A9-406C-860E-F60EDE1307DA .\n\nwds:Q165145-D2F7B0C4-15A9-406C-860E-F60EDE1307DA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1417 \"plant/English-oak\" ;\n\tpq:P1810 \"English oak\" .\n\nwd:Q165145 p:P4301 wds:Q165145-0B7487D9-F47A-4AFA-B228-EFF9084085EA .\n\nwds:Q165145-0B7487D9-F47A-4AFA-B228-EFF9084085EA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4301 \"Quercus robur\" .\n\nwd:Q165145 p:P4311 wds:Q165145-268B3A7C-46E9-4EF7-B066-2062227DE0C6 .\n\nwds:Q165145-268B3A7C-46E9-4EF7-B066-2062227DE0C6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4311 \"321\" ;\n\tpsn:P4311 .\n\nwd:Q165145 p:P166 wds:Q165145-9f8a478d-43a5-3dc7-f7ed-fca0a7b3999c .\n\nwds:Q165145-9f8a478d-43a5-3dc7-f7ed-fca0a7b3999c a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91885056 ;\n\tpq:P585 \"1989-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:9930877c43e09a3dd26a2b4a0d5aa9c8 ;\n\tprov:wasDerivedFrom wdref:114afd4cf4950218b462673fa92b0ef05598deb6 .\n\nwd:Q165145 p:P166 wds:Q165145-cdaae74e-42b3-56db-8a7c-c99760ef55c1 .\n\nwds:Q165145-cdaae74e-42b3-56db-8a7c-c99760ef55c1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91888395 ;\n\tpq:P585 \"2015-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:418aedfba643e02a5ba758952f8f7765 .\n\nwd:Q165145 p:P166 wds:Q165145-62a9caf4-4b74-fd59-dc32-d85315916102 .\n\nwds:Q165145-62a9caf4-4b74-fd59-dc32-d85315916102 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P166 wd:Q91888146 ;\n\tpq:P585 \"2024-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:5ab009f176c683ca055c711fde6476a5 .\n\nwd:Q165145 p:P4753 wds:Q165145-C14424F5-70B4-4A3A-8206-8C94C50F5CD1 .\n\nwds:Q165145-C14424F5-70B4-4A3A-8206-8C94C50F5CD1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4753 \"9138\" .\n\nwd:Q165145 p:P5037 wds:Q165145-9A571E12-B6BA-4B65-B3F6-A46A6DB485BE .\n\nwds:Q165145-9A571E12-B6BA-4B65-B3F6-A46A6DB485BE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5037 \"urn:lsid:ipni.org:names:304293-2\" ;\n\tpsn:P5037 ;\n\tprov:wasDerivedFrom wdref:bdf9bfa7e703825b14294c2be7dfa4186d7b041e .\n\nwd:Q165145 p:P5179 wds:Q165145-1B87EFC1-675D-41B5-8912-DF8EA7B6C72E .\n\nwds:Q165145-1B87EFC1-675D-41B5-8912-DF8EA7B6C72E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5179 \"VTax4660\" .\n\nwd:Q165145 p:P3130 wds:Q165145-0D3526C1-FE35-4947-AEFF-3C0A5C3C5964 .\n\nwds:Q165145-0D3526C1-FE35-4947-AEFF-3C0A5C3C5964 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3130 \"Quercus~robur\" .\n\nwd:Q165145 p:P5263 wds:Q165145-4A6791A1-C70C-423A-906F-2944FB7488B1 .\n\nwds:Q165145-4A6791A1-C70C-423A-906F-2944FB7488B1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5263 \"39092\" ;\n\tprov:wasDerivedFrom wdref:c43f7cca51643668a94140c8bf2e097967c52d8f .\n\nwd:Q165145 p:P5055 wds:Q165145-FB084DDD-79A7-410B-A987-14FDCA204876 .\n\nwds:Q165145-FB084DDD-79A7-410B-A987-14FDCA204876 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5055 \"11400298\" ;\n\tpsn:P5055 ;\n\tprov:wasDerivedFrom wdref:600bdd890d8e3c4c23219321dc839bbe89bfaaa2 .\n\nwd:Q165145 p:P1036 wds:Q165145-920af877-416a-d25a-47f6-2cb8e1571ab0 .\n\nwds:Q165145-920af877-416a-d25a-47f6-2cb8e1571ab0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1036 \"583.46\" ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P1036 wds:Q165145-e02b548d-496e-379b-9fc8-f3816e820512 .\n\nwds:Q165145-e02b548d-496e-379b-9fc8-f3816e820512 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1036 \"634.9721\" ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P244 wds:Q165145-5dc30489-45fb-d84f-0dfa-de5bc01d67d2 .\n\nwds:Q165145-5dc30489-45fb-d84f-0dfa-de5bc01d67d2 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P244 \"sh85043922\" ;\n\tpsn:P244 ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P268 wds:Q165145-ad4f54a0-4098-e1f7-6c76-a1fcd58ca8a8 .\n\nwds:Q165145-ad4f54a0-4098-e1f7-6c76-a1fcd58ca8a8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P268 \"123953078\" ;\n\tpsn:P268 ;\n\tprov:wasDerivedFrom wdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 .\n\nwd:Q165145 p:P1149 wds:Q165145-c813d631-4fd5-5803-1caf-42f1a3d5263e .\n\nwds:Q165145-c813d631-4fd5-5803-1caf-42f1a3d5263e a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1149 \"SD397.E54\" ;\n\tpsn:P1149 ;\n\tprov:wasDerivedFrom wdref:200610d082e6b441027a5ca3f3103396c55fcfd9 .\n\nwd:Q165145 p:P5945 wds:Q165145-750BDA4A-2FF5-4979-A227-4BB19091FB0D .\n\nwds:Q165145-750BDA4A-2FF5-4979-A227-4BB19091FB0D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5945 \"b7415528-aa5c-435d-a13c-a2b33d726385\" ;\n\tprov:wasDerivedFrom wdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 .\n\nwd:Q165145 p:P5984 wds:Q165145-061AE43A-4499-4461-9592-6A3177CBFD42 .\n\nwds:Q165145-061AE43A-4499-4461-9592-6A3177CBFD42 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5984 \"71373\" ;\n\tprov:wasDerivedFrom wdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa .\n\nwd:Q165145 p:P6094 wds:Q165145-AD2B10C2-7B17-4F3C-BD88-E6EE1A120447 .\n\nwds:Q165145-AD2B10C2-7B17-4F3C-BD88-E6EE1A120447 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6094 \"4685\" ;\n\tprov:wasDerivedFrom wdref:72bdb9539d2e1574209db20ee4b2fc3abd3679f9 .\n\nwd:Q165145 p:P6034 wds:Q165145-76174592-BCEA-41D8-8F79-6A93E8118E24 .\n\nwds:Q165145-76174592-BCEA-41D8-8F79-6A93E8118E24 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6034 \"280706\" .\n\nwd:Q165145 p:P6177 wds:Q165145-9A508A0F-EA14-4BEE-AD49-27A754A8263B .\n\nwds:Q165145-9A508A0F-EA14-4BEE-AD49-27A754A8263B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6177 \"172457\" ;\n\tpsn:P6177 ;\n\tprov:wasDerivedFrom wdref:22ce2135adfe2d45928ca94b0363b3ec9f8bb95f .\n\nwd:Q165145 p:P6161 wds:Q165145-915A4CC8-A79E-4DA9-BE30-6B2A9D85D398 .\n\nwds:Q165145-915A4CC8-A79E-4DA9-BE30-6B2A9D85D398 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6161 \"9742\" .\n\nwd:Q165145 p:P6341 wds:Q165145-305C18CF-95F7-47EC-B1FE-E7C21A0C6954 .\n\nwds:Q165145-305C18CF-95F7-47EC-B1FE-E7C21A0C6954 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6341 \"5A7D29A9-16F5-4ED1-BFB7-6CCB7E8780FA\" .\n\nwd:Q165145 p:P1672 wds:Q165145-515d35c9-4869-82ae-90dc-df03f2f906f1 .\n\nwds:Q165145-515d35c9-4869-82ae-90dc-df03f2f906f1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q3914781 .\n\nwd:Q165145 p:P1672 wds:Q165145-58761ac5-43db-5ada-1a16-3305ab4834a5 .\n\nwds:Q165145-58761ac5-43db-5ada-1a16-3305ab4834a5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q55748156 .\n\nwd:Q165145 p:P6864 wds:Q165145-7588a011-8e2f-4890-9a6a-43dcbc123dba .\n\nwds:Q165145-7588a011-8e2f-4890-9a6a-43dcbc123dba a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6864 \"6698\" ;\n\tprov:wasDerivedFrom wdref:a0cc3fef75da4fc0af0eecc1215e7c8a0733ee18 .\n\nwd:Q165145 p:P6933 wds:Q165145-ABDF05D7-9E97-419A-9636-BBECBA9789A5 .\n\nwds:Q165145-ABDF05D7-9E97-419A-9636-BBECBA9789A5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6933 \"Quercus_robur\" .\n\nwd:Q165145 p:P6142 wds:Q165145-5349213A-35B8-4DE4-BBF8-78F34A495C7B .\n\nwds:Q165145-5349213A-35B8-4DE4-BBF8-78F34A495C7B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6142 \"1037\" .\n\nwd:Q165145 p:P7202 wds:Q165145-D0611077-A6EB-4B37-8EA2-636F092AA975 .\n\nwds:Q165145-D0611077-A6EB-4B37-8EA2-636F092AA975 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7202 \"23805\" ;\n\tprov:wasDerivedFrom wdref:1d3b14364cabecbdb80f4cca466d63b80a938fde .\n\nwd:Q165145 p:P7496 wds:Q165145-443196D4-388F-4605-BC24-E31F694D9988 .\n\nwds:Q165145-443196D4-388F-4605-BC24-E31F694D9988 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7496 \"3137\" .\n\nwd:Q165145 p:P7546 wds:Q165145-1197FF99-6BEC-432D-A1D6-7B2F822BFB45 .\n\nwds:Q165145-1197FF99-6BEC-432D-A1D6-7B2F822BFB45 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7546 \"English Oak\" .\n\nwd:Q165145 p:P7552 wds:Q165145-1E869155-0BDD-4D17-A17B-E8D5087FDCF3 .\n\nwds:Q165145-1E869155-0BDD-4D17-A17B-E8D5087FDCF3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7552 \"MX.37990\" ;\n\tprov:wasDerivedFrom wdref:07a7d9dc3b3d90a7819d98ab2fadfb1c9da6fd90 .\n\nwd:Q165145 p:P4214 wds:Q165145-e6cc71d3-4259-b1a8-48fa-a3254947384b .\n\nwds:Q165145-e6cc71d3-4259-b1a8-48fa-a3254947384b a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4214 \"+930\"^^xsd:decimal ;\n\tpsv:P4214 wdv:043329e001a17d1b3aae568fd3ec4251 ;\n\tpsn:P4214 wdv:61dc588f3a33dc6696cabc0152164205 ;\n\tprov:wasDerivedFrom wdref:96fbcc47bec0804bf008a41aac0d8a6f5d3bc6fb .\n\nwd:Q165145 p:P6366 wds:Q165145-7F2C5E7F-ED89-45E3-8281-9F203E02A88E .\n\nwds:Q165145-7F2C5E7F-ED89-45E3-8281-9F203E02A88E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6366 \"2776211871\" ;\n\tpsn:P6366 .\n\nwd:Q165145 p:P6105 wds:Q165145-C556CCB9-816A-4535-B9D9-351DCBA630E3 .\n\nwds:Q165145-C556CCB9-816A-4535-B9D9-351DCBA630E3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6105 \"7286\" .\n\nwd:Q165145 p:P2347 wds:Q165145-B7A47549-0BE9-4433-BB25-75C42D30AB61 .\n\nwds:Q165145-B7A47549-0BE9-4433-BB25-75C42D30AB61 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2347 \"9418\" ;\n\tpsn:P2347 ;\n\tprov:wasDerivedFrom wdref:f9bf1a1f034ddd51bd9928ac535e0f57d748e2cf .\n\nwd:Q165145 p:P5019 wds:Q165145-69B40438-CE2B-402D-946D-D444D08E6768 .\n\nwds:Q165145-69B40438-CE2B-402D-946D-D444D08E6768 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5019 \"sommereiche\" .\n\nwd:Q165145 p:P5019 wds:Q165145-FF156168-39D5-42D8-8793-178EFBFA5CF1 .\n\nwds:Q165145-FF156168-39D5-42D8-8793-178EFBFA5CF1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5019 \"stieleiche\" .\n\nwd:Q165145 p:P8061 wds:Q165145-2054CEED-F974-4E0D-982F-2540B325EA8F .\n\nwds:Q165145-2054CEED-F974-4E0D-982F-2540B325EA8F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8061 \"c_15794\" ;\n\tpsn:P8061 .\n\nwd:Q165145 p:P2004 wds:Q165145-D8C821DB-9AC6-44A6-984B-AFF6B7A4D55A .\n\nwds:Q165145-D8C821DB-9AC6-44A6-984B-AFF6B7A4D55A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2004 \"37168\" ;\n\tpsn:P2004 .\n\nwd:Q165145 p:P8408 wds:Q165145-B76E5266-FA5C-4FF9-BF97-00197724C454 .\n\nwds:Q165145-B76E5266-FA5C-4FF9-BF97-00197724C454 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8408 \"QuercusRobur\" ;\n\tpsn:P8408 ;\n\tprov:wasDerivedFrom wdref:9a681f9dd95c90224547c404e11295f4f7dcf54e .\n\nwd:Q165145 p:P7715 wds:Q165145-9CA7A9AF-845C-4FCB-AA04-D28F7516D212 .\n\nwds:Q165145-9CA7A9AF-845C-4FCB-AA04-D28F7516D212 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7715 \"wfo-0000292858\" ;\n\tprov:wasDerivedFrom wdref:ba81ba3d7197b0b21226d78ff78e9bca98c9060a .\n\nwd:Q165145 p:P8707 wds:Q165145-CECA120D-5867-4E7A-B113-54D8770F896C .\n\nwds:Q165145-CECA120D-5867-4E7A-B113-54D8770F896C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8707 \"102156\" .\n\nwd:Q165145 p:P8765 wds:Q165145-a488c2e1-4087-1616-31d8-68d5259a4839 .\n\nwds:Q165145-a488c2e1-4087-1616-31d8-68d5259a4839 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8765 \"14294\" .\n\nwd:Q165145 p:P8915 wds:Q165145-87725385-F32A-4CC9-B631-A048429B1723 .\n\nwds:Q165145-87725385-F32A-4CC9-B631-A048429B1723 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8915 \"58343\" .\n\nwd:Q165145 p:P6056 wds:Q165145-5DD8279B-4356-41B2-830D-28C5AAF0879E .\n\nwds:Q165145-5DD8279B-4356-41B2-830D-28C5AAF0879E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6056 \"1901-1\" ;\n\tprov:wasDerivedFrom wdref:8931dd12107a5b80dd44729771d17987008c9ff8 .\n\nwd:Q165145 p:P652 wds:Q165145-EA9D9621-8494-4D7F-8CA4-EA0480B53E5A .\n\nwds:Q165145-EA9D9621-8494-4D7F-8CA4-EA0480B53E5A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P652 \"R7QMG0BT2W\" .\n\nwd:Q165145 p:P6756 wds:Q165145-DB1F3DDC-44CE-4D4E-9D89-5124074EA1A0 .\n\nwds:Q165145-DB1F3DDC-44CE-4D4E-9D89-5124074EA1A0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6756 \"Quercus robur\" .\n\nwd:Q165145 p:P9157 wds:Q165145-FF2681CB-87E5-4007-9871-370C53264F55 .\n\nwds:Q165145-FF2681CB-87E5-4007-9871-370C53264F55 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9157 \"239659\" ;\n\tprov:wasDerivedFrom wdref:62990530a319358633159fa90952b2c8ed25f57e .\n\nwd:Q165145 p:P8468 wds:Q165145-826BB4B0-61A8-4FAF-BF07-D871ABA74D61 .\n\nwds:Q165145-826BB4B0-61A8-4FAF-BF07-D871ABA74D61 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8468 \"36783\" .\n\nwd:Q165145 p:P9501 wds:Q165145-14BFF403-E491-445A-AA55-FC39088E01A4 .\n\nwds:Q165145-14BFF403-E491-445A-AA55-FC39088E01A4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9501 \"que_rob\" .\n\nwd:Q165145 p:P9654 wds:Q165145-F0A6101A-4EE5-4770-9533-8D9CBCFC6632 .\n\nwds:Q165145-F0A6101A-4EE5-4770-9533-8D9CBCFC6632 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9654 \"Quercus robur\" .\n\nwd:Q165145 p:P3105 wds:Q165145-5C52A698-DF31-44A9-8033-45830E14264A .\n\nwds:Q165145-5C52A698-DF31-44A9-8033-45830E14264A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3105 \"75316\" ;\n\tprov:wasDerivedFrom wdref:28d1170718b10bb4ed207b2bfd230c6882c07789 .\n\nwd:Q165145 p:P9741 wds:Q165145-A2BCAFAD-44EA-44E0-8B5F-A4DEC6794A00 .\n\nwds:Q165145-A2BCAFAD-44EA-44E0-8B5F-A4DEC6794A00 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9741 \"4000\" .\n\nwd:Q165145 p:P9799 wds:Q165145-F556556E-A272-44A7-BD9C-D8CC35C4013D .\n\nwds:Q165145-F556556E-A272-44A7-BD9C-D8CC35C4013D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9799 \"50324\" .\n\nwd:Q165145 p:P10243 wds:Q165145-1C2B99D0-AD2B-4973-BA0F-B91F915EE4B5 .\n\nwds:Q165145-1C2B99D0-AD2B-4973-BA0F-B91F915EE4B5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10243 \"2.147862\" .\n\nwd:Q165145 p:P10283 wds:Q165145-69B69B36-6D74-487F-97CE-CFD24AB6FAA0 .\n\nwds:Q165145-69B69B36-6D74-487F-97CE-CFD24AB6FAA0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10283 \"C2776211871\" ;\n\tprov:wasDerivedFrom wdref:e0b27d817c9a9b3247df341000fc490bafcba862 .\n\nwd:Q165145 p:P4342 wds:Q165145-8FD926EC-838F-4927-BAC8-243ADEE394ED .\n\nwds:Q165145-8FD926EC-838F-4927-BAC8-243ADEE394ED a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4342 \"sommereik\" .\n\nwd:Q165145 p:P8309 wds:Q165145-7ce211a5-42c6-9eb3-fe10-fe47c4738046 .\n\nwds:Q165145-7ce211a5-42c6-9eb3-fe10-fe47c4738046 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8309 \"18-217471\" .\n\nwd:Q165145 p:P6293 wds:Q165145-e5f0fff7-40eb-2707-42ab-3a446289348d .\n\nwds:Q165145-e5f0fff7-40eb-2707-42ab-3a446289348d a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6293 \"Y104061\" ;\n\tpsn:P6293 .\n\nwd:Q165145 p:P1889 wds:Q165145-231c5e14-41a7-6638-d3b1-17cc0e06848f .\n\nwds:Q165145-231c5e14-41a7-6638-d3b1-17cc0e06848f a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1889 wd:Q3579529 .\n\nwd:Q165145 p:P6114 wds:Q165145-DF31F267-4CE3-4263-B7D4-B7919559F912 .\n\nwds:Q165145-DF31F267-4CE3-4263-B7D4-B7919559F912 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6114 \"271\" .\n\nwd:Q165145 p:P10585 wds:Q165145-A7D6FC1A-3AE9-482F-B736-AE20C89BB276 .\n\nwds:Q165145-A7D6FC1A-3AE9-482F-B736-AE20C89BB276 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10585 \"4R5YN\" .\n\nwd:Q165145 p:P10793 wds:Q165145-ac0ca7fc-42ca-3cd9-2b19-de054edbc9c8 .\n\nwds:Q165145-ac0ca7fc-42ca-3cd9-2b19-de054edbc9c8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10793 \"208\" .\n\nwd:Q165145 p:P691 wds:Q165145-A34E9979-4055-493B-910A-8988BDFC87FC .\n\nwds:Q165145-A34E9979-4055-493B-910A-8988BDFC87FC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P691 \"ph114370\" ;\n\tpq:P1810 \"dub letní\" .\n\nwd:Q165145 p:P1343 wds:Q165145-E08C216A-39A1-4F68-B668-568756F058C0 .\n\nwds:Q165145-E08C216A-39A1-4F68-B668-568756F058C0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q112869398 ;\n\tpq:P304 \"239\" .\n\nwd:Q165145 p:P1343 wds:Q165145-b8291d0e-4da8-8e5b-0170-6f1afa9bd741 .\n\nwds:Q165145-b8291d0e-4da8-8e5b-0170-6f1afa9bd741 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q19133013 ;\n\tpq:P805 wd:Q114640452 ;\n\tpq:P407 wd:Q7737 ;\n\tpq:P585 \"1878-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:4b6fcb2429083a7ef5021ca23059c45c ;\n\tpq:P304 \"288\" .\n\nwd:Q165145 p:P1343 wds:Q165145-bc1f938e-4cdd-83b8-9204-efdcf4b657a0 .\n\nwds:Q165145-bc1f938e-4cdd-83b8-9204-efdcf4b657a0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q5862833 ;\n\tpq:P478 \"5\" ;\n\tpq:P585 \"1936-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:7d90d021a736d1126469a1c14712f70c ;\n\tpq:P304 \"339–340\" ;\n\tpq:P407 wd:Q7737 ;\n\tpq:P50 wd:Q21339272 .\n\nwd:Q165145 p:P8189 wds:Q165145-3A3FCA46-2C77-4429-8962-40BB853621FA .\n\nwds:Q165145-3A3FCA46-2C77-4429-8962-40BB853621FA a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8189 \"987007548267005171\" ;\n\tprov:wasDerivedFrom wdref:ecb7a39cf436eb1fba419853af168ef9f2ba1dab .\n\nwd:Q165145 p:P9714 wds:Q165145-45438587-62AD-499D-B531-FB257E781686 .\n\nwds:Q165145-45438587-62AD-499D-B531-FB257E781686 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9714 wd:Q148 ;\n\tpq:P131 wd:Q47974 ;\n\tprov:wasDerivedFrom wdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5 .\n\nwd:Q165145 p:P10791 wds:Q165145-608eb644-45f2-759b-a7ab-6d5dc559a556 .\n\nwds:Q165145-608eb644-45f2-759b-a7ab-6d5dc559a556 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10791 \"63879\" .\n\nwd:Q165145 p:P3102 wds:Q165145-C7E47E8B-DD84-4E55-9E86-13A9019A5F63 .\n\nwds:Q165145-C7E47E8B-DD84-4E55-9E86-13A9019A5F63 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3102 \"31185\" .\n\nwd:Q165145 p:P6104 wds:Q165145-F004CFA2-5D44-4062-80C9-6404152A0F2E .\n\nwds:Q165145-F004CFA2-5D44-4062-80C9-6404152A0F2E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6104 wd:Q56241615 .\n\nwd:Q165145 p:P11067 wds:Q165145-7279a7bf-4184-bd7a-dc8b-f8f534c744b1 .\n\nwds:Q165145-7279a7bf-4184-bd7a-dc8b-f8f534c744b1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11067 \"379\" .\n\nwd:Q165145 p:P10701 wds:Q165145-2935BEC3-FE21-4B63-A217-AE67666B6A7B .\n\nwds:Q165145-2935BEC3-FE21-4B63-A217-AE67666B6A7B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10701 \"FB613391\" .\n\nwd:Q165145 p:P4000 wds:Q165145-06e784ee-4506-395c-4328-9c73b39da02d .\n\nwds:Q165145-06e784ee-4506-395c-4328-9c73b39da02d a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4000 wd:Q11009 .\n\nwd:Q165145 p:P10711 wds:Q165145-8c878144-4e82-21a5-222c-2b18f3318f07 .\n\nwds:Q165145-8c878144-4e82-21a5-222c-2b18f3318f07 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10711 \"9742\" .\n\nwd:Q165145 p:P9495 wds:Q165145-CEF8BEEC-BDE9-4663-A2EC-048B72510C9C .\n\nwds:Q165145-CEF8BEEC-BDE9-4663-A2EC-048B72510C9C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9495 \"term/c7d94169-dfa7-42e2-bf08-d1418cc8b61c\" .\n\nwd:Q165145 p:P11514 wds:Q165145-D9F2EEFA-A252-4CCB-9B03-06F1D6F2E832 .\n\nwds:Q165145-D9F2EEFA-A252-4CCB-9B03-06F1D6F2E832 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11514 \"dub-chereshchatyi-b6e7e5\" .\n\nwd:Q165145 p:P9503 wds:Q165145-67546B8A-64AB-465C-B3BC-A2BDE8E4239E .\n\nwds:Q165145-67546B8A-64AB-465C-B3BC-A2BDE8E4239E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9503 \"43685\" .\n\nwd:Q165145 p:P11824 wds:Q165145-C26E01B2-A4CE-485F-B2E7-D8300FDBB56D .\n\nwds:Q165145-C26E01B2-A4CE-485F-B2E7-D8300FDBB56D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11824 \"quro\" .\n\nwd:Q165145 p:P2892 wds:Q165145-47FDFF96-DC5F-46C3-BDC0-C44A2ADEFF8D .\n\nwds:Q165145-47FDFF96-DC5F-46C3-BDC0-C44A2ADEFF8D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2892 \"C0330306\" ;\n\tprov:wasDerivedFrom wdref:22d5690dd7dbc0c61260ced6e331cbdb4322e6d1 .\n\nwd:Q165145 p:P10366 wds:Q165145-dbf48317-4162-3b29-c3c9-12927f8d91a7 .\n\nwds:Q165145-dbf48317-4162-3b29-c3c9-12927f8d91a7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10366 \"9213\" .\n\nwd:Q165145 p:P1813 wds:Q165145-439411E1-8BBD-4C0F-B96D-AB3DAAE68E31 .\n\nwds:Q165145-439411E1-8BBD-4C0F-B96D-AB3DAAE68E31 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1813 \"Q. robur\"@mul ;\n\tprov:wasDerivedFrom wdref:f20547ee50ef51494aeef73dfd45ba7be046ad14 .\n\nwd:Q165145 p:P7537 wds:Q165145-D30C49B1-52D0-45EC-8AAF-0080C917D787 .\n\nwds:Q165145-D30C49B1-52D0-45EC-8AAF-0080C917D787 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7537 \"266641\" ;\n\tprov:wasDerivedFrom wdref:ef6dade85f49421e7db939f985e8ae99cc59823f .\n\nwd:Q165145 p:P7587 wds:Q165145-4A5D52BB-6DF4-4D47-8AF4-A09679DC7A86 .\n\nwds:Q165145-4A5D52BB-6DF4-4D47-8AF4-A09679DC7A86 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7587 \"Quercus_robur\" ;\n\tprov:wasDerivedFrom wdref:d1d7c4990e31806a1a6aad395ad1dcc7089d1efe .\n\nwd:Q165145 p:P10333 wds:Q165145-52FD248A-A0E8-4C1D-ADFE-77401DEC80EC .\n\nwds:Q165145-52FD248A-A0E8-4C1D-ADFE-77401DEC80EC a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10333 \"1510\" ;\n\tprov:wasDerivedFrom wdref:6a34e1f3bf074d6799e51cef91875a05ef435336 .\n\nwd:Q165145 p:P11078 wds:Q165145-E00826DF-971E-485A-B877-F7D2552ACA0B .\n\nwds:Q165145-E00826DF-971E-485A-B877-F7D2552ACA0B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11078 \"4150/stilk-eg\" ;\n\tprov:wasDerivedFrom wdref:06ae9714a8c680ab276f8e1db442f688c9b0e8e5 .\n\nwd:Q165145 p:P10561 wds:Q165145-F203D164-880F-4736-B6E6-4F3770D06F0F .\n\nwds:Q165145-F203D164-880F-4736-B6E6-4F3770D06F0F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10561 \"551\" ;\n\tprov:wasDerivedFrom wdref:6c2c858bc4fb0306293e3560b32c6eb59a01f0d7 .\n\nwd:Q165145 p:P11829 wds:Q165145-02D119DB-931B-49C1-A5F1-409D5EF4184D .\n\nwds:Q165145-02D119DB-931B-49C1-A5F1-409D5EF4184D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11829 \"quercus_robur--english_oak\" ;\n\tprov:wasDerivedFrom wdref:cab3057f5db9ea4280db3b574cbcba243caae14c .\n\nwd:Q165145 p:P9691 wds:Q165145-D1B9DA09-1D01-4E49-90AC-51EE0E247066 .\n\nwds:Q165145-D1B9DA09-1D01-4E49-90AC-51EE0E247066 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9691 \"Quercus robur\" ;\n\tprov:wasDerivedFrom wdref:7ea084c3db5e67ecde9e295586e301a55e432449 .\n\nwd:Q165145 p:P9408 wds:Q165145-F95E898F-1EA7-4E71-883F-1AF0303FF54C .\n\nwds:Q165145-F95E898F-1EA7-4E71-883F-1AF0303FF54C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9408 \"78825\" ;\n\tprov:wasDerivedFrom wdref:2f7c729d9a31ad15d727154e099f70e505f0c904 .\n\nwd:Q165145 p:P10709 wds:Q165145-646ED349-EA0E-414B-9A85-16B2912A9673 .\n\nwds:Q165145-646ED349-EA0E-414B-9A85-16B2912A9673 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10709 \"quercus-robur\" ;\n\tprov:wasDerivedFrom wdref:fa3cad23c75341067cf975ccc9fb47e2893382c3 .\n\nwd:Q165145 p:P7544 wds:Q165145-53FE92D5-B1F7-43D4-8EF6-40F15B31514F .\n\nwds:Q165145-53FE92D5-B1F7-43D4-8EF6-40F15B31514F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7544 \"ce8f554e95e82bc275cb5942d4d5f68c\" ;\n\tprov:wasDerivedFrom wdref:22784a394cd3aea5e288e494960389a0d1663ac6 .\n\nwd:Q165145 p:P6098 wds:Q165145-C9ED7432-BD5D-4F2E-9232-F8C6E670500C .\n\nwds:Q165145-C9ED7432-BD5D-4F2E-9232-F8C6E670500C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6098 \"quercus-robur\" ;\n\tprov:wasDerivedFrom wdref:5ea8dd57a23332a6b159dde3772f673cdce6b4ac .\n\nwd:Q165145 p:P12137 wds:Q165145-DCBB8B94-221D-4966-9687-63331EA6274E .\n\nwds:Q165145-DCBB8B94-221D-4966-9687-63331EA6274E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12137 \"specie/quercus-pedunculata\" .\n\nwd:Q165145 p:P4333 wds:Q165145-C53FA71D-BC99-48E4-B667-59912CCDA99C .\n\nwds:Q165145-C53FA71D-BC99-48E4-B667-59912CCDA99C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_900291515.1\" .\n\nwd:Q165145 p:P4333 wds:Q165145-E067D560-CDD1-463D-9067-D1346A31EACE .\n\nwds:Q165145-E067D560-CDD1-463D-9067-D1346A31EACE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_932294415.1\" .\n\nwd:Q165145 p:P4333 wds:Q165145-5E1FE28B-91D4-4A3D-A77B-28854C82E80E .\n\nwds:Q165145-5E1FE28B-91D4-4A3D-A77B-28854C82E80E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4333 \"GCA_932294425.1\" .\n\nwd:Q165145 p:P12179 wds:Q165145-BD6B6872-5F18-4634-AA66-65C766AD6FFE .\n\nwds:Q165145-BD6B6872-5F18-4634-AA66-65C766AD6FFE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12179 \"3377\" ;\n\tprov:wasDerivedFrom wdref:4ec3aeebaa6ec8a593cb8c2c60b57743a320e249 .\n\nwd:Q165145 p:P12182 wds:Q165145-F6D3FBCB-40AD-4D30-B479-568231F3FDBF .\n\nwds:Q165145-F6D3FBCB-40AD-4D30-B479-568231F3FDBF a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12182 \"species/quercus/robur\" ;\n\tprov:wasDerivedFrom wdref:94e0a80b9416e444fed447703b3373de7dd3fff6 .\n\nwd:Q165145 p:P12086 wds:Q165145-D76BE15C-22E5-4F6C-8FD5-17FA680BB1FD .\n\nwds:Q165145-D76BE15C-22E5-4F6C-8FD5-17FA680BB1FD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12086 \"Zomereik\" .\n\nwd:Q165145 p:P6507 wds:Q165145-E0B289D5-E09B-479C-B57C-E9D1ABB66C8C .\n\nwds:Q165145-E0B289D5-E09B-479C-B57C-E9D1ABB66C8C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6507 \"L.\" .\n\nwd:Q165145 p:P8193 wds:Q165145-d339a666-4edf-e141-56a2-b90779c6e7bf .\n\nwds:Q165145-d339a666-4edf-e141-56a2-b90779c6e7bf a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8193 wd:Q96279266 ;\n\tprov:wasDerivedFrom wdref:9181bc4f4878fcc4158a8e608171fd52a8868f7c .\n\nwd:Q165145 p:P10906 wds:Q165145-3314a6eb-48a2-a624-8471-bb925ba7d49b .\n\nwds:Q165145-3314a6eb-48a2-a624-8471-bb925ba7d49b a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10906 wd:Q1131316 .\n\nwd:Q165145 p:P11650 wds:Q165145-6697559f-4b03-17d8-6828-99950adb32a7 .\n\nwds:Q165145-6697559f-4b03-17d8-6828-99950adb32a7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11650 \"18523517\" .\n\nwd:Q165145 p:P9826 wds:Q165145-acb7e1d5-403d-123f-8915-da36a4f66bf3 .\n\nwds:Q165145-acb7e1d5-403d-123f-8915-da36a4f66bf3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9826 \"Дуб черешчатый, летний – Quercus robur L.\" ;\n\tpq:P813 \"2024-03-21T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P813 wdv:1deff99bd5ccadb8e8b385772ff4d247 .\n\nwd:Q165145 p:P12187 wds:Q165145-a9b27b7c-472f-ca2f-fc41-74185c68e817 .\n\nwds:Q165145-a9b27b7c-472f-ca2f-fc41-74185c68e817 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12187 \"VHZZX2NB4BA3PGJCBVEZ2ZHW7I\" .\n\nwd:Q165145 p:P12670 wds:Q165145-71D56AD0-E679-437B-BD76-F3C89054C12F .\n\nwds:Q165145-71D56AD0-E679-437B-BD76-F3C89054C12F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12670 \"8266\" ;\n\tprov:wasDerivedFrom wdref:1b33b4d83351dde126b8c32d5fda20c7ba8f9f2d .\n\nwd:Q165145 p:P12296 wds:Q165145-E1FCD1A8-74EE-48C2-9119-AB07D0ADC16B .\n\nwds:Q165145-E1FCD1A8-74EE-48C2-9119-AB07D0ADC16B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12296 \"97611\" ;\n\tprov:wasDerivedFrom wdref:d99c41681887e3d38d2389b7dea47c05ad94a96a .\n\nwd:Q165145 p:P12292 wds:Q165145-515C1CB9-B624-4088-8AAF-ED0475F0BF81 .\n\nwds:Q165145-515C1CB9-B624-4088-8AAF-ED0475F0BF81 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12292 \"c6e3073b-2ed1-442b-b756-86e3dcc59059\" ;\n\tprov:wasDerivedFrom wdref:a643ae02b2a6b287036f9865b6be7b276cf7d962 .\n\nwd:Q165145 p:P12100 wds:Q165145-3B0001EC-72FF-4FD7-A5F1-68B7994A4A72 .\n\nwds:Q165145-3B0001EC-72FF-4FD7-A5F1-68B7994A4A72 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12100 \"Quercus robur\" ;\n\tprov:wasDerivedFrom wdref:8383d79aab066851aeeddbd2d25b2e5147655873 .\n\nwd:Q165145 p:P12554 wds:Q165145-D41DCC89-41F7-430F-AE41-D27A0E8061E1 .\n\nwds:Q165145-D41DCC89-41F7-430F-AE41-D27A0E8061E1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12554 \"Quercus+robur\" ;\n\tprov:wasDerivedFrom wdref:a06cc0f86df889b618446dcbe0f7700371fd0ad7 .\n\nwd:Q165145 p:P9423 wds:Q165145-12165AD0-B431-4D37-BB49-FF5486F61712 .\n\nwds:Q165145-12165AD0-B431-4D37-BB49-FF5486F61712 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9423 \"7775\" .\n\nwd:Q165145 p:P1420 wds:Q165145-6e2ee37d-4c60-1a56-d54f-576868fadba3 .\n\nwds:Q165145-6e2ee37d-4c60-1a56-d54f-576868fadba3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1420 wd:Q111328943 ;\n\tprov:wasDerivedFrom wdref:f6086d69a610608336e3082a79eaee238b84d644 .\n\nwd:Q165145 p:P1843 wds:Q165145-2997803d-4484-2943-be73-ec103874d231 .\n\nwds:Q165145-2997803d-4484-2943-be73-ec103874d231 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Stieleiche\"@de ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-88a549e0-4b9f-7403-0c22-6b1c9c96a748 .\n\nwds:Q165145-88a549e0-4b9f-7403-0c22-6b1c9c96a748 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Deutsche Eiche\"@de .\n\nwd:Q165145 p:P1843 wds:Q165145-de82ad9f-4b39-603f-bf67-eb7e33c6d235 .\n\nwds:Q165145-de82ad9f-4b39-603f-bf67-eb7e33c6d235 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Sommereiche\"@de .\n\nwd:Q165145 p:P1843 wds:Q165145-C9D77CDD-51DF-4709-88DC-A08231DF7477 .\n\nwds:Q165145-C9D77CDD-51DF-4709-88DC-A08231DF7477 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Stiel-Eiche\"@de ;\n\tprov:wasDerivedFrom wdref:c64768a6caa1534e0e82f29fc4805235c3846107 .\n\nwd:Q165145 p:P1843 wds:Q165145-871BE67A-74EF-4F84-93CD-81E03CE7A4CB .\n\nwds:Q165145-871BE67A-74EF-4F84-93CD-81E03CE7A4CB a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:PreferredRank ;\n\tps:P1843 \"Pedunculate Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978,\n\t\twdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94,\n\t\twdref:27680a583a745484413daff9c9e620fa68d31749 .\n\nwd:Q165145 p:P1843 wds:Q165145-8a63ad09-4f5f-7cba-b795-c256377507bd .\n\nwds:Q165145-8a63ad09-4f5f-7cba-b795-c256377507bd a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Pedunculate oak\"@en .\n\nwd:Q165145 p:P1843 wds:Q165145-43FE3FCF-E775-435C-9966-B08E1025FDA7 .\n\nwds:Q165145-43FE3FCF-E775-435C-9966-B08E1025FDA7 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"pedunculate oak\"@en ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-72C3EA5B-F7E6-4FA2-8B2F-A5E0FFF4BF39 .\n\nwds:Q165145-72C3EA5B-F7E6-4FA2-8B2F-A5E0FFF4BF39 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"European Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978 .\n\nwd:Q165145 p:P1843 wds:Q165145-2591C4C7-461D-4B3E-9831-53134FE32274 .\n\nwds:Q165145-2591C4C7-461D-4B3E-9831-53134FE32274 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"English Oak\"@en ;\n\tprov:wasDerivedFrom wdref:eada84c58a38325085267509899037535799e978,\n\t\twdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94 .\n\nwd:Q165145 p:P1843 wds:Q165145-af172bce-4a8f-c38a-da96-d4cfce6f3ffc .\n\nwds:Q165145-af172bce-4a8f-c38a-da96-d4cfce6f3ffc a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Truffle Oak\"@en ;\n\tprov:wasDerivedFrom wdref:0352ad5356f9ad167b7390e04bdfa308a084d922,\n\t\twdref:ac585a9e426b7d61e460f519e31537d45f63ab94 .\n\nwd:Q165145 p:P1843 wds:Q165145-6f2d15e7-4b1d-80d6-10e1-ea205e642761 .\n\nwds:Q165145-6f2d15e7-4b1d-80d6-10e1-ea205e642761 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"French oak\"@en .\n\nwd:Q165145 p:P1843 wds:Q165145-d4cd8828-4abb-11cf-7031-9ff491b545c7 .\n\nwds:Q165145-d4cd8828-4abb-11cf-7031-9ff491b545c7 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"English oak\"@en ;\n\tprov:wasDerivedFrom wdref:4a9b7589786948d52b86be8f72188bae741e4a0c .\n\nwd:Q165145 p:P1843 wds:Q165145-0C2C2B6C-0C4D-4F80-9D0F-0A612C6D9228 .\n\nwds:Q165145-0C2C2B6C-0C4D-4F80-9D0F-0A612C6D9228 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Chêne Pédonculé\"@fr ;\n\tprov:wasDerivedFrom wdref:362e3c5d6de1d193ef97205ba38834ba075191fc .\n\nwd:Q165145 p:P1843 wds:Q165145-983CAE84-E1AE-42A6-8310-288F277FED75 .\n\nwds:Q165145-983CAE84-E1AE-42A6-8310-288F277FED75 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"chêne pédonculé\"@fr ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-CDCD87FC-D9BB-4671-9469-75750CC84BF3 .\n\nwds:Q165145-CDCD87FC-D9BB-4671-9469-75750CC84BF3 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Zomereik\"@nl ;\n\tprov:wasDerivedFrom wdref:c0a11c33e1269de68db514169e1aa70667fa8666 .\n\nwd:Q165145 p:P1843 wds:Q165145-97C44073-337C-4D8C-93B1-26774E815B75 .\n\nwds:Q165145-97C44073-337C-4D8C-93B1-26774E815B75 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"zomereik\"@nl ;\n\tprov:wasDerivedFrom wdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e .\n\nwd:Q165145 p:P1843 wds:Q165145-448BC12E-825F-487C-905C-E9542F9B0D35 .\n\nwds:Q165145-448BC12E-825F-487C-905C-E9542F9B0D35 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"dub letní\"@cs ;\n\tprov:wasDerivedFrom wdref:e4038602d6b6524c2ae63f184cdd1cc3ec67a37a .\n\nwd:Q165145 p:P1843 wds:Q165145-EFEAE195-DFA2-4C47-8659-A66C9F980C41 .\n\nwds:Q165145-EFEAE195-DFA2-4C47-8659-A66C9F980C41 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"metsätammi\"@fi ;\n\tprov:wasDerivedFrom wdref:e7ababbc02c927e7a635872c9d70efe98410c8d3 .\n\nwd:Q165145 p:P1843 wds:Q165145-6509b9c8-4b16-32b8-f401-99dad76e4c9e .\n\nwds:Q165145-6509b9c8-4b16-32b8-f401-99dad76e4c9e a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"дуб звычайны\"@be-tarask .\n\nwd:Q165145 p:P1843 wds:Q165145-b055804a-4e8b-fdd4-9fcd-8f5c0610317c .\n\nwds:Q165145-b055804a-4e8b-fdd4-9fcd-8f5c0610317c a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"farnia\"@it .\n\nwd:Q165145 p:P1843 wds:Q165145-3a9bc96d-4cc3-8126-a81f-7cf0162a479a .\n\nwds:Q165145-3a9bc96d-4cc3-8126-a81f-7cf0162a479a a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"стежер\"@mk .\n\nwd:Q165145 p:P1843 wds:Q165145-a0326b9b-4c7f-534e-080a-0b682d0e2243 .\n\nwds:Q165145-a0326b9b-4c7f-534e-080a-0b682d0e2243 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"roble común\"@es .\n\nwd:Q165145 p:P1843 wds:Q165145-0479c541-476d-9965-171a-ad88f00fef17 .\n\nwds:Q165145-0479c541-476d-9965-171a-ad88f00fef17 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"roble carballo\"@es .\n\nwd:Q165145 p:P1843 wds:Q165145-7620DABC-4EDD-4919-816D-B76997D68F25 .\n\nwds:Q165145-7620DABC-4EDD-4919-816D-B76997D68F25 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎\"@zh-hans ;\n\tprov:wasDerivedFrom wdref:61224d88b30998fe0b42c1a46f5c697733a95d49,\n\t\twdref:96fd73e6eed9326f46a773a2147935e22ea6be64 .\n\nwd:Q165145 p:P1843 wds:Q165145-6216C892-385B-411E-90B7-CB61812F1F6C .\n\nwds:Q165145-6216C892-385B-411E-90B7-CB61812F1F6C a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎\"@zh ;\n\tprov:wasDerivedFrom wdref:bbae94e02e82d1e842e8612397e5e45f07cb1db5,\n\t\twdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5,\n\t\twdref:4aa3ef7b09734f4d57c3e7f552074cb7fa18c5b1 .\n\nwd:Q165145 p:P1843 wds:Q165145-B26175C4-6563-4CE8-AE8A-981A8914ABDE .\n\nwds:Q165145-B26175C4-6563-4CE8-AE8A-981A8914ABDE a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"柞树叶\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-39CD58F2-1BD3-4ED8-9253-1B8CE970DA91 .\n\nwds:Q165145-39CD58F2-1BD3-4ED8-9253-1B8CE970DA91 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"夏栎*(橡树)\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-00C2FA09-749B-482B-8842-2B32321FFCC0 .\n\nwds:Q165145-00C2FA09-749B-482B-8842-2B32321FFCC0 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"橡子\"@zh ;\n\tprov:wasDerivedFrom wdref:cc2271e27add77b47c98d28a96827ed0a10cda8d .\n\nwd:Q165145 p:P1843 wds:Q165145-8BB2F4D0-4B63-4770-B77A-D75DFDAFA76A .\n\nwds:Q165145-8BB2F4D0-4B63-4770-B77A-D75DFDAFA76A a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"carbayu\"@ast ;\n\tprov:wasDerivedFrom wdref:25371c05886d508f0bd3b89319c1e188ec3c8883 .\n\nwd:Q165145 p:P1843 wds:Q165145-830ce853-4d13-45d7-8cdc-362390487d28 .\n\nwds:Q165145-830ce853-4d13-45d7-8cdc-362390487d28 a wikibase:Statement ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"dob\"@sl ;\n\tprov:wasDerivedFrom wdref:f76860944072719f61df28202589e186d5b936fc .\n\nwd:Q165145 p:P12616 wds:Q165145-d34aac6e-41d4-abf6-6a54-e87722e29f90 .\n\nwds:Q165145-d34aac6e-41d4-abf6-6a54-e87722e29f90 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q12364191 .\n\nwd:Q165145 p:P12616 wds:Q165145-bf223085-4ab8-9242-bcbc-cd450ac20774 .\n\nwds:Q165145-bf223085-4ab8-9242-bcbc-cd450ac20774 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q12379403 .\n\nwd:Q165145 p:P12616 wds:Q165145-8e636ba8-4962-cefb-b107-35908da28da8 .\n\nwds:Q165145-8e636ba8-4962-cefb-b107-35908da28da8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q131939033 .\n\nwd:Q165145 p:P12616 wds:Q165145-0c7b4098-4a1d-c7a5-8ceb-048bea50907c .\n\nwds:Q165145-0c7b4098-4a1d-c7a5-8ceb-048bea50907c a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12616 wd:Q136087938 .\n\nwd:Q165145 p:P13591 wds:Q165145-E56449B2-DAFB-4AD8-934E-67ABB4AF2D4D .\n\nwds:Q165145-E56449B2-DAFB-4AD8-934E-67ABB4AF2D4D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13591 \"concept/4c553524-61f0-42eb-bdcf-1ef6854af849\" .\n\nwd:Q165145 p:P13734 wds:Q165145-F950AFC1-719C-4947-BAF5-D334F23DC951 .\n\nwds:Q165145-F950AFC1-719C-4947-BAF5-D334F23DC951 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13734 \"R12771\" ;\n\tprov:wasDerivedFrom wdref:7f65d78cb2248e5d0f7eec2715fc0f39c9b6fd3c .\n\nwd:Q165145 p:P6870 wds:Q165145-A5788B0E-FB9D-499C-843C-971E0D970FB4 .\n\nwds:Q165145-A5788B0E-FB9D-499C-843C-971E0D970FB4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6870 \"158799\" .\n\nwd:Q165145 p:P3101 wds:Q165145-1D1ABAA8-C004-4141-BC0E-C2A41F347BA6 .\n\nwds:Q165145-1D1ABAA8-C004-4141-BC0E-C2A41F347BA6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3101 \"48566\" .\n\nwd:Q165145 p:P13478 wds:Q165145-5f173266-409b-315b-0413-d1a4be61c1eb .\n\nwds:Q165145-5f173266-409b-315b-0413-d1a4be61c1eb a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P13478 wd:Q12004 .\n\nwd:Q165145 p:P5252 wds:Q165145-e349e2da-43f6-6a96-d251-2fbaebfe7f28 .\n\nwds:Q165145-e349e2da-43f6-6a96-d251-2fbaebfe7f28 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5252 .\n\nwd:Q165145 rdfs:label \"夏栎\"@zh-hans ;\n\tskos:prefLabel \"夏栎\"@zh-hans ;\n\tschema:name \"夏栎\"@zh-hans ;\n\trdfs:label \"夏櫟\"@zh-hant ;\n\tskos:prefLabel \"夏櫟\"@zh-hant ;\n\tschema:name \"夏櫟\"@zh-hant ;\n\trdfs:label \"夏櫟\"@zh-hk ;\n\tskos:prefLabel \"夏櫟\"@zh-hk ;\n\tschema:name \"夏櫟\"@zh-hk ;\n\trdfs:label \"夏栎\"@zh-cn ;\n\tskos:prefLabel \"夏栎\"@zh-cn ;\n\tschema:name \"夏栎\"@zh-cn ;\n\trdfs:label \"夏栎\"@zh-sg ;\n\tskos:prefLabel \"夏栎\"@zh-sg ;\n\tschema:name \"夏栎\"@zh-sg ;\n\trdfs:label \"夏櫟\"@zh-tw ;\n\tskos:prefLabel \"夏櫟\"@zh-tw ;\n\tschema:name \"夏櫟\"@zh-tw ;\n\trdfs:label \"Haritz kandudun\"@eu ;\n\tskos:prefLabel \"Haritz kandudun\"@eu ;\n\tschema:name \"Haritz kandudun\"@eu ;\n\trdfs:label \"dąb szypułkowy\"@pl ;\n\tskos:prefLabel \"dąb szypułkowy\"@pl ;\n\tschema:name \"dąb szypułkowy\"@pl ;\n\trdfs:label \"Hrast lužnjak\"@bs ;\n\tskos:prefLabel \"Hrast lužnjak\"@bs ;\n\tschema:name \"Hrast lužnjak\"@bs ;\n\trdfs:label \"Quercus robur\"@es ;\n\tskos:prefLabel \"Quercus robur\"@es ;\n\tschema:name \"Quercus robur\"@es ;\n\trdfs:label \"kocsányos tölgy\"@hu ;\n\tskos:prefLabel \"kocsányos tölgy\"@hu ;\n\tschema:name \"kocsányos tölgy\"@hu ;\n\trdfs:label \"سنديان قوي\"@ar ;\n\tskos:prefLabel \"سنديان قوي\"@ar ;\n\tschema:name \"سنديان قوي\"@ar ;\n\trdfs:label \"zomereik\"@nl ;\n\tskos:prefLabel \"zomereik\"@nl ;\n\tschema:name \"zomereik\"@nl ;\n\trdfs:label \"carvalho-roble\"@pt ;\n\tskos:prefLabel \"carvalho-roble\"@pt ;\n\tschema:name \"carvalho-roble\"@pt ;\n\trdfs:label \"Tigfrukta kverko\"@eo ;\n\tskos:prefLabel \"Tigfrukta kverko\"@eo ;\n\tschema:name \"Tigfrukta kverko\"@eo ;\n\trdfs:label \"Lužnjak\"@sr-el ;\n\tskos:prefLabel \"Lužnjak\"@sr-el ;\n\tschema:name \"Lužnjak\"@sr-el ;\n\trdfs:label \"Лужњак\"@sr-ec ;\n\tskos:prefLabel \"Лужњак\"@sr-ec ;\n\tschema:name \"Лужњак\"@sr-ec ;\n\trdfs:label \"tammi\"@fi ;\n\tskos:prefLabel \"tammi\"@fi ;\n\tschema:name \"tammi\"@fi ;\n\trdfs:label \"дуб звичайний\"@uk ;\n\tskos:prefLabel \"дуб звичайний\"@uk ;\n\tschema:name \"дуб звичайний\"@uk ;\n\trdfs:label \"Yay palıdı\"@az ;\n\tskos:prefLabel \"Yay palıdı\"@az ;\n\tschema:name \"Yay palıdı\"@az ;\n\trdfs:label \"Hrast lužnjak\"@hr ;\n\tskos:prefLabel \"Hrast lužnjak\"@hr ;\n\tschema:name \"Hrast lužnjak\"@hr ;\n\trdfs:label \"Quercus robur\"@lmo ;\n\tskos:prefLabel \"Quercus robur\"@lmo ;\n\tschema:name \"Quercus robur\"@lmo ;\n\trdfs:label \"Stilk-Eg\"@da ;\n\tskos:prefLabel \"Stilk-Eg\"@da ;\n\tschema:name \"Stilk-Eg\"@da ;\n\trdfs:label \"Quercus robur\"@pms ;\n\tskos:prefLabel \"Quercus robur\"@pms ;\n\tschema:name \"Quercus robur\"@pms ;\n\trdfs:label \"Дуб звычайны\"@be ;\n\tskos:prefLabel \"Дуб звычайны\"@be ;\n\tschema:name \"Дуб звычайны\"@be ;\n\trdfs:label \"Quercus robur\"@it ;\n\tskos:prefLabel \"Quercus robur\"@it ;\n\tschema:name \"Quercus robur\"@it ;\n\trdfs:label \"ヨーロッパナラ\"@ja ;\n\tskos:prefLabel \"ヨーロッパナラ\"@ja ;\n\tschema:name \"ヨーロッパナラ\"@ja ;\n\trdfs:label \"Тум\"@mrj ;\n\tskos:prefLabel \"Тум\"@mrj ;\n\tschema:name \"Тум\"@mrj ;\n\trdfs:label \"Quercus robur\"@vi ;\n\tskos:prefLabel \"Quercus robur\"@vi ;\n\tschema:name \"Quercus robur\"@vi ;\n\trdfs:label \"Šiškaty dub\"@hsb ;\n\tskos:prefLabel \"Šiškaty dub\"@hsb ;\n\tschema:name \"Šiškaty dub\"@hsb ;\n\trdfs:label \"Dub letný\"@sk ;\n\tskos:prefLabel \"Dub letný\"@sk ;\n\tschema:name \"Dub letný\"@sk ;\n\trdfs:label \"roure pènol\"@ca ;\n\tskos:prefLabel \"roure pènol\"@ca ;\n\tschema:name \"roure pènol\"@ca ;\n\trdfs:label \"Quercus robur\"@la ;\n\tskos:prefLabel \"Quercus robur\"@la ;\n\tschema:name \"Quercus robur\"@la ;\n\trdfs:label \"Ōžouls\"@sgs ;\n\tskos:prefLabel \"Ōžouls\"@sgs ;\n\tschema:name \"Ōžouls\"@sgs ;\n\trdfs:label \"dub letní\"@cs ;\n\tskos:prefLabel \"dub letní\"@cs ;\n\tschema:name \"dub letní\"@cs ;\n\trdfs:label \"обикновен дъб\"@bg ;\n\tskos:prefLabel \"обикновен дъб\"@bg ;\n\tschema:name \"обикновен дъб\"@bg ;\n\trdfs:label \"K'aspicha ruwli\"@qu ;\n\tskos:prefLabel \"K'aspicha ruwli\"@qu ;\n\tschema:name \"K'aspicha ruwli\"@qu ;\n\trdfs:label \"harilik tamm\"@et ;\n\tskos:prefLabel \"harilik tamm\"@et ;\n\tschema:name \"harilik tamm\"@et ;\n\trdfs:label \"پیڈنکلیٹ بلوط\"@pnb ;\n\tskos:prefLabel \"پیڈنکلیٹ بلوط\"@pnb ;\n\tschema:name \"پیڈنکلیٹ بلوط\"@pnb ;\n\trdfs:label \"ek\"@sv ;\n\tskos:prefLabel \"ek\"@sv ;\n\tschema:name \"ek\"@sv ;\n\trdfs:label \"дуб черешчатый\"@ru ;\n\tskos:prefLabel \"дуб черешчатый\"@ru ;\n\tschema:name \"дуб черешчатый\"@ru ;\n\trdfs:label \"Quercus robur\"@ast ;\n\tskos:prefLabel \"Quercus robur\"@ast ;\n\tschema:name \"Quercus robur\"@ast ;\n\trdfs:label \"sommareik\"@nn ;\n\tskos:prefLabel \"sommareik\"@nn ;\n\tschema:name \"sommareik\"@nn ;\n\trdfs:label \"Rovro\"@io ;\n\tskos:prefLabel \"Rovro\"@io ;\n\tschema:name \"Rovro\"@io ;\n\trdfs:label \"chêne pédonculé\"@fr ;\n\tskos:prefLabel \"chêne pédonculé\"@fr ;\n\tschema:name \"chêne pédonculé\"@fr ;\n\trdfs:label \"Róra\"@eml ;\n\tskos:prefLabel \"Róra\"@eml ;\n\tschema:name \"Róra\"@eml ;\n\trdfs:label \"parastais ozols\"@lv ;\n\tskos:prefLabel \"parastais ozols\"@lv ;\n\tschema:name \"parastais ozols\"@lv ;\n\trdfs:label \"carballo común\"@gl ;\n\tskos:prefLabel \"carballo común\"@gl ;\n\tschema:name \"carballo común\"@gl ;\n\trdfs:label \"Stieleiche\"@de ;\n\tskos:prefLabel \"Stieleiche\"@de ;\n\tschema:name \"Stieleiche\"@de ;\n\trdfs:label \"Hrast lužnjak\"@sh ;\n\tskos:prefLabel \"Hrast lužnjak\"@sh ;\n\tschema:name \"Hrast lužnjak\"@sh ;\n\trdfs:label \"Quercus robur\"@en ;\n\tskos:prefLabel \"Quercus robur\"@en ;\n\tschema:name \"Quercus robur\"@en ;\n\trdfs:label \"stejar\"@ro ;\n\tskos:prefLabel \"stejar\"@ro ;\n\tschema:name \"stejar\"@ro ;\n\trdfs:label \"dob\"@sl ;\n\tskos:prefLabel \"dob\"@sl ;\n\tschema:name \"dob\"@sl ;\n\trdfs:label \"тумо\"@mhr ;\n\tskos:prefLabel \"тумо\"@mhr ;\n\tschema:name \"тумо\"@mhr ;\n\trdfs:label \"Paprastasis ąžuolas\"@lt ;\n\tskos:prefLabel \"Paprastasis ąžuolas\"@lt ;\n\tschema:name \"Paprastasis ąžuolas\"@lt ;\n\trdfs:label \"夏栎\"@zh ;\n\tskos:prefLabel \"夏栎\"@zh ;\n\tschema:name \"夏栎\"@zh ;\n\trdfs:label \"лужњак\"@sr ;\n\tskos:prefLabel \"лужњак\"@sr ;\n\tschema:name \"лужњак\"@sr ;\n\trdfs:label \"Quercus robur\"@ka ;\n\tskos:prefLabel \"Quercus robur\"@ka ;\n\tschema:name \"Quercus robur\"@ka ;\n\trdfs:label \"sommereik\"@nb ;\n\tskos:prefLabel \"sommereik\"@nb ;\n\tschema:name \"sommereik\"@nb ;\n\trdfs:label \"بلوط قرمز اروپایی\"@fa ;\n\tskos:prefLabel \"بلوط قرمز اروپایی\"@fa ;\n\tschema:name \"بلوط قرمز اروپایی\"@fa ;\n\trdfs:label \"Тумо\"@myv ;\n\tskos:prefLabel \"Тумо\"@myv ;\n\tschema:name \"Тумо\"@myv ;\n\trdfs:label \"Dar\"@kw ;\n\tskos:prefLabel \"Dar\"@kw ;\n\tschema:name \"Dar\"@kw ;\n\trdfs:label \"Quercus robur\"@war ;\n\tskos:prefLabel \"Quercus robur\"@war ;\n\tschema:name \"Quercus robur\"@war ;\n\trdfs:label \"Quercus robur\"@ceb ;\n\tskos:prefLabel \"Quercus robur\"@ceb ;\n\tschema:name \"Quercus robur\"@ceb ;\n\trdfs:label \"Derwen mes coesynnog\"@cy ;\n\tskos:prefLabel \"Derwen mes coesynnog\"@cy ;\n\tschema:name \"Derwen mes coesynnog\"@cy ;\n\trdfs:label \"Sumareik\"@is ;\n\tskos:prefLabel \"Sumareik\"@is ;\n\tschema:name \"Sumareik\"@is ;\n\trdfs:label \"Stilleech\"@lb ;\n\tskos:prefLabel \"Stilleech\"@lb ;\n\tschema:name \"Stilleech\"@lb ;\n\trdfs:label \"Stieleiche\"@de-ch ;\n\tskos:prefLabel \"Stieleiche\"@de-ch ;\n\tschema:name \"Stieleiche\"@de-ch ;\n\trdfs:label \"Quercus robur\"@en-ca ;\n\tskos:prefLabel \"Quercus robur\"@en-ca ;\n\tschema:name \"Quercus robur\"@en-ca ;\n\trdfs:label \"carvalho-roble\"@pt-br ;\n\tskos:prefLabel \"carvalho-roble\"@pt-br ;\n\tschema:name \"carvalho-roble\"@pt-br ;\n\trdfs:label \"로부르참나무\"@ko ;\n\tskos:prefLabel \"로부르참나무\"@ko ;\n\tschema:name \"로부르참나무\"@ko ;\n\trdfs:label \"կաղնի ամառային\"@hy ;\n\tskos:prefLabel \"կաղնի ամառային\"@hy ;\n\tschema:name \"կաղնի ամառային\"@hy ;\n\trdfs:label \"Steeleik\"@af ;\n\tskos:prefLabel \"Steeleik\"@af ;\n\tschema:name \"Steeleik\"@af ;\n\trdfs:label \"Кәдімгі емен\"@kk ;\n\tskos:prefLabel \"Кәдімгі емен\"@kk ;\n\tschema:name \"Кәдімгі емен\"@kk ;\n\trdfs:label \"Tammi\"@olo ;\n\tskos:prefLabel \"Tammi\"@olo ;\n\tschema:name \"Tammi\"@olo ;\n\trdfs:label \"یای پالیدی\"@azb ;\n\tskos:prefLabel \"یای پالیدی\"@azb ;\n\tschema:name \"یای پالیدی\"@azb ;\n\trdfs:label \"dair ghallda\"@ga ;\n\tskos:prefLabel \"dair ghallda\"@ga ;\n\tschema:name \"dair ghallda\"@ga ;\n\trdfs:label \"Ruver cumin\"@rm ;\n\tskos:prefLabel \"Ruver cumin\"@rm ;\n\tschema:name \"Ruver cumin\"@rm ;\n\trdfs:label \"eaika\"@se ;\n\tskos:prefLabel \"eaika\"@se ;\n\tschema:name \"eaika\"@se ;\n\trdfs:label \"Quercus robur\"@nds ;\n\tskos:prefLabel \"Quercus robur\"@nds ;\n\tschema:name \"Quercus robur\"@nds ;\n\trdfs:label \"אלון אנגלי\"@he ;\n\tskos:prefLabel \"אלון אנגלי\"@he ;\n\tschema:name \"אלון אנגלי\"@he ;\n\trdfs:label \"夏栎\"@wuu ;\n\tskos:prefLabel \"夏栎\"@wuu ;\n\tschema:name \"夏栎\"@wuu ;\n\trdfs:label \"Saplı meşe\"@tr ;\n\tskos:prefLabel \"Saplı meşe\"@tr ;\n\tschema:name \"Saplı meşe\"@tr ;\n\trdfs:label \"Quercus robur\"@id ;\n\tskos:prefLabel \"Quercus robur\"@id ;\n\tschema:name \"Quercus robur\"@id ;\n\trdfs:label \"Quercus robur\"@sq ;\n\tskos:prefLabel \"Quercus robur\"@sq ;\n\tschema:name \"Quercus robur\"@sq ;\n\trdfs:label \"дуб летні\"@be-tarask ;\n\tskos:prefLabel \"дуб летні\"@be-tarask ;\n\tschema:name \"дуб летні\"@be-tarask ;\n\trdfs:label \"سنديان قوى\"@arz ;\n\tskos:prefLabel \"سنديان قوى\"@arz ;\n\tschema:name \"سنديان قوى\"@arz ;\n\trdfs:label \"стежер\"@mk ;\n\tskos:prefLabel \"стежер\"@mk ;\n\tschema:name \"стежер\"@mk ;\n\trdfs:label \"Quercus robur\"@an ;\n\tskos:prefLabel \"Quercus robur\"@an ;\n\tschema:name \"Quercus robur\"@an ;\n\trdfs:label \"Quercus robur\"@vo ;\n\tskos:prefLabel \"Quercus robur\"@vo ;\n\tschema:name \"Quercus robur\"@vo ;\n\trdfs:label \"Quercus robur\"@ia ;\n\tskos:prefLabel \"Quercus robur\"@ia ;\n\tschema:name \"Quercus robur\"@ia ;\n\trdfs:label \"Quercus robur\"@ie ;\n\tskos:prefLabel \"Quercus robur\"@ie ;\n\tschema:name \"Quercus robur\"@ie ;\n\trdfs:label \"Quercus robur\"@oc ;\n\tskos:prefLabel \"Quercus robur\"@oc ;\n\tschema:name \"Quercus robur\"@oc ;\n\trdfs:label \"Quercus robur\"@ext ;\n\tskos:prefLabel \"Quercus robur\"@ext ;\n\tschema:name \"Quercus robur\"@ext ;\n\trdfs:label \"Ρουπακοβελανιδιά\"@el ;\n\tskos:prefLabel \"Ρουπακοβελανιδιά\"@el ;\n\tschema:name \"Ρουπακοβελανιδιά\"@el ;\n\trdfs:label \"čââʹrrmuõrr\"@sms ;\n\tskos:prefLabel \"čââʹrrmuõrr\"@sms ;\n\tschema:name \"čââʹrrmuõrr\"@sms ;\n\trdfs:label \"Ахаль юман\"@cv ;\n\tskos:prefLabel \"Ахаль юман\"@cv ;\n\tschema:name \"Ахаль юман\"@cv ;\n\trdfs:label \"Quercus robur\"@uz ;\n\tskos:prefLabel \"Quercus robur\"@uz ;\n\tschema:name \"Quercus robur\"@uz ;\n\trdfs:label \"Someriakebuum\"@frr ;\n\tskos:prefLabel \"Someriakebuum\"@frr ;\n\tschema:name \"Someriakebuum\"@frr ;\n\trdfs:label \"Tamm\"@vro ;\n\tskos:prefLabel \"Tamm\"@vro ;\n\tschema:name \"Tamm\"@vro ;\n\trdfs:label \"Quercus robur\"@co ;\n\tskos:prefLabel \"Quercus robur\"@co ;\n\tschema:name \"Quercus robur\"@co ;\n\trdfs:label \"Quercus robur\"@mul ;\n\tskos:prefLabel \"Quercus robur\"@mul ;\n\tschema:name \"Quercus robur\"@mul ;\n\trdfs:label \"Quercus robur\"@ig ;\n\tskos:prefLabel \"Quercus robur\"@ig ;\n\tschema:name \"Quercus robur\"@ig ;\n\tschema:description \"specie di pianta della famiglia Fagaceae\"@it,\n\t\t\"espèce d'arbres à feuilles caduques\"@fr,\n\t\t\"Art der Gattung Stieleichen (Quercus)\"@de,\n\t\t\"növényfaj\"@hu,\n\t\t\"گونه‌ای از بلوط\"@fa,\n\t\t\"species of plant\"@en,\n\t\t\"вид растение\"@bg,\n\t\t\"soort uit het geslacht eik\"@nl,\n\t\t\"druh dubu\"@cs,\n\t\t\"نوع من النباتات\"@ar,\n\t\t\"բույսերի տեսակ\"@hy,\n\t\t\"pyökkikasveihin kuuluva lehtipuulaji\"@fi,\n\t\t\"especie de planta\"@gl,\n\t\t\"especie de planta\"@es,\n\t\t\"espècie de planta\"@ca,\n\t\t\"lloj i bimëve\"@sq,\n\t\t\"উদ্ভিদের প্রজাতি\"@bn,\n\t\t\"מין של צמח\"@he,\n\t\t\"specie de plante\"@ro,\n\t\t\"вид растений\"@ru,\n\t\t\"speco di planto\"@io,\n\t\t\"вид рослин, листопадне дерево\"@uk,\n\t\t\"plantspesie\"@af,\n\t\t\"壳斗科栎属的一种植物\"@zh,\n\t\t\"specio de plantoj\"@eo,\n\t\t\"especie de planta\"@ast,\n\t\t\"vrsta hrasta\"@hr,\n\t\t\"Eken soort\"@nds,\n\t\t\"gatunek rośliny\"@pl,\n\t\t\"від расьлінаў\"@be-tarask,\n\t\t\"вид даб\"@mk,\n\t\t\"loài thực vật\"@vi,\n\t\t\"planteart\"@nb,\n\t\t\"augu suga\"@lv,\n\t\t\"växtart\"@sv,\n\t\t\"ചെടിയുടെ ഇനം\"@ml,\n\t\t\"від раслін\"@be,\n\t\t\"planteart\"@nn,\n\t\t\"vrsta rastlin v rodu Quercus (hrast)\"@sl,\n\t\t\"taimeliik\"@et,\n\t\t\"bitki növü\"@az,\n\t\t\"ụdị osisi\"@ig,\n\t\t\"espécie de planta\"@pt,\n\t\t\"espécie de planta\"@pt-br ;\n\tskos:altLabel \"長柄櫟\"@zh,\n\t\t\"英國櫟\"@zh,\n\t\t\"歐洲有柄橡木\"@zh,\n\t\t\"夏橡\"@zh,\n\t\t\"柞树叶\"@zh,\n\t\t\"橡子\"@zh,\n\t\t\"橡树\"@zh,\n\t\t\"Quercus pedunculata\"@eu,\n\t\t\"Haritz kanduduna\"@eu,\n\t\t\"Haritz arrunt\"@eu,\n\t\t\"Dąb szypułkowiec\"@pl,\n\t\t\"Quercus brutia var. thomasii\"@es,\n\t\t\"Quercus brutia subsp pedunculiflora\"@es,\n\t\t\"Quercus robur var brutia\"@es,\n\t\t\"Quercus erucifolia var. imeretina\"@es,\n\t\t\"Quercus pedunculata subsp pedunculiflora\"@es,\n\t\t\"Quercus pedunculata var. pedunculiflora\"@es,\n\t\t\"Quercus robur var. brutia\"@es,\n\t\t\"Quercus pedunculata\"@es,\n\t\t\"Quercus brutia subsp. pedunculiflora\"@es,\n\t\t\"Quercus imeretina\"@es,\n\t\t\"Quercus robur var thomasii\"@es,\n\t\t\"Quercus pedunculata var. brevipetiolata\"@es,\n\t\t\"Quercus racemosa\"@es,\n\t\t\"cajiga\"@es,\n\t\t\"roble común\"@es,\n\t\t\"roble carballo\"@es,\n\t\t\"roble fresnal\"@es,\n\t\t\"بلوط قوي\"@ar,\n\t\t\"سنديان أسود\"@ar,\n\t\t\"Inlandse eik\"@nl,\n\t\t\"carvalho roble\"@pt,\n\t\t\"carvalho alvarinho\"@pt,\n\t\t\"carvalho-alvarinho\"@pt,\n\t\t\"Рошњак\"@sr,\n\t\t\"Храст лужњак\"@sr,\n\t\t\"Лужник\"@sr,\n\t\t\"Рани храст\"@sr,\n\t\t\"metsätammi\"@fi,\n\t\t\"Дуб звичайний\"@uk,\n\t\t\"Дуб черещатий\"@uk,\n\t\t\"Rugura\"@lmo,\n\t\t\"Rogora\"@lmo,\n\t\t\"Stilkeg\"@da,\n\t\t\"Eg\"@da,\n\t\t\"Quercus robur\"@da,\n\t\t\"Quereus robur\"@da,\n\t\t\"Дуб чарэшчаты\"@be,\n\t\t\"Дуб летні\"@be,\n\t\t\"Farnie\"@it,\n\t\t\"Quercus pedunculata\"@it,\n\t\t\"Farnia\"@it,\n\t\t\"コモンオーク\"@ja,\n\t\t\"イギリスナラ\"@ja,\n\t\t\"イングリッシュオーク\"@ja,\n\t\t\"オウシュウナラ\"@ja,\n\t\t\"欧州楢\"@ja,\n\t\t\"Ōžuols\"@sgs,\n\t\t\"Quercus pedunculata\"@cs,\n\t\t\"dub křemelák\"@cs,\n\t\t\"křemelák\"@cs,\n\t\t\"летен дъб\"@bg,\n\t\t\"Bellota\"@qu,\n\t\t\"Quercus robur\"@qu,\n\t\t\"Walluta\"@qu,\n\t\t\"Balluta\"@qu,\n\t\t\"tamm\"@et,\n\t\t\"Vanlig Ek\"@sv,\n\t\t\"Stjälkek\"@sv,\n\t\t\"Sommarek\"@sv,\n\t\t\"Skogsek\"@sv,\n\t\t\"Дуб обыкновенный\"@ru,\n\t\t\"Обыкновенный дуб\"@ru,\n\t\t\"Дуб английский\"@ru,\n\t\t\"Quercus longaeva\"@ru,\n\t\t\"Дуб летний\"@ru,\n\t\t\"Quercus pedunculata\"@ru,\n\t\t\"Дуб имеретинский\"@ru,\n\t\t\"Carbayu\"@ast,\n\t\t\"Sumareik\"@nn,\n\t\t\"Quercus pedunculata\"@nn,\n\t\t\"Chêne pyramidal\"@fr,\n\t\t\"Quercus pedunculata\"@fr,\n\t\t\"chêne\"@fr,\n\t\t\"Ozols\"@lv,\n\t\t\"carballo bravo\"@gl,\n\t\t\"Stiel-Eiche\"@de,\n\t\t\"Sommereiche\"@de,\n\t\t\"Sommer-Eiche\"@de,\n\t\t\"Quercus pedunculata\"@de,\n\t\t\"stejarul\"@ro,\n\t\t\"stejar pedunculat\"@ro,\n\t\t\"Quercus pedunculata\"@ro,\n\t\t\"Quercus longaeva\"@ro,\n\t\t\"ek\"@nb,\n\t\t\"eketre\"@nb,\n\t\t\"English oak\"@en,\n\t\t\"pedunculate oak\"@en,\n\t\t\"common oak\"@en,\n\t\t\"truffle oak\"@en,\n\t\t\"Eken\"@nds,\n\t\t\"Eek\"@nds,\n\t\t\"Ekenboom\"@nds,\n\t\t\"Eekboom\"@nds,\n\t\t\"Eckelboom\"@nds,\n\t\t\"дуб звычайны\"@be-tarask,\n\t\t\"даб стежер\"@mk,\n\t\t\"áika\"@se,\n\t\t\"Steeneech\"@lb,\n\t\t\"Summereech\"@lb .\n\nwd:P181 a wikibase:Property ;\n\trdfs:label \"Verbreitungskarte des Taxons\"@de ;\n\tskos:prefLabel \"Verbreitungskarte des Taxons\"@de ;\n\tschema:name \"Verbreitungskarte des Taxons\"@de ;\n\trdfs:label \"taxon range map image\"@en ;\n\tskos:prefLabel \"taxon range map image\"@en ;\n\tschema:name \"taxon range map image\"@en ;\n\tschema:description \"verweist auf eine Verbreitungskarte für ein Taxon bei Commons\"@de,\n\t\t\"range map of a taxon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P181 ;\n\twikibase:claim p:P181 ;\n\twikibase:statementProperty ps:P181 ;\n\twikibase:statementValue psv:P181 ;\n\twikibase:qualifier pq:P181 ;\n\twikibase:qualifierValue pqv:P181 ;\n\twikibase:reference pr:P181 ;\n\twikibase:referenceValue prv:P181 ;\n\twikibase:novalue wdno:P181 .\n\np:P181 a owl:ObjectProperty .\n\npsv:P181 a owl:ObjectProperty .\n\npqv:P181 a owl:ObjectProperty .\n\nprv:P181 a owl:ObjectProperty .\n\nwdt:P181 a owl:ObjectProperty .\n\nps:P181 a owl:ObjectProperty .\n\npq:P181 a owl:ObjectProperty .\n\npr:P181 a owl:ObjectProperty .\n\nwdno:P181 a owl:Class ;\n\towl:complementOf _:6c29729f5ee9ff41a4f7984f1fa6b6d1 .\n\n_:6c29729f5ee9ff41a4f7984f1fa6b6d1 a owl:Restriction ;\n\towl:onProperty wdt:P181 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q7432 a wikibase:Item ;\n\trdfs:label \"Art\"@de ;\n\tskos:prefLabel \"Art\"@de ;\n\tschema:name \"Art\"@de ;\n\trdfs:label \"species\"@en ;\n\tskos:prefLabel \"species\"@en ;\n\tschema:name \"species\"@en ;\n\tschema:description \"Rangstufe der biologischen Systematik\"@de,\n\t\t\"one of the basic units of biological classification and a taxonomic rank\"@en .\n\nwd:P105 a wikibase:Property ;\n\trdfs:label \"taxonomischer Rang\"@de ;\n\tskos:prefLabel \"taxonomischer Rang\"@de ;\n\tschema:name \"taxonomischer Rang\"@de ;\n\trdfs:label \"taxon rank\"@en ;\n\tskos:prefLabel \"taxon rank\"@en ;\n\tschema:name \"taxon rank\"@en ;\n\tschema:description \"Stufe der Einteilung von Lebewesen und Viren\"@de,\n\t\t\"level in a taxonomic hierarchy\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P105 ;\n\twikibase:claim p:P105 ;\n\twikibase:statementProperty ps:P105 ;\n\twikibase:statementValue psv:P105 ;\n\twikibase:qualifier pq:P105 ;\n\twikibase:qualifierValue pqv:P105 ;\n\twikibase:reference pr:P105 ;\n\twikibase:referenceValue prv:P105 ;\n\twikibase:novalue wdno:P105 .\n\np:P105 a owl:ObjectProperty .\n\npsv:P105 a owl:ObjectProperty .\n\npqv:P105 a owl:ObjectProperty .\n\nprv:P105 a owl:ObjectProperty .\n\nwdt:P105 a owl:ObjectProperty .\n\nps:P105 a owl:ObjectProperty .\n\npq:P105 a owl:ObjectProperty .\n\npr:P105 a owl:ObjectProperty .\n\nwdno:P105 a owl:Class ;\n\towl:complementOf _:f35a97beabbdd2885e54631a33ae3b5a .\n\n_:f35a97beabbdd2885e54631a33ae3b5a a owl:Restriction ;\n\towl:onProperty wdt:P105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q211005 a wikibase:Item ;\n\trdfs:label \"nicht gefährdet\"@de ;\n\tskos:prefLabel \"nicht gefährdet\"@de ;\n\tschema:name \"nicht gefährdet\"@de ;\n\trdfs:label \"LC\"@mul ;\n\tskos:prefLabel \"LC\"@mul ;\n\tschema:name \"LC\"@mul ;\n\trdfs:label \"Least Concern\"@en ;\n\tskos:prefLabel \"Least Concern\"@en ;\n\tschema:name \"Least Concern\"@en ;\n\tschema:description \"Gefährdungsstufe der IUCN\"@de,\n\t\t\"IUCN conservation category\"@en .\n\nwd:P141 a wikibase:Property ;\n\trdfs:label \"Gefährdungsstufe (IUCN)\"@de ;\n\tskos:prefLabel \"Gefährdungsstufe (IUCN)\"@de ;\n\tschema:name \"Gefährdungsstufe (IUCN)\"@de ;\n\trdfs:label \"IUCN conservation status\"@en ;\n\tskos:prefLabel \"IUCN conservation status\"@en ;\n\tschema:name \"IUCN conservation status\"@en ;\n\tschema:description \"Die International Union for Conservation of Nature and Natural Resources stuft gefährdete Tier- und Pflanzenarten derart ein (mögliche Werte: siehe Disk.)\"@de,\n\t\t\"conservation status assigned by the International Union for Conservation of Nature\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P141 ;\n\twikibase:claim p:P141 ;\n\twikibase:statementProperty ps:P141 ;\n\twikibase:statementValue psv:P141 ;\n\twikibase:qualifier pq:P141 ;\n\twikibase:qualifierValue pqv:P141 ;\n\twikibase:reference pr:P141 ;\n\twikibase:referenceValue prv:P141 ;\n\twikibase:novalue wdno:P141 .\n\np:P141 a owl:ObjectProperty .\n\npsv:P141 a owl:ObjectProperty .\n\npqv:P141 a owl:ObjectProperty .\n\nprv:P141 a owl:ObjectProperty .\n\nwdt:P141 a owl:ObjectProperty .\n\nps:P141 a owl:ObjectProperty .\n\npq:P141 a owl:ObjectProperty .\n\npr:P141 a owl:ObjectProperty .\n\nwdno:P141 a owl:Class ;\n\towl:complementOf _:2196945b8c3cb225b147737afe0dd501 .\n\n_:2196945b8c3cb225b147737afe0dd501 a owl:Restriction ;\n\towl:onProperty wdt:P141 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12004 a wikibase:Item ;\n\trdfs:label \"Eichen\"@de ;\n\tskos:prefLabel \"Eichen\"@de ;\n\tschema:name \"Eichen\"@de ;\n\trdfs:label \"Quercus\"@mul ;\n\tskos:prefLabel \"Quercus\"@mul ;\n\tschema:name \"Quercus\"@mul ;\n\tschema:description \"Gattung der Familie Buchengewächse (Fagaceae)\"@de,\n\t\t\"genus of plants\"@en .\n\nwd:P171 a wikibase:Property ;\n\trdfs:label \"übergeordnetes Taxon\"@de ;\n\tskos:prefLabel \"übergeordnetes Taxon\"@de ;\n\tschema:name \"übergeordnetes Taxon\"@de ;\n\trdfs:label \"parent taxon\"@en ;\n\tskos:prefLabel \"parent taxon\"@en ;\n\tschema:name \"parent taxon\"@en ;\n\tschema:description \"wissenschaftlicher Name des dem Taxon unmittelbar übergeordneten Taxons\"@de,\n\t\t\"closest parent taxon of the taxon in question\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P171 ;\n\twikibase:claim p:P171 ;\n\twikibase:statementProperty ps:P171 ;\n\twikibase:statementValue psv:P171 ;\n\twikibase:qualifier pq:P171 ;\n\twikibase:qualifierValue pqv:P171 ;\n\twikibase:reference pr:P171 ;\n\twikibase:referenceValue prv:P171 ;\n\twikibase:novalue wdno:P171 .\n\np:P171 a owl:ObjectProperty .\n\npsv:P171 a owl:ObjectProperty .\n\npqv:P171 a owl:ObjectProperty .\n\nprv:P171 a owl:ObjectProperty .\n\nwdt:P171 a owl:ObjectProperty .\n\nps:P171 a owl:ObjectProperty .\n\npq:P171 a owl:ObjectProperty .\n\npr:P171 a owl:ObjectProperty .\n\nwdno:P171 a owl:Class ;\n\towl:complementOf _:8aeadeaf2d8f2f6cf0ac9e3e419da65b .\n\n_:8aeadeaf2d8f2f6cf0ac9e3e419da65b a owl:Restriction ;\n\towl:onProperty wdt:P171 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P225 a wikibase:Property ;\n\trdfs:label \"wissenschaftlicher Name\"@de ;\n\tskos:prefLabel \"wissenschaftlicher Name\"@de ;\n\tschema:name \"wissenschaftlicher Name\"@de ;\n\trdfs:label \"taxon name\"@en ;\n\tskos:prefLabel \"taxon name\"@en ;\n\tschema:name \"taxon name\"@en ;\n\tschema:description \"wissenschaftlicher Name einer Gruppe von Lebewesen\"@de,\n\t\t\"correct scientific name of a taxon (according to the reference given)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P225 ;\n\twikibase:claim p:P225 ;\n\twikibase:statementProperty ps:P225 ;\n\twikibase:statementValue psv:P225 ;\n\twikibase:qualifier pq:P225 ;\n\twikibase:qualifierValue pqv:P225 ;\n\twikibase:reference pr:P225 ;\n\twikibase:referenceValue prv:P225 ;\n\twikibase:novalue wdno:P225 .\n\np:P225 a owl:ObjectProperty .\n\npsv:P225 a owl:ObjectProperty .\n\npqv:P225 a owl:ObjectProperty .\n\nprv:P225 a owl:ObjectProperty .\n\nwdt:P225 a owl:DatatypeProperty .\n\nps:P225 a owl:DatatypeProperty .\n\npq:P225 a owl:DatatypeProperty .\n\npr:P225 a owl:DatatypeProperty .\n\nwdno:P225 a owl:Class ;\n\towl:complementOf _:337f4de465ca1537b0804c6775b1bbd1 .\n\n_:337f4de465ca1537b0804c6775b1bbd1 a owl:Restriction ;\n\towl:onProperty wdt:P225 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P18 a wikibase:Property ;\n\trdfs:label \"Bild\"@de ;\n\tskos:prefLabel \"Bild\"@de ;\n\tschema:name \"Bild\"@de ;\n\trdfs:label \"image\"@en ;\n\tskos:prefLabel \"image\"@en ;\n\tschema:name \"image\"@en ;\n\tschema:description \"Foto, Grafik etc. des Subjekts aus Wikimedia Commons (ohne „File:“)\"@de,\n\t\t\"image of relevant illustration of the subject; if available, also use more specific properties (sample: coat of arms image, locator map, flag image, signature image, logo image, collage image)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P18 ;\n\twikibase:claim p:P18 ;\n\twikibase:statementProperty ps:P18 ;\n\twikibase:statementValue psv:P18 ;\n\twikibase:qualifier pq:P18 ;\n\twikibase:qualifierValue pqv:P18 ;\n\twikibase:reference pr:P18 ;\n\twikibase:referenceValue prv:P18 ;\n\twikibase:novalue wdno:P18 .\n\np:P18 a owl:ObjectProperty .\n\npsv:P18 a owl:ObjectProperty .\n\npqv:P18 a owl:ObjectProperty .\n\nprv:P18 a owl:ObjectProperty .\n\nwdt:P18 a owl:ObjectProperty .\n\nps:P18 a owl:ObjectProperty .\n\npq:P18 a owl:ObjectProperty .\n\npr:P18 a owl:ObjectProperty .\n\nwdno:P18 a owl:Class ;\n\towl:complementOf _:90353c5ec33a5dc569985590a17a3551 .\n\n_:90353c5ec33a5dc569985590a17a3551 a owl:Restriction ;\n\towl:onProperty wdt:P18 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P373 a wikibase:Property ;\n\trdfs:label \"Commons-Kategorie\"@de ;\n\tskos:prefLabel \"Commons-Kategorie\"@de ;\n\tschema:name \"Commons-Kategorie\"@de ;\n\trdfs:label \"Commons category\"@en ;\n\tskos:prefLabel \"Commons category\"@en ;\n\tschema:name \"Commons category\"@en ;\n\tschema:description \"Name der Kategorie auf Wikimedia Commons, die Dateien zu dem Objekt (item) beinhaltet (ohne das Präfix „Category:“)\"@de,\n\t\t\"name of the Wikimedia Commons category containing files related to this item (without the prefix \\\"Category:\\\")\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P373 ;\n\twikibase:claim p:P373 ;\n\twikibase:statementProperty ps:P373 ;\n\twikibase:statementValue psv:P373 ;\n\twikibase:qualifier pq:P373 ;\n\twikibase:qualifierValue pqv:P373 ;\n\twikibase:reference pr:P373 ;\n\twikibase:referenceValue prv:P373 ;\n\twikibase:novalue wdno:P373 .\n\np:P373 a owl:ObjectProperty .\n\npsv:P373 a owl:ObjectProperty .\n\npqv:P373 a owl:ObjectProperty .\n\nprv:P373 a owl:ObjectProperty .\n\nwdt:P373 a owl:DatatypeProperty .\n\nps:P373 a owl:DatatypeProperty .\n\npq:P373 a owl:DatatypeProperty .\n\npr:P373 a owl:DatatypeProperty .\n\nwdno:P373 a owl:Class ;\n\towl:complementOf _:3de19c92e209926f02f215095eb4fd12 .\n\n_:3de19c92e209926f02f215095eb4fd12 a owl:Restriction ;\n\towl:onProperty wdt:P373 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P685 a wikibase:Property ;\n\trdfs:label \"NCBI-ID\"@de ;\n\tskos:prefLabel \"NCBI-ID\"@de ;\n\tschema:name \"NCBI-ID\"@de ;\n\trdfs:label \"NCBI taxonomy ID\"@en ;\n\tskos:prefLabel \"NCBI taxonomy ID\"@en ;\n\tschema:name \"NCBI taxonomy ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept in der Taxonomiedatenbank des National Center for Biotechnology Information (NCBI)\"@de,\n\t\t\"identifier for a taxon in the Taxonomy Database by the National Center for Biotechnology Information\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P685 ;\n\twikibase:claim p:P685 ;\n\twikibase:statementProperty ps:P685 ;\n\twikibase:statementValue psv:P685 ;\n\twikibase:qualifier pq:P685 ;\n\twikibase:qualifierValue pqv:P685 ;\n\twikibase:reference pr:P685 ;\n\twikibase:referenceValue prv:P685 ;\n\twikibase:novalue wdno:P685 ;\n\twikibase:directClaimNormalized wdtn:P685 ;\n\twikibase:statementValueNormalized psn:P685 ;\n\twikibase:qualifierValueNormalized pqn:P685 ;\n\twikibase:referenceValueNormalized prn:P685 .\n\np:P685 a owl:ObjectProperty .\n\npsv:P685 a owl:ObjectProperty .\n\npqv:P685 a owl:ObjectProperty .\n\nprv:P685 a owl:ObjectProperty .\n\nwdt:P685 a owl:DatatypeProperty .\n\nps:P685 a owl:DatatypeProperty .\n\npq:P685 a owl:DatatypeProperty .\n\npr:P685 a owl:DatatypeProperty .\n\npsn:P685 a owl:ObjectProperty .\n\npqn:P685 a owl:ObjectProperty .\n\nprn:P685 a owl:ObjectProperty .\n\nwdtn:P685 a owl:ObjectProperty .\n\nwdno:P685 a owl:Class ;\n\towl:complementOf _:bca77c5212845547080acb6703879a21 .\n\n_:bca77c5212845547080acb6703879a21 a owl:Restriction ;\n\towl:onProperty wdt:P685 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P935 a wikibase:Property ;\n\trdfs:label \"Commons-Galerie\"@de ;\n\tskos:prefLabel \"Commons-Galerie\"@de ;\n\tschema:name \"Commons-Galerie\"@de ;\n\trdfs:label \"Commons gallery\"@en ;\n\tskos:prefLabel \"Commons gallery\"@en ;\n\tschema:name \"Commons gallery\"@en ;\n\tschema:description \"Name der Galerieseite(n) auf Wikimedia Commons mit Dateien zu dem Objekt (item)\"@de,\n\t\t\"name of the Wikimedia Commons gallery page(s) related to this item (is suitable to allow multiple links to more gallery pages)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P935 ;\n\twikibase:claim p:P935 ;\n\twikibase:statementProperty ps:P935 ;\n\twikibase:statementValue psv:P935 ;\n\twikibase:qualifier pq:P935 ;\n\twikibase:qualifierValue pqv:P935 ;\n\twikibase:reference pr:P935 ;\n\twikibase:referenceValue prv:P935 ;\n\twikibase:novalue wdno:P935 .\n\np:P935 a owl:ObjectProperty .\n\npsv:P935 a owl:ObjectProperty .\n\npqv:P935 a owl:ObjectProperty .\n\nprv:P935 a owl:ObjectProperty .\n\nwdt:P935 a owl:DatatypeProperty .\n\nps:P935 a owl:DatatypeProperty .\n\npq:P935 a owl:DatatypeProperty .\n\npr:P935 a owl:DatatypeProperty .\n\nwdno:P935 a owl:Class ;\n\towl:complementOf _:e611166fd8b736fb1e719dd5177883b3 .\n\n_:e611166fd8b736fb1e719dd5177883b3 a owl:Restriction ;\n\towl:onProperty wdt:P935 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P815 a wikibase:Property ;\n\trdfs:label \"ITIS-TSN\"@de ;\n\tskos:prefLabel \"ITIS-TSN\"@de ;\n\tschema:name \"ITIS-TSN\"@de ;\n\trdfs:label \"ITIS TSN\"@en ;\n\tskos:prefLabel \"ITIS TSN\"@en ;\n\tschema:name \"ITIS TSN\"@en ;\n\tschema:description \"Identifikator (=Taxonomic Serial Number [TSN]) im Integrated Taxonomic Information System (ITIS)\"@de,\n\t\t\"identifier for a taxon in the Integrated Taxonomic Information System\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P815 ;\n\twikibase:claim p:P815 ;\n\twikibase:statementProperty ps:P815 ;\n\twikibase:statementValue psv:P815 ;\n\twikibase:qualifier pq:P815 ;\n\twikibase:qualifierValue pqv:P815 ;\n\twikibase:reference pr:P815 ;\n\twikibase:referenceValue prv:P815 ;\n\twikibase:novalue wdno:P815 ;\n\twikibase:directClaimNormalized wdtn:P815 ;\n\twikibase:statementValueNormalized psn:P815 ;\n\twikibase:qualifierValueNormalized pqn:P815 ;\n\twikibase:referenceValueNormalized prn:P815 .\n\np:P815 a owl:ObjectProperty .\n\npsv:P815 a owl:ObjectProperty .\n\npqv:P815 a owl:ObjectProperty .\n\nprv:P815 a owl:ObjectProperty .\n\nwdt:P815 a owl:DatatypeProperty .\n\nps:P815 a owl:DatatypeProperty .\n\npq:P815 a owl:DatatypeProperty .\n\npr:P815 a owl:DatatypeProperty .\n\npsn:P815 a owl:ObjectProperty .\n\npqn:P815 a owl:ObjectProperty .\n\nprn:P815 a owl:ObjectProperty .\n\nwdtn:P815 a owl:ObjectProperty .\n\nwdno:P815 a owl:Class ;\n\towl:complementOf _:69a818f0539fda285c2f3e1ac647ef76 .\n\n_:69a818f0539fda285c2f3e1ac647ef76 a owl:Restriction ;\n\towl:onProperty wdt:P815 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q16521 a wikibase:Item ;\n\trdfs:label \"Taxon\"@de ;\n\tskos:prefLabel \"Taxon\"@de ;\n\tschema:name \"Taxon\"@de ;\n\trdfs:label \"taxon\"@en ;\n\tskos:prefLabel \"taxon\"@en ;\n\tschema:name \"taxon\"@en ;\n\tschema:description \"biologische Einheit, der entsprechend bestimmter Kriterien eine Gruppe von Lebewesen zugeordnet wird\"@de,\n\t\t\"group of one or more organism(s), which a taxonomist adjudges to be a unit\"@en .\n\nwd:P31 a wikibase:Property ;\n\trdfs:label \"ist ein(e)\"@de ;\n\tskos:prefLabel \"ist ein(e)\"@de ;\n\tschema:name \"ist ein(e)\"@de ;\n\trdfs:label \"instance of\"@en ;\n\tskos:prefLabel \"instance of\"@en ;\n\tschema:name \"instance of\"@en ;\n\tschema:description \"Ausprägung oder Exemplar einer Sache, Mitglied einer Klasse. Zu unterscheiden von P279 (Unterklasse von), z. B. der K2 „ist ein“ Berg; Vulkan ist eine „Unterklasse von“ Berg (aber Vulkan „ist eine“ vulkanogene Landform)\"@de,\n\t\t\"type to which this subject corresponds/belongs. Different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P31 ;\n\twikibase:claim p:P31 ;\n\twikibase:statementProperty ps:P31 ;\n\twikibase:statementValue psv:P31 ;\n\twikibase:qualifier pq:P31 ;\n\twikibase:qualifierValue pqv:P31 ;\n\twikibase:reference pr:P31 ;\n\twikibase:referenceValue prv:P31 ;\n\twikibase:novalue wdno:P31 .\n\np:P31 a owl:ObjectProperty .\n\npsv:P31 a owl:ObjectProperty .\n\npqv:P31 a owl:ObjectProperty .\n\nprv:P31 a owl:ObjectProperty .\n\nwdt:P31 a owl:ObjectProperty .\n\nps:P31 a owl:ObjectProperty .\n\npq:P31 a owl:ObjectProperty .\n\npr:P31 a owl:ObjectProperty .\n\nwdno:P31 a owl:Class ;\n\towl:complementOf _:0b8bd71b926a65ca3fa72e5d9103e4d6 .\n\n_:0b8bd71b926a65ca3fa72e5d9103e4d6 a owl:Restriction ;\n\towl:onProperty wdt:P31 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q188840 a wikibase:Item ;\n\trdfs:label \"Heilpflanze\"@de ;\n\tskos:prefLabel \"Heilpflanze\"@de ;\n\tschema:name \"Heilpflanze\"@de ;\n\trdfs:label \"medicinal plant\"@en ;\n\tskos:prefLabel \"medicinal plant\"@en ;\n\tschema:name \"medicinal plant\"@en ;\n\tschema:description \"Pflanze, die in der Pflanzenheilkunde wegen ihres Gehalts an Wirkstoffen zu Heilzwecken verwendet werden kann\"@de,\n\t\t\"plants or derivatives used to treat medical conditions in humans or animals\"@en .\n\nwd:P646 a wikibase:Property ;\n\trdfs:label \"Freebase-Kennung\"@de ;\n\tskos:prefLabel \"Freebase-Kennung\"@de ;\n\tschema:name \"Freebase-Kennung\"@de ;\n\trdfs:label \"Freebase ID\"@en ;\n\tskos:prefLabel \"Freebase ID\"@en ;\n\tschema:name \"Freebase ID\"@en ;\n\tschema:description \"Kennung des gleichbedeutenden Eintrags in der Freebase-Datenbank\"@de,\n\t\t\"identifier for a page in the Freebase database. Format: \\\"/m/0\\\" followed by 2 to 7 characters. For IDs starting with \\\"/g/\\\", use Google Knowledge Graph ID (P2671)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P646 ;\n\twikibase:claim p:P646 ;\n\twikibase:statementProperty ps:P646 ;\n\twikibase:statementValue psv:P646 ;\n\twikibase:qualifier pq:P646 ;\n\twikibase:qualifierValue pqv:P646 ;\n\twikibase:reference pr:P646 ;\n\twikibase:referenceValue prv:P646 ;\n\twikibase:novalue wdno:P646 ;\n\twikibase:directClaimNormalized wdtn:P646 ;\n\twikibase:statementValueNormalized psn:P646 ;\n\twikibase:qualifierValueNormalized pqn:P646 ;\n\twikibase:referenceValueNormalized prn:P646 .\n\np:P646 a owl:ObjectProperty .\n\npsv:P646 a owl:ObjectProperty .\n\npqv:P646 a owl:ObjectProperty .\n\nprv:P646 a owl:ObjectProperty .\n\nwdt:P646 a owl:DatatypeProperty .\n\nps:P646 a owl:DatatypeProperty .\n\npq:P646 a owl:DatatypeProperty .\n\npr:P646 a owl:DatatypeProperty .\n\npsn:P646 a owl:ObjectProperty .\n\npqn:P646 a owl:ObjectProperty .\n\nprn:P646 a owl:ObjectProperty .\n\nwdtn:P646 a owl:ObjectProperty .\n\nwdno:P646 a owl:Class ;\n\towl:complementOf _:38db277a4b10d59fd38a3fd995cbe570 .\n\n_:38db277a4b10d59fd38a3fd995cbe570 a owl:Restriction ;\n\towl:onProperty wdt:P646 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P227 a wikibase:Property ;\n\trdfs:label \"GND-Kennung\"@de ;\n\tskos:prefLabel \"GND-Kennung\"@de ;\n\tschema:name \"GND-Kennung\"@de ;\n\trdfs:label \"GND\"@mul ;\n\tskos:prefLabel \"GND\"@mul ;\n\tschema:name \"GND\"@mul ;\n\trdfs:label \"GND ID\"@en ;\n\tskos:prefLabel \"GND ID\"@en ;\n\tschema:name \"GND ID\"@en ;\n\tschema:description \"Identifikator der Gemeinsamen Normdatei für Personennamen, Körperschaften und Schlagworte (bitte nicht Typ n eintragen = Name, mehrdeutig)\"@de,\n\t\t\"identifier from the Gemeinsame Normdatei authority file of names, subjects, and organizations\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P227 ;\n\twikibase:claim p:P227 ;\n\twikibase:statementProperty ps:P227 ;\n\twikibase:statementValue psv:P227 ;\n\twikibase:qualifier pq:P227 ;\n\twikibase:qualifierValue pqv:P227 ;\n\twikibase:reference pr:P227 ;\n\twikibase:referenceValue prv:P227 ;\n\twikibase:novalue wdno:P227 ;\n\twikibase:directClaimNormalized wdtn:P227 ;\n\twikibase:statementValueNormalized psn:P227 ;\n\twikibase:qualifierValueNormalized pqn:P227 ;\n\twikibase:referenceValueNormalized prn:P227 .\n\np:P227 a owl:ObjectProperty .\n\npsv:P227 a owl:ObjectProperty .\n\npqv:P227 a owl:ObjectProperty .\n\nprv:P227 a owl:ObjectProperty .\n\nwdt:P227 a owl:DatatypeProperty .\n\nps:P227 a owl:DatatypeProperty .\n\npq:P227 a owl:DatatypeProperty .\n\npr:P227 a owl:DatatypeProperty .\n\npsn:P227 a owl:ObjectProperty .\n\npqn:P227 a owl:ObjectProperty .\n\nprn:P227 a owl:ObjectProperty .\n\nwdtn:P227 a owl:ObjectProperty .\n\nwdno:P227 a owl:Class ;\n\towl:complementOf _:286c7ee15bc3c86b8eb6b23547b34d68 .\n\n_:286c7ee15bc3c86b8eb6b23547b34d68 a owl:Restriction ;\n\towl:onProperty wdt:P227 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P960 a wikibase:Property ;\n\trdfs:label \"Tropicos-ID\"@de ;\n\tskos:prefLabel \"Tropicos-ID\"@de ;\n\tschema:name \"Tropicos-ID\"@de ;\n\trdfs:label \"Tropicos ID\"@en ;\n\tskos:prefLabel \"Tropicos ID\"@en ;\n\tschema:name \"Tropicos ID\"@en ;\n\tschema:description \"Identifikator für einen wissenschaftlichen Namen eines Taxons bei Tropicos\"@de,\n\t\t\"identifier for a taxon name in the Tropicos database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P960 ;\n\twikibase:claim p:P960 ;\n\twikibase:statementProperty ps:P960 ;\n\twikibase:statementValue psv:P960 ;\n\twikibase:qualifier pq:P960 ;\n\twikibase:qualifierValue pqv:P960 ;\n\twikibase:reference pr:P960 ;\n\twikibase:referenceValue prv:P960 ;\n\twikibase:novalue wdno:P960 ;\n\twikibase:directClaimNormalized wdtn:P960 ;\n\twikibase:statementValueNormalized psn:P960 ;\n\twikibase:qualifierValueNormalized pqn:P960 ;\n\twikibase:referenceValueNormalized prn:P960 .\n\np:P960 a owl:ObjectProperty .\n\npsv:P960 a owl:ObjectProperty .\n\npqv:P960 a owl:ObjectProperty .\n\nprv:P960 a owl:ObjectProperty .\n\nwdt:P960 a owl:DatatypeProperty .\n\nps:P960 a owl:DatatypeProperty .\n\npq:P960 a owl:DatatypeProperty .\n\npr:P960 a owl:DatatypeProperty .\n\npsn:P960 a owl:ObjectProperty .\n\npqn:P960 a owl:ObjectProperty .\n\nprn:P960 a owl:ObjectProperty .\n\nwdtn:P960 a owl:ObjectProperty .\n\nwdno:P960 a owl:Class ;\n\towl:complementOf _:a48351de085b0375b132cc36ff7067bd .\n\n_:a48351de085b0375b132cc36ff7067bd a owl:Restriction ;\n\towl:onProperty wdt:P960 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P830 a wikibase:Property ;\n\trdfs:label \"EOL-ID\"@de ;\n\tskos:prefLabel \"EOL-ID\"@de ;\n\tschema:name \"EOL-ID\"@de ;\n\trdfs:label \"Encyclopedia of Life ID\"@en ;\n\tskos:prefLabel \"Encyclopedia of Life ID\"@en ;\n\tschema:name \"Encyclopedia of Life ID\"@en ;\n\tschema:description \"Taxon-Konzept-Identifikator in der Encyclopedia of Life (EOL)\"@de,\n\t\t\"eol.org item reference number\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P830 ;\n\twikibase:claim p:P830 ;\n\twikibase:statementProperty ps:P830 ;\n\twikibase:statementValue psv:P830 ;\n\twikibase:qualifier pq:P830 ;\n\twikibase:qualifierValue pqv:P830 ;\n\twikibase:reference pr:P830 ;\n\twikibase:referenceValue prv:P830 ;\n\twikibase:novalue wdno:P830 ;\n\twikibase:directClaimNormalized wdtn:P830 ;\n\twikibase:statementValueNormalized psn:P830 ;\n\twikibase:qualifierValueNormalized pqn:P830 ;\n\twikibase:referenceValueNormalized prn:P830 .\n\np:P830 a owl:ObjectProperty .\n\npsv:P830 a owl:ObjectProperty .\n\npqv:P830 a owl:ObjectProperty .\n\nprv:P830 a owl:ObjectProperty .\n\nwdt:P830 a owl:DatatypeProperty .\n\nps:P830 a owl:DatatypeProperty .\n\npq:P830 a owl:DatatypeProperty .\n\npr:P830 a owl:DatatypeProperty .\n\npsn:P830 a owl:ObjectProperty .\n\npqn:P830 a owl:ObjectProperty .\n\nprn:P830 a owl:ObjectProperty .\n\nwdtn:P830 a owl:ObjectProperty .\n\nwdno:P830 a owl:Class ;\n\towl:complementOf _:f8dbe44ad4bbbd585dc613515bbbee7a .\n\n_:f8dbe44ad4bbbd585dc613515bbbee7a a owl:Restriction ;\n\towl:onProperty wdt:P830 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P961 a wikibase:Property ;\n\trdfs:label \"IPNI-TaxonName-ID\"@de ;\n\tskos:prefLabel \"IPNI-TaxonName-ID\"@de ;\n\tschema:name \"IPNI-TaxonName-ID\"@de ;\n\trdfs:label \"IPNI plant ID\"@en ;\n\tskos:prefLabel \"IPNI plant ID\"@en ;\n\tschema:name \"IPNI plant ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im International Plant Names Index (IPNI)\"@de,\n\t\t\"numerical identifier for a plant name in the International Plant Names Index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P961 ;\n\twikibase:claim p:P961 ;\n\twikibase:statementProperty ps:P961 ;\n\twikibase:statementValue psv:P961 ;\n\twikibase:qualifier pq:P961 ;\n\twikibase:qualifierValue pqv:P961 ;\n\twikibase:reference pr:P961 ;\n\twikibase:referenceValue prv:P961 ;\n\twikibase:novalue wdno:P961 ;\n\twikibase:directClaimNormalized wdtn:P961 ;\n\twikibase:statementValueNormalized psn:P961 ;\n\twikibase:qualifierValueNormalized pqn:P961 ;\n\twikibase:referenceValueNormalized prn:P961 .\n\np:P961 a owl:ObjectProperty .\n\npsv:P961 a owl:ObjectProperty .\n\npqv:P961 a owl:ObjectProperty .\n\nprv:P961 a owl:ObjectProperty .\n\nwdt:P961 a owl:DatatypeProperty .\n\nps:P961 a owl:DatatypeProperty .\n\npq:P961 a owl:DatatypeProperty .\n\npr:P961 a owl:DatatypeProperty .\n\npsn:P961 a owl:ObjectProperty .\n\npqn:P961 a owl:ObjectProperty .\n\nprn:P961 a owl:ObjectProperty .\n\nwdtn:P961 a owl:ObjectProperty .\n\nwdno:P961 a owl:Class ;\n\towl:complementOf _:aed2728bf2fd8763d252215824748a49 .\n\n_:aed2728bf2fd8763d252215824748a49 a owl:Restriction ;\n\towl:onProperty wdt:P961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1070 a wikibase:Property ;\n\trdfs:label \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\tskos:prefLabel \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\tschema:name \"Plant List ID (Royal Botanic Gardens, Kew)\"@de ;\n\trdfs:label \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tskos:prefLabel \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tschema:name \"Plant List ID (Royal Botanic Gardens, Kew)\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons in der Datenbank „The Plant List“\"@de,\n\t\t\"identifier in The Plant List database from the Royal Botanic Gardens, Kew\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1070 ;\n\twikibase:claim p:P1070 ;\n\twikibase:statementProperty ps:P1070 ;\n\twikibase:statementValue psv:P1070 ;\n\twikibase:qualifier pq:P1070 ;\n\twikibase:qualifierValue pqv:P1070 ;\n\twikibase:reference pr:P1070 ;\n\twikibase:referenceValue prv:P1070 ;\n\twikibase:novalue wdno:P1070 ;\n\twikibase:directClaimNormalized wdtn:P1070 ;\n\twikibase:statementValueNormalized psn:P1070 ;\n\twikibase:qualifierValueNormalized pqn:P1070 ;\n\twikibase:referenceValueNormalized prn:P1070 .\n\np:P1070 a owl:ObjectProperty .\n\npsv:P1070 a owl:ObjectProperty .\n\npqv:P1070 a owl:ObjectProperty .\n\nprv:P1070 a owl:ObjectProperty .\n\nwdt:P1070 a owl:DatatypeProperty .\n\nps:P1070 a owl:DatatypeProperty .\n\npq:P1070 a owl:DatatypeProperty .\n\npr:P1070 a owl:DatatypeProperty .\n\npsn:P1070 a owl:ObjectProperty .\n\npqn:P1070 a owl:ObjectProperty .\n\nprn:P1070 a owl:ObjectProperty .\n\nwdtn:P1070 a owl:ObjectProperty .\n\nwdno:P1070 a owl:Class ;\n\towl:complementOf _:0944f235c8e0e6e33d199674d1db7c65 .\n\n_:0944f235c8e0e6e33d199674d1db7c65 a owl:Restriction ;\n\towl:onProperty wdt:P1070 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1727 a wikibase:Property ;\n\trdfs:label \"FNA-ID\"@de ;\n\tskos:prefLabel \"FNA-ID\"@de ;\n\tschema:name \"FNA-ID\"@de ;\n\trdfs:label \"Flora of North America taxon ID\"@en ;\n\tskos:prefLabel \"Flora of North America taxon ID\"@en ;\n\tschema:name \"Flora of North America taxon ID\"@en ;\n\tschema:description \"Identifikator in der Flora of North America (FNA)\"@de,\n\t\t\"identifier for a taxon in the Flora of North America database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1727 ;\n\twikibase:claim p:P1727 ;\n\twikibase:statementProperty ps:P1727 ;\n\twikibase:statementValue psv:P1727 ;\n\twikibase:qualifier pq:P1727 ;\n\twikibase:qualifierValue pqv:P1727 ;\n\twikibase:reference pr:P1727 ;\n\twikibase:referenceValue prv:P1727 ;\n\twikibase:novalue wdno:P1727 ;\n\twikibase:directClaimNormalized wdtn:P1727 ;\n\twikibase:statementValueNormalized psn:P1727 ;\n\twikibase:qualifierValueNormalized pqn:P1727 ;\n\twikibase:referenceValueNormalized prn:P1727 .\n\np:P1727 a owl:ObjectProperty .\n\npsv:P1727 a owl:ObjectProperty .\n\npqv:P1727 a owl:ObjectProperty .\n\nprv:P1727 a owl:ObjectProperty .\n\nwdt:P1727 a owl:DatatypeProperty .\n\nps:P1727 a owl:DatatypeProperty .\n\npq:P1727 a owl:DatatypeProperty .\n\npr:P1727 a owl:DatatypeProperty .\n\npsn:P1727 a owl:ObjectProperty .\n\npqn:P1727 a owl:ObjectProperty .\n\nprn:P1727 a owl:ObjectProperty .\n\nwdtn:P1727 a owl:ObjectProperty .\n\nwdno:P1727 a owl:Class ;\n\towl:complementOf _:dc0fa6f3d42b3ff6f2cff66b498dbf11 .\n\n_:dc0fa6f3d42b3ff6f2cff66b498dbf11 a owl:Restriction ;\n\towl:onProperty wdt:P1727 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1745 a wikibase:Property ;\n\trdfs:label \"VasCan-ID\"@de ;\n\tskos:prefLabel \"VasCan-ID\"@de ;\n\tschema:name \"VasCan-ID\"@de ;\n\trdfs:label \"VASCAN ID\"@mul ;\n\tskos:prefLabel \"VASCAN ID\"@mul ;\n\tschema:name \"VASCAN ID\"@mul ;\n\trdfs:label \"VASCAN ID\"@en ;\n\tskos:prefLabel \"VASCAN ID\"@en ;\n\tschema:name \"VASCAN ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank Vascular Plants of Canada (VasCan)\"@de,\n\t\t\"identifier for a taxon in the Database of Vascular Plants of Canada\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1745 ;\n\twikibase:claim p:P1745 ;\n\twikibase:statementProperty ps:P1745 ;\n\twikibase:statementValue psv:P1745 ;\n\twikibase:qualifier pq:P1745 ;\n\twikibase:qualifierValue pqv:P1745 ;\n\twikibase:reference pr:P1745 ;\n\twikibase:referenceValue prv:P1745 ;\n\twikibase:novalue wdno:P1745 ;\n\twikibase:directClaimNormalized wdtn:P1745 ;\n\twikibase:statementValueNormalized psn:P1745 ;\n\twikibase:qualifierValueNormalized pqn:P1745 ;\n\twikibase:referenceValueNormalized prn:P1745 .\n\np:P1745 a owl:ObjectProperty .\n\npsv:P1745 a owl:ObjectProperty .\n\npqv:P1745 a owl:ObjectProperty .\n\nprv:P1745 a owl:ObjectProperty .\n\nwdt:P1745 a owl:DatatypeProperty .\n\nps:P1745 a owl:DatatypeProperty .\n\npq:P1745 a owl:DatatypeProperty .\n\npr:P1745 a owl:DatatypeProperty .\n\npsn:P1745 a owl:ObjectProperty .\n\npqn:P1745 a owl:ObjectProperty .\n\nprn:P1745 a owl:ObjectProperty .\n\nwdtn:P1745 a owl:ObjectProperty .\n\nwdno:P1745 a owl:Class ;\n\towl:complementOf _:e263329d173aae293dd93e451a8d03e5 .\n\n_:e263329d173aae293dd93e451a8d03e5 a owl:Restriction ;\n\towl:onProperty wdt:P1745 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1747 a wikibase:Property ;\n\trdfs:label \"FOC-ID\"@de ;\n\tskos:prefLabel \"FOC-ID\"@de ;\n\tschema:name \"FOC-ID\"@de ;\n\trdfs:label \"Flora of China ID\"@en ;\n\tskos:prefLabel \"Flora of China ID\"@en ;\n\tschema:name \"Flora of China ID\"@en ;\n\tschema:description \"Identifikator in der Flora of China (FOC)\"@de,\n\t\t\"identifier for a taxon in Flora of China (English-language revision of Flora Reipublicae Popularis Sinicae)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1747 ;\n\twikibase:claim p:P1747 ;\n\twikibase:statementProperty ps:P1747 ;\n\twikibase:statementValue psv:P1747 ;\n\twikibase:qualifier pq:P1747 ;\n\twikibase:qualifierValue pqv:P1747 ;\n\twikibase:reference pr:P1747 ;\n\twikibase:referenceValue prv:P1747 ;\n\twikibase:novalue wdno:P1747 ;\n\twikibase:directClaimNormalized wdtn:P1747 ;\n\twikibase:statementValueNormalized psn:P1747 ;\n\twikibase:qualifierValueNormalized pqn:P1747 ;\n\twikibase:referenceValueNormalized prn:P1747 .\n\np:P1747 a owl:ObjectProperty .\n\npsv:P1747 a owl:ObjectProperty .\n\npqv:P1747 a owl:ObjectProperty .\n\nprv:P1747 a owl:ObjectProperty .\n\nwdt:P1747 a owl:DatatypeProperty .\n\nps:P1747 a owl:DatatypeProperty .\n\npq:P1747 a owl:DatatypeProperty .\n\npr:P1747 a owl:DatatypeProperty .\n\npsn:P1747 a owl:ObjectProperty .\n\npqn:P1747 a owl:ObjectProperty .\n\nprn:P1747 a owl:ObjectProperty .\n\nwdtn:P1747 a owl:ObjectProperty .\n\nwdno:P1747 a owl:Class ;\n\towl:complementOf _:1e07a8678adbd8700a1923df04eff524 .\n\n_:1e07a8678adbd8700a1923df04eff524 a owl:Restriction ;\n\towl:onProperty wdt:P1747 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1421 a wikibase:Property ;\n\trdfs:label \"GRIN-URL\"@de ;\n\tskos:prefLabel \"GRIN-URL\"@de ;\n\tschema:name \"GRIN-URL\"@de ;\n\trdfs:label \"GRIN URL\"@en ;\n\tskos:prefLabel \"GRIN URL\"@en ;\n\tschema:name \"GRIN URL\"@en ;\n\tschema:description \"URL für den wissenschaftlichen Namen eines Taxons bei GRIN\"@de,\n\t\t\"URL for a taxon in the GRIN website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1421 ;\n\twikibase:claim p:P1421 ;\n\twikibase:statementProperty ps:P1421 ;\n\twikibase:statementValue psv:P1421 ;\n\twikibase:qualifier pq:P1421 ;\n\twikibase:qualifierValue pqv:P1421 ;\n\twikibase:reference pr:P1421 ;\n\twikibase:referenceValue prv:P1421 ;\n\twikibase:novalue wdno:P1421 .\n\np:P1421 a owl:ObjectProperty .\n\npsv:P1421 a owl:ObjectProperty .\n\npqv:P1421 a owl:ObjectProperty .\n\nprv:P1421 a owl:ObjectProperty .\n\nwdt:P1421 a owl:ObjectProperty .\n\nps:P1421 a owl:ObjectProperty .\n\npq:P1421 a owl:ObjectProperty .\n\npr:P1421 a owl:ObjectProperty .\n\nwdno:P1421 a owl:Class ;\n\towl:complementOf _:7fd183799213c781365b6c2268147965 .\n\n_:7fd183799213c781365b6c2268147965 a owl:Restriction ;\n\towl:onProperty wdt:P1421 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1772 a wikibase:Property ;\n\trdfs:label \"USDA-ID\"@de ;\n\tskos:prefLabel \"USDA-ID\"@de ;\n\tschema:name \"USDA-ID\"@de ;\n\trdfs:label \"USDA PLANTS ID\"@mul ;\n\tskos:prefLabel \"USDA PLANTS ID\"@mul ;\n\tschema:name \"USDA PLANTS ID\"@mul ;\n\trdfs:label \"USDA PLANTS ID\"@en ;\n\tskos:prefLabel \"USDA PLANTS ID\"@en ;\n\tschema:name \"USDA PLANTS ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank des United States Department of Agriculture (USDA)\"@de,\n\t\t\"identifier in the United States Department of Agriculture PLANTS Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1772 ;\n\twikibase:claim p:P1772 ;\n\twikibase:statementProperty ps:P1772 ;\n\twikibase:statementValue psv:P1772 ;\n\twikibase:qualifier pq:P1772 ;\n\twikibase:qualifierValue pqv:P1772 ;\n\twikibase:reference pr:P1772 ;\n\twikibase:referenceValue prv:P1772 ;\n\twikibase:novalue wdno:P1772 ;\n\twikibase:directClaimNormalized wdtn:P1772 ;\n\twikibase:statementValueNormalized psn:P1772 ;\n\twikibase:qualifierValueNormalized pqn:P1772 ;\n\twikibase:referenceValueNormalized prn:P1772 .\n\np:P1772 a owl:ObjectProperty .\n\npsv:P1772 a owl:ObjectProperty .\n\npqv:P1772 a owl:ObjectProperty .\n\nprv:P1772 a owl:ObjectProperty .\n\nwdt:P1772 a owl:DatatypeProperty .\n\nps:P1772 a owl:DatatypeProperty .\n\npq:P1772 a owl:DatatypeProperty .\n\npr:P1772 a owl:DatatypeProperty .\n\npsn:P1772 a owl:ObjectProperty .\n\npqn:P1772 a owl:ObjectProperty .\n\nprn:P1772 a owl:ObjectProperty .\n\nwdtn:P1772 a owl:ObjectProperty .\n\nwdno:P1772 a owl:Class ;\n\towl:complementOf _:628f5161a15d4cb2d6c310b03688e314 .\n\n_:628f5161a15d4cb2d6c310b03688e314 a owl:Restriction ;\n\towl:onProperty wdt:P1772 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P846 a wikibase:Property ;\n\trdfs:label \"GBIF Taxon-ID\"@de ;\n\tskos:prefLabel \"GBIF Taxon-ID\"@de ;\n\tschema:name \"GBIF Taxon-ID\"@de ;\n\trdfs:label \"GBIF taxon ID\"@en ;\n\tskos:prefLabel \"GBIF taxon ID\"@en ;\n\tschema:name \"GBIF taxon ID\"@en ;\n\tschema:description \"Identifikator bei der Global Biodiversity Information Facility (GBIF)\"@de,\n\t\t\"taxon identifier in GBIF\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P846 ;\n\twikibase:claim p:P846 ;\n\twikibase:statementProperty ps:P846 ;\n\twikibase:statementValue psv:P846 ;\n\twikibase:qualifier pq:P846 ;\n\twikibase:qualifierValue pqv:P846 ;\n\twikibase:reference pr:P846 ;\n\twikibase:referenceValue prv:P846 ;\n\twikibase:novalue wdno:P846 ;\n\twikibase:directClaimNormalized wdtn:P846 ;\n\twikibase:statementValueNormalized psn:P846 ;\n\twikibase:qualifierValueNormalized pqn:P846 ;\n\twikibase:referenceValueNormalized prn:P846 .\n\np:P846 a owl:ObjectProperty .\n\npsv:P846 a owl:ObjectProperty .\n\npqv:P846 a owl:ObjectProperty .\n\nprv:P846 a owl:ObjectProperty .\n\nwdt:P846 a owl:DatatypeProperty .\n\nps:P846 a owl:DatatypeProperty .\n\npq:P846 a owl:DatatypeProperty .\n\npr:P846 a owl:DatatypeProperty .\n\npsn:P846 a owl:ObjectProperty .\n\npqn:P846 a owl:ObjectProperty .\n\nprn:P846 a owl:ObjectProperty .\n\nwdtn:P846 a owl:ObjectProperty .\n\nwdno:P846 a owl:Class ;\n\towl:complementOf _:4e43dee4c86ca789b71d8b527d96e65b .\n\n_:4e43dee4c86ca789b71d8b527d96e65b a owl:Restriction ;\n\towl:onProperty wdt:P846 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1939 a wikibase:Property ;\n\trdfs:label \"Dyntaxa-ID\"@de ;\n\tskos:prefLabel \"Dyntaxa-ID\"@de ;\n\tschema:name \"Dyntaxa-ID\"@de ;\n\trdfs:label \"Dyntaxa ID\"@mul ;\n\tskos:prefLabel \"Dyntaxa ID\"@mul ;\n\tschema:name \"Dyntaxa ID\"@mul ;\n\trdfs:label \"Dyntaxa ID\"@en ;\n\tskos:prefLabel \"Dyntaxa ID\"@en ;\n\tschema:name \"Dyntaxa ID\"@en ;\n\tschema:description \"Identifikator in der schwedischen Taxonomiedatenbank (Dyntaxa)\"@de,\n\t\t\"identifier for a taxon in the Swedish Taxonomic Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1939 ;\n\twikibase:claim p:P1939 ;\n\twikibase:statementProperty ps:P1939 ;\n\twikibase:statementValue psv:P1939 ;\n\twikibase:qualifier pq:P1939 ;\n\twikibase:qualifierValue pqv:P1939 ;\n\twikibase:reference pr:P1939 ;\n\twikibase:referenceValue prv:P1939 ;\n\twikibase:novalue wdno:P1939 ;\n\twikibase:directClaimNormalized wdtn:P1939 ;\n\twikibase:statementValueNormalized psn:P1939 ;\n\twikibase:qualifierValueNormalized pqn:P1939 ;\n\twikibase:referenceValueNormalized prn:P1939 .\n\np:P1939 a owl:ObjectProperty .\n\npsv:P1939 a owl:ObjectProperty .\n\npqv:P1939 a owl:ObjectProperty .\n\nprv:P1939 a owl:ObjectProperty .\n\nwdt:P1939 a owl:DatatypeProperty .\n\nps:P1939 a owl:DatatypeProperty .\n\npq:P1939 a owl:DatatypeProperty .\n\npr:P1939 a owl:DatatypeProperty .\n\npsn:P1939 a owl:ObjectProperty .\n\npqn:P1939 a owl:ObjectProperty .\n\nprn:P1939 a owl:ObjectProperty .\n\nwdtn:P1939 a owl:ObjectProperty .\n\nwdno:P1939 a owl:Class ;\n\towl:complementOf _:e537016449ccafe75bdf201c04c0c059 .\n\n_:e537016449ccafe75bdf201c04c0c059 a owl:Restriction ;\n\towl:onProperty wdt:P1939 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2036 a wikibase:Property ;\n\trdfs:label \"African-Plant-Database-ID\"@de ;\n\tskos:prefLabel \"African-Plant-Database-ID\"@de ;\n\tschema:name \"African-Plant-Database-ID\"@de ;\n\trdfs:label \"African Plant Database ID\"@mul ;\n\tskos:prefLabel \"African Plant Database ID\"@mul ;\n\tschema:name \"African Plant Database ID\"@mul ;\n\trdfs:label \"African Plant Database ID\"@en ;\n\tskos:prefLabel \"African Plant Database ID\"@en ;\n\tschema:name \"African Plant Database ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons in der African Plant Database\"@de,\n\t\t\"identifier for a plant taxon, in the Conservatoire et Jardin botaniques de Genève's African Plant Database of scientific names\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2036 ;\n\twikibase:claim p:P2036 ;\n\twikibase:statementProperty ps:P2036 ;\n\twikibase:statementValue psv:P2036 ;\n\twikibase:qualifier pq:P2036 ;\n\twikibase:qualifierValue pqv:P2036 ;\n\twikibase:reference pr:P2036 ;\n\twikibase:referenceValue prv:P2036 ;\n\twikibase:novalue wdno:P2036 ;\n\twikibase:directClaimNormalized wdtn:P2036 ;\n\twikibase:statementValueNormalized psn:P2036 ;\n\twikibase:qualifierValueNormalized pqn:P2036 ;\n\twikibase:referenceValueNormalized prn:P2036 .\n\np:P2036 a owl:ObjectProperty .\n\npsv:P2036 a owl:ObjectProperty .\n\npqv:P2036 a owl:ObjectProperty .\n\nprv:P2036 a owl:ObjectProperty .\n\nwdt:P2036 a owl:DatatypeProperty .\n\nps:P2036 a owl:DatatypeProperty .\n\npq:P2036 a owl:DatatypeProperty .\n\npr:P2036 a owl:DatatypeProperty .\n\npsn:P2036 a owl:ObjectProperty .\n\npqn:P2036 a owl:ObjectProperty .\n\nprn:P2036 a owl:ObjectProperty .\n\nwdtn:P2036 a owl:ObjectProperty .\n\nwdno:P2036 a owl:Class ;\n\towl:complementOf _:b0f9170a47773a0767cc8b80a8af9385 .\n\n_:b0f9170a47773a0767cc8b80a8af9385 a owl:Restriction ;\n\towl:onProperty wdt:P2036 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q9528983 a wikibase:Item ;\n\trdfs:label \"Category:Quercus robur\"@en ;\n\tskos:prefLabel \"Category:Quercus robur\"@en ;\n\tschema:name \"Category:Quercus robur\"@en ;\n\tschema:description \"Wikimedia-Kategorie\"@de,\n\t\t\"Wikimedia category\"@en .\n\nwd:P910 a wikibase:Property ;\n\trdfs:label \"Hauptkategorie des Themas\"@de ;\n\tskos:prefLabel \"Hauptkategorie des Themas\"@de ;\n\tschema:name \"Hauptkategorie des Themas\"@de ;\n\trdfs:label \"topic's main category\"@en ;\n\tskos:prefLabel \"topic's main category\"@en ;\n\tschema:name \"topic's main category\"@en ;\n\tschema:description \"Haupt-Wikimedia-Kategorie\"@de,\n\t\t\"main Wikimedia category\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P910 ;\n\twikibase:claim p:P910 ;\n\twikibase:statementProperty ps:P910 ;\n\twikibase:statementValue psv:P910 ;\n\twikibase:qualifier pq:P910 ;\n\twikibase:qualifierValue pqv:P910 ;\n\twikibase:reference pr:P910 ;\n\twikibase:referenceValue prv:P910 ;\n\twikibase:novalue wdno:P910 .\n\np:P910 a owl:ObjectProperty .\n\npsv:P910 a owl:ObjectProperty .\n\npqv:P910 a owl:ObjectProperty .\n\nprv:P910 a owl:ObjectProperty .\n\nwdt:P910 a owl:ObjectProperty .\n\nps:P910 a owl:ObjectProperty .\n\npq:P910 a owl:ObjectProperty .\n\npr:P910 a owl:ObjectProperty .\n\nwdno:P910 a owl:Class ;\n\towl:complementOf _:06be9361e78d041ce01df69013cf6906 .\n\n_:06be9361e78d041ce01df69013cf6906 a owl:Restriction ;\n\towl:onProperty wdt:P910 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1014 a wikibase:Property ;\n\trdfs:label \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tskos:prefLabel \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tschema:name \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\trdfs:label \"Art & Architecture Thesaurus ID\"@en ;\n\tskos:prefLabel \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:name \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:description \"Identifikator im Art-and-Architecture-Thesaurus des Getty Research Institute\"@de,\n\t\t\"identifier in the Art & Architecture Thesaurus by the Getty Research Institute\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1014 ;\n\twikibase:claim p:P1014 ;\n\twikibase:statementProperty ps:P1014 ;\n\twikibase:statementValue psv:P1014 ;\n\twikibase:qualifier pq:P1014 ;\n\twikibase:qualifierValue pqv:P1014 ;\n\twikibase:reference pr:P1014 ;\n\twikibase:referenceValue prv:P1014 ;\n\twikibase:novalue wdno:P1014 ;\n\twikibase:directClaimNormalized wdtn:P1014 ;\n\twikibase:statementValueNormalized psn:P1014 ;\n\twikibase:qualifierValueNormalized pqn:P1014 ;\n\twikibase:referenceValueNormalized prn:P1014 .\n\np:P1014 a owl:ObjectProperty .\n\npsv:P1014 a owl:ObjectProperty .\n\npqv:P1014 a owl:ObjectProperty .\n\nprv:P1014 a owl:ObjectProperty .\n\nwdt:P1014 a owl:DatatypeProperty .\n\nps:P1014 a owl:DatatypeProperty .\n\npq:P1014 a owl:DatatypeProperty .\n\npr:P1014 a owl:DatatypeProperty .\n\npsn:P1014 a owl:ObjectProperty .\n\npqn:P1014 a owl:ObjectProperty .\n\nprn:P1014 a owl:ObjectProperty .\n\nwdtn:P1014 a owl:ObjectProperty .\n\nwdno:P1014 a owl:Class ;\n\towl:complementOf _:b3313e8714e8603bc734ad31fe890277 .\n\n_:b3313e8714e8603bc734ad31fe890277 a owl:Restriction ;\n\towl:onProperty wdt:P1014 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2752 a wikibase:Property ;\n\trdfs:label \"NZOR-ID\"@de ;\n\tskos:prefLabel \"NZOR-ID\"@de ;\n\tschema:name \"NZOR-ID\"@de ;\n\trdfs:label \"New Zealand Organisms Register ID\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register ID\"@en ;\n\tschema:name \"New Zealand Organisms Register ID\"@en ;\n\tschema:description \"Identifikator im New Zealand Organisms Register\"@de,\n\t\t\"identifier for a taxon names in the New Zealand Organisms Register\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2752 ;\n\twikibase:claim p:P2752 ;\n\twikibase:statementProperty ps:P2752 ;\n\twikibase:statementValue psv:P2752 ;\n\twikibase:qualifier pq:P2752 ;\n\twikibase:qualifierValue pqv:P2752 ;\n\twikibase:reference pr:P2752 ;\n\twikibase:referenceValue prv:P2752 ;\n\twikibase:novalue wdno:P2752 ;\n\twikibase:directClaimNormalized wdtn:P2752 ;\n\twikibase:statementValueNormalized psn:P2752 ;\n\twikibase:qualifierValueNormalized pqn:P2752 ;\n\twikibase:referenceValueNormalized prn:P2752 .\n\np:P2752 a owl:ObjectProperty .\n\npsv:P2752 a owl:ObjectProperty .\n\npqv:P2752 a owl:ObjectProperty .\n\nprv:P2752 a owl:ObjectProperty .\n\nwdt:P2752 a owl:DatatypeProperty .\n\nps:P2752 a owl:DatatypeProperty .\n\npq:P2752 a owl:DatatypeProperty .\n\npr:P2752 a owl:DatatypeProperty .\n\npsn:P2752 a owl:ObjectProperty .\n\npqn:P2752 a owl:ObjectProperty .\n\nprn:P2752 a owl:ObjectProperty .\n\nwdtn:P2752 a owl:ObjectProperty .\n\nwdno:P2752 a owl:Class ;\n\towl:complementOf _:7abc2b813b7dc941a17c84c2fcfe1b31 .\n\n_:7abc2b813b7dc941a17c84c2fcfe1b31 a owl:Restriction ;\n\towl:onProperty wdt:P2752 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P627 a wikibase:Property ;\n\trdfs:label \"IUCN-ID\"@de ;\n\tskos:prefLabel \"IUCN-ID\"@de ;\n\tschema:name \"IUCN-ID\"@de ;\n\trdfs:label \"IUCN taxon ID\"@en ;\n\tskos:prefLabel \"IUCN taxon ID\"@en ;\n\tschema:name \"IUCN taxon ID\"@en ;\n\tschema:description \"Referenz für IUCN Artenschutzstatus (P141)\"@de,\n\t\t\"identifier for a taxon in the International Union for Conservation of Nature database; source for conservation status (P141)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P627 ;\n\twikibase:claim p:P627 ;\n\twikibase:statementProperty ps:P627 ;\n\twikibase:statementValue psv:P627 ;\n\twikibase:qualifier pq:P627 ;\n\twikibase:qualifierValue pqv:P627 ;\n\twikibase:reference pr:P627 ;\n\twikibase:referenceValue prv:P627 ;\n\twikibase:novalue wdno:P627 ;\n\twikibase:directClaimNormalized wdtn:P627 ;\n\twikibase:statementValueNormalized psn:P627 ;\n\twikibase:qualifierValueNormalized pqn:P627 ;\n\twikibase:referenceValueNormalized prn:P627 .\n\np:P627 a owl:ObjectProperty .\n\npsv:P627 a owl:ObjectProperty .\n\npqv:P627 a owl:ObjectProperty .\n\nprv:P627 a owl:ObjectProperty .\n\nwdt:P627 a owl:DatatypeProperty .\n\nps:P627 a owl:DatatypeProperty .\n\npq:P627 a owl:DatatypeProperty .\n\npr:P627 a owl:DatatypeProperty .\n\npsn:P627 a owl:ObjectProperty .\n\npqn:P627 a owl:ObjectProperty .\n\nprn:P627 a owl:ObjectProperty .\n\nwdtn:P627 a owl:ObjectProperty .\n\nwdno:P627 a owl:Class ;\n\towl:complementOf _:4fcdb0497c5903913817304f5781c532 .\n\n_:4fcdb0497c5903913817304f5781c532 a owl:Restriction ;\n\towl:onProperty wdt:P627 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3031 a wikibase:Property ;\n\trdfs:label \"EPPO-Code\"@de ;\n\tskos:prefLabel \"EPPO-Code\"@de ;\n\tschema:name \"EPPO-Code\"@de ;\n\trdfs:label \"EPPO Code\"@en ;\n\tskos:prefLabel \"EPPO Code\"@en ;\n\tschema:name \"EPPO Code\"@en ;\n\tschema:description \"der EPPO-Code ist ein System zur schnellen Identifikation von Schadorganismen in landwirtschaftlich genutzten Kulturpflanzen\"@de,\n\t\t\"identifier for a taxon in the EPPO Global Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3031 ;\n\twikibase:claim p:P3031 ;\n\twikibase:statementProperty ps:P3031 ;\n\twikibase:statementValue psv:P3031 ;\n\twikibase:qualifier pq:P3031 ;\n\twikibase:qualifierValue pqv:P3031 ;\n\twikibase:reference pr:P3031 ;\n\twikibase:referenceValue prv:P3031 ;\n\twikibase:novalue wdno:P3031 ;\n\twikibase:directClaimNormalized wdtn:P3031 ;\n\twikibase:statementValueNormalized psn:P3031 ;\n\twikibase:qualifierValueNormalized pqn:P3031 ;\n\twikibase:referenceValueNormalized prn:P3031 .\n\np:P3031 a owl:ObjectProperty .\n\npsv:P3031 a owl:ObjectProperty .\n\npqv:P3031 a owl:ObjectProperty .\n\nprv:P3031 a owl:ObjectProperty .\n\nwdt:P3031 a owl:DatatypeProperty .\n\nps:P3031 a owl:DatatypeProperty .\n\npq:P3031 a owl:DatatypeProperty .\n\npr:P3031 a owl:DatatypeProperty .\n\npsn:P3031 a owl:ObjectProperty .\n\npqn:P3031 a owl:ObjectProperty .\n\nprn:P3031 a owl:ObjectProperty .\n\nwdtn:P3031 a owl:ObjectProperty .\n\nwdno:P3031 a owl:Class ;\n\towl:complementOf _:e744cd0c79cf1a4f2c8fde243102dd40 .\n\n_:e744cd0c79cf1a4f2c8fde243102dd40 a owl:Restriction ;\n\towl:onProperty wdt:P3031 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3151 a wikibase:Property ;\n\trdfs:label \"iNaturalist-Taxon-ID\"@de ;\n\tskos:prefLabel \"iNaturalist-Taxon-ID\"@de ;\n\tschema:name \"iNaturalist-Taxon-ID\"@de ;\n\trdfs:label \"iNaturalist taxon ID\"@en ;\n\tskos:prefLabel \"iNaturalist taxon ID\"@en ;\n\tschema:name \"iNaturalist taxon ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in iNaturalist\"@de,\n\t\t\"identifier in iNaturalist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3151 ;\n\twikibase:claim p:P3151 ;\n\twikibase:statementProperty ps:P3151 ;\n\twikibase:statementValue psv:P3151 ;\n\twikibase:qualifier pq:P3151 ;\n\twikibase:qualifierValue pqv:P3151 ;\n\twikibase:reference pr:P3151 ;\n\twikibase:referenceValue prv:P3151 ;\n\twikibase:novalue wdno:P3151 ;\n\twikibase:directClaimNormalized wdtn:P3151 ;\n\twikibase:statementValueNormalized psn:P3151 ;\n\twikibase:qualifierValueNormalized pqn:P3151 ;\n\twikibase:referenceValueNormalized prn:P3151 .\n\np:P3151 a owl:ObjectProperty .\n\npsv:P3151 a owl:ObjectProperty .\n\npqv:P3151 a owl:ObjectProperty .\n\nprv:P3151 a owl:ObjectProperty .\n\nwdt:P3151 a owl:DatatypeProperty .\n\nps:P3151 a owl:DatatypeProperty .\n\npq:P3151 a owl:DatatypeProperty .\n\npr:P3151 a owl:DatatypeProperty .\n\npsn:P3151 a owl:ObjectProperty .\n\npqn:P3151 a owl:ObjectProperty .\n\nprn:P3151 a owl:ObjectProperty .\n\nwdtn:P3151 a owl:ObjectProperty .\n\nwdno:P3151 a owl:Class ;\n\towl:complementOf _:31d695e397adbd65a632ab66939a23e5 .\n\n_:31d695e397adbd65a632ab66939a23e5 a owl:Restriction ;\n\towl:onProperty wdt:P3151 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3186 a wikibase:Property ;\n\trdfs:label \"INPN-TAXREF-ID\"@de ;\n\tskos:prefLabel \"INPN-TAXREF-ID\"@de ;\n\tschema:name \"INPN-TAXREF-ID\"@de ;\n\trdfs:label \"TAXREF ID\"@en ;\n\tskos:prefLabel \"TAXREF ID\"@en ;\n\tschema:name \"TAXREF ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept im Inventaire National du Patrimoine Naturel (INPN) des Muséum National d'Histoire Naturelle (MNHN)\"@de,\n\t\t\"identifier for a biological taxon in TAXREF, the national taxonomic reference for fauna, flora and Fungi of metropolitan France and overseas developed by the National Museum of Natural History\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3186 ;\n\twikibase:claim p:P3186 ;\n\twikibase:statementProperty ps:P3186 ;\n\twikibase:statementValue psv:P3186 ;\n\twikibase:qualifier pq:P3186 ;\n\twikibase:qualifierValue pqv:P3186 ;\n\twikibase:reference pr:P3186 ;\n\twikibase:referenceValue prv:P3186 ;\n\twikibase:novalue wdno:P3186 ;\n\twikibase:directClaimNormalized wdtn:P3186 ;\n\twikibase:statementValueNormalized psn:P3186 ;\n\twikibase:qualifierValueNormalized pqn:P3186 ;\n\twikibase:referenceValueNormalized prn:P3186 .\n\np:P3186 a owl:ObjectProperty .\n\npsv:P3186 a owl:ObjectProperty .\n\npqv:P3186 a owl:ObjectProperty .\n\nprv:P3186 a owl:ObjectProperty .\n\nwdt:P3186 a owl:DatatypeProperty .\n\nps:P3186 a owl:DatatypeProperty .\n\npq:P3186 a owl:DatatypeProperty .\n\npr:P3186 a owl:DatatypeProperty .\n\npsn:P3186 a owl:ObjectProperty .\n\npqn:P3186 a owl:ObjectProperty .\n\nprn:P3186 a owl:ObjectProperty .\n\nwdtn:P3186 a owl:ObjectProperty .\n\nwdno:P3186 a owl:Class ;\n\towl:complementOf _:0d44fe59112f39b6baefab91e5ecfa6c .\n\n_:0d44fe59112f39b6baefab91e5ecfa6c a owl:Restriction ;\n\towl:onProperty wdt:P3186 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3240 a wikibase:Property ;\n\trdfs:label \"NBN-ID\"@de ;\n\tskos:prefLabel \"NBN-ID\"@de ;\n\tschema:name \"NBN-ID\"@de ;\n\trdfs:label \"NBN System Key\"@mul ;\n\tskos:prefLabel \"NBN System Key\"@mul ;\n\tschema:name \"NBN System Key\"@mul ;\n\trdfs:label \"NBN System Key\"@en ;\n\tskos:prefLabel \"NBN System Key\"@en ;\n\tschema:name \"NBN System Key\"@en ;\n\tschema:description \"identifier of a taxon in the National Biodiversity Network (UK)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3240 ;\n\twikibase:claim p:P3240 ;\n\twikibase:statementProperty ps:P3240 ;\n\twikibase:statementValue psv:P3240 ;\n\twikibase:qualifier pq:P3240 ;\n\twikibase:qualifierValue pqv:P3240 ;\n\twikibase:reference pr:P3240 ;\n\twikibase:referenceValue prv:P3240 ;\n\twikibase:novalue wdno:P3240 ;\n\twikibase:directClaimNormalized wdtn:P3240 ;\n\twikibase:statementValueNormalized psn:P3240 ;\n\twikibase:qualifierValueNormalized pqn:P3240 ;\n\twikibase:referenceValueNormalized prn:P3240 .\n\np:P3240 a owl:ObjectProperty .\n\npsv:P3240 a owl:ObjectProperty .\n\npqv:P3240 a owl:ObjectProperty .\n\nprv:P3240 a owl:ObjectProperty .\n\nwdt:P3240 a owl:DatatypeProperty .\n\nps:P3240 a owl:DatatypeProperty .\n\npq:P3240 a owl:DatatypeProperty .\n\npr:P3240 a owl:DatatypeProperty .\n\npsn:P3240 a owl:ObjectProperty .\n\npqn:P3240 a owl:ObjectProperty .\n\nprn:P3240 a owl:ObjectProperty .\n\nwdtn:P3240 a owl:ObjectProperty .\n\nwdno:P3240 a owl:Class ;\n\towl:complementOf _:8c5bcb3534b61ba7ac85ad93d3f23a2f .\n\n_:8c5bcb3534b61ba7ac85ad93d3f23a2f a owl:Restriction ;\n\towl:onProperty wdt:P3240 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3405 a wikibase:Property ;\n\trdfs:label \"NSR-ID\"@de ;\n\tskos:prefLabel \"NSR-ID\"@de ;\n\tschema:name \"NSR-ID\"@de ;\n\trdfs:label \"Nederlands Soortenregister ID\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister ID\"@en ;\n\tschema:name \"Nederlands Soortenregister ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im Nederlands Soortenregister\"@de,\n\t\t\"identifier for a taxon in the ''Nederlands Soortenregister'', a database of taxa in the Netherlands by Naturalis Biodiversity Center\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3405 ;\n\twikibase:claim p:P3405 ;\n\twikibase:statementProperty ps:P3405 ;\n\twikibase:statementValue psv:P3405 ;\n\twikibase:qualifier pq:P3405 ;\n\twikibase:qualifierValue pqv:P3405 ;\n\twikibase:reference pr:P3405 ;\n\twikibase:referenceValue prv:P3405 ;\n\twikibase:novalue wdno:P3405 ;\n\twikibase:directClaimNormalized wdtn:P3405 ;\n\twikibase:statementValueNormalized psn:P3405 ;\n\twikibase:qualifierValueNormalized pqn:P3405 ;\n\twikibase:referenceValueNormalized prn:P3405 .\n\np:P3405 a owl:ObjectProperty .\n\npsv:P3405 a owl:ObjectProperty .\n\npqv:P3405 a owl:ObjectProperty .\n\nprv:P3405 a owl:ObjectProperty .\n\nwdt:P3405 a owl:DatatypeProperty .\n\nps:P3405 a owl:DatatypeProperty .\n\npq:P3405 a owl:DatatypeProperty .\n\npr:P3405 a owl:DatatypeProperty .\n\npsn:P3405 a owl:ObjectProperty .\n\npqn:P3405 a owl:ObjectProperty .\n\nprn:P3405 a owl:ObjectProperty .\n\nwdtn:P3405 a owl:ObjectProperty .\n\nwdno:P3405 a owl:Class ;\n\towl:complementOf _:1ce44f5ee81f62022e69a4f9a706fc62 .\n\n_:1ce44f5ee81f62022e69a4f9a706fc62 a owl:Restriction ;\n\towl:onProperty wdt:P3405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3591 a wikibase:Property ;\n\trdfs:label \"WCSPF-ID\"@de ;\n\tskos:prefLabel \"WCSPF-ID\"@de ;\n\tschema:name \"WCSPF-ID\"@de ;\n\trdfs:label \"WCSPF ID\"@en ;\n\tskos:prefLabel \"WCSPF ID\"@en ;\n\tschema:name \"WCSPF ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in der World Checklist of Selected Plant Families (WCSPF)\"@de,\n\t\t\"identifier of a plant taxon, in the World Checklist of Selected Plant Families\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3591 ;\n\twikibase:claim p:P3591 ;\n\twikibase:statementProperty ps:P3591 ;\n\twikibase:statementValue psv:P3591 ;\n\twikibase:qualifier pq:P3591 ;\n\twikibase:qualifierValue pqv:P3591 ;\n\twikibase:reference pr:P3591 ;\n\twikibase:referenceValue prv:P3591 ;\n\twikibase:novalue wdno:P3591 ;\n\twikibase:directClaimNormalized wdtn:P3591 ;\n\twikibase:statementValueNormalized psn:P3591 ;\n\twikibase:qualifierValueNormalized pqn:P3591 ;\n\twikibase:referenceValueNormalized prn:P3591 .\n\np:P3591 a owl:ObjectProperty .\n\npsv:P3591 a owl:ObjectProperty .\n\npqv:P3591 a owl:ObjectProperty .\n\nprv:P3591 a owl:ObjectProperty .\n\nwdt:P3591 a owl:DatatypeProperty .\n\nps:P3591 a owl:DatatypeProperty .\n\npq:P3591 a owl:DatatypeProperty .\n\npr:P3591 a owl:DatatypeProperty .\n\npsn:P3591 a owl:ObjectProperty .\n\npqn:P3591 a owl:ObjectProperty .\n\nprn:P3591 a owl:ObjectProperty .\n\nwdtn:P3591 a owl:ObjectProperty .\n\nwdno:P3591 a owl:Class ;\n\towl:complementOf _:6ad364611b81140818b2a9c1b2c8f7a2 .\n\n_:6ad364611b81140818b2a9c1b2c8f7a2 a owl:Restriction ;\n\towl:onProperty wdt:P3591 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P838 a wikibase:Property ;\n\trdfs:label \"BioLib-ID\"@de ;\n\tskos:prefLabel \"BioLib-ID\"@de ;\n\tschema:name \"BioLib-ID\"@de ;\n\trdfs:label \"BioLib taxon ID\"@en ;\n\tskos:prefLabel \"BioLib taxon ID\"@en ;\n\tschema:name \"BioLib taxon ID\"@en ;\n\tschema:description \"Identifikator in der Biological Library (BioLib)\"@de,\n\t\t\"identifier for a taxon in the biological encyclopedia BioLib\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P838 ;\n\twikibase:claim p:P838 ;\n\twikibase:statementProperty ps:P838 ;\n\twikibase:statementValue psv:P838 ;\n\twikibase:qualifier pq:P838 ;\n\twikibase:qualifierValue pqv:P838 ;\n\twikibase:reference pr:P838 ;\n\twikibase:referenceValue prv:P838 ;\n\twikibase:novalue wdno:P838 ;\n\twikibase:directClaimNormalized wdtn:P838 ;\n\twikibase:statementValueNormalized psn:P838 ;\n\twikibase:qualifierValueNormalized pqn:P838 ;\n\twikibase:referenceValueNormalized prn:P838 .\n\np:P838 a owl:ObjectProperty .\n\npsv:P838 a owl:ObjectProperty .\n\npqv:P838 a owl:ObjectProperty .\n\nprv:P838 a owl:ObjectProperty .\n\nwdt:P838 a owl:DatatypeProperty .\n\nps:P838 a owl:DatatypeProperty .\n\npq:P838 a owl:DatatypeProperty .\n\npr:P838 a owl:DatatypeProperty .\n\npsn:P838 a owl:ObjectProperty .\n\npqn:P838 a owl:ObjectProperty .\n\nprn:P838 a owl:ObjectProperty .\n\nwdtn:P838 a owl:ObjectProperty .\n\nwdno:P838 a owl:Class ;\n\towl:complementOf _:c0b134a70991a73595445bd125ff1333 .\n\n_:c0b134a70991a73595445bd125ff1333 a owl:Restriction ;\n\towl:onProperty wdt:P838 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3420 a wikibase:Property ;\n\trdfs:label \"Calflora-ID\"@de ;\n\tskos:prefLabel \"Calflora-ID\"@de ;\n\tschema:name \"Calflora-ID\"@de ;\n\trdfs:label \"Calflora ID\"@en ;\n\tskos:prefLabel \"Calflora ID\"@en ;\n\tschema:name \"Calflora ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon bei Calflora\"@de,\n\t\t\"identifier for a taxon in Calflora\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3420 ;\n\twikibase:claim p:P3420 ;\n\twikibase:statementProperty ps:P3420 ;\n\twikibase:statementValue psv:P3420 ;\n\twikibase:qualifier pq:P3420 ;\n\twikibase:qualifierValue pqv:P3420 ;\n\twikibase:reference pr:P3420 ;\n\twikibase:referenceValue prv:P3420 ;\n\twikibase:novalue wdno:P3420 ;\n\twikibase:directClaimNormalized wdtn:P3420 ;\n\twikibase:statementValueNormalized psn:P3420 ;\n\twikibase:qualifierValueNormalized pqn:P3420 ;\n\twikibase:referenceValueNormalized prn:P3420 .\n\np:P3420 a owl:ObjectProperty .\n\npsv:P3420 a owl:ObjectProperty .\n\npqv:P3420 a owl:ObjectProperty .\n\nprv:P3420 a owl:ObjectProperty .\n\nwdt:P3420 a owl:DatatypeProperty .\n\nps:P3420 a owl:DatatypeProperty .\n\npq:P3420 a owl:DatatypeProperty .\n\npr:P3420 a owl:DatatypeProperty .\n\npsn:P3420 a owl:ObjectProperty .\n\npqn:P3420 a owl:ObjectProperty .\n\nprn:P3420 a owl:ObjectProperty .\n\nwdtn:P3420 a owl:ObjectProperty .\n\nwdno:P3420 a owl:Class ;\n\towl:complementOf _:4626cdaff315771af2add5196658c55f .\n\n_:4626cdaff315771af2add5196658c55f a owl:Restriction ;\n\towl:onProperty wdt:P3420 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4122 a wikibase:Property ;\n\trdfs:label \"PalDat-ID\"@de ;\n\tskos:prefLabel \"PalDat-ID\"@de ;\n\tschema:name \"PalDat-ID\"@de ;\n\trdfs:label \"PalDat plant ID\"@en ;\n\tskos:prefLabel \"PalDat plant ID\"@en ;\n\tschema:name \"PalDat plant ID\"@en ;\n\tschema:description \"Identifikator in der Palynological Database (PalDat)\"@de,\n\t\t\"identifier for a plant species in the Palynological Database (PalDat) for pollen of the University of Vienna\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4122 ;\n\twikibase:claim p:P4122 ;\n\twikibase:statementProperty ps:P4122 ;\n\twikibase:statementValue psv:P4122 ;\n\twikibase:qualifier pq:P4122 ;\n\twikibase:qualifierValue pqv:P4122 ;\n\twikibase:reference pr:P4122 ;\n\twikibase:referenceValue prv:P4122 ;\n\twikibase:novalue wdno:P4122 ;\n\twikibase:directClaimNormalized wdtn:P4122 ;\n\twikibase:statementValueNormalized psn:P4122 ;\n\twikibase:qualifierValueNormalized pqn:P4122 ;\n\twikibase:referenceValueNormalized prn:P4122 .\n\np:P4122 a owl:ObjectProperty .\n\npsv:P4122 a owl:ObjectProperty .\n\npqv:P4122 a owl:ObjectProperty .\n\nprv:P4122 a owl:ObjectProperty .\n\nwdt:P4122 a owl:DatatypeProperty .\n\nps:P4122 a owl:DatatypeProperty .\n\npq:P4122 a owl:DatatypeProperty .\n\npr:P4122 a owl:DatatypeProperty .\n\npsn:P4122 a owl:ObjectProperty .\n\npqn:P4122 a owl:ObjectProperty .\n\nprn:P4122 a owl:ObjectProperty .\n\nwdtn:P4122 a owl:ObjectProperty .\n\nwdno:P4122 a owl:Class ;\n\towl:complementOf _:a5a87642131df39957cc0636be5cdbb0 .\n\n_:a5a87642131df39957cc0636be5cdbb0 a owl:Restriction ;\n\towl:onProperty wdt:P4122 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1417 a wikibase:Property ;\n\trdfs:label \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tskos:prefLabel \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tschema:name \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\trdfs:label \"Encyclopædia Britannica Online ID\"@en ;\n\tskos:prefLabel \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:name \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:description \"Kennung eines Artikels in der Onlineausgabe der Encyclopædia Britannica\"@de,\n\t\t\"identifier for an article in the online version of Encyclopædia Britannica\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1417 ;\n\twikibase:claim p:P1417 ;\n\twikibase:statementProperty ps:P1417 ;\n\twikibase:statementValue psv:P1417 ;\n\twikibase:qualifier pq:P1417 ;\n\twikibase:qualifierValue pqv:P1417 ;\n\twikibase:reference pr:P1417 ;\n\twikibase:referenceValue prv:P1417 ;\n\twikibase:novalue wdno:P1417 ;\n\twikibase:directClaimNormalized wdtn:P1417 ;\n\twikibase:statementValueNormalized psn:P1417 ;\n\twikibase:qualifierValueNormalized pqn:P1417 ;\n\twikibase:referenceValueNormalized prn:P1417 .\n\np:P1417 a owl:ObjectProperty .\n\npsv:P1417 a owl:ObjectProperty .\n\npqv:P1417 a owl:ObjectProperty .\n\nprv:P1417 a owl:ObjectProperty .\n\nwdt:P1417 a owl:DatatypeProperty .\n\nps:P1417 a owl:DatatypeProperty .\n\npq:P1417 a owl:DatatypeProperty .\n\npr:P1417 a owl:DatatypeProperty .\n\npsn:P1417 a owl:ObjectProperty .\n\npqn:P1417 a owl:ObjectProperty .\n\nprn:P1417 a owl:ObjectProperty .\n\nwdtn:P1417 a owl:ObjectProperty .\n\nwdno:P1417 a owl:Class ;\n\towl:complementOf _:0cb1ab8817799c4db539b18975ce292a .\n\n_:0cb1ab8817799c4db539b18975ce292a a owl:Restriction ;\n\towl:onProperty wdt:P1417 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4301 a wikibase:Property ;\n\trdfs:label \"PfaF-Kennung\"@de ;\n\tskos:prefLabel \"PfaF-Kennung\"@de ;\n\tschema:name \"PfaF-Kennung\"@de ;\n\trdfs:label \"PfaF ID\"@en ;\n\tskos:prefLabel \"PfaF ID\"@en ;\n\tschema:name \"PfaF ID\"@en ;\n\tschema:description \"Identifikator für ein Pflanzentaxon in der Plants-For-A-Future-Datenbank\"@de,\n\t\t\"identifier for a plant taxon, in the Plants For A Future database of uses of plants and their parts\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4301 ;\n\twikibase:claim p:P4301 ;\n\twikibase:statementProperty ps:P4301 ;\n\twikibase:statementValue psv:P4301 ;\n\twikibase:qualifier pq:P4301 ;\n\twikibase:qualifierValue pqv:P4301 ;\n\twikibase:reference pr:P4301 ;\n\twikibase:referenceValue prv:P4301 ;\n\twikibase:novalue wdno:P4301 ;\n\twikibase:directClaimNormalized wdtn:P4301 ;\n\twikibase:statementValueNormalized psn:P4301 ;\n\twikibase:qualifierValueNormalized pqn:P4301 ;\n\twikibase:referenceValueNormalized prn:P4301 .\n\np:P4301 a owl:ObjectProperty .\n\npsv:P4301 a owl:ObjectProperty .\n\npqv:P4301 a owl:ObjectProperty .\n\nprv:P4301 a owl:ObjectProperty .\n\nwdt:P4301 a owl:DatatypeProperty .\n\nps:P4301 a owl:DatatypeProperty .\n\npq:P4301 a owl:DatatypeProperty .\n\npr:P4301 a owl:DatatypeProperty .\n\npsn:P4301 a owl:ObjectProperty .\n\npqn:P4301 a owl:ObjectProperty .\n\nprn:P4301 a owl:ObjectProperty .\n\nwdtn:P4301 a owl:ObjectProperty .\n\nwdno:P4301 a owl:Class ;\n\towl:complementOf _:9a38347fb3f015804582338e450e1fbe .\n\n_:9a38347fb3f015804582338e450e1fbe a owl:Restriction ;\n\towl:onProperty wdt:P4301 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4311 a wikibase:Property ;\n\trdfs:label \"FOIH-Taxon-ID\"@de ;\n\tskos:prefLabel \"FOIH-Taxon-ID\"@de ;\n\tschema:name \"FOIH-Taxon-ID\"@de ;\n\trdfs:label \"FOIH taxon ID\"@en ;\n\tskos:prefLabel \"FOIH taxon ID\"@en ;\n\tschema:name \"FOIH taxon ID\"@en ;\n\tschema:description \"Identifikator für Taxa im Thesaurus der flämischen Organisation für unbewegliches Kulturerbe\"@de,\n\t\t\"identifier for a taxon in the thesaurus of the Flemish organization for Immovable Heritage\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4311 ;\n\twikibase:claim p:P4311 ;\n\twikibase:statementProperty ps:P4311 ;\n\twikibase:statementValue psv:P4311 ;\n\twikibase:qualifier pq:P4311 ;\n\twikibase:qualifierValue pqv:P4311 ;\n\twikibase:reference pr:P4311 ;\n\twikibase:referenceValue prv:P4311 ;\n\twikibase:novalue wdno:P4311 ;\n\twikibase:directClaimNormalized wdtn:P4311 ;\n\twikibase:statementValueNormalized psn:P4311 ;\n\twikibase:qualifierValueNormalized pqn:P4311 ;\n\twikibase:referenceValueNormalized prn:P4311 .\n\np:P4311 a owl:ObjectProperty .\n\npsv:P4311 a owl:ObjectProperty .\n\npqv:P4311 a owl:ObjectProperty .\n\nprv:P4311 a owl:ObjectProperty .\n\nwdt:P4311 a owl:DatatypeProperty .\n\nps:P4311 a owl:DatatypeProperty .\n\npq:P4311 a owl:DatatypeProperty .\n\npr:P4311 a owl:DatatypeProperty .\n\npsn:P4311 a owl:ObjectProperty .\n\npqn:P4311 a owl:ObjectProperty .\n\nprn:P4311 a owl:ObjectProperty .\n\nwdtn:P4311 a owl:ObjectProperty .\n\nwdno:P4311 a owl:Class ;\n\towl:complementOf _:b4b7cc24da1182c831879e07ac52ac8d .\n\n_:b4b7cc24da1182c831879e07ac52ac8d a owl:Restriction ;\n\towl:onProperty wdt:P4311 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q91885056 a wikibase:Item ;\n\trdfs:label \"Baum des Jahres\"@de ;\n\tskos:prefLabel \"Baum des Jahres\"@de ;\n\tschema:name \"Baum des Jahres\"@de ;\n\trdfs:label \"Tree of the year (Germany)\"@en ;\n\tskos:prefLabel \"Tree of the year (Germany)\"@en ;\n\tschema:name \"Tree of the year (Germany)\"@en ;\n\tschema:description \"jährliche deutsche Auswahl einer Baumart zur breiteren Förderung\"@de,\n\t\t\"annual German selection of a tree species for wider promotion\"@en .\n\nwd:P166 a wikibase:Property ;\n\trdfs:label \"Auszeichnung\"@de ;\n\tskos:prefLabel \"Auszeichnung\"@de ;\n\tschema:name \"Auszeichnung\"@de ;\n\trdfs:label \"award received\"@en ;\n\tskos:prefLabel \"award received\"@en ;\n\tschema:name \"award received\"@en ;\n\tschema:description \"erhaltene Auszeichnung einer Person, Organisation oder eines schöpferischen Werks\"@de,\n\t\t\"award or recognition received by a person, organization or creative work\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P166 ;\n\twikibase:claim p:P166 ;\n\twikibase:statementProperty ps:P166 ;\n\twikibase:statementValue psv:P166 ;\n\twikibase:qualifier pq:P166 ;\n\twikibase:qualifierValue pqv:P166 ;\n\twikibase:reference pr:P166 ;\n\twikibase:referenceValue prv:P166 ;\n\twikibase:novalue wdno:P166 .\n\np:P166 a owl:ObjectProperty .\n\npsv:P166 a owl:ObjectProperty .\n\npqv:P166 a owl:ObjectProperty .\n\nprv:P166 a owl:ObjectProperty .\n\nwdt:P166 a owl:ObjectProperty .\n\nps:P166 a owl:ObjectProperty .\n\npq:P166 a owl:ObjectProperty .\n\npr:P166 a owl:ObjectProperty .\n\nwdno:P166 a owl:Class ;\n\towl:complementOf _:7d9248d3103ddecb66c1e5cdef1c87b5 .\n\n_:7d9248d3103ddecb66c1e5cdef1c87b5 a owl:Restriction ;\n\towl:onProperty wdt:P166 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q91888395 a wikibase:Item ;\n\trdfs:label \"Baum des Jahres (Ungarn)\"@de ;\n\tskos:prefLabel \"Baum des Jahres (Ungarn)\"@de ;\n\tschema:name \"Baum des Jahres (Ungarn)\"@de ;\n\trdfs:label \"Tree of the Year (Hungary)\"@en ;\n\tskos:prefLabel \"Tree of the Year (Hungary)\"@en ;\n\tschema:name \"Tree of the Year (Hungary)\"@en ;\n\tschema:description \"Wettbewerb zur Wahl eines Baum des Jahres in Ungarn\"@de,\n\t\t\"competition to choose a tree of the year in Hungary\"@en .\n\nwd:Q91888146 a wikibase:Item ;\n\trdfs:label \"Österreichischer Baum des Jahres\"@de ;\n\tskos:prefLabel \"Österreichischer Baum des Jahres\"@de ;\n\tschema:name \"Österreichischer Baum des Jahres\"@de ;\n\trdfs:label \"Tree of the Year (Austria)\"@en ;\n\tskos:prefLabel \"Tree of the Year (Austria)\"@en ;\n\tschema:name \"Tree of the Year (Austria)\"@en ;\n\tschema:description \"österreichische Auszeichnung\"@de,\n\t\t\"Austrian award\"@en .\n\nwd:P4753 a wikibase:Property ;\n\trdfs:label \"Ecocrop-ID\"@de ;\n\tskos:prefLabel \"Ecocrop-ID\"@de ;\n\tschema:name \"Ecocrop-ID\"@de ;\n\trdfs:label \"Ecocrop ID\"@en ;\n\tskos:prefLabel \"Ecocrop ID\"@en ;\n\tschema:name \"Ecocrop ID\"@en ;\n\tschema:description \"identifier of a plant used as an agricultural crop in the Ecocrop database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4753 ;\n\twikibase:claim p:P4753 ;\n\twikibase:statementProperty ps:P4753 ;\n\twikibase:statementValue psv:P4753 ;\n\twikibase:qualifier pq:P4753 ;\n\twikibase:qualifierValue pqv:P4753 ;\n\twikibase:reference pr:P4753 ;\n\twikibase:referenceValue prv:P4753 ;\n\twikibase:novalue wdno:P4753 ;\n\twikibase:directClaimNormalized wdtn:P4753 ;\n\twikibase:statementValueNormalized psn:P4753 ;\n\twikibase:qualifierValueNormalized pqn:P4753 ;\n\twikibase:referenceValueNormalized prn:P4753 .\n\np:P4753 a owl:ObjectProperty .\n\npsv:P4753 a owl:ObjectProperty .\n\npqv:P4753 a owl:ObjectProperty .\n\nprv:P4753 a owl:ObjectProperty .\n\nwdt:P4753 a owl:DatatypeProperty .\n\nps:P4753 a owl:DatatypeProperty .\n\npq:P4753 a owl:DatatypeProperty .\n\npr:P4753 a owl:DatatypeProperty .\n\npsn:P4753 a owl:ObjectProperty .\n\npqn:P4753 a owl:ObjectProperty .\n\nprn:P4753 a owl:ObjectProperty .\n\nwdtn:P4753 a owl:ObjectProperty .\n\nwdno:P4753 a owl:Class ;\n\towl:complementOf _:8e7c271cf74abe077730806975e76934 .\n\n_:8e7c271cf74abe077730806975e76934 a owl:Restriction ;\n\towl:onProperty wdt:P4753 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5037 a wikibase:Property ;\n\trdfs:label \"POWO-URN\"@de ;\n\tskos:prefLabel \"POWO-URN\"@de ;\n\tschema:name \"POWO-URN\"@de ;\n\trdfs:label \"Plants of the World Online ID\"@en ;\n\tskos:prefLabel \"Plants of the World Online ID\"@en ;\n\tschema:name \"Plants of the World Online ID\"@en ;\n\tschema:description \"LSID für den wissenschaftlichen Namen eines Taxons in der Datenbank Plants of the World online (POWO)\"@de,\n\t\t\"identifier of a (vascular) plant name in the Plants of the World online database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5037 ;\n\twikibase:claim p:P5037 ;\n\twikibase:statementProperty ps:P5037 ;\n\twikibase:statementValue psv:P5037 ;\n\twikibase:qualifier pq:P5037 ;\n\twikibase:qualifierValue pqv:P5037 ;\n\twikibase:reference pr:P5037 ;\n\twikibase:referenceValue prv:P5037 ;\n\twikibase:novalue wdno:P5037 ;\n\twikibase:directClaimNormalized wdtn:P5037 ;\n\twikibase:statementValueNormalized psn:P5037 ;\n\twikibase:qualifierValueNormalized pqn:P5037 ;\n\twikibase:referenceValueNormalized prn:P5037 .\n\np:P5037 a owl:ObjectProperty .\n\npsv:P5037 a owl:ObjectProperty .\n\npqv:P5037 a owl:ObjectProperty .\n\nprv:P5037 a owl:ObjectProperty .\n\nwdt:P5037 a owl:DatatypeProperty .\n\nps:P5037 a owl:DatatypeProperty .\n\npq:P5037 a owl:DatatypeProperty .\n\npr:P5037 a owl:DatatypeProperty .\n\npsn:P5037 a owl:ObjectProperty .\n\npqn:P5037 a owl:ObjectProperty .\n\nprn:P5037 a owl:ObjectProperty .\n\nwdtn:P5037 a owl:ObjectProperty .\n\nwdno:P5037 a owl:Class ;\n\towl:complementOf _:e3823d3564c4e92668e101ce2eaea20a .\n\n_:e3823d3564c4e92668e101ce2eaea20a a owl:Restriction ;\n\towl:onProperty wdt:P5037 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5179 a wikibase:Property ;\n\trdfs:label \"FloraCatalana ID\"@en ;\n\tskos:prefLabel \"FloraCatalana ID\"@en ;\n\tschema:name \"FloraCatalana ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the FloraCatalana database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5179 ;\n\twikibase:claim p:P5179 ;\n\twikibase:statementProperty ps:P5179 ;\n\twikibase:statementValue psv:P5179 ;\n\twikibase:qualifier pq:P5179 ;\n\twikibase:qualifierValue pqv:P5179 ;\n\twikibase:reference pr:P5179 ;\n\twikibase:referenceValue prv:P5179 ;\n\twikibase:novalue wdno:P5179 ;\n\twikibase:directClaimNormalized wdtn:P5179 ;\n\twikibase:statementValueNormalized psn:P5179 ;\n\twikibase:qualifierValueNormalized pqn:P5179 ;\n\twikibase:referenceValueNormalized prn:P5179 .\n\np:P5179 a owl:ObjectProperty .\n\npsv:P5179 a owl:ObjectProperty .\n\npqv:P5179 a owl:ObjectProperty .\n\nprv:P5179 a owl:ObjectProperty .\n\nwdt:P5179 a owl:DatatypeProperty .\n\nps:P5179 a owl:DatatypeProperty .\n\npq:P5179 a owl:DatatypeProperty .\n\npr:P5179 a owl:DatatypeProperty .\n\npsn:P5179 a owl:ObjectProperty .\n\npqn:P5179 a owl:ObjectProperty .\n\nprn:P5179 a owl:ObjectProperty .\n\nwdtn:P5179 a owl:ObjectProperty .\n\nwdno:P5179 a owl:Class ;\n\towl:complementOf _:84d6f65176e76c526a030fa8ba7fd410 .\n\n_:84d6f65176e76c526a030fa8ba7fd410 a owl:Restriction ;\n\towl:onProperty wdt:P5179 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3130 a wikibase:Property ;\n\trdfs:label \"NSW-Flora-ID\"@de ;\n\tskos:prefLabel \"NSW-Flora-ID\"@de ;\n\tschema:name \"NSW-Flora-ID\"@de ;\n\trdfs:label \"NSW Flora ID\"@en ;\n\tskos:prefLabel \"NSW Flora ID\"@en ;\n\tschema:name \"NSW Flora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the NSW Flora Online\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3130 ;\n\twikibase:claim p:P3130 ;\n\twikibase:statementProperty ps:P3130 ;\n\twikibase:statementValue psv:P3130 ;\n\twikibase:qualifier pq:P3130 ;\n\twikibase:qualifierValue pqv:P3130 ;\n\twikibase:reference pr:P3130 ;\n\twikibase:referenceValue prv:P3130 ;\n\twikibase:novalue wdno:P3130 ;\n\twikibase:directClaimNormalized wdtn:P3130 ;\n\twikibase:statementValueNormalized psn:P3130 ;\n\twikibase:qualifierValueNormalized pqn:P3130 ;\n\twikibase:referenceValueNormalized prn:P3130 .\n\np:P3130 a owl:ObjectProperty .\n\npsv:P3130 a owl:ObjectProperty .\n\npqv:P3130 a owl:ObjectProperty .\n\nprv:P3130 a owl:ObjectProperty .\n\nwdt:P3130 a owl:DatatypeProperty .\n\nps:P3130 a owl:DatatypeProperty .\n\npq:P3130 a owl:DatatypeProperty .\n\npr:P3130 a owl:DatatypeProperty .\n\npsn:P3130 a owl:ObjectProperty .\n\npqn:P3130 a owl:ObjectProperty .\n\nprn:P3130 a owl:ObjectProperty .\n\nwdtn:P3130 a owl:ObjectProperty .\n\nwdno:P3130 a owl:Class ;\n\towl:complementOf _:bd20b33acfdea619a9f3ca924f25ada4 .\n\n_:bd20b33acfdea619a9f3ca924f25ada4 a owl:Restriction ;\n\towl:onProperty wdt:P3130 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5263 a wikibase:Property ;\n\trdfs:label \"NDOP-Taxon-ID\"@de ;\n\tskos:prefLabel \"NDOP-Taxon-ID\"@de ;\n\tschema:name \"NDOP-Taxon-ID\"@de ;\n\trdfs:label \"Czech NDOP taxon ID\"@en ;\n\tskos:prefLabel \"Czech NDOP taxon ID\"@en ;\n\tschema:name \"Czech NDOP taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the Conservancy Species Occurrence Finding Database, managed by the Nature Conservation Agency of the Czech Republic\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5263 ;\n\twikibase:claim p:P5263 ;\n\twikibase:statementProperty ps:P5263 ;\n\twikibase:statementValue psv:P5263 ;\n\twikibase:qualifier pq:P5263 ;\n\twikibase:qualifierValue pqv:P5263 ;\n\twikibase:reference pr:P5263 ;\n\twikibase:referenceValue prv:P5263 ;\n\twikibase:novalue wdno:P5263 ;\n\twikibase:directClaimNormalized wdtn:P5263 ;\n\twikibase:statementValueNormalized psn:P5263 ;\n\twikibase:qualifierValueNormalized pqn:P5263 ;\n\twikibase:referenceValueNormalized prn:P5263 .\n\np:P5263 a owl:ObjectProperty .\n\npsv:P5263 a owl:ObjectProperty .\n\npqv:P5263 a owl:ObjectProperty .\n\nprv:P5263 a owl:ObjectProperty .\n\nwdt:P5263 a owl:DatatypeProperty .\n\nps:P5263 a owl:DatatypeProperty .\n\npq:P5263 a owl:DatatypeProperty .\n\npr:P5263 a owl:DatatypeProperty .\n\npsn:P5263 a owl:ObjectProperty .\n\npqn:P5263 a owl:ObjectProperty .\n\nprn:P5263 a owl:ObjectProperty .\n\nwdtn:P5263 a owl:ObjectProperty .\n\nwdno:P5263 a owl:Class ;\n\towl:complementOf _:8fa24224d484a1329916a97de357af8c .\n\n_:8fa24224d484a1329916a97de357af8c a owl:Restriction ;\n\towl:onProperty wdt:P5263 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5055 a wikibase:Property ;\n\trdfs:label \"IRMNG-ID\"@de ;\n\tskos:prefLabel \"IRMNG-ID\"@de ;\n\tschema:name \"IRMNG-ID\"@de ;\n\trdfs:label \"IRMNG ID\"@en ;\n\tskos:prefLabel \"IRMNG ID\"@en ;\n\tschema:name \"IRMNG ID\"@en ;\n\tschema:description \"Identifikator im Interim Register of Marine and Nonmarine Genera (IRMNG)\"@de,\n\t\t\"identifier of a scientific name, in the Interim Register of Marine and Nonmarine Genera (IRMNG) database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5055 ;\n\twikibase:claim p:P5055 ;\n\twikibase:statementProperty ps:P5055 ;\n\twikibase:statementValue psv:P5055 ;\n\twikibase:qualifier pq:P5055 ;\n\twikibase:qualifierValue pqv:P5055 ;\n\twikibase:reference pr:P5055 ;\n\twikibase:referenceValue prv:P5055 ;\n\twikibase:novalue wdno:P5055 ;\n\twikibase:directClaimNormalized wdtn:P5055 ;\n\twikibase:statementValueNormalized psn:P5055 ;\n\twikibase:qualifierValueNormalized pqn:P5055 ;\n\twikibase:referenceValueNormalized prn:P5055 .\n\np:P5055 a owl:ObjectProperty .\n\npsv:P5055 a owl:ObjectProperty .\n\npqv:P5055 a owl:ObjectProperty .\n\nprv:P5055 a owl:ObjectProperty .\n\nwdt:P5055 a owl:DatatypeProperty .\n\nps:P5055 a owl:DatatypeProperty .\n\npq:P5055 a owl:DatatypeProperty .\n\npr:P5055 a owl:DatatypeProperty .\n\npsn:P5055 a owl:ObjectProperty .\n\npqn:P5055 a owl:ObjectProperty .\n\nprn:P5055 a owl:ObjectProperty .\n\nwdtn:P5055 a owl:ObjectProperty .\n\nwdno:P5055 a owl:Class ;\n\towl:complementOf _:eba65cbc5b51f8dc3ea346bef40b70b6 .\n\n_:eba65cbc5b51f8dc3ea346bef40b70b6 a owl:Restriction ;\n\towl:onProperty wdt:P5055 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1036 a wikibase:Property ;\n\trdfs:label \"Dewey-Dezimalklassifikation\"@de ;\n\tskos:prefLabel \"Dewey-Dezimalklassifikation\"@de ;\n\tschema:name \"Dewey-Dezimalklassifikation\"@de ;\n\trdfs:label \"Dewey Decimal Classification\"@en ;\n\tskos:prefLabel \"Dewey Decimal Classification\"@en ;\n\tschema:name \"Dewey Decimal Classification\"@en ;\n\tschema:description \"Klassifikation für die inhaltliche Erschließung (Verwendung mit dem Qualifikator P747: Ausgabe)\"@de,\n\t\t\"use with qualifier \\\"edition (P747)\\\" with item value \\\"DDC 23\\\" or create new item to represent the corresponding DDC edition\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1036 ;\n\twikibase:claim p:P1036 ;\n\twikibase:statementProperty ps:P1036 ;\n\twikibase:statementValue psv:P1036 ;\n\twikibase:qualifier pq:P1036 ;\n\twikibase:qualifierValue pqv:P1036 ;\n\twikibase:reference pr:P1036 ;\n\twikibase:referenceValue prv:P1036 ;\n\twikibase:novalue wdno:P1036 ;\n\twikibase:directClaimNormalized wdtn:P1036 ;\n\twikibase:statementValueNormalized psn:P1036 ;\n\twikibase:qualifierValueNormalized pqn:P1036 ;\n\twikibase:referenceValueNormalized prn:P1036 .\n\np:P1036 a owl:ObjectProperty .\n\npsv:P1036 a owl:ObjectProperty .\n\npqv:P1036 a owl:ObjectProperty .\n\nprv:P1036 a owl:ObjectProperty .\n\nwdt:P1036 a owl:DatatypeProperty .\n\nps:P1036 a owl:DatatypeProperty .\n\npq:P1036 a owl:DatatypeProperty .\n\npr:P1036 a owl:DatatypeProperty .\n\npsn:P1036 a owl:ObjectProperty .\n\npqn:P1036 a owl:ObjectProperty .\n\nprn:P1036 a owl:ObjectProperty .\n\nwdtn:P1036 a owl:ObjectProperty .\n\nwdno:P1036 a owl:Class ;\n\towl:complementOf _:2fb5c2af36e460068b89a8ca39c8bbcd .\n\n_:2fb5c2af36e460068b89a8ca39c8bbcd a owl:Restriction ;\n\towl:onProperty wdt:P1036 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P244 a wikibase:Property ;\n\trdfs:label \"LCAuth-Kennung\"@de ;\n\tskos:prefLabel \"LCAuth-Kennung\"@de ;\n\tschema:name \"LCAuth-Kennung\"@de ;\n\trdfs:label \"Library of Congress authority ID\"@en ;\n\tskos:prefLabel \"Library of Congress authority ID\"@en ;\n\tschema:name \"Library of Congress authority ID\"@en ;\n\tschema:description \"Identifikator eines Normdatensatzes in der Library of Congress (für einzelne Bücher siehe P1144). Zwischen den Buchstabe(n) und den folgenden Zahlen keine Leerstelle!\"@de,\n\t\t\"Library of Congress name authority (persons, families, corporate bodies, events, places, works and expressions) and subject authority identifier [Format: 1-2 specific letters followed by 8-10 digits (see regex). For manifestations, use P1144]\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P244 ;\n\twikibase:claim p:P244 ;\n\twikibase:statementProperty ps:P244 ;\n\twikibase:statementValue psv:P244 ;\n\twikibase:qualifier pq:P244 ;\n\twikibase:qualifierValue pqv:P244 ;\n\twikibase:reference pr:P244 ;\n\twikibase:referenceValue prv:P244 ;\n\twikibase:novalue wdno:P244 ;\n\twikibase:directClaimNormalized wdtn:P244 ;\n\twikibase:statementValueNormalized psn:P244 ;\n\twikibase:qualifierValueNormalized pqn:P244 ;\n\twikibase:referenceValueNormalized prn:P244 .\n\np:P244 a owl:ObjectProperty .\n\npsv:P244 a owl:ObjectProperty .\n\npqv:P244 a owl:ObjectProperty .\n\nprv:P244 a owl:ObjectProperty .\n\nwdt:P244 a owl:DatatypeProperty .\n\nps:P244 a owl:DatatypeProperty .\n\npq:P244 a owl:DatatypeProperty .\n\npr:P244 a owl:DatatypeProperty .\n\npsn:P244 a owl:ObjectProperty .\n\npqn:P244 a owl:ObjectProperty .\n\nprn:P244 a owl:ObjectProperty .\n\nwdtn:P244 a owl:ObjectProperty .\n\nwdno:P244 a owl:Class ;\n\towl:complementOf _:590c65ffccb1a1851cc444e4370c7714 .\n\n_:590c65ffccb1a1851cc444e4370c7714 a owl:Restriction ;\n\towl:onProperty wdt:P244 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P268 a wikibase:Property ;\n\trdfs:label \"BnF-Kennung\"@de ;\n\tskos:prefLabel \"BnF-Kennung\"@de ;\n\tschema:name \"BnF-Kennung\"@de ;\n\trdfs:label \"Bibliothèque nationale de France ID\"@en ;\n\tskos:prefLabel \"Bibliothèque nationale de France ID\"@en ;\n\tschema:name \"Bibliothèque nationale de France ID\"@en ;\n\tschema:description \"Identifikator eines Normdateneintrags in der französischen Nationalbibliothek: 8 Zahlen + 1 Prüfzeichen (ohne 'cb'), siehe https://w.wiki/Q26\"@de,\n\t\t\"identifier for the subject issued by BNF (Bibliothèque nationale de France). Format: 8 digits followed by a check-digit or letter, do not include the initial 'cb'.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P268 ;\n\twikibase:claim p:P268 ;\n\twikibase:statementProperty ps:P268 ;\n\twikibase:statementValue psv:P268 ;\n\twikibase:qualifier pq:P268 ;\n\twikibase:qualifierValue pqv:P268 ;\n\twikibase:reference pr:P268 ;\n\twikibase:referenceValue prv:P268 ;\n\twikibase:novalue wdno:P268 ;\n\twikibase:directClaimNormalized wdtn:P268 ;\n\twikibase:statementValueNormalized psn:P268 ;\n\twikibase:qualifierValueNormalized pqn:P268 ;\n\twikibase:referenceValueNormalized prn:P268 .\n\np:P268 a owl:ObjectProperty .\n\npsv:P268 a owl:ObjectProperty .\n\npqv:P268 a owl:ObjectProperty .\n\nprv:P268 a owl:ObjectProperty .\n\nwdt:P268 a owl:DatatypeProperty .\n\nps:P268 a owl:DatatypeProperty .\n\npq:P268 a owl:DatatypeProperty .\n\npr:P268 a owl:DatatypeProperty .\n\npsn:P268 a owl:ObjectProperty .\n\npqn:P268 a owl:ObjectProperty .\n\nprn:P268 a owl:ObjectProperty .\n\nwdtn:P268 a owl:ObjectProperty .\n\nwdno:P268 a owl:Class ;\n\towl:complementOf _:d3120d2b47ac0e3950d9219515d435cc .\n\n_:d3120d2b47ac0e3950d9219515d435cc a owl:Restriction ;\n\towl:onProperty wdt:P268 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1149 a wikibase:Property ;\n\trdfs:label \"LoC-Klassifikation\"@de ;\n\tskos:prefLabel \"LoC-Klassifikation\"@de ;\n\tschema:name \"LoC-Klassifikation\"@de ;\n\trdfs:label \"Library of Congress Classification\"@en ;\n\tskos:prefLabel \"Library of Congress Classification\"@en ;\n\tschema:name \"Library of Congress Classification\"@en ;\n\tschema:description \"Klassifikation der Library of Congress für die inhaltliche Erschließung\"@de,\n\t\t\"subject classification number used in the Library of Congress Classification system; does not include the shelflisting portion assigned to individual publications\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1149 ;\n\twikibase:claim p:P1149 ;\n\twikibase:statementProperty ps:P1149 ;\n\twikibase:statementValue psv:P1149 ;\n\twikibase:qualifier pq:P1149 ;\n\twikibase:qualifierValue pqv:P1149 ;\n\twikibase:reference pr:P1149 ;\n\twikibase:referenceValue prv:P1149 ;\n\twikibase:novalue wdno:P1149 ;\n\twikibase:directClaimNormalized wdtn:P1149 ;\n\twikibase:statementValueNormalized psn:P1149 ;\n\twikibase:qualifierValueNormalized pqn:P1149 ;\n\twikibase:referenceValueNormalized prn:P1149 .\n\np:P1149 a owl:ObjectProperty .\n\npsv:P1149 a owl:ObjectProperty .\n\npqv:P1149 a owl:ObjectProperty .\n\nprv:P1149 a owl:ObjectProperty .\n\nwdt:P1149 a owl:DatatypeProperty .\n\nps:P1149 a owl:DatatypeProperty .\n\npq:P1149 a owl:DatatypeProperty .\n\npr:P1149 a owl:DatatypeProperty .\n\npsn:P1149 a owl:ObjectProperty .\n\npqn:P1149 a owl:ObjectProperty .\n\nprn:P1149 a owl:ObjectProperty .\n\nwdtn:P1149 a owl:ObjectProperty .\n\nwdno:P1149 a owl:Class ;\n\towl:complementOf _:4cbe5124d45d6d2ed4d007e2a6f22828 .\n\n_:4cbe5124d45d6d2ed4d007e2a6f22828 a owl:Restriction ;\n\towl:onProperty wdt:P1149 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5945 a wikibase:Property ;\n\trdfs:label \"VicFlora-ID\"@de ;\n\tskos:prefLabel \"VicFlora-ID\"@de ;\n\tschema:name \"VicFlora-ID\"@de ;\n\trdfs:label \"VicFlora ID\"@en ;\n\tskos:prefLabel \"VicFlora ID\"@en ;\n\tschema:name \"VicFlora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'Flora of Victoria' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5945 ;\n\twikibase:claim p:P5945 ;\n\twikibase:statementProperty ps:P5945 ;\n\twikibase:statementValue psv:P5945 ;\n\twikibase:qualifier pq:P5945 ;\n\twikibase:qualifierValue pqv:P5945 ;\n\twikibase:reference pr:P5945 ;\n\twikibase:referenceValue prv:P5945 ;\n\twikibase:novalue wdno:P5945 ;\n\twikibase:directClaimNormalized wdtn:P5945 ;\n\twikibase:statementValueNormalized psn:P5945 ;\n\twikibase:qualifierValueNormalized pqn:P5945 ;\n\twikibase:referenceValueNormalized prn:P5945 .\n\np:P5945 a owl:ObjectProperty .\n\npsv:P5945 a owl:ObjectProperty .\n\npqv:P5945 a owl:ObjectProperty .\n\nprv:P5945 a owl:ObjectProperty .\n\nwdt:P5945 a owl:DatatypeProperty .\n\nps:P5945 a owl:DatatypeProperty .\n\npq:P5945 a owl:DatatypeProperty .\n\npr:P5945 a owl:DatatypeProperty .\n\npsn:P5945 a owl:ObjectProperty .\n\npqn:P5945 a owl:ObjectProperty .\n\nprn:P5945 a owl:ObjectProperty .\n\nwdtn:P5945 a owl:ObjectProperty .\n\nwdno:P5945 a owl:Class ;\n\towl:complementOf _:2746352d5347bafe24877cad3ed0d012 .\n\n_:2746352d5347bafe24877cad3ed0d012 a owl:Restriction ;\n\towl:onProperty wdt:P5945 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5984 a wikibase:Property ;\n\trdfs:label \"APNI-ID\"@de ;\n\tskos:prefLabel \"APNI-ID\"@de ;\n\tschema:name \"APNI-ID\"@de ;\n\trdfs:label \"APNI ID\"@en ;\n\tskos:prefLabel \"APNI ID\"@en ;\n\tschema:name \"APNI ID\"@en ;\n\tschema:description \"identifier for a plant, in the Australian Plant Name index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5984 ;\n\twikibase:claim p:P5984 ;\n\twikibase:statementProperty ps:P5984 ;\n\twikibase:statementValue psv:P5984 ;\n\twikibase:qualifier pq:P5984 ;\n\twikibase:qualifierValue pqv:P5984 ;\n\twikibase:reference pr:P5984 ;\n\twikibase:referenceValue prv:P5984 ;\n\twikibase:novalue wdno:P5984 ;\n\twikibase:directClaimNormalized wdtn:P5984 ;\n\twikibase:statementValueNormalized psn:P5984 ;\n\twikibase:qualifierValueNormalized pqn:P5984 ;\n\twikibase:referenceValueNormalized prn:P5984 .\n\np:P5984 a owl:ObjectProperty .\n\npsv:P5984 a owl:ObjectProperty .\n\npqv:P5984 a owl:ObjectProperty .\n\nprv:P5984 a owl:ObjectProperty .\n\nwdt:P5984 a owl:DatatypeProperty .\n\nps:P5984 a owl:DatatypeProperty .\n\npq:P5984 a owl:DatatypeProperty .\n\npr:P5984 a owl:DatatypeProperty .\n\npsn:P5984 a owl:ObjectProperty .\n\npqn:P5984 a owl:ObjectProperty .\n\nprn:P5984 a owl:ObjectProperty .\n\nwdtn:P5984 a owl:ObjectProperty .\n\nwdno:P5984 a owl:Class ;\n\towl:complementOf _:23d63bd73b8ff95adea3e7abdac0ecb1 .\n\n_:23d63bd73b8ff95adea3e7abdac0ecb1 a owl:Restriction ;\n\towl:onProperty wdt:P5984 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6094 a wikibase:Property ;\n\trdfs:label \"FloraWeb-ID\"@de ;\n\tskos:prefLabel \"FloraWeb-ID\"@de ;\n\tschema:name \"FloraWeb-ID\"@de ;\n\trdfs:label \"FloraWeb ID\"@en ;\n\tskos:prefLabel \"FloraWeb ID\"@en ;\n\tschema:name \"FloraWeb ID\"@en ;\n\tschema:description \"Identifikator der entsprechenden biologischen Art (Spezies) auf der Webseite „FloraWeb.de“\"@de,\n\t\t\"identifier for a species on the FloraWeb website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6094 ;\n\twikibase:claim p:P6094 ;\n\twikibase:statementProperty ps:P6094 ;\n\twikibase:statementValue psv:P6094 ;\n\twikibase:qualifier pq:P6094 ;\n\twikibase:qualifierValue pqv:P6094 ;\n\twikibase:reference pr:P6094 ;\n\twikibase:referenceValue prv:P6094 ;\n\twikibase:novalue wdno:P6094 ;\n\twikibase:directClaimNormalized wdtn:P6094 ;\n\twikibase:statementValueNormalized psn:P6094 ;\n\twikibase:qualifierValueNormalized pqn:P6094 ;\n\twikibase:referenceValueNormalized prn:P6094 .\n\np:P6094 a owl:ObjectProperty .\n\npsv:P6094 a owl:ObjectProperty .\n\npqv:P6094 a owl:ObjectProperty .\n\nprv:P6094 a owl:ObjectProperty .\n\nwdt:P6094 a owl:DatatypeProperty .\n\nps:P6094 a owl:DatatypeProperty .\n\npq:P6094 a owl:DatatypeProperty .\n\npr:P6094 a owl:DatatypeProperty .\n\npsn:P6094 a owl:ObjectProperty .\n\npqn:P6094 a owl:ObjectProperty .\n\nprn:P6094 a owl:ObjectProperty .\n\nwdtn:P6094 a owl:ObjectProperty .\n\nwdno:P6094 a owl:Class ;\n\towl:complementOf _:c82dc9f9cbcd4bb28f6a7b4db2052e7b .\n\n_:c82dc9f9cbcd4bb28f6a7b4db2052e7b a owl:Restriction ;\n\towl:onProperty wdt:P6094 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6034 a wikibase:Property ;\n\trdfs:label \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tskos:prefLabel \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tschema:name \"Plant Finder ID (Missouri Botanical Garden)\"@en ;\n\tschema:description \"identifier for a taxon in Plant Finder, on the Missouri Botanical Garden website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6034 ;\n\twikibase:claim p:P6034 ;\n\twikibase:statementProperty ps:P6034 ;\n\twikibase:statementValue psv:P6034 ;\n\twikibase:qualifier pq:P6034 ;\n\twikibase:qualifierValue pqv:P6034 ;\n\twikibase:reference pr:P6034 ;\n\twikibase:referenceValue prv:P6034 ;\n\twikibase:novalue wdno:P6034 ;\n\twikibase:directClaimNormalized wdtn:P6034 ;\n\twikibase:statementValueNormalized psn:P6034 ;\n\twikibase:qualifierValueNormalized pqn:P6034 ;\n\twikibase:referenceValueNormalized prn:P6034 .\n\np:P6034 a owl:ObjectProperty .\n\npsv:P6034 a owl:ObjectProperty .\n\npqv:P6034 a owl:ObjectProperty .\n\nprv:P6034 a owl:ObjectProperty .\n\nwdt:P6034 a owl:DatatypeProperty .\n\nps:P6034 a owl:DatatypeProperty .\n\npq:P6034 a owl:DatatypeProperty .\n\npr:P6034 a owl:DatatypeProperty .\n\npsn:P6034 a owl:ObjectProperty .\n\npqn:P6034 a owl:ObjectProperty .\n\nprn:P6034 a owl:ObjectProperty .\n\nwdtn:P6034 a owl:ObjectProperty .\n\nwdno:P6034 a owl:Class ;\n\towl:complementOf _:56b6ffb90e364d74324a1e490fb1c26b .\n\n_:56b6ffb90e364d74324a1e490fb1c26b a owl:Restriction ;\n\towl:onProperty wdt:P6034 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6177 a wikibase:Property ;\n\trdfs:label \"EUNIS-Taxon-ID\"@de ;\n\tskos:prefLabel \"EUNIS-Taxon-ID\"@de ;\n\tschema:name \"EUNIS-Taxon-ID\"@de ;\n\trdfs:label \"EUNIS ID for species\"@en ;\n\tskos:prefLabel \"EUNIS ID for species\"@en ;\n\tschema:name \"EUNIS ID for species\"@en ;\n\tschema:description \"Identifikator für Arten auf der Webseite des EUNIS Systems\"@de,\n\t\t\"identifier for a species on the European Nature Information System website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6177 ;\n\twikibase:claim p:P6177 ;\n\twikibase:statementProperty ps:P6177 ;\n\twikibase:statementValue psv:P6177 ;\n\twikibase:qualifier pq:P6177 ;\n\twikibase:qualifierValue pqv:P6177 ;\n\twikibase:reference pr:P6177 ;\n\twikibase:referenceValue prv:P6177 ;\n\twikibase:novalue wdno:P6177 ;\n\twikibase:directClaimNormalized wdtn:P6177 ;\n\twikibase:statementValueNormalized psn:P6177 ;\n\twikibase:qualifierValueNormalized pqn:P6177 ;\n\twikibase:referenceValueNormalized prn:P6177 .\n\np:P6177 a owl:ObjectProperty .\n\npsv:P6177 a owl:ObjectProperty .\n\npqv:P6177 a owl:ObjectProperty .\n\nprv:P6177 a owl:ObjectProperty .\n\nwdt:P6177 a owl:DatatypeProperty .\n\nps:P6177 a owl:DatatypeProperty .\n\npq:P6177 a owl:DatatypeProperty .\n\npr:P6177 a owl:DatatypeProperty .\n\npsn:P6177 a owl:ObjectProperty .\n\npqn:P6177 a owl:ObjectProperty .\n\nprn:P6177 a owl:ObjectProperty .\n\nwdtn:P6177 a owl:ObjectProperty .\n\nwdno:P6177 a owl:Class ;\n\towl:complementOf _:12782bbe5385c862570457fbd0b8859b .\n\n_:12782bbe5385c862570457fbd0b8859b a owl:Restriction ;\n\towl:onProperty wdt:P6177 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6161 a wikibase:Property ;\n\trdfs:label \"Invasive Plant Atlas of the United States ID\"@en ;\n\tskos:prefLabel \"Invasive Plant Atlas of the United States ID\"@en ;\n\tschema:name \"Invasive Plant Atlas of the United States ID\"@en ;\n\tschema:description \"identifier for a species on the Invasive Plant Atlas of the United States website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6161 ;\n\twikibase:claim p:P6161 ;\n\twikibase:statementProperty ps:P6161 ;\n\twikibase:statementValue psv:P6161 ;\n\twikibase:qualifier pq:P6161 ;\n\twikibase:qualifierValue pqv:P6161 ;\n\twikibase:reference pr:P6161 ;\n\twikibase:referenceValue prv:P6161 ;\n\twikibase:novalue wdno:P6161 ;\n\twikibase:directClaimNormalized wdtn:P6161 ;\n\twikibase:statementValueNormalized psn:P6161 ;\n\twikibase:qualifierValueNormalized pqn:P6161 ;\n\twikibase:referenceValueNormalized prn:P6161 .\n\np:P6161 a owl:ObjectProperty .\n\npsv:P6161 a owl:ObjectProperty .\n\npqv:P6161 a owl:ObjectProperty .\n\nprv:P6161 a owl:ObjectProperty .\n\nwdt:P6161 a owl:DatatypeProperty .\n\nps:P6161 a owl:DatatypeProperty .\n\npq:P6161 a owl:DatatypeProperty .\n\npr:P6161 a owl:DatatypeProperty .\n\npsn:P6161 a owl:ObjectProperty .\n\npqn:P6161 a owl:ObjectProperty .\n\nprn:P6161 a owl:ObjectProperty .\n\nwdtn:P6161 a owl:ObjectProperty .\n\nwdno:P6161 a owl:Class ;\n\towl:complementOf _:8761d32ade8ee192c35887bd8ff88f7e .\n\n_:8761d32ade8ee192c35887bd8ff88f7e a owl:Restriction ;\n\towl:onProperty wdt:P6161 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6341 a wikibase:Property ;\n\trdfs:label \"IFPNI-ID\"@de ;\n\tskos:prefLabel \"IFPNI-ID\"@de ;\n\tschema:name \"IFPNI-ID\"@de ;\n\trdfs:label \"IFPNI species ID\"@en ;\n\tskos:prefLabel \"IFPNI species ID\"@en ;\n\tschema:name \"IFPNI species ID\"@en ;\n\tschema:description \"identifier for a species at the International Fossil Plant Names Index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6341 ;\n\twikibase:claim p:P6341 ;\n\twikibase:statementProperty ps:P6341 ;\n\twikibase:statementValue psv:P6341 ;\n\twikibase:qualifier pq:P6341 ;\n\twikibase:qualifierValue pqv:P6341 ;\n\twikibase:reference pr:P6341 ;\n\twikibase:referenceValue prv:P6341 ;\n\twikibase:novalue wdno:P6341 ;\n\twikibase:directClaimNormalized wdtn:P6341 ;\n\twikibase:statementValueNormalized psn:P6341 ;\n\twikibase:qualifierValueNormalized pqn:P6341 ;\n\twikibase:referenceValueNormalized prn:P6341 .\n\np:P6341 a owl:ObjectProperty .\n\npsv:P6341 a owl:ObjectProperty .\n\npqv:P6341 a owl:ObjectProperty .\n\nprv:P6341 a owl:ObjectProperty .\n\nwdt:P6341 a owl:DatatypeProperty .\n\nps:P6341 a owl:DatatypeProperty .\n\npq:P6341 a owl:DatatypeProperty .\n\npr:P6341 a owl:DatatypeProperty .\n\npsn:P6341 a owl:ObjectProperty .\n\npqn:P6341 a owl:ObjectProperty .\n\nprn:P6341 a owl:ObjectProperty .\n\nwdtn:P6341 a owl:ObjectProperty .\n\nwdno:P6341 a owl:Class ;\n\towl:complementOf _:9b1847530e974ea35db150609413e96c .\n\n_:9b1847530e974ea35db150609413e96c a owl:Restriction ;\n\towl:onProperty wdt:P6341 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3914781 a wikibase:Item ;\n\trdfs:label \"Eichel\"@de ;\n\tskos:prefLabel \"Eichel\"@de ;\n\tschema:name \"Eichel\"@de ;\n\trdfs:label \"acorn\"@en ;\n\tskos:prefLabel \"acorn\"@en ;\n\tschema:name \"acorn\"@en ;\n\tschema:description \"Frucht der Eiche\"@de,\n\t\t\"fruit/nut of the oak tree\"@en .\n\nwd:P1672 a wikibase:Property ;\n\trdfs:label \"Ursprung von\"@de ;\n\tskos:prefLabel \"Ursprung von\"@de ;\n\tschema:name \"Ursprung von\"@de ;\n\trdfs:label \"this taxon is source of\"@en ;\n\tskos:prefLabel \"this taxon is source of\"@en ;\n\tschema:name \"this taxon is source of\"@en ;\n\tschema:description \"ein Naturprodukt wird durch Verarbeitung zu\"@de,\n\t\t\"links a taxon to natural products it produces. Note that it does not say \\\"this taxon is the source of\\\" or \\\"this taxon is a source of\\\" as this may vary. Some products may be yielded by more than one taxon.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1672 ;\n\twikibase:claim p:P1672 ;\n\twikibase:statementProperty ps:P1672 ;\n\twikibase:statementValue psv:P1672 ;\n\twikibase:qualifier pq:P1672 ;\n\twikibase:qualifierValue pqv:P1672 ;\n\twikibase:reference pr:P1672 ;\n\twikibase:referenceValue prv:P1672 ;\n\twikibase:novalue wdno:P1672 .\n\np:P1672 a owl:ObjectProperty .\n\npsv:P1672 a owl:ObjectProperty .\n\npqv:P1672 a owl:ObjectProperty .\n\nprv:P1672 a owl:ObjectProperty .\n\nwdt:P1672 a owl:ObjectProperty .\n\nps:P1672 a owl:ObjectProperty .\n\npq:P1672 a owl:ObjectProperty .\n\npr:P1672 a owl:ObjectProperty .\n\nwdno:P1672 a owl:Class ;\n\towl:complementOf _:3e72da6d1f4375bcd65f48901e370109 .\n\n_:3e72da6d1f4375bcd65f48901e370109 a owl:Restriction ;\n\towl:onProperty wdt:P1672 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q55748156 a wikibase:Item ;\n\trdfs:label \"oakwood from Quercus robur\"@en ;\n\tskos:prefLabel \"oakwood from Quercus robur\"@en ;\n\tschema:name \"oakwood from Quercus robur\"@en .\n\nwd:P6864 a wikibase:Property ;\n\trdfs:label \"eElurikkus-ID\"@de ;\n\tskos:prefLabel \"eElurikkus-ID\"@de ;\n\tschema:name \"eElurikkus-ID\"@de ;\n\trdfs:label \"eBiodiversity ID\"@en ;\n\tskos:prefLabel \"eBiodiversity ID\"@en ;\n\tschema:name \"eBiodiversity ID\"@en ;\n\tschema:description \"identifier for a taxon in the Estonian eBiodiversity portal\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6864 ;\n\twikibase:claim p:P6864 ;\n\twikibase:statementProperty ps:P6864 ;\n\twikibase:statementValue psv:P6864 ;\n\twikibase:qualifier pq:P6864 ;\n\twikibase:qualifierValue pqv:P6864 ;\n\twikibase:reference pr:P6864 ;\n\twikibase:referenceValue prv:P6864 ;\n\twikibase:novalue wdno:P6864 ;\n\twikibase:directClaimNormalized wdtn:P6864 ;\n\twikibase:statementValueNormalized psn:P6864 ;\n\twikibase:qualifierValueNormalized pqn:P6864 ;\n\twikibase:referenceValueNormalized prn:P6864 .\n\np:P6864 a owl:ObjectProperty .\n\npsv:P6864 a owl:ObjectProperty .\n\npqv:P6864 a owl:ObjectProperty .\n\nprv:P6864 a owl:ObjectProperty .\n\nwdt:P6864 a owl:DatatypeProperty .\n\nps:P6864 a owl:DatatypeProperty .\n\npq:P6864 a owl:DatatypeProperty .\n\npr:P6864 a owl:DatatypeProperty .\n\npsn:P6864 a owl:ObjectProperty .\n\npqn:P6864 a owl:ObjectProperty .\n\nprn:P6864 a owl:ObjectProperty .\n\nwdtn:P6864 a owl:ObjectProperty .\n\nwdno:P6864 a owl:Class ;\n\towl:complementOf _:28508e8c66a417bfe289622af2dc55f0 .\n\n_:28508e8c66a417bfe289622af2dc55f0 a owl:Restriction ;\n\towl:onProperty wdt:P6864 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6933 a wikibase:Property ;\n\trdfs:label \"SA-Flora-ID\"@de ;\n\tskos:prefLabel \"SA-Flora-ID\"@de ;\n\tschema:name \"SA-Flora-ID\"@de ;\n\trdfs:label \"SA Flora ID\"@en ;\n\tskos:prefLabel \"SA Flora ID\"@en ;\n\tschema:name \"SA Flora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'South Australian electronic Flora' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6933 ;\n\twikibase:claim p:P6933 ;\n\twikibase:statementProperty ps:P6933 ;\n\twikibase:statementValue psv:P6933 ;\n\twikibase:qualifier pq:P6933 ;\n\twikibase:qualifierValue pqv:P6933 ;\n\twikibase:reference pr:P6933 ;\n\twikibase:referenceValue prv:P6933 ;\n\twikibase:novalue wdno:P6933 ;\n\twikibase:directClaimNormalized wdtn:P6933 ;\n\twikibase:statementValueNormalized psn:P6933 ;\n\twikibase:qualifierValueNormalized pqn:P6933 ;\n\twikibase:referenceValueNormalized prn:P6933 .\n\np:P6933 a owl:ObjectProperty .\n\npsv:P6933 a owl:ObjectProperty .\n\npqv:P6933 a owl:ObjectProperty .\n\nprv:P6933 a owl:ObjectProperty .\n\nwdt:P6933 a owl:DatatypeProperty .\n\nps:P6933 a owl:DatatypeProperty .\n\npq:P6933 a owl:DatatypeProperty .\n\npr:P6933 a owl:DatatypeProperty .\n\npsn:P6933 a owl:ObjectProperty .\n\npqn:P6933 a owl:ObjectProperty .\n\nprn:P6933 a owl:ObjectProperty .\n\nwdtn:P6933 a owl:ObjectProperty .\n\nwdno:P6933 a owl:Class ;\n\towl:complementOf _:9aedc50c21286aab9afe201a2a4e9eac .\n\n_:9aedc50c21286aab9afe201a2a4e9eac a owl:Restriction ;\n\towl:onProperty wdt:P6933 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6142 a wikibase:Property ;\n\trdfs:label \"Verspreidingsatlas.nl ID\"@en ;\n\tskos:prefLabel \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:name \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:description \"identifier for a species on the verspreidingsatlas.nl website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6142 ;\n\twikibase:claim p:P6142 ;\n\twikibase:statementProperty ps:P6142 ;\n\twikibase:statementValue psv:P6142 ;\n\twikibase:qualifier pq:P6142 ;\n\twikibase:qualifierValue pqv:P6142 ;\n\twikibase:reference pr:P6142 ;\n\twikibase:referenceValue prv:P6142 ;\n\twikibase:novalue wdno:P6142 ;\n\twikibase:directClaimNormalized wdtn:P6142 ;\n\twikibase:statementValueNormalized psn:P6142 ;\n\twikibase:qualifierValueNormalized pqn:P6142 ;\n\twikibase:referenceValueNormalized prn:P6142 .\n\np:P6142 a owl:ObjectProperty .\n\npsv:P6142 a owl:ObjectProperty .\n\npqv:P6142 a owl:ObjectProperty .\n\nprv:P6142 a owl:ObjectProperty .\n\nwdt:P6142 a owl:DatatypeProperty .\n\nps:P6142 a owl:DatatypeProperty .\n\npq:P6142 a owl:DatatypeProperty .\n\npr:P6142 a owl:DatatypeProperty .\n\npsn:P6142 a owl:ObjectProperty .\n\npqn:P6142 a owl:ObjectProperty .\n\nprn:P6142 a owl:ObjectProperty .\n\nwdtn:P6142 a owl:ObjectProperty .\n\nwdno:P6142 a owl:Class ;\n\towl:complementOf _:832a4ae34d94bc7d68c4074f1a6f4896 .\n\n_:832a4ae34d94bc7d68c4074f1a6f4896 a owl:Restriction ;\n\towl:onProperty wdt:P6142 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7202 a wikibase:Property ;\n\trdfs:label \"Belgian-Species-List-ID\"@de ;\n\tskos:prefLabel \"Belgian-Species-List-ID\"@de ;\n\tschema:name \"Belgian-Species-List-ID\"@de ;\n\trdfs:label \"Belgian Species List ID\"@en ;\n\tskos:prefLabel \"Belgian Species List ID\"@en ;\n\tschema:name \"Belgian Species List ID\"@en ;\n\tschema:description \"identifier for a taxon in the Belgian Species List\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7202 ;\n\twikibase:claim p:P7202 ;\n\twikibase:statementProperty ps:P7202 ;\n\twikibase:statementValue psv:P7202 ;\n\twikibase:qualifier pq:P7202 ;\n\twikibase:qualifierValue pqv:P7202 ;\n\twikibase:reference pr:P7202 ;\n\twikibase:referenceValue prv:P7202 ;\n\twikibase:novalue wdno:P7202 ;\n\twikibase:directClaimNormalized wdtn:P7202 ;\n\twikibase:statementValueNormalized psn:P7202 ;\n\twikibase:qualifierValueNormalized pqn:P7202 ;\n\twikibase:referenceValueNormalized prn:P7202 .\n\np:P7202 a owl:ObjectProperty .\n\npsv:P7202 a owl:ObjectProperty .\n\npqv:P7202 a owl:ObjectProperty .\n\nprv:P7202 a owl:ObjectProperty .\n\nwdt:P7202 a owl:DatatypeProperty .\n\nps:P7202 a owl:DatatypeProperty .\n\npq:P7202 a owl:DatatypeProperty .\n\npr:P7202 a owl:DatatypeProperty .\n\npsn:P7202 a owl:ObjectProperty .\n\npqn:P7202 a owl:ObjectProperty .\n\nprn:P7202 a owl:ObjectProperty .\n\nwdtn:P7202 a owl:ObjectProperty .\n\nwdno:P7202 a owl:Class ;\n\towl:complementOf _:a08267a1e4cce76217317ed94826cc29 .\n\n_:a08267a1e4cce76217317ed94826cc29 a owl:Restriction ;\n\towl:onProperty wdt:P7202 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7496 a wikibase:Property ;\n\trdfs:label \"NZPCN-ID\"@de ;\n\tskos:prefLabel \"NZPCN-ID\"@de ;\n\tschema:name \"NZPCN-ID\"@de ;\n\trdfs:label \"NZPCN ID\"@en ;\n\tskos:prefLabel \"NZPCN ID\"@en ;\n\tschema:name \"NZPCN ID\"@en ;\n\tschema:description \"ID of a plant taxon held by the New Zealand Plant Conservation Network\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7496 ;\n\twikibase:claim p:P7496 ;\n\twikibase:statementProperty ps:P7496 ;\n\twikibase:statementValue psv:P7496 ;\n\twikibase:qualifier pq:P7496 ;\n\twikibase:qualifierValue pqv:P7496 ;\n\twikibase:reference pr:P7496 ;\n\twikibase:referenceValue prv:P7496 ;\n\twikibase:novalue wdno:P7496 ;\n\twikibase:directClaimNormalized wdtn:P7496 ;\n\twikibase:statementValueNormalized psn:P7496 ;\n\twikibase:qualifierValueNormalized pqn:P7496 ;\n\twikibase:referenceValueNormalized prn:P7496 .\n\np:P7496 a owl:ObjectProperty .\n\npsv:P7496 a owl:ObjectProperty .\n\npqv:P7496 a owl:ObjectProperty .\n\nprv:P7496 a owl:ObjectProperty .\n\nwdt:P7496 a owl:DatatypeProperty .\n\nps:P7496 a owl:DatatypeProperty .\n\npq:P7496 a owl:DatatypeProperty .\n\npr:P7496 a owl:DatatypeProperty .\n\npsn:P7496 a owl:ObjectProperty .\n\npqn:P7496 a owl:ObjectProperty .\n\nprn:P7496 a owl:ObjectProperty .\n\nwdtn:P7496 a owl:ObjectProperty .\n\nwdno:P7496 a owl:Class ;\n\towl:complementOf _:c915731133ce4872d3822cbca92d66a3 .\n\n_:c915731133ce4872d3822cbca92d66a3 a owl:Restriction ;\n\towl:onProperty wdt:P7496 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7546 a wikibase:Property ;\n\trdfs:label \"Flowers of India ID\"@en ;\n\tskos:prefLabel \"Flowers of India ID\"@en ;\n\tschema:name \"Flowers of India ID\"@en ;\n\tschema:description \"identifier for plant taxons\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7546 ;\n\twikibase:claim p:P7546 ;\n\twikibase:statementProperty ps:P7546 ;\n\twikibase:statementValue psv:P7546 ;\n\twikibase:qualifier pq:P7546 ;\n\twikibase:qualifierValue pqv:P7546 ;\n\twikibase:reference pr:P7546 ;\n\twikibase:referenceValue prv:P7546 ;\n\twikibase:novalue wdno:P7546 ;\n\twikibase:directClaimNormalized wdtn:P7546 ;\n\twikibase:statementValueNormalized psn:P7546 ;\n\twikibase:qualifierValueNormalized pqn:P7546 ;\n\twikibase:referenceValueNormalized prn:P7546 .\n\np:P7546 a owl:ObjectProperty .\n\npsv:P7546 a owl:ObjectProperty .\n\npqv:P7546 a owl:ObjectProperty .\n\nprv:P7546 a owl:ObjectProperty .\n\nwdt:P7546 a owl:DatatypeProperty .\n\nps:P7546 a owl:DatatypeProperty .\n\npq:P7546 a owl:DatatypeProperty .\n\npr:P7546 a owl:DatatypeProperty .\n\npsn:P7546 a owl:ObjectProperty .\n\npqn:P7546 a owl:ObjectProperty .\n\nprn:P7546 a owl:ObjectProperty .\n\nwdtn:P7546 a owl:ObjectProperty .\n\nwdno:P7546 a owl:Class ;\n\towl:complementOf _:f66c54497a687752882b3e23a67dbc9e .\n\n_:f66c54497a687752882b3e23a67dbc9e a owl:Restriction ;\n\towl:onProperty wdt:P7546 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7552 a wikibase:Property ;\n\trdfs:label \"FinBIF-ID\"@de ;\n\tskos:prefLabel \"FinBIF-ID\"@de ;\n\tschema:name \"FinBIF-ID\"@de ;\n\trdfs:label \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tschema:name \"Finnish Biodiversity Information Facility's Species List ID\"@en ;\n\tschema:description \"identifier for species found in Finland maintained by the Finnish Biodiversity Information Facility\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7552 ;\n\twikibase:claim p:P7552 ;\n\twikibase:statementProperty ps:P7552 ;\n\twikibase:statementValue psv:P7552 ;\n\twikibase:qualifier pq:P7552 ;\n\twikibase:qualifierValue pqv:P7552 ;\n\twikibase:reference pr:P7552 ;\n\twikibase:referenceValue prv:P7552 ;\n\twikibase:novalue wdno:P7552 ;\n\twikibase:directClaimNormalized wdtn:P7552 ;\n\twikibase:statementValueNormalized psn:P7552 ;\n\twikibase:qualifierValueNormalized pqn:P7552 ;\n\twikibase:referenceValueNormalized prn:P7552 .\n\np:P7552 a owl:ObjectProperty .\n\npsv:P7552 a owl:ObjectProperty .\n\npqv:P7552 a owl:ObjectProperty .\n\nprv:P7552 a owl:ObjectProperty .\n\nwdt:P7552 a owl:DatatypeProperty .\n\nps:P7552 a owl:DatatypeProperty .\n\npq:P7552 a owl:DatatypeProperty .\n\npr:P7552 a owl:DatatypeProperty .\n\npsn:P7552 a owl:ObjectProperty .\n\npqn:P7552 a owl:ObjectProperty .\n\nprn:P7552 a owl:ObjectProperty .\n\nwdtn:P7552 a owl:ObjectProperty .\n\nwdno:P7552 a owl:Class ;\n\towl:complementOf _:5bd46fc7bb5ad8cf4548112f178243cb .\n\n_:5bd46fc7bb5ad8cf4548112f178243cb a owl:Restriction ;\n\towl:onProperty wdt:P7552 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4214 a wikibase:Property ;\n\trdfs:label \"höchste beobachtete Lebensdauer\"@de ;\n\tskos:prefLabel \"höchste beobachtete Lebensdauer\"@de ;\n\tschema:name \"höchste beobachtete Lebensdauer\"@de ;\n\trdfs:label \"longest observed lifespan\"@en ;\n\tskos:prefLabel \"longest observed lifespan\"@en ;\n\tschema:name \"longest observed lifespan\"@en ;\n\tschema:description \"Alter des ältesten Exemplars eines Taxons, für das das Alter nachgewiesen werden kann\"@de,\n\t\t\"age of the oldest specimen of a taxon for which the age can be verified\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4214 ;\n\twikibase:claim p:P4214 ;\n\twikibase:statementProperty ps:P4214 ;\n\twikibase:statementValue psv:P4214 ;\n\twikibase:qualifier pq:P4214 ;\n\twikibase:qualifierValue pqv:P4214 ;\n\twikibase:reference pr:P4214 ;\n\twikibase:referenceValue prv:P4214 ;\n\twikibase:novalue wdno:P4214 ;\n\twikibase:directClaimNormalized wdtn:P4214 ;\n\twikibase:statementValueNormalized psn:P4214 ;\n\twikibase:qualifierValueNormalized pqn:P4214 ;\n\twikibase:referenceValueNormalized prn:P4214 .\n\np:P4214 a owl:ObjectProperty .\n\npsv:P4214 a owl:ObjectProperty .\n\npqv:P4214 a owl:ObjectProperty .\n\nprv:P4214 a owl:ObjectProperty .\n\nwdt:P4214 a owl:DatatypeProperty .\n\nps:P4214 a owl:DatatypeProperty .\n\npq:P4214 a owl:DatatypeProperty .\n\npr:P4214 a owl:DatatypeProperty .\n\npsn:P4214 a owl:ObjectProperty .\n\npqn:P4214 a owl:ObjectProperty .\n\nprn:P4214 a owl:ObjectProperty .\n\nwdtn:P4214 a owl:DatatypeProperty .\n\nwdno:P4214 a owl:Class ;\n\towl:complementOf _:0d35b212da24d138a8eb2e79ecd32e98 .\n\n_:0d35b212da24d138a8eb2e79ecd32e98 a owl:Restriction ;\n\towl:onProperty wdt:P4214 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6366 a wikibase:Property ;\n\trdfs:label \"Microsoft-Academic-Kennung\"@de ;\n\tskos:prefLabel \"Microsoft-Academic-Kennung\"@de ;\n\tschema:name \"Microsoft-Academic-Kennung\"@de ;\n\trdfs:label \"Microsoft Academic ID (discontinued)\"@en ;\n\tskos:prefLabel \"Microsoft Academic ID (discontinued)\"@en ;\n\tschema:name \"Microsoft Academic ID (discontinued)\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei Microsoft Academic\"@de,\n\t\t\"identifier for an object or topic in the Microsoft Academic Graph (until 31 December 2021)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6366 ;\n\twikibase:claim p:P6366 ;\n\twikibase:statementProperty ps:P6366 ;\n\twikibase:statementValue psv:P6366 ;\n\twikibase:qualifier pq:P6366 ;\n\twikibase:qualifierValue pqv:P6366 ;\n\twikibase:reference pr:P6366 ;\n\twikibase:referenceValue prv:P6366 ;\n\twikibase:novalue wdno:P6366 ;\n\twikibase:directClaimNormalized wdtn:P6366 ;\n\twikibase:statementValueNormalized psn:P6366 ;\n\twikibase:qualifierValueNormalized pqn:P6366 ;\n\twikibase:referenceValueNormalized prn:P6366 .\n\np:P6366 a owl:ObjectProperty .\n\npsv:P6366 a owl:ObjectProperty .\n\npqv:P6366 a owl:ObjectProperty .\n\nprv:P6366 a owl:ObjectProperty .\n\nwdt:P6366 a owl:DatatypeProperty .\n\nps:P6366 a owl:DatatypeProperty .\n\npq:P6366 a owl:DatatypeProperty .\n\npr:P6366 a owl:DatatypeProperty .\n\npsn:P6366 a owl:ObjectProperty .\n\npqn:P6366 a owl:ObjectProperty .\n\nprn:P6366 a owl:ObjectProperty .\n\nwdtn:P6366 a owl:ObjectProperty .\n\nwdno:P6366 a owl:Class ;\n\towl:complementOf _:6f940be26025c3cdbbbed9534272bb72 .\n\n_:6f940be26025c3cdbbbed9534272bb72 a owl:Restriction ;\n\towl:onProperty wdt:P6366 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6105 a wikibase:Property ;\n\trdfs:label \"Observation.org Taxon-ID\"@de ;\n\tskos:prefLabel \"Observation.org Taxon-ID\"@de ;\n\tschema:name \"Observation.org Taxon-ID\"@de ;\n\trdfs:label \"Observation.org taxon ID\"@en ;\n\tskos:prefLabel \"Observation.org taxon ID\"@en ;\n\tschema:name \"Observation.org taxon ID\"@en ;\n\tschema:description \"Taxon-Identifikator auf der Observation.org-Plattform\"@de,\n\t\t\"taxon identifier on the Observation.org platform\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6105 ;\n\twikibase:claim p:P6105 ;\n\twikibase:statementProperty ps:P6105 ;\n\twikibase:statementValue psv:P6105 ;\n\twikibase:qualifier pq:P6105 ;\n\twikibase:qualifierValue pqv:P6105 ;\n\twikibase:reference pr:P6105 ;\n\twikibase:referenceValue prv:P6105 ;\n\twikibase:novalue wdno:P6105 ;\n\twikibase:directClaimNormalized wdtn:P6105 ;\n\twikibase:statementValueNormalized psn:P6105 ;\n\twikibase:qualifierValueNormalized pqn:P6105 ;\n\twikibase:referenceValueNormalized prn:P6105 .\n\np:P6105 a owl:ObjectProperty .\n\npsv:P6105 a owl:ObjectProperty .\n\npqv:P6105 a owl:ObjectProperty .\n\nprv:P6105 a owl:ObjectProperty .\n\nwdt:P6105 a owl:DatatypeProperty .\n\nps:P6105 a owl:DatatypeProperty .\n\npq:P6105 a owl:DatatypeProperty .\n\npr:P6105 a owl:DatatypeProperty .\n\npsn:P6105 a owl:ObjectProperty .\n\npqn:P6105 a owl:ObjectProperty .\n\nprn:P6105 a owl:ObjectProperty .\n\nwdtn:P6105 a owl:ObjectProperty .\n\nwdno:P6105 a owl:Class ;\n\towl:complementOf _:fe2b47346dc9de49efdf3119fd5fbed3 .\n\n_:fe2b47346dc9de49efdf3119fd5fbed3 a owl:Restriction ;\n\towl:onProperty wdt:P6105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2347 a wikibase:Property ;\n\trdfs:label \"YSO-Kennung\"@de ;\n\tskos:prefLabel \"YSO-Kennung\"@de ;\n\tschema:name \"YSO-Kennung\"@de ;\n\trdfs:label \"YSO ID\"@en ;\n\tskos:prefLabel \"YSO ID\"@en ;\n\tschema:name \"YSO ID\"@en ;\n\tschema:description \"Identifikator eines Konzepts in der General Finnisch Ontologie YSO\"@de,\n\t\t\"identifier for a concept in the General Finnish Ontology YSO\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2347 ;\n\twikibase:claim p:P2347 ;\n\twikibase:statementProperty ps:P2347 ;\n\twikibase:statementValue psv:P2347 ;\n\twikibase:qualifier pq:P2347 ;\n\twikibase:qualifierValue pqv:P2347 ;\n\twikibase:reference pr:P2347 ;\n\twikibase:referenceValue prv:P2347 ;\n\twikibase:novalue wdno:P2347 ;\n\twikibase:directClaimNormalized wdtn:P2347 ;\n\twikibase:statementValueNormalized psn:P2347 ;\n\twikibase:qualifierValueNormalized pqn:P2347 ;\n\twikibase:referenceValueNormalized prn:P2347 .\n\np:P2347 a owl:ObjectProperty .\n\npsv:P2347 a owl:ObjectProperty .\n\npqv:P2347 a owl:ObjectProperty .\n\nprv:P2347 a owl:ObjectProperty .\n\nwdt:P2347 a owl:DatatypeProperty .\n\nps:P2347 a owl:DatatypeProperty .\n\npq:P2347 a owl:DatatypeProperty .\n\npr:P2347 a owl:DatatypeProperty .\n\npsn:P2347 a owl:ObjectProperty .\n\npqn:P2347 a owl:ObjectProperty .\n\nprn:P2347 a owl:ObjectProperty .\n\nwdtn:P2347 a owl:ObjectProperty .\n\nwdno:P2347 a owl:Class ;\n\towl:complementOf _:5938edce2b698c44bad94eb14b56af07 .\n\n_:5938edce2b698c44bad94eb14b56af07 a owl:Restriction ;\n\towl:onProperty wdt:P2347 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5019 a wikibase:Property ;\n\trdfs:label \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tskos:prefLabel \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tschema:name \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\trdfs:label \"Brockhaus Enzyklopädie online ID\"@en ;\n\tskos:prefLabel \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:name \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Onlineausgabe der Brockhaus Enzyklopädie\"@de,\n\t\t\"identifier for an article in the online version of Brockhaus Enzyklopädie\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5019 ;\n\twikibase:claim p:P5019 ;\n\twikibase:statementProperty ps:P5019 ;\n\twikibase:statementValue psv:P5019 ;\n\twikibase:qualifier pq:P5019 ;\n\twikibase:qualifierValue pqv:P5019 ;\n\twikibase:reference pr:P5019 ;\n\twikibase:referenceValue prv:P5019 ;\n\twikibase:novalue wdno:P5019 ;\n\twikibase:directClaimNormalized wdtn:P5019 ;\n\twikibase:statementValueNormalized psn:P5019 ;\n\twikibase:qualifierValueNormalized pqn:P5019 ;\n\twikibase:referenceValueNormalized prn:P5019 .\n\np:P5019 a owl:ObjectProperty .\n\npsv:P5019 a owl:ObjectProperty .\n\npqv:P5019 a owl:ObjectProperty .\n\nprv:P5019 a owl:ObjectProperty .\n\nwdt:P5019 a owl:DatatypeProperty .\n\nps:P5019 a owl:DatatypeProperty .\n\npq:P5019 a owl:DatatypeProperty .\n\npr:P5019 a owl:DatatypeProperty .\n\npsn:P5019 a owl:ObjectProperty .\n\npqn:P5019 a owl:ObjectProperty .\n\nprn:P5019 a owl:ObjectProperty .\n\nwdtn:P5019 a owl:ObjectProperty .\n\nwdno:P5019 a owl:Class ;\n\towl:complementOf _:8f2e067276b7b0125a88b1cdcccdf2ae .\n\n_:8f2e067276b7b0125a88b1cdcccdf2ae a owl:Restriction ;\n\towl:onProperty wdt:P5019 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8061 a wikibase:Property ;\n\trdfs:label \"AGROVOC-ID\"@de ;\n\tskos:prefLabel \"AGROVOC-ID\"@de ;\n\tschema:name \"AGROVOC-ID\"@de ;\n\trdfs:label \"AGROVOC ID\"@en ;\n\tskos:prefLabel \"AGROVOC ID\"@en ;\n\tschema:name \"AGROVOC ID\"@en ;\n\tschema:description \"mehrsprachige strukturierte Datenbank mit landwirtschaftlichen Konzepten, Begriffen, Definitionen und Beziehungen der FAO\"@de,\n\t\t\"identifier for a subject in AGROVOC thesaurus\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8061 ;\n\twikibase:claim p:P8061 ;\n\twikibase:statementProperty ps:P8061 ;\n\twikibase:statementValue psv:P8061 ;\n\twikibase:qualifier pq:P8061 ;\n\twikibase:qualifierValue pqv:P8061 ;\n\twikibase:reference pr:P8061 ;\n\twikibase:referenceValue prv:P8061 ;\n\twikibase:novalue wdno:P8061 ;\n\twikibase:directClaimNormalized wdtn:P8061 ;\n\twikibase:statementValueNormalized psn:P8061 ;\n\twikibase:qualifierValueNormalized pqn:P8061 ;\n\twikibase:referenceValueNormalized prn:P8061 .\n\np:P8061 a owl:ObjectProperty .\n\npsv:P8061 a owl:ObjectProperty .\n\npqv:P8061 a owl:ObjectProperty .\n\nprv:P8061 a owl:ObjectProperty .\n\nwdt:P8061 a owl:DatatypeProperty .\n\nps:P8061 a owl:DatatypeProperty .\n\npq:P8061 a owl:DatatypeProperty .\n\npr:P8061 a owl:DatatypeProperty .\n\npsn:P8061 a owl:ObjectProperty .\n\npqn:P8061 a owl:ObjectProperty .\n\nprn:P8061 a owl:ObjectProperty .\n\nwdtn:P8061 a owl:ObjectProperty .\n\nwdno:P8061 a owl:Class ;\n\towl:complementOf _:3040cec787dec7a705f1a8dd475991c6 .\n\n_:3040cec787dec7a705f1a8dd475991c6 a owl:Restriction ;\n\towl:onProperty wdt:P8061 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2004 a wikibase:Property ;\n\trdfs:label \"NALT-Kennung\"@de ;\n\tskos:prefLabel \"NALT-Kennung\"@de ;\n\tschema:name \"NALT-Kennung\"@de ;\n\trdfs:label \"NALT ID\"@en ;\n\tskos:prefLabel \"NALT ID\"@en ;\n\tschema:name \"NALT ID\"@en ;\n\tschema:description \"Identifikator einer Begriffskategorie im landwirtschaftlichen Thesaurus bei United States National Agricultural Library\"@de,\n\t\t\"identifier for subject headings in the Agricultural Thesaurus of the United States National Agricultural Library\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2004 ;\n\twikibase:claim p:P2004 ;\n\twikibase:statementProperty ps:P2004 ;\n\twikibase:statementValue psv:P2004 ;\n\twikibase:qualifier pq:P2004 ;\n\twikibase:qualifierValue pqv:P2004 ;\n\twikibase:reference pr:P2004 ;\n\twikibase:referenceValue prv:P2004 ;\n\twikibase:novalue wdno:P2004 ;\n\twikibase:directClaimNormalized wdtn:P2004 ;\n\twikibase:statementValueNormalized psn:P2004 ;\n\twikibase:qualifierValueNormalized pqn:P2004 ;\n\twikibase:referenceValueNormalized prn:P2004 .\n\np:P2004 a owl:ObjectProperty .\n\npsv:P2004 a owl:ObjectProperty .\n\npqv:P2004 a owl:ObjectProperty .\n\nprv:P2004 a owl:ObjectProperty .\n\nwdt:P2004 a owl:DatatypeProperty .\n\nps:P2004 a owl:DatatypeProperty .\n\npq:P2004 a owl:DatatypeProperty .\n\npr:P2004 a owl:DatatypeProperty .\n\npsn:P2004 a owl:ObjectProperty .\n\npqn:P2004 a owl:ObjectProperty .\n\nprn:P2004 a owl:ObjectProperty .\n\nwdtn:P2004 a owl:ObjectProperty .\n\nwdno:P2004 a owl:Class ;\n\towl:complementOf _:b3add30640272ab614276cb9e87840ad .\n\n_:b3add30640272ab614276cb9e87840ad a owl:Restriction ;\n\towl:onProperty wdt:P2004 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8408 a wikibase:Property ;\n\trdfs:label \"KBpedia-Kennung\"@de ;\n\tskos:prefLabel \"KBpedia-Kennung\"@de ;\n\tschema:name \"KBpedia-Kennung\"@de ;\n\trdfs:label \"KBpedia ID\"@en ;\n\tskos:prefLabel \"KBpedia ID\"@en ;\n\tschema:name \"KBpedia ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei KBpedia\"@de,\n\t\t\"identifier for the KBpedia knowledge graph, which provides consistent mappings across seven large-scale public knowledge bases including Wikidata, and is used to promote data interoperability and extraction of training sets for machine learning\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8408 ;\n\twikibase:claim p:P8408 ;\n\twikibase:statementProperty ps:P8408 ;\n\twikibase:statementValue psv:P8408 ;\n\twikibase:qualifier pq:P8408 ;\n\twikibase:qualifierValue pqv:P8408 ;\n\twikibase:reference pr:P8408 ;\n\twikibase:referenceValue prv:P8408 ;\n\twikibase:novalue wdno:P8408 ;\n\twikibase:directClaimNormalized wdtn:P8408 ;\n\twikibase:statementValueNormalized psn:P8408 ;\n\twikibase:qualifierValueNormalized pqn:P8408 ;\n\twikibase:referenceValueNormalized prn:P8408 .\n\np:P8408 a owl:ObjectProperty .\n\npsv:P8408 a owl:ObjectProperty .\n\npqv:P8408 a owl:ObjectProperty .\n\nprv:P8408 a owl:ObjectProperty .\n\nwdt:P8408 a owl:DatatypeProperty .\n\nps:P8408 a owl:DatatypeProperty .\n\npq:P8408 a owl:DatatypeProperty .\n\npr:P8408 a owl:DatatypeProperty .\n\npsn:P8408 a owl:ObjectProperty .\n\npqn:P8408 a owl:ObjectProperty .\n\nprn:P8408 a owl:ObjectProperty .\n\nwdtn:P8408 a owl:ObjectProperty .\n\nwdno:P8408 a owl:Class ;\n\towl:complementOf _:a5c6b2a39aa8787e5b2a55612fc3d63e .\n\n_:a5c6b2a39aa8787e5b2a55612fc3d63e a owl:Restriction ;\n\towl:onProperty wdt:P8408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7715 a wikibase:Property ;\n\trdfs:label \"World-Flora-Online-ID\"@de ;\n\tskos:prefLabel \"World-Flora-Online-ID\"@de ;\n\tschema:name \"World-Flora-Online-ID\"@de ;\n\trdfs:label \"World Flora Online ID\"@en ;\n\tskos:prefLabel \"World Flora Online ID\"@en ;\n\tschema:name \"World Flora Online ID\"@en ;\n\tschema:description \"identifier for a plant in World Flora Online\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7715 ;\n\twikibase:claim p:P7715 ;\n\twikibase:statementProperty ps:P7715 ;\n\twikibase:statementValue psv:P7715 ;\n\twikibase:qualifier pq:P7715 ;\n\twikibase:qualifierValue pqv:P7715 ;\n\twikibase:reference pr:P7715 ;\n\twikibase:referenceValue prv:P7715 ;\n\twikibase:novalue wdno:P7715 ;\n\twikibase:directClaimNormalized wdtn:P7715 ;\n\twikibase:statementValueNormalized psn:P7715 ;\n\twikibase:qualifierValueNormalized pqn:P7715 ;\n\twikibase:referenceValueNormalized prn:P7715 .\n\np:P7715 a owl:ObjectProperty .\n\npsv:P7715 a owl:ObjectProperty .\n\npqv:P7715 a owl:ObjectProperty .\n\nprv:P7715 a owl:ObjectProperty .\n\nwdt:P7715 a owl:DatatypeProperty .\n\nps:P7715 a owl:DatatypeProperty .\n\npq:P7715 a owl:DatatypeProperty .\n\npr:P7715 a owl:DatatypeProperty .\n\npsn:P7715 a owl:ObjectProperty .\n\npqn:P7715 a owl:ObjectProperty .\n\nprn:P7715 a owl:ObjectProperty .\n\nwdtn:P7715 a owl:ObjectProperty .\n\nwdno:P7715 a owl:Class ;\n\towl:complementOf _:d0f111360d13e6cf7be8fb1204acf6a7 .\n\n_:d0f111360d13e6cf7be8fb1204acf6a7 a owl:Restriction ;\n\towl:onProperty wdt:P7715 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8707 a wikibase:Property ;\n\trdfs:label \"NBIC-Taxon-ID\"@de ;\n\tskos:prefLabel \"NBIC-Taxon-ID\"@de ;\n\tschema:name \"NBIC-Taxon-ID\"@de ;\n\trdfs:label \"NBIC scientific name ID\"@en ;\n\tskos:prefLabel \"NBIC scientific name ID\"@en ;\n\tschema:name \"NBIC scientific name ID\"@en ;\n\tschema:description \"identifier for a taxon's scientific name in the Norwegian Biodiversity Information Centre database, a database on species and ecosystems in Norway\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8707 ;\n\twikibase:claim p:P8707 ;\n\twikibase:statementProperty ps:P8707 ;\n\twikibase:statementValue psv:P8707 ;\n\twikibase:qualifier pq:P8707 ;\n\twikibase:qualifierValue pqv:P8707 ;\n\twikibase:reference pr:P8707 ;\n\twikibase:referenceValue prv:P8707 ;\n\twikibase:novalue wdno:P8707 ;\n\twikibase:directClaimNormalized wdtn:P8707 ;\n\twikibase:statementValueNormalized psn:P8707 ;\n\twikibase:qualifierValueNormalized pqn:P8707 ;\n\twikibase:referenceValueNormalized prn:P8707 .\n\np:P8707 a owl:ObjectProperty .\n\npsv:P8707 a owl:ObjectProperty .\n\npqv:P8707 a owl:ObjectProperty .\n\nprv:P8707 a owl:ObjectProperty .\n\nwdt:P8707 a owl:DatatypeProperty .\n\nps:P8707 a owl:DatatypeProperty .\n\npq:P8707 a owl:DatatypeProperty .\n\npr:P8707 a owl:DatatypeProperty .\n\npsn:P8707 a owl:ObjectProperty .\n\npqn:P8707 a owl:ObjectProperty .\n\nprn:P8707 a owl:ObjectProperty .\n\nwdtn:P8707 a owl:ObjectProperty .\n\nwdno:P8707 a owl:Class ;\n\towl:complementOf _:dee2239e5b92581688afa8584199dddf .\n\n_:dee2239e5b92581688afa8584199dddf a owl:Restriction ;\n\towl:onProperty wdt:P8707 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8765 a wikibase:Property ;\n\trdfs:label \"Royal Horticultural Society plant ID\"@en ;\n\tskos:prefLabel \"Royal Horticultural Society plant ID\"@en ;\n\tschema:name \"Royal Horticultural Society plant ID\"@en ;\n\tschema:description \"identifier for plants listed on the Royal Horticultural Society website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8765 ;\n\twikibase:claim p:P8765 ;\n\twikibase:statementProperty ps:P8765 ;\n\twikibase:statementValue psv:P8765 ;\n\twikibase:qualifier pq:P8765 ;\n\twikibase:qualifierValue pqv:P8765 ;\n\twikibase:reference pr:P8765 ;\n\twikibase:referenceValue prv:P8765 ;\n\twikibase:novalue wdno:P8765 ;\n\twikibase:directClaimNormalized wdtn:P8765 ;\n\twikibase:statementValueNormalized psn:P8765 ;\n\twikibase:qualifierValueNormalized pqn:P8765 ;\n\twikibase:referenceValueNormalized prn:P8765 .\n\np:P8765 a owl:ObjectProperty .\n\npsv:P8765 a owl:ObjectProperty .\n\npqv:P8765 a owl:ObjectProperty .\n\nprv:P8765 a owl:ObjectProperty .\n\nwdt:P8765 a owl:DatatypeProperty .\n\nps:P8765 a owl:DatatypeProperty .\n\npq:P8765 a owl:DatatypeProperty .\n\npr:P8765 a owl:DatatypeProperty .\n\npsn:P8765 a owl:ObjectProperty .\n\npqn:P8765 a owl:ObjectProperty .\n\nprn:P8765 a owl:ObjectProperty .\n\nwdtn:P8765 a owl:ObjectProperty .\n\nwdno:P8765 a owl:Class ;\n\towl:complementOf _:3fbd419eaa8d90042aacff8aaa524fd3 .\n\n_:3fbd419eaa8d90042aacff8aaa524fd3 a owl:Restriction ;\n\towl:onProperty wdt:P8765 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8915 a wikibase:Property ;\n\trdfs:label \"ZOBODAT-Taxonkennung\"@de ;\n\tskos:prefLabel \"ZOBODAT-Taxonkennung\"@de ;\n\tschema:name \"ZOBODAT-Taxonkennung\"@de ;\n\trdfs:label \"ZOBODAT taxon ID\"@en ;\n\tskos:prefLabel \"ZOBODAT taxon ID\"@en ;\n\tschema:name \"ZOBODAT taxon ID\"@en ;\n\tschema:description \"Identifikator eines Taxons bei ZOBODAT, einer bibliografischen Datenenbank für deutschsprachige Arbeiten auf dem Gebiet der Zoologie\"@de,\n\t\t\"numerical identifier for a taxon in ZOBODAT, a bibliographic database of mostly German-language works on zoology\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8915 ;\n\twikibase:claim p:P8915 ;\n\twikibase:statementProperty ps:P8915 ;\n\twikibase:statementValue psv:P8915 ;\n\twikibase:qualifier pq:P8915 ;\n\twikibase:qualifierValue pqv:P8915 ;\n\twikibase:reference pr:P8915 ;\n\twikibase:referenceValue prv:P8915 ;\n\twikibase:novalue wdno:P8915 ;\n\twikibase:directClaimNormalized wdtn:P8915 ;\n\twikibase:statementValueNormalized psn:P8915 ;\n\twikibase:qualifierValueNormalized pqn:P8915 ;\n\twikibase:referenceValueNormalized prn:P8915 .\n\np:P8915 a owl:ObjectProperty .\n\npsv:P8915 a owl:ObjectProperty .\n\npqv:P8915 a owl:ObjectProperty .\n\nprv:P8915 a owl:ObjectProperty .\n\nwdt:P8915 a owl:DatatypeProperty .\n\nps:P8915 a owl:DatatypeProperty .\n\npq:P8915 a owl:DatatypeProperty .\n\npr:P8915 a owl:DatatypeProperty .\n\npsn:P8915 a owl:ObjectProperty .\n\npqn:P8915 a owl:ObjectProperty .\n\nprn:P8915 a owl:ObjectProperty .\n\nwdtn:P8915 a owl:ObjectProperty .\n\nwdno:P8915 a owl:Class ;\n\towl:complementOf _:d7603555fb9ce2ad9600cdad0d2edca6 .\n\n_:d7603555fb9ce2ad9600cdad0d2edca6 a owl:Restriction ;\n\towl:onProperty wdt:P8915 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6056 a wikibase:Property ;\n\trdfs:label \"SanbiRedList-ID\"@de ;\n\tskos:prefLabel \"SanbiRedList-ID\"@de ;\n\tschema:name \"SanbiRedList-ID\"@de ;\n\trdfs:label \"Red List of South African Plants ID\"@mul ;\n\tskos:prefLabel \"Red List of South African Plants ID\"@mul ;\n\tschema:name \"Red List of South African Plants ID\"@mul ;\n\trdfs:label \"Red List of South African Plants ID\"@en ;\n\tskos:prefLabel \"Red List of South African Plants ID\"@en ;\n\tschema:name \"Red List of South African Plants ID\"@en ;\n\tschema:description \"identifier for a species on the Red List of South African Plants website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6056 ;\n\twikibase:claim p:P6056 ;\n\twikibase:statementProperty ps:P6056 ;\n\twikibase:statementValue psv:P6056 ;\n\twikibase:qualifier pq:P6056 ;\n\twikibase:qualifierValue pqv:P6056 ;\n\twikibase:reference pr:P6056 ;\n\twikibase:referenceValue prv:P6056 ;\n\twikibase:novalue wdno:P6056 ;\n\twikibase:directClaimNormalized wdtn:P6056 ;\n\twikibase:statementValueNormalized psn:P6056 ;\n\twikibase:qualifierValueNormalized pqn:P6056 ;\n\twikibase:referenceValueNormalized prn:P6056 .\n\np:P6056 a owl:ObjectProperty .\n\npsv:P6056 a owl:ObjectProperty .\n\npqv:P6056 a owl:ObjectProperty .\n\nprv:P6056 a owl:ObjectProperty .\n\nwdt:P6056 a owl:DatatypeProperty .\n\nps:P6056 a owl:DatatypeProperty .\n\npq:P6056 a owl:DatatypeProperty .\n\npr:P6056 a owl:DatatypeProperty .\n\npsn:P6056 a owl:ObjectProperty .\n\npqn:P6056 a owl:ObjectProperty .\n\nprn:P6056 a owl:ObjectProperty .\n\nwdtn:P6056 a owl:ObjectProperty .\n\nwdno:P6056 a owl:Class ;\n\towl:complementOf _:584b8be549bd0449a5359cb559628a64 .\n\n_:584b8be549bd0449a5359cb559628a64 a owl:Restriction ;\n\towl:onProperty wdt:P6056 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P652 a wikibase:Property ;\n\trdfs:label \"UNII\"@de ;\n\tskos:prefLabel \"UNII\"@de ;\n\tschema:name \"UNII\"@de ;\n\trdfs:label \"UNII\"@en ;\n\tskos:prefLabel \"UNII\"@en ;\n\tschema:name \"UNII\"@en ;\n\tschema:description \"von der FDA definierter Identifikator für einzelnen Inhaltsstoff chemischer Verbindungen\"@de,\n\t\t\"identifier issued by the FDA / Unique Ingredient Identifier\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P652 ;\n\twikibase:claim p:P652 ;\n\twikibase:statementProperty ps:P652 ;\n\twikibase:statementValue psv:P652 ;\n\twikibase:qualifier pq:P652 ;\n\twikibase:qualifierValue pqv:P652 ;\n\twikibase:reference pr:P652 ;\n\twikibase:referenceValue prv:P652 ;\n\twikibase:novalue wdno:P652 ;\n\twikibase:directClaimNormalized wdtn:P652 ;\n\twikibase:statementValueNormalized psn:P652 ;\n\twikibase:qualifierValueNormalized pqn:P652 ;\n\twikibase:referenceValueNormalized prn:P652 .\n\np:P652 a owl:ObjectProperty .\n\npsv:P652 a owl:ObjectProperty .\n\npqv:P652 a owl:ObjectProperty .\n\nprv:P652 a owl:ObjectProperty .\n\nwdt:P652 a owl:DatatypeProperty .\n\nps:P652 a owl:DatatypeProperty .\n\npq:P652 a owl:DatatypeProperty .\n\npr:P652 a owl:DatatypeProperty .\n\npsn:P652 a owl:ObjectProperty .\n\npqn:P652 a owl:ObjectProperty .\n\nprn:P652 a owl:ObjectProperty .\n\nwdtn:P652 a owl:ObjectProperty .\n\nwdno:P652 a owl:Class ;\n\towl:complementOf _:7c87e9c7a1c397e21dfebf04b4dd19e9 .\n\n_:7c87e9c7a1c397e21dfebf04b4dd19e9 a owl:Restriction ;\n\towl:onProperty wdt:P652 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6756 a wikibase:Property ;\n\trdfs:label \"FoA-Online-ID\"@de ;\n\tskos:prefLabel \"FoA-Online-ID\"@de ;\n\tschema:name \"FoA-Online-ID\"@de ;\n\trdfs:label \"Flora of Australia ID (new)\"@en ;\n\tskos:prefLabel \"Flora of Australia ID (new)\"@en ;\n\tschema:name \"Flora of Australia ID (new)\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons bei Flora of Australia Online (neu)\"@de,\n\t\t\"identifier for a plant taxon, in an Australian Commonwealth database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6756 ;\n\twikibase:claim p:P6756 ;\n\twikibase:statementProperty ps:P6756 ;\n\twikibase:statementValue psv:P6756 ;\n\twikibase:qualifier pq:P6756 ;\n\twikibase:qualifierValue pqv:P6756 ;\n\twikibase:reference pr:P6756 ;\n\twikibase:referenceValue prv:P6756 ;\n\twikibase:novalue wdno:P6756 ;\n\twikibase:directClaimNormalized wdtn:P6756 ;\n\twikibase:statementValueNormalized psn:P6756 ;\n\twikibase:qualifierValueNormalized pqn:P6756 ;\n\twikibase:referenceValueNormalized prn:P6756 .\n\np:P6756 a owl:ObjectProperty .\n\npsv:P6756 a owl:ObjectProperty .\n\npqv:P6756 a owl:ObjectProperty .\n\nprv:P6756 a owl:ObjectProperty .\n\nwdt:P6756 a owl:DatatypeProperty .\n\nps:P6756 a owl:DatatypeProperty .\n\npq:P6756 a owl:DatatypeProperty .\n\npr:P6756 a owl:DatatypeProperty .\n\npsn:P6756 a owl:ObjectProperty .\n\npqn:P6756 a owl:ObjectProperty .\n\nprn:P6756 a owl:ObjectProperty .\n\nwdtn:P6756 a owl:ObjectProperty .\n\nwdno:P6756 a owl:Class ;\n\towl:complementOf _:da24400afd7ac2e594f14b74b4caa581 .\n\n_:da24400afd7ac2e594f14b74b4caa581 a owl:Restriction ;\n\towl:onProperty wdt:P6756 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9157 a wikibase:Property ;\n\trdfs:label \"OTT-ID\"@de ;\n\tskos:prefLabel \"OTT-ID\"@de ;\n\tschema:name \"OTT-ID\"@de ;\n\trdfs:label \"Open Tree of Life ID\"@en ;\n\tskos:prefLabel \"Open Tree of Life ID\"@en ;\n\tschema:name \"Open Tree of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in der Referenztaxonomie (OTT) des Projektes Open Tree of Life\"@de,\n\t\t\"identifier for an entity in Open Tree of Life, a comprehensive, dynamic and digitally-available tree of life by synthesizing published phylogenetic trees along with taxonomic data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9157 ;\n\twikibase:claim p:P9157 ;\n\twikibase:statementProperty ps:P9157 ;\n\twikibase:statementValue psv:P9157 ;\n\twikibase:qualifier pq:P9157 ;\n\twikibase:qualifierValue pqv:P9157 ;\n\twikibase:reference pr:P9157 ;\n\twikibase:referenceValue prv:P9157 ;\n\twikibase:novalue wdno:P9157 ;\n\twikibase:directClaimNormalized wdtn:P9157 ;\n\twikibase:statementValueNormalized psn:P9157 ;\n\twikibase:qualifierValueNormalized pqn:P9157 ;\n\twikibase:referenceValueNormalized prn:P9157 .\n\np:P9157 a owl:ObjectProperty .\n\npsv:P9157 a owl:ObjectProperty .\n\npqv:P9157 a owl:ObjectProperty .\n\nprv:P9157 a owl:ObjectProperty .\n\nwdt:P9157 a owl:DatatypeProperty .\n\nps:P9157 a owl:DatatypeProperty .\n\npq:P9157 a owl:DatatypeProperty .\n\npr:P9157 a owl:DatatypeProperty .\n\npsn:P9157 a owl:ObjectProperty .\n\npqn:P9157 a owl:ObjectProperty .\n\nprn:P9157 a owl:ObjectProperty .\n\nwdtn:P9157 a owl:ObjectProperty .\n\nwdno:P9157 a owl:Class ;\n\towl:complementOf _:746cb7f5a9cfa7771b15b745abbfaf11 .\n\n_:746cb7f5a9cfa7771b15b745abbfaf11 a owl:Restriction ;\n\towl:onProperty wdt:P9157 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8468 a wikibase:Property ;\n\trdfs:label \"Queensland Biota-ID\"@de ;\n\tskos:prefLabel \"Queensland Biota-ID\"@de ;\n\tschema:name \"Queensland Biota-ID\"@de ;\n\trdfs:label \"Queensland Biota ID\"@en ;\n\tskos:prefLabel \"Queensland Biota ID\"@en ;\n\tschema:name \"Queensland Biota ID\"@en ;\n\tschema:description \"identifier for a taxon, in a Queensland Government database of species profiles\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8468 ;\n\twikibase:claim p:P8468 ;\n\twikibase:statementProperty ps:P8468 ;\n\twikibase:statementValue psv:P8468 ;\n\twikibase:qualifier pq:P8468 ;\n\twikibase:qualifierValue pqv:P8468 ;\n\twikibase:reference pr:P8468 ;\n\twikibase:referenceValue prv:P8468 ;\n\twikibase:novalue wdno:P8468 ;\n\twikibase:directClaimNormalized wdtn:P8468 ;\n\twikibase:statementValueNormalized psn:P8468 ;\n\twikibase:qualifierValueNormalized pqn:P8468 ;\n\twikibase:referenceValueNormalized prn:P8468 .\n\np:P8468 a owl:ObjectProperty .\n\npsv:P8468 a owl:ObjectProperty .\n\npqv:P8468 a owl:ObjectProperty .\n\nprv:P8468 a owl:ObjectProperty .\n\nwdt:P8468 a owl:DatatypeProperty .\n\nps:P8468 a owl:DatatypeProperty .\n\npq:P8468 a owl:DatatypeProperty .\n\npr:P8468 a owl:DatatypeProperty .\n\npsn:P8468 a owl:ObjectProperty .\n\npqn:P8468 a owl:ObjectProperty .\n\nprn:P8468 a owl:ObjectProperty .\n\nwdtn:P8468 a owl:ObjectProperty .\n\nwdno:P8468 a owl:Class ;\n\towl:complementOf _:c783cdde1a151f2097303ba656e486d0 .\n\n_:c783cdde1a151f2097303ba656e486d0 a owl:Restriction ;\n\towl:onProperty wdt:P8468 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9501 a wikibase:Property ;\n\trdfs:label \"Oregon Flora Image Project ID\"@en ;\n\tskos:prefLabel \"Oregon Flora Image Project ID\"@en ;\n\tschema:name \"Oregon Flora Image Project ID\"@en ;\n\tschema:description \"identifier for a plant species on the Oregon Flora Image Project website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9501 ;\n\twikibase:claim p:P9501 ;\n\twikibase:statementProperty ps:P9501 ;\n\twikibase:statementValue psv:P9501 ;\n\twikibase:qualifier pq:P9501 ;\n\twikibase:qualifierValue pqv:P9501 ;\n\twikibase:reference pr:P9501 ;\n\twikibase:referenceValue prv:P9501 ;\n\twikibase:novalue wdno:P9501 ;\n\twikibase:directClaimNormalized wdtn:P9501 ;\n\twikibase:statementValueNormalized psn:P9501 ;\n\twikibase:qualifierValueNormalized pqn:P9501 ;\n\twikibase:referenceValueNormalized prn:P9501 .\n\np:P9501 a owl:ObjectProperty .\n\npsv:P9501 a owl:ObjectProperty .\n\npqv:P9501 a owl:ObjectProperty .\n\nprv:P9501 a owl:ObjectProperty .\n\nwdt:P9501 a owl:DatatypeProperty .\n\nps:P9501 a owl:DatatypeProperty .\n\npq:P9501 a owl:DatatypeProperty .\n\npr:P9501 a owl:DatatypeProperty .\n\npsn:P9501 a owl:ObjectProperty .\n\npqn:P9501 a owl:ObjectProperty .\n\nprn:P9501 a owl:ObjectProperty .\n\nwdtn:P9501 a owl:ObjectProperty .\n\nwdno:P9501 a owl:Class ;\n\towl:complementOf _:4517ab0aa7e991b3933d4501d5c7deb5 .\n\n_:4517ab0aa7e991b3933d4501d5c7deb5 a owl:Restriction ;\n\towl:onProperty wdt:P9501 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9654 a wikibase:Property ;\n\trdfs:label \"Burke Herbarium Image Collection ID\"@en ;\n\tskos:prefLabel \"Burke Herbarium Image Collection ID\"@en ;\n\tschema:name \"Burke Herbarium Image Collection ID\"@en ;\n\tschema:description \"identifier for a plant, macrofungus, or lichen species in the Burke Herbarium Image Collection\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9654 ;\n\twikibase:claim p:P9654 ;\n\twikibase:statementProperty ps:P9654 ;\n\twikibase:statementValue psv:P9654 ;\n\twikibase:qualifier pq:P9654 ;\n\twikibase:qualifierValue pqv:P9654 ;\n\twikibase:reference pr:P9654 ;\n\twikibase:referenceValue prv:P9654 ;\n\twikibase:novalue wdno:P9654 ;\n\twikibase:directClaimNormalized wdtn:P9654 ;\n\twikibase:statementValueNormalized psn:P9654 ;\n\twikibase:qualifierValueNormalized pqn:P9654 ;\n\twikibase:referenceValueNormalized prn:P9654 .\n\np:P9654 a owl:ObjectProperty .\n\npsv:P9654 a owl:ObjectProperty .\n\npqv:P9654 a owl:ObjectProperty .\n\nprv:P9654 a owl:ObjectProperty .\n\nwdt:P9654 a owl:DatatypeProperty .\n\nps:P9654 a owl:DatatypeProperty .\n\npq:P9654 a owl:DatatypeProperty .\n\npr:P9654 a owl:DatatypeProperty .\n\npsn:P9654 a owl:ObjectProperty .\n\npqn:P9654 a owl:ObjectProperty .\n\nprn:P9654 a owl:ObjectProperty .\n\nwdtn:P9654 a owl:ObjectProperty .\n\nwdno:P9654 a owl:Class ;\n\towl:complementOf _:5e54aeaf5b702c76725a9e190fa04939 .\n\n_:5e54aeaf5b702c76725a9e190fa04939 a owl:Restriction ;\n\towl:onProperty wdt:P9654 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3105 a wikibase:Property ;\n\trdfs:label \"Tela-Botanica-BDTFX-ID\"@de ;\n\tskos:prefLabel \"Tela-Botanica-BDTFX-ID\"@de ;\n\tschema:name \"Tela-Botanica-BDTFX-ID\"@de ;\n\trdfs:label \"Tela Botanica ID\"@en ;\n\tskos:prefLabel \"Tela Botanica ID\"@en ;\n\tschema:name \"Tela Botanica ID\"@en ;\n\tschema:description \"identifier for a plant taxon in Tela Botanica's 'base des trachéophytes de France métropolitaine' - BDTFX - (Metropolitan France Tracheophyte Database)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3105 ;\n\twikibase:claim p:P3105 ;\n\twikibase:statementProperty ps:P3105 ;\n\twikibase:statementValue psv:P3105 ;\n\twikibase:qualifier pq:P3105 ;\n\twikibase:qualifierValue pqv:P3105 ;\n\twikibase:reference pr:P3105 ;\n\twikibase:referenceValue prv:P3105 ;\n\twikibase:novalue wdno:P3105 ;\n\twikibase:directClaimNormalized wdtn:P3105 ;\n\twikibase:statementValueNormalized psn:P3105 ;\n\twikibase:qualifierValueNormalized pqn:P3105 ;\n\twikibase:referenceValueNormalized prn:P3105 .\n\np:P3105 a owl:ObjectProperty .\n\npsv:P3105 a owl:ObjectProperty .\n\npqv:P3105 a owl:ObjectProperty .\n\nprv:P3105 a owl:ObjectProperty .\n\nwdt:P3105 a owl:DatatypeProperty .\n\nps:P3105 a owl:DatatypeProperty .\n\npq:P3105 a owl:DatatypeProperty .\n\npr:P3105 a owl:DatatypeProperty .\n\npsn:P3105 a owl:ObjectProperty .\n\npqn:P3105 a owl:ObjectProperty .\n\nprn:P3105 a owl:ObjectProperty .\n\nwdtn:P3105 a owl:ObjectProperty .\n\nwdno:P3105 a owl:Class ;\n\towl:complementOf _:39ec9e8a1cc534a4563a511d4c8fda02 .\n\n_:39ec9e8a1cc534a4563a511d4c8fda02 a owl:Restriction ;\n\towl:onProperty wdt:P3105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9741 a wikibase:Property ;\n\trdfs:label \"Pladias ID\"@en ;\n\tskos:prefLabel \"Pladias ID\"@en ;\n\tschema:name \"Pladias ID\"@en ;\n\tschema:description \"taxon identifier in Pladias database of Czech plant species\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9741 ;\n\twikibase:claim p:P9741 ;\n\twikibase:statementProperty ps:P9741 ;\n\twikibase:statementValue psv:P9741 ;\n\twikibase:qualifier pq:P9741 ;\n\twikibase:qualifierValue pqv:P9741 ;\n\twikibase:reference pr:P9741 ;\n\twikibase:referenceValue prv:P9741 ;\n\twikibase:novalue wdno:P9741 ;\n\twikibase:directClaimNormalized wdtn:P9741 ;\n\twikibase:statementValueNormalized psn:P9741 ;\n\twikibase:qualifierValueNormalized pqn:P9741 ;\n\twikibase:referenceValueNormalized prn:P9741 .\n\np:P9741 a owl:ObjectProperty .\n\npsv:P9741 a owl:ObjectProperty .\n\npqv:P9741 a owl:ObjectProperty .\n\nprv:P9741 a owl:ObjectProperty .\n\nwdt:P9741 a owl:DatatypeProperty .\n\nps:P9741 a owl:DatatypeProperty .\n\npq:P9741 a owl:DatatypeProperty .\n\npr:P9741 a owl:DatatypeProperty .\n\npsn:P9741 a owl:ObjectProperty .\n\npqn:P9741 a owl:ObjectProperty .\n\nprn:P9741 a owl:ObjectProperty .\n\nwdtn:P9741 a owl:ObjectProperty .\n\nwdno:P9741 a owl:Class ;\n\towl:complementOf _:35a4923ba29d2b98e744ff0419641efa .\n\n_:35a4923ba29d2b98e744ff0419641efa a owl:Restriction ;\n\towl:onProperty wdt:P9741 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9799 a wikibase:Property ;\n\trdfs:label \"Palynodata taxa ID\"@en ;\n\tskos:prefLabel \"Palynodata taxa ID\"@en ;\n\tschema:name \"Palynodata taxa ID\"@en ;\n\tschema:description \"Kennung eines Taxons in der Palynodata-Datenbank\"@de,\n\t\t\"identifier of a taxon in the Palynodata database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9799 ;\n\twikibase:claim p:P9799 ;\n\twikibase:statementProperty ps:P9799 ;\n\twikibase:statementValue psv:P9799 ;\n\twikibase:qualifier pq:P9799 ;\n\twikibase:qualifierValue pqv:P9799 ;\n\twikibase:reference pr:P9799 ;\n\twikibase:referenceValue prv:P9799 ;\n\twikibase:novalue wdno:P9799 ;\n\twikibase:directClaimNormalized wdtn:P9799 ;\n\twikibase:statementValueNormalized psn:P9799 ;\n\twikibase:qualifierValueNormalized pqn:P9799 ;\n\twikibase:referenceValueNormalized prn:P9799 .\n\np:P9799 a owl:ObjectProperty .\n\npsv:P9799 a owl:ObjectProperty .\n\npqv:P9799 a owl:ObjectProperty .\n\nprv:P9799 a owl:ObjectProperty .\n\nwdt:P9799 a owl:DatatypeProperty .\n\nps:P9799 a owl:DatatypeProperty .\n\npq:P9799 a owl:DatatypeProperty .\n\npr:P9799 a owl:DatatypeProperty .\n\npsn:P9799 a owl:ObjectProperty .\n\npqn:P9799 a owl:ObjectProperty .\n\nprn:P9799 a owl:ObjectProperty .\n\nwdtn:P9799 a owl:ObjectProperty .\n\nwdno:P9799 a owl:Class ;\n\towl:complementOf _:c5610fa6af112054656ff9924a7ef36f .\n\n_:c5610fa6af112054656ff9924a7ef36f a owl:Restriction ;\n\towl:onProperty wdt:P9799 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10243 a wikibase:Property ;\n\trdfs:label \"NatureServe-Explorer-Kennung\"@de ;\n\tskos:prefLabel \"NatureServe-Explorer-Kennung\"@de ;\n\tschema:name \"NatureServe-Explorer-Kennung\"@de ;\n\trdfs:label \"NatureServe Explorer ID\"@en ;\n\tskos:prefLabel \"NatureServe Explorer ID\"@en ;\n\tschema:name \"NatureServe Explorer ID\"@en ;\n\tschema:description \"Kennung für eine Spezies oder ein Ökosystem in der NatureServe-Explorer-Datenbank\"@de,\n\t\t\"identifier of a species or ecosystem in the Americas in the NatureServe Explorer database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10243 ;\n\twikibase:claim p:P10243 ;\n\twikibase:statementProperty ps:P10243 ;\n\twikibase:statementValue psv:P10243 ;\n\twikibase:qualifier pq:P10243 ;\n\twikibase:qualifierValue pqv:P10243 ;\n\twikibase:reference pr:P10243 ;\n\twikibase:referenceValue prv:P10243 ;\n\twikibase:novalue wdno:P10243 ;\n\twikibase:directClaimNormalized wdtn:P10243 ;\n\twikibase:statementValueNormalized psn:P10243 ;\n\twikibase:qualifierValueNormalized pqn:P10243 ;\n\twikibase:referenceValueNormalized prn:P10243 .\n\np:P10243 a owl:ObjectProperty .\n\npsv:P10243 a owl:ObjectProperty .\n\npqv:P10243 a owl:ObjectProperty .\n\nprv:P10243 a owl:ObjectProperty .\n\nwdt:P10243 a owl:DatatypeProperty .\n\nps:P10243 a owl:DatatypeProperty .\n\npq:P10243 a owl:DatatypeProperty .\n\npr:P10243 a owl:DatatypeProperty .\n\npsn:P10243 a owl:ObjectProperty .\n\npqn:P10243 a owl:ObjectProperty .\n\nprn:P10243 a owl:ObjectProperty .\n\nwdtn:P10243 a owl:ObjectProperty .\n\nwdno:P10243 a owl:Class ;\n\towl:complementOf _:cc5236f8d312dce8a5d6ef9aa5118539 .\n\n_:cc5236f8d312dce8a5d6ef9aa5118539 a owl:Restriction ;\n\towl:onProperty wdt:P10243 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10283 a wikibase:Property ;\n\trdfs:label \"OpenAlex-Kennung\"@de ;\n\tskos:prefLabel \"OpenAlex-Kennung\"@de ;\n\tschema:name \"OpenAlex-Kennung\"@de ;\n\trdfs:label \"OpenAlex ID\"@en ;\n\tskos:prefLabel \"OpenAlex ID\"@en ;\n\tschema:name \"OpenAlex ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei OpenAlex\"@de,\n\t\t\"identifier for works, grants, authors, institutes, venues, concepts/subjects in OpenAlex\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10283 ;\n\twikibase:claim p:P10283 ;\n\twikibase:statementProperty ps:P10283 ;\n\twikibase:statementValue psv:P10283 ;\n\twikibase:qualifier pq:P10283 ;\n\twikibase:qualifierValue pqv:P10283 ;\n\twikibase:reference pr:P10283 ;\n\twikibase:referenceValue prv:P10283 ;\n\twikibase:novalue wdno:P10283 ;\n\twikibase:directClaimNormalized wdtn:P10283 ;\n\twikibase:statementValueNormalized psn:P10283 ;\n\twikibase:qualifierValueNormalized pqn:P10283 ;\n\twikibase:referenceValueNormalized prn:P10283 .\n\np:P10283 a owl:ObjectProperty .\n\npsv:P10283 a owl:ObjectProperty .\n\npqv:P10283 a owl:ObjectProperty .\n\nprv:P10283 a owl:ObjectProperty .\n\nwdt:P10283 a owl:DatatypeProperty .\n\nps:P10283 a owl:DatatypeProperty .\n\npq:P10283 a owl:DatatypeProperty .\n\npr:P10283 a owl:DatatypeProperty .\n\npsn:P10283 a owl:ObjectProperty .\n\npqn:P10283 a owl:ObjectProperty .\n\nprn:P10283 a owl:ObjectProperty .\n\nwdtn:P10283 a owl:ObjectProperty .\n\nwdno:P10283 a owl:Class ;\n\towl:complementOf _:32a5275a7dbbfba13192c77c3ada4d3a .\n\n_:32a5275a7dbbfba13192c77c3ada4d3a a owl:Restriction ;\n\towl:onProperty wdt:P10283 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4342 a wikibase:Property ;\n\trdfs:label \"SNL-Kennung\"@de ;\n\tskos:prefLabel \"SNL-Kennung\"@de ;\n\tschema:name \"SNL-Kennung\"@de ;\n\trdfs:label \"Great Norwegian Encyclopedia ID\"@en ;\n\tskos:prefLabel \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:name \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Online-Enzyklopädie snl.no\"@de,\n\t\t\"identifier of an article in the online encyclopedia snl.no\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4342 ;\n\twikibase:claim p:P4342 ;\n\twikibase:statementProperty ps:P4342 ;\n\twikibase:statementValue psv:P4342 ;\n\twikibase:qualifier pq:P4342 ;\n\twikibase:qualifierValue pqv:P4342 ;\n\twikibase:reference pr:P4342 ;\n\twikibase:referenceValue prv:P4342 ;\n\twikibase:novalue wdno:P4342 ;\n\twikibase:directClaimNormalized wdtn:P4342 ;\n\twikibase:statementValueNormalized psn:P4342 ;\n\twikibase:qualifierValueNormalized pqn:P4342 ;\n\twikibase:referenceValueNormalized prn:P4342 .\n\np:P4342 a owl:ObjectProperty .\n\npsv:P4342 a owl:ObjectProperty .\n\npqv:P4342 a owl:ObjectProperty .\n\nprv:P4342 a owl:ObjectProperty .\n\nwdt:P4342 a owl:DatatypeProperty .\n\nps:P4342 a owl:DatatypeProperty .\n\npq:P4342 a owl:DatatypeProperty .\n\npr:P4342 a owl:DatatypeProperty .\n\npsn:P4342 a owl:ObjectProperty .\n\npqn:P4342 a owl:ObjectProperty .\n\nprn:P4342 a owl:ObjectProperty .\n\nwdtn:P4342 a owl:ObjectProperty .\n\nwdno:P4342 a owl:Class ;\n\towl:complementOf _:798f6d589e42f1b7a13b07c18239c1c6 .\n\n_:798f6d589e42f1b7a13b07c18239c1c6 a owl:Restriction ;\n\towl:onProperty wdt:P4342 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8309 a wikibase:Property ;\n\trdfs:label \"Yle-Themenkennung\"@de ;\n\tskos:prefLabel \"Yle-Themenkennung\"@de ;\n\tschema:name \"Yle-Themenkennung\"@de ;\n\trdfs:label \"Yle topic ID\"@en ;\n\tskos:prefLabel \"Yle topic ID\"@en ;\n\tschema:name \"Yle topic ID\"@en ;\n\tschema:description \"Identifikator für Themen bei Yleisradio, der öffentlich-rechtlichen Rundfunkanstalt von Finnland\"@de,\n\t\t\"identifier for topics in Finland's national broadcaster Yle's web services\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8309 ;\n\twikibase:claim p:P8309 ;\n\twikibase:statementProperty ps:P8309 ;\n\twikibase:statementValue psv:P8309 ;\n\twikibase:qualifier pq:P8309 ;\n\twikibase:qualifierValue pqv:P8309 ;\n\twikibase:reference pr:P8309 ;\n\twikibase:referenceValue prv:P8309 ;\n\twikibase:novalue wdno:P8309 ;\n\twikibase:directClaimNormalized wdtn:P8309 ;\n\twikibase:statementValueNormalized psn:P8309 ;\n\twikibase:qualifierValueNormalized pqn:P8309 ;\n\twikibase:referenceValueNormalized prn:P8309 .\n\np:P8309 a owl:ObjectProperty .\n\npsv:P8309 a owl:ObjectProperty .\n\npqv:P8309 a owl:ObjectProperty .\n\nprv:P8309 a owl:ObjectProperty .\n\nwdt:P8309 a owl:DatatypeProperty .\n\nps:P8309 a owl:DatatypeProperty .\n\npq:P8309 a owl:DatatypeProperty .\n\npr:P8309 a owl:DatatypeProperty .\n\npsn:P8309 a owl:ObjectProperty .\n\npqn:P8309 a owl:ObjectProperty .\n\nprn:P8309 a owl:ObjectProperty .\n\nwdtn:P8309 a owl:ObjectProperty .\n\nwdno:P8309 a owl:Class ;\n\towl:complementOf _:319a8457f406453ce8c58dbafb56d5a7 .\n\n_:319a8457f406453ce8c58dbafb56d5a7 a owl:Restriction ;\n\towl:onProperty wdt:P8309 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6293 a wikibase:Property ;\n\trdfs:label \"YSA-ID\"@de ;\n\tskos:prefLabel \"YSA-ID\"@de ;\n\tschema:name \"YSA-ID\"@de ;\n\trdfs:label \"YSA ID\"@en ;\n\tskos:prefLabel \"YSA ID\"@en ;\n\tschema:name \"YSA ID\"@en ;\n\tschema:description \"identifier for a concept in the General Finnish Thesaurus YSA\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6293 ;\n\twikibase:claim p:P6293 ;\n\twikibase:statementProperty ps:P6293 ;\n\twikibase:statementValue psv:P6293 ;\n\twikibase:qualifier pq:P6293 ;\n\twikibase:qualifierValue pqv:P6293 ;\n\twikibase:reference pr:P6293 ;\n\twikibase:referenceValue prv:P6293 ;\n\twikibase:novalue wdno:P6293 ;\n\twikibase:directClaimNormalized wdtn:P6293 ;\n\twikibase:statementValueNormalized psn:P6293 ;\n\twikibase:qualifierValueNormalized pqn:P6293 ;\n\twikibase:referenceValueNormalized prn:P6293 .\n\np:P6293 a owl:ObjectProperty .\n\npsv:P6293 a owl:ObjectProperty .\n\npqv:P6293 a owl:ObjectProperty .\n\nprv:P6293 a owl:ObjectProperty .\n\nwdt:P6293 a owl:DatatypeProperty .\n\nps:P6293 a owl:DatatypeProperty .\n\npq:P6293 a owl:DatatypeProperty .\n\npr:P6293 a owl:DatatypeProperty .\n\npsn:P6293 a owl:ObjectProperty .\n\npqn:P6293 a owl:ObjectProperty .\n\nprn:P6293 a owl:ObjectProperty .\n\nwdtn:P6293 a owl:ObjectProperty .\n\nwdno:P6293 a owl:Class ;\n\towl:complementOf _:d4bb26f3c7a926c239f2bf402deeac77 .\n\n_:d4bb26f3c7a926c239f2bf402deeac77 a owl:Restriction ;\n\towl:onProperty wdt:P6293 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3579529 a wikibase:Item ;\n\trdfs:label \"Tammi\"@de ;\n\tskos:prefLabel \"Tammi\"@de ;\n\tschema:name \"Tammi\"@de ;\n\trdfs:label \"Tammi\"@mul ;\n\tskos:prefLabel \"Tammi\"@mul ;\n\tschema:name \"Tammi\"@mul ;\n\trdfs:label \"Tammi\"@en ;\n\tskos:prefLabel \"Tammi\"@en ;\n\tschema:name \"Tammi\"@en ;\n\tschema:description \"finnischer Buchverlag\"@de,\n\t\t\"Finnish publishing company\"@en .\n\nwd:P1889 a wikibase:Property ;\n\trdfs:label \"verschieden von\"@de ;\n\tskos:prefLabel \"verschieden von\"@de ;\n\tschema:name \"verschieden von\"@de ;\n\trdfs:label \"different from\"@en ;\n\tskos:prefLabel \"different from\"@en ;\n\tschema:name \"different from\"@en ;\n\tschema:description \"Objekt, das sich von einem anderen Objekt unterscheidet, die aber oft verwechselt werden\"@de,\n\t\t\"item that is different from another item, with which it may be confused\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1889 ;\n\twikibase:claim p:P1889 ;\n\twikibase:statementProperty ps:P1889 ;\n\twikibase:statementValue psv:P1889 ;\n\twikibase:qualifier pq:P1889 ;\n\twikibase:qualifierValue pqv:P1889 ;\n\twikibase:reference pr:P1889 ;\n\twikibase:referenceValue prv:P1889 ;\n\twikibase:novalue wdno:P1889 .\n\np:P1889 a owl:ObjectProperty .\n\npsv:P1889 a owl:ObjectProperty .\n\npqv:P1889 a owl:ObjectProperty .\n\nprv:P1889 a owl:ObjectProperty .\n\nwdt:P1889 a owl:ObjectProperty .\n\nps:P1889 a owl:ObjectProperty .\n\npq:P1889 a owl:ObjectProperty .\n\npr:P1889 a owl:ObjectProperty .\n\nwdno:P1889 a owl:Class ;\n\towl:complementOf _:4fcc9ce770ae6fe14cb8672fb35a8bc9 .\n\n_:4fcc9ce770ae6fe14cb8672fb35a8bc9 a owl:Restriction ;\n\towl:onProperty wdt:P1889 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6114 a wikibase:Property ;\n\trdfs:label \"Portal to the Flora of Italy ID\"@en ;\n\tskos:prefLabel \"Portal to the Flora of Italy ID\"@en ;\n\tschema:name \"Portal to the Flora of Italy ID\"@en ;\n\tschema:description \"identifier for a species on the Portal to the Flora of Italy website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6114 ;\n\twikibase:claim p:P6114 ;\n\twikibase:statementProperty ps:P6114 ;\n\twikibase:statementValue psv:P6114 ;\n\twikibase:qualifier pq:P6114 ;\n\twikibase:qualifierValue pqv:P6114 ;\n\twikibase:reference pr:P6114 ;\n\twikibase:referenceValue prv:P6114 ;\n\twikibase:novalue wdno:P6114 ;\n\twikibase:directClaimNormalized wdtn:P6114 ;\n\twikibase:statementValueNormalized psn:P6114 ;\n\twikibase:qualifierValueNormalized pqn:P6114 ;\n\twikibase:referenceValueNormalized prn:P6114 .\n\np:P6114 a owl:ObjectProperty .\n\npsv:P6114 a owl:ObjectProperty .\n\npqv:P6114 a owl:ObjectProperty .\n\nprv:P6114 a owl:ObjectProperty .\n\nwdt:P6114 a owl:DatatypeProperty .\n\nps:P6114 a owl:DatatypeProperty .\n\npq:P6114 a owl:DatatypeProperty .\n\npr:P6114 a owl:DatatypeProperty .\n\npsn:P6114 a owl:ObjectProperty .\n\npqn:P6114 a owl:ObjectProperty .\n\nprn:P6114 a owl:ObjectProperty .\n\nwdtn:P6114 a owl:ObjectProperty .\n\nwdno:P6114 a owl:Class ;\n\towl:complementOf _:b82d9f445d16ddd302faa7d06ec71921 .\n\n_:b82d9f445d16ddd302faa7d06ec71921 a owl:Restriction ;\n\towl:onProperty wdt:P6114 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10585 a wikibase:Property ;\n\trdfs:label \"CoL-ID\"@de ;\n\tskos:prefLabel \"CoL-ID\"@de ;\n\tschema:name \"CoL-ID\"@de ;\n\trdfs:label \"Catalogue of Life ID\"@en ;\n\tskos:prefLabel \"Catalogue of Life ID\"@en ;\n\tschema:name \"Catalogue of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept im Catalogue of Life (CoL)\"@de,\n\t\t\"identifier of a taxon or synonym in the Catalogue of Life\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10585 ;\n\twikibase:claim p:P10585 ;\n\twikibase:statementProperty ps:P10585 ;\n\twikibase:statementValue psv:P10585 ;\n\twikibase:qualifier pq:P10585 ;\n\twikibase:qualifierValue pqv:P10585 ;\n\twikibase:reference pr:P10585 ;\n\twikibase:referenceValue prv:P10585 ;\n\twikibase:novalue wdno:P10585 ;\n\twikibase:directClaimNormalized wdtn:P10585 ;\n\twikibase:statementValueNormalized psn:P10585 ;\n\twikibase:qualifierValueNormalized pqn:P10585 ;\n\twikibase:referenceValueNormalized prn:P10585 .\n\np:P10585 a owl:ObjectProperty .\n\npsv:P10585 a owl:ObjectProperty .\n\npqv:P10585 a owl:ObjectProperty .\n\nprv:P10585 a owl:ObjectProperty .\n\nwdt:P10585 a owl:DatatypeProperty .\n\nps:P10585 a owl:DatatypeProperty .\n\npq:P10585 a owl:DatatypeProperty .\n\npr:P10585 a owl:DatatypeProperty .\n\npsn:P10585 a owl:ObjectProperty .\n\npqn:P10585 a owl:ObjectProperty .\n\nprn:P10585 a owl:ObjectProperty .\n\nwdtn:P10585 a owl:ObjectProperty .\n\nwdno:P10585 a owl:Class ;\n\towl:complementOf _:0eab513998be3c909e4532fab5e7920d .\n\n_:0eab513998be3c909e4532fab5e7920d a owl:Restriction ;\n\towl:onProperty wdt:P10585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10793 a wikibase:Property ;\n\trdfs:label \"Woody Plants Database ID\"@en ;\n\tskos:prefLabel \"Woody Plants Database ID\"@en ;\n\tschema:name \"Woody Plants Database ID\"@en ;\n\tschema:description \"identifier for a taxon in Cornell University's Woody Plants Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10793 ;\n\twikibase:claim p:P10793 ;\n\twikibase:statementProperty ps:P10793 ;\n\twikibase:statementValue psv:P10793 ;\n\twikibase:qualifier pq:P10793 ;\n\twikibase:qualifierValue pqv:P10793 ;\n\twikibase:reference pr:P10793 ;\n\twikibase:referenceValue prv:P10793 ;\n\twikibase:novalue wdno:P10793 ;\n\twikibase:directClaimNormalized wdtn:P10793 ;\n\twikibase:statementValueNormalized psn:P10793 ;\n\twikibase:qualifierValueNormalized pqn:P10793 ;\n\twikibase:referenceValueNormalized prn:P10793 .\n\np:P10793 a owl:ObjectProperty .\n\npsv:P10793 a owl:ObjectProperty .\n\npqv:P10793 a owl:ObjectProperty .\n\nprv:P10793 a owl:ObjectProperty .\n\nwdt:P10793 a owl:DatatypeProperty .\n\nps:P10793 a owl:DatatypeProperty .\n\npq:P10793 a owl:DatatypeProperty .\n\npr:P10793 a owl:DatatypeProperty .\n\npsn:P10793 a owl:ObjectProperty .\n\npqn:P10793 a owl:ObjectProperty .\n\nprn:P10793 a owl:ObjectProperty .\n\nwdtn:P10793 a owl:ObjectProperty .\n\nwdno:P10793 a owl:Class ;\n\towl:complementOf _:e53a83dcdaf0eb30ffb88d3f54a6d266 .\n\n_:e53a83dcdaf0eb30ffb88d3f54a6d266 a owl:Restriction ;\n\towl:onProperty wdt:P10793 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P691 a wikibase:Property ;\n\trdfs:label \"NKČR-AUT-Kennung\"@de ;\n\tskos:prefLabel \"NKČR-AUT-Kennung\"@de ;\n\tschema:name \"NKČR-AUT-Kennung\"@de ;\n\trdfs:label \"NL CR AUT ID\"@en ;\n\tskos:prefLabel \"NL CR AUT ID\"@en ;\n\tschema:name \"NL CR AUT ID\"@en ;\n\tschema:description \"Identifikator in der Normdatenbank (AUT) der Nationalbibliothek der Tschechischen Republik (NK ČR)\"@de,\n\t\t\"identifier in the Czech National Authority Database of National Library of the Czech Republic (NL CR)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P691 ;\n\twikibase:claim p:P691 ;\n\twikibase:statementProperty ps:P691 ;\n\twikibase:statementValue psv:P691 ;\n\twikibase:qualifier pq:P691 ;\n\twikibase:qualifierValue pqv:P691 ;\n\twikibase:reference pr:P691 ;\n\twikibase:referenceValue prv:P691 ;\n\twikibase:novalue wdno:P691 ;\n\twikibase:directClaimNormalized wdtn:P691 ;\n\twikibase:statementValueNormalized psn:P691 ;\n\twikibase:qualifierValueNormalized pqn:P691 ;\n\twikibase:referenceValueNormalized prn:P691 .\n\np:P691 a owl:ObjectProperty .\n\npsv:P691 a owl:ObjectProperty .\n\npqv:P691 a owl:ObjectProperty .\n\nprv:P691 a owl:ObjectProperty .\n\nwdt:P691 a owl:DatatypeProperty .\n\nps:P691 a owl:DatatypeProperty .\n\npq:P691 a owl:DatatypeProperty .\n\npr:P691 a owl:DatatypeProperty .\n\npsn:P691 a owl:ObjectProperty .\n\npqn:P691 a owl:ObjectProperty .\n\nprn:P691 a owl:ObjectProperty .\n\nwdtn:P691 a owl:ObjectProperty .\n\nwdno:P691 a owl:Class ;\n\towl:complementOf _:eee17ba34d3dca4b3bf5b23f68ca71b1 .\n\n_:eee17ba34d3dca4b3bf5b23f68ca71b1 a owl:Restriction ;\n\towl:onProperty wdt:P691 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q112869398 a wikibase:Item ;\n\trdfs:label \"Flora Reipublicae Popularis Sinicae, volume 22\"@en ;\n\tskos:prefLabel \"Flora Reipublicae Popularis Sinicae, volume 22\"@en ;\n\tschema:name \"Flora Reipublicae Popularis Sinicae, volume 22\"@en .\n\nwd:P1343 a wikibase:Property ;\n\trdfs:label \"beschrieben in\"@de ;\n\tskos:prefLabel \"beschrieben in\"@de ;\n\tschema:name \"beschrieben in\"@de ;\n\trdfs:label \"described by source\"@en ;\n\tskos:prefLabel \"described by source\"@en ;\n\tschema:name \"described by source\"@en ;\n\tschema:description \"Werk, in dem das Objekt beschrieben wird\"@de,\n\t\t\"work where this item is described, in statistical contexts, a methodological note describing the data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1343 ;\n\twikibase:claim p:P1343 ;\n\twikibase:statementProperty ps:P1343 ;\n\twikibase:statementValue psv:P1343 ;\n\twikibase:qualifier pq:P1343 ;\n\twikibase:qualifierValue pqv:P1343 ;\n\twikibase:reference pr:P1343 ;\n\twikibase:referenceValue prv:P1343 ;\n\twikibase:novalue wdno:P1343 .\n\np:P1343 a owl:ObjectProperty .\n\npsv:P1343 a owl:ObjectProperty .\n\npqv:P1343 a owl:ObjectProperty .\n\nprv:P1343 a owl:ObjectProperty .\n\nwdt:P1343 a owl:ObjectProperty .\n\nps:P1343 a owl:ObjectProperty .\n\npq:P1343 a owl:ObjectProperty .\n\npr:P1343 a owl:ObjectProperty .\n\nwdno:P1343 a owl:Class ;\n\towl:complementOf _:9c5978c46703ed90be57b769a8622d59 .\n\n_:9c5978c46703ed90be57b769a8622d59 a owl:Restriction ;\n\towl:onProperty wdt:P1343 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q19133013 a wikibase:Item ;\n\trdfs:label \"Ботанический словарь\"@mul ;\n\tskos:prefLabel \"Ботанический словарь\"@mul ;\n\tschema:name \"Ботанический словарь\"@mul .\n\nwd:Q5862833 a wikibase:Item ;\n\trdfs:label \"Flora URSS\"@de ;\n\tskos:prefLabel \"Flora URSS\"@de ;\n\tschema:name \"Flora URSS\"@de ;\n\trdfs:label \"Flora URSS\"@en ;\n\tskos:prefLabel \"Flora URSS\"@en ;\n\tschema:name \"Flora URSS\"@en ;\n\tschema:description \"written work (flora)\"@en .\n\nwd:P8189 a wikibase:Property ;\n\trdfs:label \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tskos:prefLabel \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tschema:name \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\trdfs:label \"J9U ID\"@mul ;\n\tskos:prefLabel \"J9U ID\"@mul ;\n\tschema:name \"J9U ID\"@mul ;\n\trdfs:label \"National Library of Israel J9U ID\"@en ;\n\tskos:prefLabel \"National Library of Israel J9U ID\"@en ;\n\tschema:name \"National Library of Israel J9U ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags, der von der Israelischen Nationalbibliothek verwendet wird (neu)\"@de,\n\t\t\"identifier used by the National Library of Israel\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8189 ;\n\twikibase:claim p:P8189 ;\n\twikibase:statementProperty ps:P8189 ;\n\twikibase:statementValue psv:P8189 ;\n\twikibase:qualifier pq:P8189 ;\n\twikibase:qualifierValue pqv:P8189 ;\n\twikibase:reference pr:P8189 ;\n\twikibase:referenceValue prv:P8189 ;\n\twikibase:novalue wdno:P8189 ;\n\twikibase:directClaimNormalized wdtn:P8189 ;\n\twikibase:statementValueNormalized psn:P8189 ;\n\twikibase:qualifierValueNormalized pqn:P8189 ;\n\twikibase:referenceValueNormalized prn:P8189 .\n\np:P8189 a owl:ObjectProperty .\n\npsv:P8189 a owl:ObjectProperty .\n\npqv:P8189 a owl:ObjectProperty .\n\nprv:P8189 a owl:ObjectProperty .\n\nwdt:P8189 a owl:DatatypeProperty .\n\nps:P8189 a owl:DatatypeProperty .\n\npq:P8189 a owl:DatatypeProperty .\n\npr:P8189 a owl:DatatypeProperty .\n\npsn:P8189 a owl:ObjectProperty .\n\npqn:P8189 a owl:ObjectProperty .\n\nprn:P8189 a owl:ObjectProperty .\n\nwdtn:P8189 a owl:ObjectProperty .\n\nwdno:P8189 a owl:Class ;\n\towl:complementOf _:92bc7d972c1bed2e801eb42a65bd6c0a .\n\n_:92bc7d972c1bed2e801eb42a65bd6c0a a owl:Restriction ;\n\towl:onProperty wdt:P8189 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q148 a wikibase:Item ;\n\trdfs:label \"Volksrepublik China\"@de ;\n\tskos:prefLabel \"Volksrepublik China\"@de ;\n\tschema:name \"Volksrepublik China\"@de ;\n\trdfs:label \"People's Republic of China\"@en ;\n\tskos:prefLabel \"People's Republic of China\"@en ;\n\tschema:name \"People's Republic of China\"@en ;\n\tschema:description \"Staat in Ostasien\"@de,\n\t\t\"country in East Asia\"@en .\n\nwd:P9714 a wikibase:Property ;\n\trdfs:label \"Verbreitungsgebiet\"@de ;\n\tskos:prefLabel \"Verbreitungsgebiet\"@de ;\n\tschema:name \"Verbreitungsgebiet\"@de ;\n\trdfs:label \"taxon range\"@en ;\n\tskos:prefLabel \"taxon range\"@en ;\n\tschema:name \"taxon range\"@en ;\n\tschema:description \"Gebiet des aktuellen Auftretens einer Art oder einer höheren systematischen Gruppe\"@de,\n\t\t\"geographic area(s) where a taxon is found\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9714 ;\n\twikibase:claim p:P9714 ;\n\twikibase:statementProperty ps:P9714 ;\n\twikibase:statementValue psv:P9714 ;\n\twikibase:qualifier pq:P9714 ;\n\twikibase:qualifierValue pqv:P9714 ;\n\twikibase:reference pr:P9714 ;\n\twikibase:referenceValue prv:P9714 ;\n\twikibase:novalue wdno:P9714 .\n\np:P9714 a owl:ObjectProperty .\n\npsv:P9714 a owl:ObjectProperty .\n\npqv:P9714 a owl:ObjectProperty .\n\nprv:P9714 a owl:ObjectProperty .\n\nwdt:P9714 a owl:ObjectProperty .\n\nps:P9714 a owl:ObjectProperty .\n\npq:P9714 a owl:ObjectProperty .\n\npr:P9714 a owl:ObjectProperty .\n\nwdno:P9714 a owl:Class ;\n\towl:complementOf _:380f91ba7aff5a553e2dd1edebb93d29 .\n\n_:380f91ba7aff5a553e2dd1edebb93d29 a owl:Restriction ;\n\towl:onProperty wdt:P9714 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10791 a wikibase:Property ;\n\trdfs:label \"PlantFiles taxon ID\"@en ;\n\tskos:prefLabel \"PlantFiles taxon ID\"@en ;\n\tschema:name \"PlantFiles taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the PlantFiles database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10791 ;\n\twikibase:claim p:P10791 ;\n\twikibase:statementProperty ps:P10791 ;\n\twikibase:statementValue psv:P10791 ;\n\twikibase:qualifier pq:P10791 ;\n\twikibase:qualifierValue pqv:P10791 ;\n\twikibase:reference pr:P10791 ;\n\twikibase:referenceValue prv:P10791 ;\n\twikibase:novalue wdno:P10791 ;\n\twikibase:directClaimNormalized wdtn:P10791 ;\n\twikibase:statementValueNormalized psn:P10791 ;\n\twikibase:qualifierValueNormalized pqn:P10791 ;\n\twikibase:referenceValueNormalized prn:P10791 .\n\np:P10791 a owl:ObjectProperty .\n\npsv:P10791 a owl:ObjectProperty .\n\npqv:P10791 a owl:ObjectProperty .\n\nprv:P10791 a owl:ObjectProperty .\n\nwdt:P10791 a owl:DatatypeProperty .\n\nps:P10791 a owl:DatatypeProperty .\n\npq:P10791 a owl:DatatypeProperty .\n\npr:P10791 a owl:DatatypeProperty .\n\npsn:P10791 a owl:ObjectProperty .\n\npqn:P10791 a owl:ObjectProperty .\n\nprn:P10791 a owl:ObjectProperty .\n\nwdtn:P10791 a owl:ObjectProperty .\n\nwdno:P10791 a owl:Class ;\n\towl:complementOf _:10a49178ff1bbd416fc595130578d3df .\n\n_:10a49178ff1bbd416fc595130578d3df a owl:Restriction ;\n\towl:onProperty wdt:P10791 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3102 a wikibase:Property ;\n\trdfs:label \"Plantarium-ID\"@de ;\n\tskos:prefLabel \"Plantarium-ID\"@de ;\n\tschema:name \"Plantarium-ID\"@de ;\n\trdfs:label \"Plantarium ID\"@en ;\n\tskos:prefLabel \"Plantarium ID\"@en ;\n\tschema:name \"Plantarium ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Plantarium database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3102 ;\n\twikibase:claim p:P3102 ;\n\twikibase:statementProperty ps:P3102 ;\n\twikibase:statementValue psv:P3102 ;\n\twikibase:qualifier pq:P3102 ;\n\twikibase:qualifierValue pqv:P3102 ;\n\twikibase:reference pr:P3102 ;\n\twikibase:referenceValue prv:P3102 ;\n\twikibase:novalue wdno:P3102 ;\n\twikibase:directClaimNormalized wdtn:P3102 ;\n\twikibase:statementValueNormalized psn:P3102 ;\n\twikibase:qualifierValueNormalized pqn:P3102 ;\n\twikibase:referenceValueNormalized prn:P3102 .\n\np:P3102 a owl:ObjectProperty .\n\npsv:P3102 a owl:ObjectProperty .\n\npqv:P3102 a owl:ObjectProperty .\n\nprv:P3102 a owl:ObjectProperty .\n\nwdt:P3102 a owl:DatatypeProperty .\n\nps:P3102 a owl:DatatypeProperty .\n\npq:P3102 a owl:DatatypeProperty .\n\npr:P3102 a owl:DatatypeProperty .\n\npsn:P3102 a owl:ObjectProperty .\n\npqn:P3102 a owl:ObjectProperty .\n\nprn:P3102 a owl:ObjectProperty .\n\nwdtn:P3102 a owl:ObjectProperty .\n\nwdno:P3102 a owl:Class ;\n\towl:complementOf _:f9b47bd67e5b76bf31387b0d4eac646f .\n\n_:f9b47bd67e5b76bf31387b0d4eac646f a owl:Restriction ;\n\towl:onProperty wdt:P3102 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q56241615 a wikibase:Item ;\n\trdfs:label \"WikiProject Invasion Biology\"@en ;\n\tskos:prefLabel \"WikiProject Invasion Biology\"@en ;\n\tschema:name \"WikiProject Invasion Biology\"@en ;\n\tschema:description \"Wikiprojekt\"@de,\n\t\t\"Wikimedia collaborative project around invasive species\"@en .\n\nwd:P6104 a wikibase:Property ;\n\trdfs:label \"betreut von WikiProjekt\"@de ;\n\tskos:prefLabel \"betreut von WikiProjekt\"@de ;\n\tschema:name \"betreut von WikiProjekt\"@de ;\n\trdfs:label \"maintained by WikiProject\"@en ;\n\tskos:prefLabel \"maintained by WikiProject\"@en ;\n\tschema:name \"maintained by WikiProject\"@en ;\n\tschema:description \"WikiProjekt, welches diese Eigenschaft, dieses Objekt, oder dieses Lexem betreut. Für WikiProjekte außerhalb von Wikidata ergänze den Geltungsbereich mit einem Qualifikator \\\" ist Teil von\\\" (P361).\"@de,\n\t\t\"WikiProject that maintains this property, item, or linked pages. If the WikiProject is hosted outside of Wikidata, identify the hosting project using the qualifier \\\"part of\\\" (P361)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6104 ;\n\twikibase:claim p:P6104 ;\n\twikibase:statementProperty ps:P6104 ;\n\twikibase:statementValue psv:P6104 ;\n\twikibase:qualifier pq:P6104 ;\n\twikibase:qualifierValue pqv:P6104 ;\n\twikibase:reference pr:P6104 ;\n\twikibase:referenceValue prv:P6104 ;\n\twikibase:novalue wdno:P6104 .\n\np:P6104 a owl:ObjectProperty .\n\npsv:P6104 a owl:ObjectProperty .\n\npqv:P6104 a owl:ObjectProperty .\n\nprv:P6104 a owl:ObjectProperty .\n\nwdt:P6104 a owl:ObjectProperty .\n\nps:P6104 a owl:ObjectProperty .\n\npq:P6104 a owl:ObjectProperty .\n\npr:P6104 a owl:ObjectProperty .\n\nwdno:P6104 a owl:Class ;\n\towl:complementOf _:8ed522f108b0fd974fa8303edd0ec44c .\n\n_:8ed522f108b0fd974fa8303edd0ec44c a owl:Restriction ;\n\towl:onProperty wdt:P6104 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11067 a wikibase:Property ;\n\trdfs:label \"UConn Plant Database ID\"@en ;\n\tskos:prefLabel \"UConn Plant Database ID\"@en ;\n\tschema:name \"UConn Plant Database ID\"@en ;\n\tschema:description \"identifier for a woody landscape plant taxon in the UConn Plant Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11067 ;\n\twikibase:claim p:P11067 ;\n\twikibase:statementProperty ps:P11067 ;\n\twikibase:statementValue psv:P11067 ;\n\twikibase:qualifier pq:P11067 ;\n\twikibase:qualifierValue pqv:P11067 ;\n\twikibase:reference pr:P11067 ;\n\twikibase:referenceValue prv:P11067 ;\n\twikibase:novalue wdno:P11067 ;\n\twikibase:directClaimNormalized wdtn:P11067 ;\n\twikibase:statementValueNormalized psn:P11067 ;\n\twikibase:qualifierValueNormalized pqn:P11067 ;\n\twikibase:referenceValueNormalized prn:P11067 .\n\np:P11067 a owl:ObjectProperty .\n\npsv:P11067 a owl:ObjectProperty .\n\npqv:P11067 a owl:ObjectProperty .\n\nprv:P11067 a owl:ObjectProperty .\n\nwdt:P11067 a owl:DatatypeProperty .\n\nps:P11067 a owl:DatatypeProperty .\n\npq:P11067 a owl:DatatypeProperty .\n\npr:P11067 a owl:DatatypeProperty .\n\npsn:P11067 a owl:ObjectProperty .\n\npqn:P11067 a owl:ObjectProperty .\n\nprn:P11067 a owl:ObjectProperty .\n\nwdtn:P11067 a owl:ObjectProperty .\n\nwdno:P11067 a owl:Class ;\n\towl:complementOf _:4786f11d79f751559432f75158445022 .\n\n_:4786f11d79f751559432f75158445022 a owl:Restriction ;\n\towl:onProperty wdt:P11067 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10701 a wikibase:Property ;\n\trdfs:label \"Reflora ID\"@en ;\n\tskos:prefLabel \"Reflora ID\"@en ;\n\tschema:name \"Reflora ID\"@en ;\n\tschema:description \"identifier for a taxon on the Reflora Flora e Funga do Brasil website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10701 ;\n\twikibase:claim p:P10701 ;\n\twikibase:statementProperty ps:P10701 ;\n\twikibase:statementValue psv:P10701 ;\n\twikibase:qualifier pq:P10701 ;\n\twikibase:qualifierValue pqv:P10701 ;\n\twikibase:reference pr:P10701 ;\n\twikibase:referenceValue prv:P10701 ;\n\twikibase:novalue wdno:P10701 ;\n\twikibase:directClaimNormalized wdtn:P10701 ;\n\twikibase:statementValueNormalized psn:P10701 ;\n\twikibase:qualifierValueNormalized pqn:P10701 ;\n\twikibase:referenceValueNormalized prn:P10701 .\n\np:P10701 a owl:ObjectProperty .\n\npsv:P10701 a owl:ObjectProperty .\n\npqv:P10701 a owl:ObjectProperty .\n\nprv:P10701 a owl:ObjectProperty .\n\nwdt:P10701 a owl:DatatypeProperty .\n\nps:P10701 a owl:DatatypeProperty .\n\npq:P10701 a owl:DatatypeProperty .\n\npr:P10701 a owl:DatatypeProperty .\n\npsn:P10701 a owl:ObjectProperty .\n\npqn:P10701 a owl:ObjectProperty .\n\nprn:P10701 a owl:ObjectProperty .\n\nwdtn:P10701 a owl:ObjectProperty .\n\nwdno:P10701 a owl:Class ;\n\towl:complementOf _:dbfe4a31bd767a32457edef0ca19440f .\n\n_:dbfe4a31bd767a32457edef0ca19440f a owl:Restriction ;\n\towl:onProperty wdt:P10701 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q11009 a wikibase:Item ;\n\trdfs:label \"Nussfrucht\"@de ;\n\tskos:prefLabel \"Nussfrucht\"@de ;\n\tschema:name \"Nussfrucht\"@de ;\n\trdfs:label \"nut\"@en ;\n\tskos:prefLabel \"nut\"@en ;\n\tschema:name \"nut\"@en ;\n\tschema:description \"Schließfrucht, bei der alle drei Schichten der Fruchtwand verholzen\"@de,\n\t\t\"in botany, type of dry indehiscent fruit\"@en .\n\nwd:P4000 a wikibase:Property ;\n\trdfs:label \"Fruchttyp\"@de ;\n\tskos:prefLabel \"Fruchttyp\"@de ;\n\tschema:name \"Fruchttyp\"@de ;\n\trdfs:label \"has fruit type\"@en ;\n\tskos:prefLabel \"has fruit type\"@en ;\n\tschema:name \"has fruit type\"@en ;\n\tschema:description \"morphology of the fruit of this taxon, as defined in botany\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4000 ;\n\twikibase:claim p:P4000 ;\n\twikibase:statementProperty ps:P4000 ;\n\twikibase:statementValue psv:P4000 ;\n\twikibase:qualifier pq:P4000 ;\n\twikibase:qualifierValue pqv:P4000 ;\n\twikibase:reference pr:P4000 ;\n\twikibase:referenceValue prv:P4000 ;\n\twikibase:novalue wdno:P4000 .\n\np:P4000 a owl:ObjectProperty .\n\npsv:P4000 a owl:ObjectProperty .\n\npqv:P4000 a owl:ObjectProperty .\n\nprv:P4000 a owl:ObjectProperty .\n\nwdt:P4000 a owl:ObjectProperty .\n\nps:P4000 a owl:ObjectProperty .\n\npq:P4000 a owl:ObjectProperty .\n\npr:P4000 a owl:ObjectProperty .\n\nwdno:P4000 a owl:Class ;\n\towl:complementOf _:68811254c8a5b1c08bb4e074836b7a2c .\n\n_:68811254c8a5b1c08bb4e074836b7a2c a owl:Restriction ;\n\towl:onProperty wdt:P4000 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10711 a wikibase:Property ;\n\trdfs:label \"Invasive.org species ID\"@en ;\n\tskos:prefLabel \"Invasive.org species ID\"@en ;\n\tschema:name \"Invasive.org species ID\"@en ;\n\tschema:description \"identifier for a species on Invasive.org\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10711 ;\n\twikibase:claim p:P10711 ;\n\twikibase:statementProperty ps:P10711 ;\n\twikibase:statementValue psv:P10711 ;\n\twikibase:qualifier pq:P10711 ;\n\twikibase:qualifierValue pqv:P10711 ;\n\twikibase:reference pr:P10711 ;\n\twikibase:referenceValue prv:P10711 ;\n\twikibase:novalue wdno:P10711 ;\n\twikibase:directClaimNormalized wdtn:P10711 ;\n\twikibase:statementValueNormalized psn:P10711 ;\n\twikibase:qualifierValueNormalized pqn:P10711 ;\n\twikibase:referenceValueNormalized prn:P10711 .\n\np:P10711 a owl:ObjectProperty .\n\npsv:P10711 a owl:ObjectProperty .\n\npqv:P10711 a owl:ObjectProperty .\n\nprv:P10711 a owl:ObjectProperty .\n\nwdt:P10711 a owl:DatatypeProperty .\n\nps:P10711 a owl:DatatypeProperty .\n\npq:P10711 a owl:DatatypeProperty .\n\npr:P10711 a owl:DatatypeProperty .\n\npsn:P10711 a owl:ObjectProperty .\n\npqn:P10711 a owl:ObjectProperty .\n\nprn:P10711 a owl:ObjectProperty .\n\nwdtn:P10711 a owl:ObjectProperty .\n\nwdno:P10711 a owl:Class ;\n\towl:complementOf _:039a02f8db6756d359bdd91bf8f8b253 .\n\n_:039a02f8db6756d359bdd91bf8f8b253 a owl:Restriction ;\n\towl:onProperty wdt:P10711 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9495 a wikibase:Property ;\n\trdfs:label \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\tskos:prefLabel \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\tschema:name \"National-Historical-Museums-of-Sweden-ID\"@de ;\n\trdfs:label \"National Historical Museums of Sweden ID\"@en ;\n\tskos:prefLabel \"National Historical Museums of Sweden ID\"@en ;\n\tschema:name \"National Historical Museums of Sweden ID\"@en ;\n\tschema:description \"authority identification for an entry in the collections of the National Historical Museums of Sweden\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9495 ;\n\twikibase:claim p:P9495 ;\n\twikibase:statementProperty ps:P9495 ;\n\twikibase:statementValue psv:P9495 ;\n\twikibase:qualifier pq:P9495 ;\n\twikibase:qualifierValue pqv:P9495 ;\n\twikibase:reference pr:P9495 ;\n\twikibase:referenceValue prv:P9495 ;\n\twikibase:novalue wdno:P9495 ;\n\twikibase:directClaimNormalized wdtn:P9495 ;\n\twikibase:statementValueNormalized psn:P9495 ;\n\twikibase:qualifierValueNormalized pqn:P9495 ;\n\twikibase:referenceValueNormalized prn:P9495 .\n\np:P9495 a owl:ObjectProperty .\n\npsv:P9495 a owl:ObjectProperty .\n\npqv:P9495 a owl:ObjectProperty .\n\nprv:P9495 a owl:ObjectProperty .\n\nwdt:P9495 a owl:DatatypeProperty .\n\nps:P9495 a owl:DatatypeProperty .\n\npq:P9495 a owl:DatatypeProperty .\n\npr:P9495 a owl:DatatypeProperty .\n\npsn:P9495 a owl:ObjectProperty .\n\npqn:P9495 a owl:ObjectProperty .\n\nprn:P9495 a owl:ObjectProperty .\n\nwdtn:P9495 a owl:ObjectProperty .\n\nwdno:P9495 a owl:Class ;\n\towl:complementOf _:b393b57caf3c635b71794ace5be1f20b .\n\n_:b393b57caf3c635b71794ace5be1f20b a owl:Restriction ;\n\towl:onProperty wdt:P9495 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11514 a wikibase:Property ;\n\trdfs:label \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tskos:prefLabel \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tschema:name \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\trdfs:label \"Great Russian Encyclopedia portal ID\"@en ;\n\tskos:prefLabel \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:name \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:description \"Identifikator eines Portals auf der offiziellen Website der Großen Russischen Enzyklopädie\"@de,\n\t\t\"identifier of an entry on the web portal based on the Great Russian Encyclopedia (for the older version of encyclopedia use P2924)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11514 ;\n\twikibase:claim p:P11514 ;\n\twikibase:statementProperty ps:P11514 ;\n\twikibase:statementValue psv:P11514 ;\n\twikibase:qualifier pq:P11514 ;\n\twikibase:qualifierValue pqv:P11514 ;\n\twikibase:reference pr:P11514 ;\n\twikibase:referenceValue prv:P11514 ;\n\twikibase:novalue wdno:P11514 ;\n\twikibase:directClaimNormalized wdtn:P11514 ;\n\twikibase:statementValueNormalized psn:P11514 ;\n\twikibase:qualifierValueNormalized pqn:P11514 ;\n\twikibase:referenceValueNormalized prn:P11514 .\n\np:P11514 a owl:ObjectProperty .\n\npsv:P11514 a owl:ObjectProperty .\n\npqv:P11514 a owl:ObjectProperty .\n\nprv:P11514 a owl:ObjectProperty .\n\nwdt:P11514 a owl:DatatypeProperty .\n\nps:P11514 a owl:DatatypeProperty .\n\npq:P11514 a owl:DatatypeProperty .\n\npr:P11514 a owl:DatatypeProperty .\n\npsn:P11514 a owl:ObjectProperty .\n\npqn:P11514 a owl:ObjectProperty .\n\nprn:P11514 a owl:ObjectProperty .\n\nwdtn:P11514 a owl:ObjectProperty .\n\nwdno:P11514 a owl:Class ;\n\towl:complementOf _:5d36652ac32d2710f4fb28e817a22714 .\n\n_:5d36652ac32d2710f4fb28e817a22714 a owl:Restriction ;\n\towl:onProperty wdt:P11514 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9503 a wikibase:Property ;\n\trdfs:label \"MyBIS species ID\"@en ;\n\tskos:prefLabel \"MyBIS species ID\"@en ;\n\tschema:name \"MyBIS species ID\"@en ;\n\tschema:description \"identifier for a species in the Malaysia Biodiversity Information System\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9503 ;\n\twikibase:claim p:P9503 ;\n\twikibase:statementProperty ps:P9503 ;\n\twikibase:statementValue psv:P9503 ;\n\twikibase:qualifier pq:P9503 ;\n\twikibase:qualifierValue pqv:P9503 ;\n\twikibase:reference pr:P9503 ;\n\twikibase:referenceValue prv:P9503 ;\n\twikibase:novalue wdno:P9503 ;\n\twikibase:directClaimNormalized wdtn:P9503 ;\n\twikibase:statementValueNormalized psn:P9503 ;\n\twikibase:qualifierValueNormalized pqn:P9503 ;\n\twikibase:referenceValueNormalized prn:P9503 .\n\np:P9503 a owl:ObjectProperty .\n\npsv:P9503 a owl:ObjectProperty .\n\npqv:P9503 a owl:ObjectProperty .\n\nprv:P9503 a owl:ObjectProperty .\n\nwdt:P9503 a owl:DatatypeProperty .\n\nps:P9503 a owl:DatatypeProperty .\n\npq:P9503 a owl:DatatypeProperty .\n\npr:P9503 a owl:DatatypeProperty .\n\npsn:P9503 a owl:ObjectProperty .\n\npqn:P9503 a owl:ObjectProperty .\n\nprn:P9503 a owl:ObjectProperty .\n\nwdtn:P9503 a owl:ObjectProperty .\n\nwdno:P9503 a owl:Class ;\n\towl:complementOf _:56f00452e5530ef78b1cc211ceeb6c7e .\n\n_:56f00452e5530ef78b1cc211ceeb6c7e a owl:Restriction ;\n\towl:onProperty wdt:P9503 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11824 a wikibase:Property ;\n\trdfs:label \"KPU Plant Database ID\"@en ;\n\tskos:prefLabel \"KPU Plant Database ID\"@en ;\n\tschema:name \"KPU Plant Database ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the KPU Plant Database of the Kwantlen Polytechnic University School of Horticulture\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11824 ;\n\twikibase:claim p:P11824 ;\n\twikibase:statementProperty ps:P11824 ;\n\twikibase:statementValue psv:P11824 ;\n\twikibase:qualifier pq:P11824 ;\n\twikibase:qualifierValue pqv:P11824 ;\n\twikibase:reference pr:P11824 ;\n\twikibase:referenceValue prv:P11824 ;\n\twikibase:novalue wdno:P11824 ;\n\twikibase:directClaimNormalized wdtn:P11824 ;\n\twikibase:statementValueNormalized psn:P11824 ;\n\twikibase:qualifierValueNormalized pqn:P11824 ;\n\twikibase:referenceValueNormalized prn:P11824 .\n\np:P11824 a owl:ObjectProperty .\n\npsv:P11824 a owl:ObjectProperty .\n\npqv:P11824 a owl:ObjectProperty .\n\nprv:P11824 a owl:ObjectProperty .\n\nwdt:P11824 a owl:DatatypeProperty .\n\nps:P11824 a owl:DatatypeProperty .\n\npq:P11824 a owl:DatatypeProperty .\n\npr:P11824 a owl:DatatypeProperty .\n\npsn:P11824 a owl:ObjectProperty .\n\npqn:P11824 a owl:ObjectProperty .\n\nprn:P11824 a owl:ObjectProperty .\n\nwdtn:P11824 a owl:ObjectProperty .\n\nwdno:P11824 a owl:Class ;\n\towl:complementOf _:a80fb22c15f40f8cf5bcd9e45efd5c6a .\n\n_:a80fb22c15f40f8cf5bcd9e45efd5c6a a owl:Restriction ;\n\towl:onProperty wdt:P11824 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2892 a wikibase:Property ;\n\trdfs:label \"UMLS CUI\"@de ;\n\tskos:prefLabel \"UMLS CUI\"@de ;\n\tschema:name \"UMLS CUI\"@de ;\n\trdfs:label \"UMLS CUI\"@en ;\n\tskos:prefLabel \"UMLS CUI\"@en ;\n\tschema:name \"UMLS CUI\"@en ;\n\tschema:description \"NLM Unified Medical Language System (UMLS) controlled biomedical vocabulary unique identifier\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2892 ;\n\twikibase:claim p:P2892 ;\n\twikibase:statementProperty ps:P2892 ;\n\twikibase:statementValue psv:P2892 ;\n\twikibase:qualifier pq:P2892 ;\n\twikibase:qualifierValue pqv:P2892 ;\n\twikibase:reference pr:P2892 ;\n\twikibase:referenceValue prv:P2892 ;\n\twikibase:novalue wdno:P2892 ;\n\twikibase:directClaimNormalized wdtn:P2892 ;\n\twikibase:statementValueNormalized psn:P2892 ;\n\twikibase:qualifierValueNormalized pqn:P2892 ;\n\twikibase:referenceValueNormalized prn:P2892 .\n\np:P2892 a owl:ObjectProperty .\n\npsv:P2892 a owl:ObjectProperty .\n\npqv:P2892 a owl:ObjectProperty .\n\nprv:P2892 a owl:ObjectProperty .\n\nwdt:P2892 a owl:DatatypeProperty .\n\nps:P2892 a owl:DatatypeProperty .\n\npq:P2892 a owl:DatatypeProperty .\n\npr:P2892 a owl:DatatypeProperty .\n\npsn:P2892 a owl:ObjectProperty .\n\npqn:P2892 a owl:ObjectProperty .\n\nprn:P2892 a owl:ObjectProperty .\n\nwdtn:P2892 a owl:ObjectProperty .\n\nwdno:P2892 a owl:Class ;\n\towl:complementOf _:7f1dcb74568bce8b9b5e3a764e58321b .\n\n_:7f1dcb74568bce8b9b5e3a764e58321b a owl:Restriction ;\n\towl:onProperty wdt:P2892 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10366 a wikibase:Property ;\n\trdfs:label \"Gardens Navigator ID\"@en ;\n\tskos:prefLabel \"Gardens Navigator ID\"@en ;\n\tschema:name \"Gardens Navigator ID\"@en ;\n\tschema:description \"identifier for a plant taxon on Gardens Navigator\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10366 ;\n\twikibase:claim p:P10366 ;\n\twikibase:statementProperty ps:P10366 ;\n\twikibase:statementValue psv:P10366 ;\n\twikibase:qualifier pq:P10366 ;\n\twikibase:qualifierValue pqv:P10366 ;\n\twikibase:reference pr:P10366 ;\n\twikibase:referenceValue prv:P10366 ;\n\twikibase:novalue wdno:P10366 ;\n\twikibase:directClaimNormalized wdtn:P10366 ;\n\twikibase:statementValueNormalized psn:P10366 ;\n\twikibase:qualifierValueNormalized pqn:P10366 ;\n\twikibase:referenceValueNormalized prn:P10366 .\n\np:P10366 a owl:ObjectProperty .\n\npsv:P10366 a owl:ObjectProperty .\n\npqv:P10366 a owl:ObjectProperty .\n\nprv:P10366 a owl:ObjectProperty .\n\nwdt:P10366 a owl:DatatypeProperty .\n\nps:P10366 a owl:DatatypeProperty .\n\npq:P10366 a owl:DatatypeProperty .\n\npr:P10366 a owl:DatatypeProperty .\n\npsn:P10366 a owl:ObjectProperty .\n\npqn:P10366 a owl:ObjectProperty .\n\nprn:P10366 a owl:ObjectProperty .\n\nwdtn:P10366 a owl:ObjectProperty .\n\nwdno:P10366 a owl:Class ;\n\towl:complementOf _:0a327d65911100bcfc4aa553a63160f4 .\n\n_:0a327d65911100bcfc4aa553a63160f4 a owl:Restriction ;\n\towl:onProperty wdt:P10366 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1813 a wikibase:Property ;\n\trdfs:label \"Kurzname\"@de ;\n\tskos:prefLabel \"Kurzname\"@de ;\n\tschema:name \"Kurzname\"@de ;\n\trdfs:label \"short name\"@en ;\n\tskos:prefLabel \"short name\"@en ;\n\tschema:name \"short name\"@en ;\n\tschema:description \"kurzer Name eines Ortes, einer Organisation, Person etc.\"@de,\n\t\t\"short name of a place, organisation, person, journal, Wikidata property, etc. Used by some Wikipedia templates\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1813 ;\n\twikibase:claim p:P1813 ;\n\twikibase:statementProperty ps:P1813 ;\n\twikibase:statementValue psv:P1813 ;\n\twikibase:qualifier pq:P1813 ;\n\twikibase:qualifierValue pqv:P1813 ;\n\twikibase:reference pr:P1813 ;\n\twikibase:referenceValue prv:P1813 ;\n\twikibase:novalue wdno:P1813 .\n\np:P1813 a owl:ObjectProperty .\n\npsv:P1813 a owl:ObjectProperty .\n\npqv:P1813 a owl:ObjectProperty .\n\nprv:P1813 a owl:ObjectProperty .\n\nwdt:P1813 a owl:DatatypeProperty .\n\nps:P1813 a owl:DatatypeProperty .\n\npq:P1813 a owl:DatatypeProperty .\n\npr:P1813 a owl:DatatypeProperty .\n\nwdno:P1813 a owl:Class ;\n\towl:complementOf _:4a7b6a517307eeaf8a892e11937a0f7f .\n\n_:4a7b6a517307eeaf8a892e11937a0f7f a owl:Restriction ;\n\towl:onProperty wdt:P1813 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7537 a wikibase:Property ;\n\trdfs:label \"India Biodiversity Portal species ID\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal species ID\"@en ;\n\tschema:name \"India Biodiversity Portal species ID\"@en ;\n\tschema:description \"identifier for species found in India maintained by the 'India Biodiversity Portal' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7537 ;\n\twikibase:claim p:P7537 ;\n\twikibase:statementProperty ps:P7537 ;\n\twikibase:statementValue psv:P7537 ;\n\twikibase:qualifier pq:P7537 ;\n\twikibase:qualifierValue pqv:P7537 ;\n\twikibase:reference pr:P7537 ;\n\twikibase:referenceValue prv:P7537 ;\n\twikibase:novalue wdno:P7537 ;\n\twikibase:directClaimNormalized wdtn:P7537 ;\n\twikibase:statementValueNormalized psn:P7537 ;\n\twikibase:qualifierValueNormalized pqn:P7537 ;\n\twikibase:referenceValueNormalized prn:P7537 .\n\np:P7537 a owl:ObjectProperty .\n\npsv:P7537 a owl:ObjectProperty .\n\npqv:P7537 a owl:ObjectProperty .\n\nprv:P7537 a owl:ObjectProperty .\n\nwdt:P7537 a owl:DatatypeProperty .\n\nps:P7537 a owl:DatatypeProperty .\n\npq:P7537 a owl:DatatypeProperty .\n\npr:P7537 a owl:DatatypeProperty .\n\npsn:P7537 a owl:ObjectProperty .\n\npqn:P7537 a owl:ObjectProperty .\n\nprn:P7537 a owl:ObjectProperty .\n\nwdtn:P7537 a owl:ObjectProperty .\n\nwdno:P7537 a owl:Class ;\n\towl:complementOf _:45bfeffd386632be7dfa03e971418aee .\n\n_:45bfeffd386632be7dfa03e971418aee a owl:Restriction ;\n\towl:onProperty wdt:P7537 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7587 a wikibase:Property ;\n\trdfs:label \"eFloraSA-ID\"@de ;\n\tskos:prefLabel \"eFloraSA-ID\"@de ;\n\tschema:name \"eFloraSA-ID\"@de ;\n\trdfs:label \"eFloraSA ID\"@en ;\n\tskos:prefLabel \"eFloraSA ID\"@en ;\n\tschema:name \"eFloraSA ID\"@en ;\n\tschema:description \"Electronic Flora of South Australia: Factsheet ID\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7587 ;\n\twikibase:claim p:P7587 ;\n\twikibase:statementProperty ps:P7587 ;\n\twikibase:statementValue psv:P7587 ;\n\twikibase:qualifier pq:P7587 ;\n\twikibase:qualifierValue pqv:P7587 ;\n\twikibase:reference pr:P7587 ;\n\twikibase:referenceValue prv:P7587 ;\n\twikibase:novalue wdno:P7587 ;\n\twikibase:directClaimNormalized wdtn:P7587 ;\n\twikibase:statementValueNormalized psn:P7587 ;\n\twikibase:qualifierValueNormalized pqn:P7587 ;\n\twikibase:referenceValueNormalized prn:P7587 .\n\np:P7587 a owl:ObjectProperty .\n\npsv:P7587 a owl:ObjectProperty .\n\npqv:P7587 a owl:ObjectProperty .\n\nprv:P7587 a owl:ObjectProperty .\n\nwdt:P7587 a owl:DatatypeProperty .\n\nps:P7587 a owl:DatatypeProperty .\n\npq:P7587 a owl:DatatypeProperty .\n\npr:P7587 a owl:DatatypeProperty .\n\npsn:P7587 a owl:ObjectProperty .\n\npqn:P7587 a owl:ObjectProperty .\n\nprn:P7587 a owl:ObjectProperty .\n\nwdtn:P7587 a owl:ObjectProperty .\n\nwdno:P7587 a owl:Class ;\n\towl:complementOf _:d33b174d2739b1f99e60ac834b832726 .\n\n_:d33b174d2739b1f99e60ac834b832726 a owl:Restriction ;\n\towl:onProperty wdt:P7587 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10333 a wikibase:Property ;\n\trdfs:label \"New York Flora Atlas ID\"@en ;\n\tskos:prefLabel \"New York Flora Atlas ID\"@en ;\n\tschema:name \"New York Flora Atlas ID\"@en ;\n\tschema:description \"identifier of a taxon in the New York Flora Atlas\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10333 ;\n\twikibase:claim p:P10333 ;\n\twikibase:statementProperty ps:P10333 ;\n\twikibase:statementValue psv:P10333 ;\n\twikibase:qualifier pq:P10333 ;\n\twikibase:qualifierValue pqv:P10333 ;\n\twikibase:reference pr:P10333 ;\n\twikibase:referenceValue prv:P10333 ;\n\twikibase:novalue wdno:P10333 ;\n\twikibase:directClaimNormalized wdtn:P10333 ;\n\twikibase:statementValueNormalized psn:P10333 ;\n\twikibase:qualifierValueNormalized pqn:P10333 ;\n\twikibase:referenceValueNormalized prn:P10333 .\n\np:P10333 a owl:ObjectProperty .\n\npsv:P10333 a owl:ObjectProperty .\n\npqv:P10333 a owl:ObjectProperty .\n\nprv:P10333 a owl:ObjectProperty .\n\nwdt:P10333 a owl:DatatypeProperty .\n\nps:P10333 a owl:DatatypeProperty .\n\npq:P10333 a owl:DatatypeProperty .\n\npr:P10333 a owl:DatatypeProperty .\n\npsn:P10333 a owl:ObjectProperty .\n\npqn:P10333 a owl:ObjectProperty .\n\nprn:P10333 a owl:ObjectProperty .\n\nwdtn:P10333 a owl:ObjectProperty .\n\nwdno:P10333 a owl:Class ;\n\towl:complementOf _:977e4838728f677df23a8fe2cdfda12c .\n\n_:977e4838728f677df23a8fe2cdfda12c a owl:Restriction ;\n\towl:onProperty wdt:P10333 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11078 a wikibase:Property ;\n\trdfs:label \"Naturbasen species ID\"@en ;\n\tskos:prefLabel \"Naturbasen species ID\"@en ;\n\tschema:name \"Naturbasen species ID\"@en ;\n\tschema:description \"identifier for a species at Naturbasen\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11078 ;\n\twikibase:claim p:P11078 ;\n\twikibase:statementProperty ps:P11078 ;\n\twikibase:statementValue psv:P11078 ;\n\twikibase:qualifier pq:P11078 ;\n\twikibase:qualifierValue pqv:P11078 ;\n\twikibase:reference pr:P11078 ;\n\twikibase:referenceValue prv:P11078 ;\n\twikibase:novalue wdno:P11078 ;\n\twikibase:directClaimNormalized wdtn:P11078 ;\n\twikibase:statementValueNormalized psn:P11078 ;\n\twikibase:qualifierValueNormalized pqn:P11078 ;\n\twikibase:referenceValueNormalized prn:P11078 .\n\np:P11078 a owl:ObjectProperty .\n\npsv:P11078 a owl:ObjectProperty .\n\npqv:P11078 a owl:ObjectProperty .\n\nprv:P11078 a owl:ObjectProperty .\n\nwdt:P11078 a owl:DatatypeProperty .\n\nps:P11078 a owl:DatatypeProperty .\n\npq:P11078 a owl:DatatypeProperty .\n\npr:P11078 a owl:DatatypeProperty .\n\npsn:P11078 a owl:ObjectProperty .\n\npqn:P11078 a owl:ObjectProperty .\n\nprn:P11078 a owl:ObjectProperty .\n\nwdtn:P11078 a owl:ObjectProperty .\n\nwdno:P11078 a owl:Class ;\n\towl:complementOf _:e58a71e648b560b769dd209adadbd823 .\n\n_:e58a71e648b560b769dd209adadbd823 a owl:Restriction ;\n\towl:onProperty wdt:P11078 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10561 a wikibase:Property ;\n\trdfs:label \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tskos:prefLabel \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tschema:name \"Virginia Tech Dendrology Factsheets ID\"@en ;\n\tschema:description \"identifier for a North American tree taxon in the Virginia Tech Dendrology Factsheets database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10561 ;\n\twikibase:claim p:P10561 ;\n\twikibase:statementProperty ps:P10561 ;\n\twikibase:statementValue psv:P10561 ;\n\twikibase:qualifier pq:P10561 ;\n\twikibase:qualifierValue pqv:P10561 ;\n\twikibase:reference pr:P10561 ;\n\twikibase:referenceValue prv:P10561 ;\n\twikibase:novalue wdno:P10561 ;\n\twikibase:directClaimNormalized wdtn:P10561 ;\n\twikibase:statementValueNormalized psn:P10561 ;\n\twikibase:qualifierValueNormalized pqn:P10561 ;\n\twikibase:referenceValueNormalized prn:P10561 .\n\np:P10561 a owl:ObjectProperty .\n\npsv:P10561 a owl:ObjectProperty .\n\npqv:P10561 a owl:ObjectProperty .\n\nprv:P10561 a owl:ObjectProperty .\n\nwdt:P10561 a owl:DatatypeProperty .\n\nps:P10561 a owl:DatatypeProperty .\n\npq:P10561 a owl:DatatypeProperty .\n\npr:P10561 a owl:DatatypeProperty .\n\npsn:P10561 a owl:ObjectProperty .\n\npqn:P10561 a owl:ObjectProperty .\n\nprn:P10561 a owl:ObjectProperty .\n\nwdtn:P10561 a owl:ObjectProperty .\n\nwdno:P10561 a owl:Class ;\n\towl:complementOf _:ad1d030a72e2da213f8858c667e0f4a9 .\n\n_:ad1d030a72e2da213f8858c667e0f4a9 a owl:Restriction ;\n\towl:onProperty wdt:P10561 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11829 a wikibase:Property ;\n\trdfs:label \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tskos:prefLabel \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tschema:name \"Plant Finder ID (Chicago Botanic Garden)\"@en ;\n\tschema:description \"identifier of a plant taxon in the Chicago Botanic Garden's Plant Finder database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11829 ;\n\twikibase:claim p:P11829 ;\n\twikibase:statementProperty ps:P11829 ;\n\twikibase:statementValue psv:P11829 ;\n\twikibase:qualifier pq:P11829 ;\n\twikibase:qualifierValue pqv:P11829 ;\n\twikibase:reference pr:P11829 ;\n\twikibase:referenceValue prv:P11829 ;\n\twikibase:novalue wdno:P11829 ;\n\twikibase:directClaimNormalized wdtn:P11829 ;\n\twikibase:statementValueNormalized psn:P11829 ;\n\twikibase:qualifierValueNormalized pqn:P11829 ;\n\twikibase:referenceValueNormalized prn:P11829 .\n\np:P11829 a owl:ObjectProperty .\n\npsv:P11829 a owl:ObjectProperty .\n\npqv:P11829 a owl:ObjectProperty .\n\nprv:P11829 a owl:ObjectProperty .\n\nwdt:P11829 a owl:DatatypeProperty .\n\nps:P11829 a owl:DatatypeProperty .\n\npq:P11829 a owl:DatatypeProperty .\n\npr:P11829 a owl:DatatypeProperty .\n\npsn:P11829 a owl:ObjectProperty .\n\npqn:P11829 a owl:ObjectProperty .\n\nprn:P11829 a owl:ObjectProperty .\n\nwdtn:P11829 a owl:ObjectProperty .\n\nwdno:P11829 a owl:Class ;\n\towl:complementOf _:4efcdbd1babb7f9368819b2031f641f0 .\n\n_:4efcdbd1babb7f9368819b2031f641f0 a owl:Restriction ;\n\towl:onProperty wdt:P11829 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9691 a wikibase:Property ;\n\trdfs:label \"E-Flora BC species ID\"@en ;\n\tskos:prefLabel \"E-Flora BC species ID\"@en ;\n\tschema:name \"E-Flora BC species ID\"@en ;\n\tschema:description \"identifier for a plant species, subspecies, or variety on E-Flora BC\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9691 ;\n\twikibase:claim p:P9691 ;\n\twikibase:statementProperty ps:P9691 ;\n\twikibase:statementValue psv:P9691 ;\n\twikibase:qualifier pq:P9691 ;\n\twikibase:qualifierValue pqv:P9691 ;\n\twikibase:reference pr:P9691 ;\n\twikibase:referenceValue prv:P9691 ;\n\twikibase:novalue wdno:P9691 ;\n\twikibase:directClaimNormalized wdtn:P9691 ;\n\twikibase:statementValueNormalized psn:P9691 ;\n\twikibase:qualifierValueNormalized pqn:P9691 ;\n\twikibase:referenceValueNormalized prn:P9691 .\n\np:P9691 a owl:ObjectProperty .\n\npsv:P9691 a owl:ObjectProperty .\n\npqv:P9691 a owl:ObjectProperty .\n\nprv:P9691 a owl:ObjectProperty .\n\nwdt:P9691 a owl:DatatypeProperty .\n\nps:P9691 a owl:DatatypeProperty .\n\npq:P9691 a owl:DatatypeProperty .\n\npr:P9691 a owl:DatatypeProperty .\n\npsn:P9691 a owl:ObjectProperty .\n\npqn:P9691 a owl:ObjectProperty .\n\nprn:P9691 a owl:ObjectProperty .\n\nwdtn:P9691 a owl:ObjectProperty .\n\nwdno:P9691 a owl:Class ;\n\towl:complementOf _:be203aeb01ed15a712da339bcb855b41 .\n\n_:be203aeb01ed15a712da339bcb855b41 a owl:Restriction ;\n\towl:onProperty wdt:P9691 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9408 a wikibase:Property ;\n\trdfs:label \"Washington Flora Checklist ID\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@de ;\n\tschema:name \"Washington Flora Checklist ID\"@de ;\n\trdfs:label \"Washington Flora Checklist ID\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@en ;\n\tschema:name \"Washington Flora Checklist ID\"@en ;\n\tschema:description \"Identifikator für die Washington Flora Checklist\"@de,\n\t\t\"identifier in the Washington Flora Checklist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9408 ;\n\twikibase:claim p:P9408 ;\n\twikibase:statementProperty ps:P9408 ;\n\twikibase:statementValue psv:P9408 ;\n\twikibase:qualifier pq:P9408 ;\n\twikibase:qualifierValue pqv:P9408 ;\n\twikibase:reference pr:P9408 ;\n\twikibase:referenceValue prv:P9408 ;\n\twikibase:novalue wdno:P9408 ;\n\twikibase:directClaimNormalized wdtn:P9408 ;\n\twikibase:statementValueNormalized psn:P9408 ;\n\twikibase:qualifierValueNormalized pqn:P9408 ;\n\twikibase:referenceValueNormalized prn:P9408 .\n\np:P9408 a owl:ObjectProperty .\n\npsv:P9408 a owl:ObjectProperty .\n\npqv:P9408 a owl:ObjectProperty .\n\nprv:P9408 a owl:ObjectProperty .\n\nwdt:P9408 a owl:DatatypeProperty .\n\nps:P9408 a owl:DatatypeProperty .\n\npq:P9408 a owl:DatatypeProperty .\n\npr:P9408 a owl:DatatypeProperty .\n\npsn:P9408 a owl:ObjectProperty .\n\npqn:P9408 a owl:ObjectProperty .\n\nprn:P9408 a owl:ObjectProperty .\n\nwdtn:P9408 a owl:ObjectProperty .\n\nwdno:P9408 a owl:Class ;\n\towl:complementOf _:fed86cc56db5ba320e1c445ba9ded27d .\n\n_:fed86cc56db5ba320e1c445ba9ded27d a owl:Restriction ;\n\towl:onProperty wdt:P9408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10709 a wikibase:Property ;\n\trdfs:label \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tskos:prefLabel \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tschema:name \"North Carolina Extension Gardener Plant Toolbox ID\"@en ;\n\tschema:description \"identifier for a taxon in the North Carolina Extension Gardener Plant Toolbox\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10709 ;\n\twikibase:claim p:P10709 ;\n\twikibase:statementProperty ps:P10709 ;\n\twikibase:statementValue psv:P10709 ;\n\twikibase:qualifier pq:P10709 ;\n\twikibase:qualifierValue pqv:P10709 ;\n\twikibase:reference pr:P10709 ;\n\twikibase:referenceValue prv:P10709 ;\n\twikibase:novalue wdno:P10709 ;\n\twikibase:directClaimNormalized wdtn:P10709 ;\n\twikibase:statementValueNormalized psn:P10709 ;\n\twikibase:qualifierValueNormalized pqn:P10709 ;\n\twikibase:referenceValueNormalized prn:P10709 .\n\np:P10709 a owl:ObjectProperty .\n\npsv:P10709 a owl:ObjectProperty .\n\npqv:P10709 a owl:ObjectProperty .\n\nprv:P10709 a owl:ObjectProperty .\n\nwdt:P10709 a owl:DatatypeProperty .\n\nps:P10709 a owl:DatatypeProperty .\n\npq:P10709 a owl:DatatypeProperty .\n\npr:P10709 a owl:DatatypeProperty .\n\npsn:P10709 a owl:ObjectProperty .\n\npqn:P10709 a owl:ObjectProperty .\n\nprn:P10709 a owl:ObjectProperty .\n\nwdtn:P10709 a owl:ObjectProperty .\n\nwdno:P10709 a owl:Class ;\n\towl:complementOf _:c2814fd2df4f87f1c9636338ac8e2141 .\n\n_:c2814fd2df4f87f1c9636338ac8e2141 a owl:Restriction ;\n\towl:onProperty wdt:P10709 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7544 a wikibase:Property ;\n\trdfs:label \"Indian Medicinal Plants Database ID\"@en ;\n\tskos:prefLabel \"Indian Medicinal Plants Database ID\"@en ;\n\tschema:name \"Indian Medicinal Plants Database ID\"@en ;\n\tschema:description \"identifier for medicinal plants found in India maintained by the 'Indian Medicinal Plants Database'\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7544 ;\n\twikibase:claim p:P7544 ;\n\twikibase:statementProperty ps:P7544 ;\n\twikibase:statementValue psv:P7544 ;\n\twikibase:qualifier pq:P7544 ;\n\twikibase:qualifierValue pqv:P7544 ;\n\twikibase:reference pr:P7544 ;\n\twikibase:referenceValue prv:P7544 ;\n\twikibase:novalue wdno:P7544 ;\n\twikibase:directClaimNormalized wdtn:P7544 ;\n\twikibase:statementValueNormalized psn:P7544 ;\n\twikibase:qualifierValueNormalized pqn:P7544 ;\n\twikibase:referenceValueNormalized prn:P7544 .\n\np:P7544 a owl:ObjectProperty .\n\npsv:P7544 a owl:ObjectProperty .\n\npqv:P7544 a owl:ObjectProperty .\n\nprv:P7544 a owl:ObjectProperty .\n\nwdt:P7544 a owl:DatatypeProperty .\n\nps:P7544 a owl:DatatypeProperty .\n\npq:P7544 a owl:DatatypeProperty .\n\npr:P7544 a owl:DatatypeProperty .\n\npsn:P7544 a owl:ObjectProperty .\n\npqn:P7544 a owl:ObjectProperty .\n\nprn:P7544 a owl:ObjectProperty .\n\nwdtn:P7544 a owl:ObjectProperty .\n\nwdno:P7544 a owl:Class ;\n\towl:complementOf _:85fed6cf4f156256e618ab7676b9aeae .\n\n_:85fed6cf4f156256e618ab7676b9aeae a owl:Restriction ;\n\towl:onProperty wdt:P7544 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6098 a wikibase:Property ;\n\trdfs:label \"info flora\"@de ;\n\tskos:prefLabel \"info flora\"@de ;\n\tschema:name \"info flora\"@de ;\n\trdfs:label \"Info Flora ID\"@en ;\n\tskos:prefLabel \"Info Flora ID\"@en ;\n\tschema:name \"Info Flora ID\"@en ;\n\tschema:description \"Das nationale Daten- und Informationszentrum der Schweizer Flora\"@de,\n\t\t\"identifier for a taxon on the Info Flora website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6098 ;\n\twikibase:claim p:P6098 ;\n\twikibase:statementProperty ps:P6098 ;\n\twikibase:statementValue psv:P6098 ;\n\twikibase:qualifier pq:P6098 ;\n\twikibase:qualifierValue pqv:P6098 ;\n\twikibase:reference pr:P6098 ;\n\twikibase:referenceValue prv:P6098 ;\n\twikibase:novalue wdno:P6098 ;\n\twikibase:directClaimNormalized wdtn:P6098 ;\n\twikibase:statementValueNormalized psn:P6098 ;\n\twikibase:qualifierValueNormalized pqn:P6098 ;\n\twikibase:referenceValueNormalized prn:P6098 .\n\np:P6098 a owl:ObjectProperty .\n\npsv:P6098 a owl:ObjectProperty .\n\npqv:P6098 a owl:ObjectProperty .\n\nprv:P6098 a owl:ObjectProperty .\n\nwdt:P6098 a owl:DatatypeProperty .\n\nps:P6098 a owl:DatatypeProperty .\n\npq:P6098 a owl:DatatypeProperty .\n\npr:P6098 a owl:DatatypeProperty .\n\npsn:P6098 a owl:ObjectProperty .\n\npqn:P6098 a owl:ObjectProperty .\n\nprn:P6098 a owl:ObjectProperty .\n\nwdtn:P6098 a owl:ObjectProperty .\n\nwdno:P6098 a owl:Class ;\n\towl:complementOf _:408733e9ca58c486f18000074d79a337 .\n\n_:408733e9ca58c486f18000074d79a337 a owl:Restriction ;\n\towl:onProperty wdt:P6098 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12137 a wikibase:Property ;\n\trdfs:label \"Linked Open Data Comune Firenze ID\"@en ;\n\tskos:prefLabel \"Linked Open Data Comune Firenze ID\"@en ;\n\tschema:name \"Linked Open Data Comune Firenze ID\"@en ;\n\tschema:description \"identifier for an entity in the Linked Open Data platform of the municipality of Florence (Italy)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12137 ;\n\twikibase:claim p:P12137 ;\n\twikibase:statementProperty ps:P12137 ;\n\twikibase:statementValue psv:P12137 ;\n\twikibase:qualifier pq:P12137 ;\n\twikibase:qualifierValue pqv:P12137 ;\n\twikibase:reference pr:P12137 ;\n\twikibase:referenceValue prv:P12137 ;\n\twikibase:novalue wdno:P12137 ;\n\twikibase:directClaimNormalized wdtn:P12137 ;\n\twikibase:statementValueNormalized psn:P12137 ;\n\twikibase:qualifierValueNormalized pqn:P12137 ;\n\twikibase:referenceValueNormalized prn:P12137 .\n\np:P12137 a owl:ObjectProperty .\n\npsv:P12137 a owl:ObjectProperty .\n\npqv:P12137 a owl:ObjectProperty .\n\nprv:P12137 a owl:ObjectProperty .\n\nwdt:P12137 a owl:DatatypeProperty .\n\nps:P12137 a owl:DatatypeProperty .\n\npq:P12137 a owl:DatatypeProperty .\n\npr:P12137 a owl:DatatypeProperty .\n\npsn:P12137 a owl:ObjectProperty .\n\npqn:P12137 a owl:ObjectProperty .\n\nprn:P12137 a owl:ObjectProperty .\n\nwdtn:P12137 a owl:ObjectProperty .\n\nwdno:P12137 a owl:Class ;\n\towl:complementOf _:dd4ffc1d52f2d0314d72c363c0eb0c45 .\n\n_:dd4ffc1d52f2d0314d72c363c0eb0c45 a owl:Restriction ;\n\towl:onProperty wdt:P12137 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4333 a wikibase:Property ;\n\trdfs:label \"GenBank assembly accession number\"@en ;\n\tskos:prefLabel \"GenBank assembly accession number\"@en ;\n\tschema:name \"GenBank assembly accession number\"@en ;\n\tschema:description \"unique identifier of a genome assembly\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4333 ;\n\twikibase:claim p:P4333 ;\n\twikibase:statementProperty ps:P4333 ;\n\twikibase:statementValue psv:P4333 ;\n\twikibase:qualifier pq:P4333 ;\n\twikibase:qualifierValue pqv:P4333 ;\n\twikibase:reference pr:P4333 ;\n\twikibase:referenceValue prv:P4333 ;\n\twikibase:novalue wdno:P4333 ;\n\twikibase:directClaimNormalized wdtn:P4333 ;\n\twikibase:statementValueNormalized psn:P4333 ;\n\twikibase:qualifierValueNormalized pqn:P4333 ;\n\twikibase:referenceValueNormalized prn:P4333 .\n\np:P4333 a owl:ObjectProperty .\n\npsv:P4333 a owl:ObjectProperty .\n\npqv:P4333 a owl:ObjectProperty .\n\nprv:P4333 a owl:ObjectProperty .\n\nwdt:P4333 a owl:DatatypeProperty .\n\nps:P4333 a owl:DatatypeProperty .\n\npq:P4333 a owl:DatatypeProperty .\n\npr:P4333 a owl:DatatypeProperty .\n\npsn:P4333 a owl:ObjectProperty .\n\npqn:P4333 a owl:ObjectProperty .\n\nprn:P4333 a owl:ObjectProperty .\n\nwdtn:P4333 a owl:ObjectProperty .\n\nwdno:P4333 a owl:Class ;\n\towl:complementOf _:7f7e5b06fed779ce334bcdb230aea33b .\n\n_:7f7e5b06fed779ce334bcdb230aea33b a owl:Restriction ;\n\towl:onProperty wdt:P4333 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12179 a wikibase:Property ;\n\trdfs:label \"Flora of the Southeastern United States ID\"@de ;\n\tskos:prefLabel \"Flora of the Southeastern United States ID\"@de ;\n\tschema:name \"Flora of the Southeastern United States ID\"@de ;\n\trdfs:label \"Flora of the Southeastern United States ID\"@en ;\n\tskos:prefLabel \"Flora of the Southeastern United States ID\"@en ;\n\tschema:name \"Flora of the Southeastern United States ID\"@en ;\n\tschema:description \"Kennung einer Pflanzenart in der Datenbank der Flora of the Southeastern United States\"@de,\n\t\t\"identifier for a plant taxon in the Flora of the Southeastern United States database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12179 ;\n\twikibase:claim p:P12179 ;\n\twikibase:statementProperty ps:P12179 ;\n\twikibase:statementValue psv:P12179 ;\n\twikibase:qualifier pq:P12179 ;\n\twikibase:qualifierValue pqv:P12179 ;\n\twikibase:reference pr:P12179 ;\n\twikibase:referenceValue prv:P12179 ;\n\twikibase:novalue wdno:P12179 ;\n\twikibase:directClaimNormalized wdtn:P12179 ;\n\twikibase:statementValueNormalized psn:P12179 ;\n\twikibase:qualifierValueNormalized pqn:P12179 ;\n\twikibase:referenceValueNormalized prn:P12179 .\n\np:P12179 a owl:ObjectProperty .\n\npsv:P12179 a owl:ObjectProperty .\n\npqv:P12179 a owl:ObjectProperty .\n\nprv:P12179 a owl:ObjectProperty .\n\nwdt:P12179 a owl:DatatypeProperty .\n\nps:P12179 a owl:DatatypeProperty .\n\npq:P12179 a owl:DatatypeProperty .\n\npr:P12179 a owl:DatatypeProperty .\n\npsn:P12179 a owl:ObjectProperty .\n\npqn:P12179 a owl:ObjectProperty .\n\nprn:P12179 a owl:ObjectProperty .\n\nwdtn:P12179 a owl:ObjectProperty .\n\nwdno:P12179 a owl:Class ;\n\towl:complementOf _:b0e03a17f49d34ffa9e8c818337badb4 .\n\n_:b0e03a17f49d34ffa9e8c818337badb4 a owl:Restriction ;\n\towl:onProperty wdt:P12179 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12182 a wikibase:Property ;\n\trdfs:label \"Go Botany taxon ID\"@de ;\n\tskos:prefLabel \"Go Botany taxon ID\"@de ;\n\tschema:name \"Go Botany taxon ID\"@de ;\n\trdfs:label \"Go Botany taxon ID\"@en ;\n\tskos:prefLabel \"Go Botany taxon ID\"@en ;\n\tschema:name \"Go Botany taxon ID\"@en ;\n\tschema:description \"Identifikator für Gefäßpflanzen in Neuengland auf der Go Botany website\"@de,\n\t\t\"identifier for a vascular plant taxon in New England on the Go Botany website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12182 ;\n\twikibase:claim p:P12182 ;\n\twikibase:statementProperty ps:P12182 ;\n\twikibase:statementValue psv:P12182 ;\n\twikibase:qualifier pq:P12182 ;\n\twikibase:qualifierValue pqv:P12182 ;\n\twikibase:reference pr:P12182 ;\n\twikibase:referenceValue prv:P12182 ;\n\twikibase:novalue wdno:P12182 ;\n\twikibase:directClaimNormalized wdtn:P12182 ;\n\twikibase:statementValueNormalized psn:P12182 ;\n\twikibase:qualifierValueNormalized pqn:P12182 ;\n\twikibase:referenceValueNormalized prn:P12182 .\n\np:P12182 a owl:ObjectProperty .\n\npsv:P12182 a owl:ObjectProperty .\n\npqv:P12182 a owl:ObjectProperty .\n\nprv:P12182 a owl:ObjectProperty .\n\nwdt:P12182 a owl:DatatypeProperty .\n\nps:P12182 a owl:DatatypeProperty .\n\npq:P12182 a owl:DatatypeProperty .\n\npr:P12182 a owl:DatatypeProperty .\n\npsn:P12182 a owl:ObjectProperty .\n\npqn:P12182 a owl:ObjectProperty .\n\nprn:P12182 a owl:ObjectProperty .\n\nwdtn:P12182 a owl:ObjectProperty .\n\nwdno:P12182 a owl:Class ;\n\towl:complementOf _:bace7506f7af22282f01e0d4d53470da .\n\n_:bace7506f7af22282f01e0d4d53470da a owl:Restriction ;\n\towl:onProperty wdt:P12182 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12086 a wikibase:Property ;\n\trdfs:label \"WikiKids-Kennung\"@de ;\n\tskos:prefLabel \"WikiKids-Kennung\"@de ;\n\tschema:name \"WikiKids-Kennung\"@de ;\n\trdfs:label \"WikiKids ID\"@en ;\n\tskos:prefLabel \"WikiKids ID\"@en ;\n\tschema:name \"WikiKids ID\"@en ;\n\tschema:description \"Identifikator für Artikel auf WikiKids\"@de,\n\t\t\"identifier of the article on WikiKids\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12086 ;\n\twikibase:claim p:P12086 ;\n\twikibase:statementProperty ps:P12086 ;\n\twikibase:statementValue psv:P12086 ;\n\twikibase:qualifier pq:P12086 ;\n\twikibase:qualifierValue pqv:P12086 ;\n\twikibase:reference pr:P12086 ;\n\twikibase:referenceValue prv:P12086 ;\n\twikibase:novalue wdno:P12086 ;\n\twikibase:directClaimNormalized wdtn:P12086 ;\n\twikibase:statementValueNormalized psn:P12086 ;\n\twikibase:qualifierValueNormalized pqn:P12086 ;\n\twikibase:referenceValueNormalized prn:P12086 .\n\np:P12086 a owl:ObjectProperty .\n\npsv:P12086 a owl:ObjectProperty .\n\npqv:P12086 a owl:ObjectProperty .\n\nprv:P12086 a owl:ObjectProperty .\n\nwdt:P12086 a owl:DatatypeProperty .\n\nps:P12086 a owl:DatatypeProperty .\n\npq:P12086 a owl:DatatypeProperty .\n\npr:P12086 a owl:DatatypeProperty .\n\npsn:P12086 a owl:ObjectProperty .\n\npqn:P12086 a owl:ObjectProperty .\n\nprn:P12086 a owl:ObjectProperty .\n\nwdtn:P12086 a owl:ObjectProperty .\n\nwdno:P12086 a owl:Class ;\n\towl:complementOf _:5edc28fbdeef0f4c3e59e8785d4b919a .\n\n_:5edc28fbdeef0f4c3e59e8785d4b919a a owl:Restriction ;\n\towl:onProperty wdt:P12086 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6507 a wikibase:Property ;\n\trdfs:label \"Zitation der Autoren des Taxons\"@de ;\n\tskos:prefLabel \"Zitation der Autoren des Taxons\"@de ;\n\tschema:name \"Zitation der Autoren des Taxons\"@de ;\n\trdfs:label \"taxon author citation\"@en ;\n\tskos:prefLabel \"taxon author citation\"@en ;\n\tschema:name \"taxon author citation\"@en ;\n\tschema:description \"Zitation des Autors/der Autoren des Taxons unter Verwendung der entsprechenden Nomenklatur (ICBN, ICZN, ...)\"@de,\n\t\t\"valid author citation for a name using the appropriate nomenclature (ICNafp, ICZN, etc.)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6507 ;\n\twikibase:claim p:P6507 ;\n\twikibase:statementProperty ps:P6507 ;\n\twikibase:statementValue psv:P6507 ;\n\twikibase:qualifier pq:P6507 ;\n\twikibase:qualifierValue pqv:P6507 ;\n\twikibase:reference pr:P6507 ;\n\twikibase:referenceValue prv:P6507 ;\n\twikibase:novalue wdno:P6507 .\n\np:P6507 a owl:ObjectProperty .\n\npsv:P6507 a owl:ObjectProperty .\n\npqv:P6507 a owl:ObjectProperty .\n\nprv:P6507 a owl:ObjectProperty .\n\nwdt:P6507 a owl:DatatypeProperty .\n\nps:P6507 a owl:DatatypeProperty .\n\npq:P6507 a owl:DatatypeProperty .\n\npr:P6507 a owl:DatatypeProperty .\n\nwdno:P6507 a owl:Class ;\n\towl:complementOf _:37fbc20ab98055c0d576c3d0c6ad5138 .\n\n_:37fbc20ab98055c0d576c3d0c6ad5138 a owl:Restriction ;\n\towl:onProperty wdt:P6507 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q96279266 a wikibase:Item ;\n\trdfs:label \"5\"@en ;\n\tskos:prefLabel \"5\"@en ;\n\tschema:name \"5\"@en ;\n\tschema:description \"hardiness zone on USDA scale\"@en .\n\nwd:P8193 a wikibase:Property ;\n\trdfs:label \"Winterhärte der Pflanze\"@de ;\n\tskos:prefLabel \"Winterhärte der Pflanze\"@de ;\n\tschema:name \"Winterhärte der Pflanze\"@de ;\n\trdfs:label \"hardiness of plant\"@en ;\n\tskos:prefLabel \"hardiness of plant\"@en ;\n\tschema:name \"hardiness of plant\"@en ;\n\tschema:description \"recommended hardiness zone for plant, ability of plant to survive adverse growing conditions\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8193 ;\n\twikibase:claim p:P8193 ;\n\twikibase:statementProperty ps:P8193 ;\n\twikibase:statementValue psv:P8193 ;\n\twikibase:qualifier pq:P8193 ;\n\twikibase:qualifierValue pqv:P8193 ;\n\twikibase:reference pr:P8193 ;\n\twikibase:referenceValue prv:P8193 ;\n\twikibase:novalue wdno:P8193 .\n\np:P8193 a owl:ObjectProperty .\n\npsv:P8193 a owl:ObjectProperty .\n\npqv:P8193 a owl:ObjectProperty .\n\nprv:P8193 a owl:ObjectProperty .\n\nwdt:P8193 a owl:ObjectProperty .\n\nps:P8193 a owl:ObjectProperty .\n\npq:P8193 a owl:ObjectProperty .\n\npr:P8193 a owl:ObjectProperty .\n\nwdno:P8193 a owl:Class ;\n\towl:complementOf _:fe991027e45e2b05fac52ef4d2bad64c .\n\n_:fe991027e45e2b05fac52ef4d2bad64c a owl:Restriction ;\n\towl:onProperty wdt:P8193 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1131316 a wikibase:Item ;\n\trdfs:label \"laubabwerfend\"@de ;\n\tskos:prefLabel \"laubabwerfend\"@de ;\n\tschema:name \"laubabwerfend\"@de ;\n\trdfs:label \"deciduous plant\"@mul ;\n\tskos:prefLabel \"deciduous plant\"@mul ;\n\tschema:name \"deciduous plant\"@mul ;\n\trdfs:label \"deciduous plant\"@en ;\n\tskos:prefLabel \"deciduous plant\"@en ;\n\tschema:name \"deciduous plant\"@en ;\n\tschema:description \"trees or shrubs that lose their leaves seasonally\"@en .\n\nwd:P10906 a wikibase:Property ;\n\trdfs:label \"foliage type\"@en ;\n\tskos:prefLabel \"foliage type\"@en ;\n\tschema:name \"foliage type\"@en ;\n\tschema:description \"type of foliage characteristic of a plant, e.g. deciduous, semi-deciduous, semi-evergreen, or evergreen\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10906 ;\n\twikibase:claim p:P10906 ;\n\twikibase:statementProperty ps:P10906 ;\n\twikibase:statementValue psv:P10906 ;\n\twikibase:qualifier pq:P10906 ;\n\twikibase:qualifierValue pqv:P10906 ;\n\twikibase:reference pr:P10906 ;\n\twikibase:referenceValue prv:P10906 ;\n\twikibase:novalue wdno:P10906 .\n\np:P10906 a owl:ObjectProperty .\n\npsv:P10906 a owl:ObjectProperty .\n\npqv:P10906 a owl:ObjectProperty .\n\nprv:P10906 a owl:ObjectProperty .\n\nwdt:P10906 a owl:ObjectProperty .\n\nps:P10906 a owl:ObjectProperty .\n\npq:P10906 a owl:ObjectProperty .\n\npr:P10906 a owl:ObjectProperty .\n\nwdno:P10906 a owl:Class ;\n\towl:complementOf _:1226ffec3988f387aa0bf8a0088306e4 .\n\n_:1226ffec3988f387aa0bf8a0088306e4 a owl:Restriction ;\n\towl:onProperty wdt:P10906 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11650 a wikibase:Property ;\n\trdfs:label \"Moscow University Herbarium ID\"@en ;\n\tskos:prefLabel \"Moscow University Herbarium ID\"@en ;\n\tschema:name \"Moscow University Herbarium ID\"@en ;\n\tschema:description \"ID for a taxon in the Moscow Digital Herbarium\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11650 ;\n\twikibase:claim p:P11650 ;\n\twikibase:statementProperty ps:P11650 ;\n\twikibase:statementValue psv:P11650 ;\n\twikibase:qualifier pq:P11650 ;\n\twikibase:qualifierValue pqv:P11650 ;\n\twikibase:reference pr:P11650 ;\n\twikibase:referenceValue prv:P11650 ;\n\twikibase:novalue wdno:P11650 ;\n\twikibase:directClaimNormalized wdtn:P11650 ;\n\twikibase:statementValueNormalized psn:P11650 ;\n\twikibase:qualifierValueNormalized pqn:P11650 ;\n\twikibase:referenceValueNormalized prn:P11650 .\n\np:P11650 a owl:ObjectProperty .\n\npsv:P11650 a owl:ObjectProperty .\n\npqv:P11650 a owl:ObjectProperty .\n\nprv:P11650 a owl:ObjectProperty .\n\nwdt:P11650 a owl:DatatypeProperty .\n\nps:P11650 a owl:DatatypeProperty .\n\npq:P11650 a owl:DatatypeProperty .\n\npr:P11650 a owl:DatatypeProperty .\n\npsn:P11650 a owl:ObjectProperty .\n\npqn:P11650 a owl:ObjectProperty .\n\nprn:P11650 a owl:ObjectProperty .\n\nwdtn:P11650 a owl:ObjectProperty .\n\nwdno:P11650 a owl:Class ;\n\towl:complementOf _:0927e58471e834ca178b8e14fe641c97 .\n\n_:0927e58471e834ca178b8e14fe641c97 a owl:Restriction ;\n\towl:onProperty wdt:P11650 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9826 a wikibase:Property ;\n\trdfs:label \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tskos:prefLabel \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tschema:name \"Great Encyclopedia of Cyril and Methodius entry ID\"@en ;\n\tschema:description \"ID for an entry on the Great Encyclopedia of Cyrill and Methodius\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9826 ;\n\twikibase:claim p:P9826 ;\n\twikibase:statementProperty ps:P9826 ;\n\twikibase:statementValue psv:P9826 ;\n\twikibase:qualifier pq:P9826 ;\n\twikibase:qualifierValue pqv:P9826 ;\n\twikibase:reference pr:P9826 ;\n\twikibase:referenceValue prv:P9826 ;\n\twikibase:novalue wdno:P9826 ;\n\twikibase:directClaimNormalized wdtn:P9826 ;\n\twikibase:statementValueNormalized psn:P9826 ;\n\twikibase:qualifierValueNormalized pqn:P9826 ;\n\twikibase:referenceValueNormalized prn:P9826 .\n\np:P9826 a owl:ObjectProperty .\n\npsv:P9826 a owl:ObjectProperty .\n\npqv:P9826 a owl:ObjectProperty .\n\nprv:P9826 a owl:ObjectProperty .\n\nwdt:P9826 a owl:DatatypeProperty .\n\nps:P9826 a owl:DatatypeProperty .\n\npq:P9826 a owl:DatatypeProperty .\n\npr:P9826 a owl:DatatypeProperty .\n\npsn:P9826 a owl:ObjectProperty .\n\npqn:P9826 a owl:ObjectProperty .\n\nprn:P9826 a owl:ObjectProperty .\n\nwdtn:P9826 a owl:ObjectProperty .\n\nwdno:P9826 a owl:Class ;\n\towl:complementOf _:cc6554edbf7ab9315ead116edf9686c9 .\n\n_:cc6554edbf7ab9315ead116edf9686c9 a owl:Restriction ;\n\towl:onProperty wdt:P9826 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12187 a wikibase:Property ;\n\trdfs:label \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\tskos:prefLabel \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\tschema:name \"Thesaurus Linguae Aegyptiae Thesaurus-ID\"@de ;\n\trdfs:label \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tskos:prefLabel \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tschema:name \"Thesaurus Linguae Aegyptiae thesaurus ID\"@en ;\n\tschema:description \"ID für einen Metadaten-Thesaurus-Eintrag im Thesaurus Linguae Aegyptiae\"@de,\n\t\t\"identifier for a metadata thesaurus entry in the Thesaurus Linguae Aegyptiae\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12187 ;\n\twikibase:claim p:P12187 ;\n\twikibase:statementProperty ps:P12187 ;\n\twikibase:statementValue psv:P12187 ;\n\twikibase:qualifier pq:P12187 ;\n\twikibase:qualifierValue pqv:P12187 ;\n\twikibase:reference pr:P12187 ;\n\twikibase:referenceValue prv:P12187 ;\n\twikibase:novalue wdno:P12187 ;\n\twikibase:directClaimNormalized wdtn:P12187 ;\n\twikibase:statementValueNormalized psn:P12187 ;\n\twikibase:qualifierValueNormalized pqn:P12187 ;\n\twikibase:referenceValueNormalized prn:P12187 .\n\np:P12187 a owl:ObjectProperty .\n\npsv:P12187 a owl:ObjectProperty .\n\npqv:P12187 a owl:ObjectProperty .\n\nprv:P12187 a owl:ObjectProperty .\n\nwdt:P12187 a owl:DatatypeProperty .\n\nps:P12187 a owl:DatatypeProperty .\n\npq:P12187 a owl:DatatypeProperty .\n\npr:P12187 a owl:DatatypeProperty .\n\npsn:P12187 a owl:ObjectProperty .\n\npqn:P12187 a owl:ObjectProperty .\n\nprn:P12187 a owl:ObjectProperty .\n\nwdtn:P12187 a owl:ObjectProperty .\n\nwdno:P12187 a owl:Class ;\n\towl:complementOf _:861d0f55c824450b02ee3e31501d4526 .\n\n_:861d0f55c824450b02ee3e31501d4526 a owl:Restriction ;\n\towl:onProperty wdt:P12187 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12670 a wikibase:Property ;\n\trdfs:label \"Flora Croatica Database taxon ID\"@en ;\n\tskos:prefLabel \"Flora Croatica Database taxon ID\"@en ;\n\tschema:name \"Flora Croatica Database taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the Flora Croatica Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12670 ;\n\twikibase:claim p:P12670 ;\n\twikibase:statementProperty ps:P12670 ;\n\twikibase:statementValue psv:P12670 ;\n\twikibase:qualifier pq:P12670 ;\n\twikibase:qualifierValue pqv:P12670 ;\n\twikibase:reference pr:P12670 ;\n\twikibase:referenceValue prv:P12670 ;\n\twikibase:novalue wdno:P12670 ;\n\twikibase:directClaimNormalized wdtn:P12670 ;\n\twikibase:statementValueNormalized psn:P12670 ;\n\twikibase:qualifierValueNormalized pqn:P12670 ;\n\twikibase:referenceValueNormalized prn:P12670 .\n\np:P12670 a owl:ObjectProperty .\n\npsv:P12670 a owl:ObjectProperty .\n\npqv:P12670 a owl:ObjectProperty .\n\nprv:P12670 a owl:ObjectProperty .\n\nwdt:P12670 a owl:DatatypeProperty .\n\nps:P12670 a owl:DatatypeProperty .\n\npq:P12670 a owl:DatatypeProperty .\n\npr:P12670 a owl:DatatypeProperty .\n\npsn:P12670 a owl:ObjectProperty .\n\npqn:P12670 a owl:ObjectProperty .\n\nprn:P12670 a owl:ObjectProperty .\n\nwdtn:P12670 a owl:ObjectProperty .\n\nwdno:P12670 a owl:Class ;\n\towl:complementOf _:274fedb043cfdbe42575509c67dc1147 .\n\n_:274fedb043cfdbe42575509c67dc1147 a owl:Restriction ;\n\towl:onProperty wdt:P12670 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12296 a wikibase:Property ;\n\trdfs:label \"SERNEC taxon ID\"@en ;\n\tskos:prefLabel \"SERNEC taxon ID\"@en ;\n\tschema:name \"SERNEC taxon ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the SERNEC data portal\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12296 ;\n\twikibase:claim p:P12296 ;\n\twikibase:statementProperty ps:P12296 ;\n\twikibase:statementValue psv:P12296 ;\n\twikibase:qualifier pq:P12296 ;\n\twikibase:qualifierValue pqv:P12296 ;\n\twikibase:reference pr:P12296 ;\n\twikibase:referenceValue prv:P12296 ;\n\twikibase:novalue wdno:P12296 ;\n\twikibase:directClaimNormalized wdtn:P12296 ;\n\twikibase:statementValueNormalized psn:P12296 ;\n\twikibase:qualifierValueNormalized pqn:P12296 ;\n\twikibase:referenceValueNormalized prn:P12296 .\n\np:P12296 a owl:ObjectProperty .\n\npsv:P12296 a owl:ObjectProperty .\n\npqv:P12296 a owl:ObjectProperty .\n\nprv:P12296 a owl:ObjectProperty .\n\nwdt:P12296 a owl:DatatypeProperty .\n\nps:P12296 a owl:DatatypeProperty .\n\npq:P12296 a owl:DatatypeProperty .\n\npr:P12296 a owl:DatatypeProperty .\n\npsn:P12296 a owl:ObjectProperty .\n\npqn:P12296 a owl:ObjectProperty .\n\nprn:P12296 a owl:ObjectProperty .\n\nwdtn:P12296 a owl:ObjectProperty .\n\nwdno:P12296 a owl:Class ;\n\towl:complementOf _:b357d6074377d20abc8f39eb42fee8ad .\n\n_:b357d6074377d20abc8f39eb42fee8ad a owl:Restriction ;\n\towl:onProperty wdt:P12296 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12292 a wikibase:Property ;\n\trdfs:label \"Biota of New Zealand ID\"@en ;\n\tskos:prefLabel \"Biota of New Zealand ID\"@en ;\n\tschema:name \"Biota of New Zealand ID\"@en ;\n\tschema:description \"identifier for a taxon in the Biota of New Zealand database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12292 ;\n\twikibase:claim p:P12292 ;\n\twikibase:statementProperty ps:P12292 ;\n\twikibase:statementValue psv:P12292 ;\n\twikibase:qualifier pq:P12292 ;\n\twikibase:qualifierValue pqv:P12292 ;\n\twikibase:reference pr:P12292 ;\n\twikibase:referenceValue prv:P12292 ;\n\twikibase:novalue wdno:P12292 ;\n\twikibase:directClaimNormalized wdtn:P12292 ;\n\twikibase:statementValueNormalized psn:P12292 ;\n\twikibase:qualifierValueNormalized pqn:P12292 ;\n\twikibase:referenceValueNormalized prn:P12292 .\n\np:P12292 a owl:ObjectProperty .\n\npsv:P12292 a owl:ObjectProperty .\n\npqv:P12292 a owl:ObjectProperty .\n\nprv:P12292 a owl:ObjectProperty .\n\nwdt:P12292 a owl:DatatypeProperty .\n\nps:P12292 a owl:DatatypeProperty .\n\npq:P12292 a owl:DatatypeProperty .\n\npr:P12292 a owl:DatatypeProperty .\n\npsn:P12292 a owl:ObjectProperty .\n\npqn:P12292 a owl:ObjectProperty .\n\nprn:P12292 a owl:ObjectProperty .\n\nwdtn:P12292 a owl:ObjectProperty .\n\nwdno:P12292 a owl:Class ;\n\towl:complementOf _:1cc1b6493f222337c779ec315ef9c771 .\n\n_:1cc1b6493f222337c779ec315ef9c771 a owl:Restriction ;\n\towl:onProperty wdt:P12292 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12100 a wikibase:Property ;\n\trdfs:label \"FloraVeg.EU taxon ID\"@en ;\n\tskos:prefLabel \"FloraVeg.EU taxon ID\"@en ;\n\tschema:name \"FloraVeg.EU taxon ID\"@en ;\n\tschema:description \"identifier for a plant taxon in the FloraVeg.EU online database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12100 ;\n\twikibase:claim p:P12100 ;\n\twikibase:statementProperty ps:P12100 ;\n\twikibase:statementValue psv:P12100 ;\n\twikibase:qualifier pq:P12100 ;\n\twikibase:qualifierValue pqv:P12100 ;\n\twikibase:reference pr:P12100 ;\n\twikibase:referenceValue prv:P12100 ;\n\twikibase:novalue wdno:P12100 ;\n\twikibase:directClaimNormalized wdtn:P12100 ;\n\twikibase:statementValueNormalized psn:P12100 ;\n\twikibase:qualifierValueNormalized pqn:P12100 ;\n\twikibase:referenceValueNormalized prn:P12100 .\n\np:P12100 a owl:ObjectProperty .\n\npsv:P12100 a owl:ObjectProperty .\n\npqv:P12100 a owl:ObjectProperty .\n\nprv:P12100 a owl:ObjectProperty .\n\nwdt:P12100 a owl:DatatypeProperty .\n\nps:P12100 a owl:DatatypeProperty .\n\npq:P12100 a owl:DatatypeProperty .\n\npr:P12100 a owl:DatatypeProperty .\n\npsn:P12100 a owl:ObjectProperty .\n\npqn:P12100 a owl:ObjectProperty .\n\nprn:P12100 a owl:ObjectProperty .\n\nwdtn:P12100 a owl:ObjectProperty .\n\nwdno:P12100 a owl:Class ;\n\towl:complementOf _:924ce445c3665034fec04dbfb71c3d71 .\n\n_:924ce445c3665034fec04dbfb71c3d71 a owl:Restriction ;\n\towl:onProperty wdt:P12100 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12554 a wikibase:Property ;\n\trdfs:label \"CalPhotos Taxon Kennung\"@de ;\n\tskos:prefLabel \"CalPhotos Taxon Kennung\"@de ;\n\tschema:name \"CalPhotos Taxon Kennung\"@de ;\n\trdfs:label \"CalPhotos taxon ID\"@en ;\n\tskos:prefLabel \"CalPhotos taxon ID\"@en ;\n\tschema:name \"CalPhotos taxon ID\"@en ;\n\tschema:description \"Kennung einer Pflanzen-, Tier- oder Fossilienart oder Unterart auf der CalPhotos Webseite\"@de,\n\t\t\"identifier for a plant, animal, or fossil species or subspecies on the CalPhotos website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12554 ;\n\twikibase:claim p:P12554 ;\n\twikibase:statementProperty ps:P12554 ;\n\twikibase:statementValue psv:P12554 ;\n\twikibase:qualifier pq:P12554 ;\n\twikibase:qualifierValue pqv:P12554 ;\n\twikibase:reference pr:P12554 ;\n\twikibase:referenceValue prv:P12554 ;\n\twikibase:novalue wdno:P12554 ;\n\twikibase:directClaimNormalized wdtn:P12554 ;\n\twikibase:statementValueNormalized psn:P12554 ;\n\twikibase:qualifierValueNormalized pqn:P12554 ;\n\twikibase:referenceValueNormalized prn:P12554 .\n\np:P12554 a owl:ObjectProperty .\n\npsv:P12554 a owl:ObjectProperty .\n\npqv:P12554 a owl:ObjectProperty .\n\nprv:P12554 a owl:ObjectProperty .\n\nwdt:P12554 a owl:DatatypeProperty .\n\nps:P12554 a owl:DatatypeProperty .\n\npq:P12554 a owl:DatatypeProperty .\n\npr:P12554 a owl:DatatypeProperty .\n\npsn:P12554 a owl:ObjectProperty .\n\npqn:P12554 a owl:ObjectProperty .\n\nprn:P12554 a owl:ObjectProperty .\n\nwdtn:P12554 a owl:ObjectProperty .\n\nwdno:P12554 a owl:Class ;\n\towl:complementOf _:62b2d6a641a641e8c1142cb698bf3873 .\n\n_:62b2d6a641a641e8c1142cb698bf3873 a owl:Restriction ;\n\towl:onProperty wdt:P12554 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9423 a wikibase:Property ;\n\trdfs:label \"OregonFlora Taxon ID\"@de ;\n\tskos:prefLabel \"OregonFlora Taxon ID\"@de ;\n\tschema:name \"OregonFlora Taxon ID\"@de ;\n\trdfs:label \"OregonFlora taxon ID\"@en ;\n\tskos:prefLabel \"OregonFlora taxon ID\"@en ;\n\tschema:name \"OregonFlora taxon ID\"@en ;\n\tschema:description \"numerical identifier for a taxon on the OregonFlora website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9423 ;\n\twikibase:claim p:P9423 ;\n\twikibase:statementProperty ps:P9423 ;\n\twikibase:statementValue psv:P9423 ;\n\twikibase:qualifier pq:P9423 ;\n\twikibase:qualifierValue pqv:P9423 ;\n\twikibase:reference pr:P9423 ;\n\twikibase:referenceValue prv:P9423 ;\n\twikibase:novalue wdno:P9423 ;\n\twikibase:directClaimNormalized wdtn:P9423 ;\n\twikibase:statementValueNormalized psn:P9423 ;\n\twikibase:qualifierValueNormalized pqn:P9423 ;\n\twikibase:referenceValueNormalized prn:P9423 .\n\np:P9423 a owl:ObjectProperty .\n\npsv:P9423 a owl:ObjectProperty .\n\npqv:P9423 a owl:ObjectProperty .\n\nprv:P9423 a owl:ObjectProperty .\n\nwdt:P9423 a owl:DatatypeProperty .\n\nps:P9423 a owl:DatatypeProperty .\n\npq:P9423 a owl:DatatypeProperty .\n\npr:P9423 a owl:DatatypeProperty .\n\npsn:P9423 a owl:ObjectProperty .\n\npqn:P9423 a owl:ObjectProperty .\n\nprn:P9423 a owl:ObjectProperty .\n\nwdtn:P9423 a owl:ObjectProperty .\n\nwdno:P9423 a owl:Class ;\n\towl:complementOf _:0b239b159d0a9461692637845f10bd5b .\n\n_:0b239b159d0a9461692637845f10bd5b a owl:Restriction ;\n\towl:onProperty wdt:P9423 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q111328943 a wikibase:Item ;\n\trdfs:label \"Quercus longaeva\"@de ;\n\tskos:prefLabel \"Quercus longaeva\"@de ;\n\tschema:name \"Quercus longaeva\"@de ;\n\trdfs:label \"Quercus longaeva\"@mul ;\n\tskos:prefLabel \"Quercus longaeva\"@mul ;\n\tschema:name \"Quercus longaeva\"@mul ;\n\trdfs:label \"Quercus longaeva\"@en ;\n\tskos:prefLabel \"Quercus longaeva\"@en ;\n\tschema:name \"Quercus longaeva\"@en ;\n\tschema:description \"Art der Gattung Eichen (Quercus)\"@de,\n\t\t\"species of plant\"@en .\n\nwd:P1420 a wikibase:Property ;\n\trdfs:label \"taxonomische Synonyme\"@de ;\n\tskos:prefLabel \"taxonomische Synonyme\"@de ;\n\tschema:name \"taxonomische Synonyme\"@de ;\n\trdfs:label \"taxon synonym\"@en ;\n\tskos:prefLabel \"taxon synonym\"@en ;\n\tschema:name \"taxon synonym\"@en ;\n\tschema:description \"Synonym(e) des anerkannten wissenschaftlichen Namens eines Taxons\"@de,\n\t\t\"name listed as synonym of this item's taxon name\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1420 ;\n\twikibase:claim p:P1420 ;\n\twikibase:statementProperty ps:P1420 ;\n\twikibase:statementValue psv:P1420 ;\n\twikibase:qualifier pq:P1420 ;\n\twikibase:qualifierValue pqv:P1420 ;\n\twikibase:reference pr:P1420 ;\n\twikibase:referenceValue prv:P1420 ;\n\twikibase:novalue wdno:P1420 .\n\np:P1420 a owl:ObjectProperty .\n\npsv:P1420 a owl:ObjectProperty .\n\npqv:P1420 a owl:ObjectProperty .\n\nprv:P1420 a owl:ObjectProperty .\n\nwdt:P1420 a owl:ObjectProperty .\n\nps:P1420 a owl:ObjectProperty .\n\npq:P1420 a owl:ObjectProperty .\n\npr:P1420 a owl:ObjectProperty .\n\nwdno:P1420 a owl:Class ;\n\towl:complementOf _:d06784ab434f77cd97aceea40b5d94ec .\n\n_:d06784ab434f77cd97aceea40b5d94ec a owl:Restriction ;\n\towl:onProperty wdt:P1420 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1843 a wikibase:Property ;\n\trdfs:label \"einheimische Namen\"@de ;\n\tskos:prefLabel \"einheimische Namen\"@de ;\n\tschema:name \"einheimische Namen\"@de ;\n\trdfs:label \"taxon common name\"@en ;\n\tskos:prefLabel \"taxon common name\"@en ;\n\tschema:name \"taxon common name\"@en ;\n\tschema:description \"einheimischer Name eines Taxons\"@de,\n\t\t\"common or vernacular name of a biological taxon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1843 ;\n\twikibase:claim p:P1843 ;\n\twikibase:statementProperty ps:P1843 ;\n\twikibase:statementValue psv:P1843 ;\n\twikibase:qualifier pq:P1843 ;\n\twikibase:qualifierValue pqv:P1843 ;\n\twikibase:reference pr:P1843 ;\n\twikibase:referenceValue prv:P1843 ;\n\twikibase:novalue wdno:P1843 .\n\np:P1843 a owl:ObjectProperty .\n\npsv:P1843 a owl:ObjectProperty .\n\npqv:P1843 a owl:ObjectProperty .\n\nprv:P1843 a owl:ObjectProperty .\n\nwdt:P1843 a owl:DatatypeProperty .\n\nps:P1843 a owl:DatatypeProperty .\n\npq:P1843 a owl:DatatypeProperty .\n\npr:P1843 a owl:DatatypeProperty .\n\nwdno:P1843 a owl:Class ;\n\towl:complementOf _:7bfe1ef45e254e59572c648515b3bc8b .\n\n_:7bfe1ef45e254e59572c648515b3bc8b a owl:Restriction ;\n\towl:onProperty wdt:P1843 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12364191 a wikibase:Item ;\n\trdfs:label \"lobate leaf\"@en ;\n\tskos:prefLabel \"lobate leaf\"@en ;\n\tschema:name \"lobate leaf\"@en ;\n\tschema:description \"a simple leaf divided by clefts, may be pinnately lobed or palmately lobed\"@en .\n\nwd:P12616 a wikibase:Property ;\n\trdfs:label \"leaf morphology\"@en ;\n\tskos:prefLabel \"leaf morphology\"@en ;\n\tschema:name \"leaf morphology\"@en ;\n\tschema:description \"characterization of aspects of the shape of a plant’s leaves\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12616 ;\n\twikibase:claim p:P12616 ;\n\twikibase:statementProperty ps:P12616 ;\n\twikibase:statementValue psv:P12616 ;\n\twikibase:qualifier pq:P12616 ;\n\twikibase:qualifierValue pqv:P12616 ;\n\twikibase:reference pr:P12616 ;\n\twikibase:referenceValue prv:P12616 ;\n\twikibase:novalue wdno:P12616 .\n\np:P12616 a owl:ObjectProperty .\n\npsv:P12616 a owl:ObjectProperty .\n\npqv:P12616 a owl:ObjectProperty .\n\nprv:P12616 a owl:ObjectProperty .\n\nwdt:P12616 a owl:ObjectProperty .\n\nps:P12616 a owl:ObjectProperty .\n\npq:P12616 a owl:ObjectProperty .\n\npr:P12616 a owl:ObjectProperty .\n\nwdno:P12616 a owl:Class ;\n\towl:complementOf _:f99045990917eedb7a53f541ddcb212e .\n\n_:f99045990917eedb7a53f541ddcb212e a owl:Restriction ;\n\towl:onProperty wdt:P12616 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12379403 a wikibase:Item ;\n\trdfs:label \"obovate leaf\"@en ;\n\tskos:prefLabel \"obovate leaf\"@en ;\n\tschema:name \"obovate leaf\"@en .\n\nwd:Q131939033 a wikibase:Item ;\n\trdfs:label \"sitzendes Blatt\"@de ;\n\tskos:prefLabel \"sitzendes Blatt\"@de ;\n\tschema:name \"sitzendes Blatt\"@de ;\n\trdfs:label \"sessile leaf\"@en ;\n\tskos:prefLabel \"sessile leaf\"@en ;\n\tschema:name \"sessile leaf\"@en ;\n\tschema:description \"das Blatt Besitzt es keinen Stiel\"@de .\n\nwd:Q136087938 a wikibase:Item ;\n\trdfs:label \"lobate leaf edge\"@en ;\n\tskos:prefLabel \"lobate leaf edge\"@en ;\n\tschema:name \"lobate leaf edge\"@en .\n\nwd:P13591 a wikibase:Property ;\n\trdfs:label \"Yale-LUX-Kennung\"@de ;\n\tskos:prefLabel \"Yale-LUX-Kennung\"@de ;\n\tschema:name \"Yale-LUX-Kennung\"@de ;\n\trdfs:label \"‎Yale LUX ID\"@mul ;\n\tskos:prefLabel \"‎Yale LUX ID\"@mul ;\n\tschema:name \"‎Yale LUX ID\"@mul ;\n\trdfs:label \"‎Yale LUX ID\"@en ;\n\tskos:prefLabel \"‎Yale LUX ID\"@en ;\n\tschema:name \"‎Yale LUX ID\"@en ;\n\tschema:description \"Identifikator für Entitäten in „Yale's LUX cross collection knowledge graph“\"@de,\n\t\t\"identifier for an entity in Yale's LUX cross collection knowledge graph\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13591 ;\n\twikibase:claim p:P13591 ;\n\twikibase:statementProperty ps:P13591 ;\n\twikibase:statementValue psv:P13591 ;\n\twikibase:qualifier pq:P13591 ;\n\twikibase:qualifierValue pqv:P13591 ;\n\twikibase:reference pr:P13591 ;\n\twikibase:referenceValue prv:P13591 ;\n\twikibase:novalue wdno:P13591 ;\n\twikibase:directClaimNormalized wdtn:P13591 ;\n\twikibase:statementValueNormalized psn:P13591 ;\n\twikibase:qualifierValueNormalized pqn:P13591 ;\n\twikibase:referenceValueNormalized prn:P13591 .\n\np:P13591 a owl:ObjectProperty .\n\npsv:P13591 a owl:ObjectProperty .\n\npqv:P13591 a owl:ObjectProperty .\n\nprv:P13591 a owl:ObjectProperty .\n\nwdt:P13591 a owl:DatatypeProperty .\n\nps:P13591 a owl:DatatypeProperty .\n\npq:P13591 a owl:DatatypeProperty .\n\npr:P13591 a owl:DatatypeProperty .\n\npsn:P13591 a owl:ObjectProperty .\n\npqn:P13591 a owl:ObjectProperty .\n\nprn:P13591 a owl:ObjectProperty .\n\nwdtn:P13591 a owl:ObjectProperty .\n\nwdno:P13591 a owl:Class ;\n\towl:complementOf _:55becf346eaa836338c53def16cbe97b .\n\n_:55becf346eaa836338c53def16cbe97b a owl:Restriction ;\n\towl:onProperty wdt:P13591 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P13734 a wikibase:Property ;\n\trdfs:label \"EASIN ID\"@en ;\n\tskos:prefLabel \"EASIN ID\"@en ;\n\tschema:name \"EASIN ID\"@en ;\n\tschema:description \"identifier for an alien species on the Catalogue of Alien Species by the European Alien Species Information Network\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13734 ;\n\twikibase:claim p:P13734 ;\n\twikibase:statementProperty ps:P13734 ;\n\twikibase:statementValue psv:P13734 ;\n\twikibase:qualifier pq:P13734 ;\n\twikibase:qualifierValue pqv:P13734 ;\n\twikibase:reference pr:P13734 ;\n\twikibase:referenceValue prv:P13734 ;\n\twikibase:novalue wdno:P13734 ;\n\twikibase:directClaimNormalized wdtn:P13734 ;\n\twikibase:statementValueNormalized psn:P13734 ;\n\twikibase:qualifierValueNormalized pqn:P13734 ;\n\twikibase:referenceValueNormalized prn:P13734 .\n\np:P13734 a owl:ObjectProperty .\n\npsv:P13734 a owl:ObjectProperty .\n\npqv:P13734 a owl:ObjectProperty .\n\nprv:P13734 a owl:ObjectProperty .\n\nwdt:P13734 a owl:DatatypeProperty .\n\nps:P13734 a owl:DatatypeProperty .\n\npq:P13734 a owl:DatatypeProperty .\n\npr:P13734 a owl:DatatypeProperty .\n\npsn:P13734 a owl:ObjectProperty .\n\npqn:P13734 a owl:ObjectProperty .\n\nprn:P13734 a owl:ObjectProperty .\n\nwdtn:P13734 a owl:ObjectProperty .\n\nwdno:P13734 a owl:Class ;\n\towl:complementOf _:abe6951a229e13e2bfdca260cb3f1e2e .\n\n_:abe6951a229e13e2bfdca260cb3f1e2e a owl:Restriction ;\n\towl:onProperty wdt:P13734 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6870 a wikibase:Property ;\n\trdfs:label \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\tskos:prefLabel \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\tschema:name \"Lettische-Nationalenzyklopädie-ID\"@de ;\n\trdfs:label \"Latvian National Encyclopedia Online ID\"@en ;\n\tskos:prefLabel \"Latvian National Encyclopedia Online ID\"@en ;\n\tschema:name \"Latvian National Encyclopedia Online ID\"@en ;\n\tschema:description \"Identifikator für einen Artikel in der lettischen Nationalenzyklopädie (Nacionālā enciklopēdija)\"@de,\n\t\t\"identifier for an article in the website of the Latvian National Encyclopedia\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6870 ;\n\twikibase:claim p:P6870 ;\n\twikibase:statementProperty ps:P6870 ;\n\twikibase:statementValue psv:P6870 ;\n\twikibase:qualifier pq:P6870 ;\n\twikibase:qualifierValue pqv:P6870 ;\n\twikibase:reference pr:P6870 ;\n\twikibase:referenceValue prv:P6870 ;\n\twikibase:novalue wdno:P6870 ;\n\twikibase:directClaimNormalized wdtn:P6870 ;\n\twikibase:statementValueNormalized psn:P6870 ;\n\twikibase:qualifierValueNormalized pqn:P6870 ;\n\twikibase:referenceValueNormalized prn:P6870 .\n\np:P6870 a owl:ObjectProperty .\n\npsv:P6870 a owl:ObjectProperty .\n\npqv:P6870 a owl:ObjectProperty .\n\nprv:P6870 a owl:ObjectProperty .\n\nwdt:P6870 a owl:DatatypeProperty .\n\nps:P6870 a owl:DatatypeProperty .\n\npq:P6870 a owl:DatatypeProperty .\n\npr:P6870 a owl:DatatypeProperty .\n\npsn:P6870 a owl:ObjectProperty .\n\npqn:P6870 a owl:ObjectProperty .\n\nprn:P6870 a owl:ObjectProperty .\n\nwdtn:P6870 a owl:ObjectProperty .\n\nwdno:P6870 a owl:Class ;\n\towl:complementOf _:9c6f1e1820fdf936671b8600e1475089 .\n\n_:9c6f1e1820fdf936671b8600e1475089 a owl:Restriction ;\n\towl:onProperty wdt:P6870 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3101 a wikibase:Property ;\n\trdfs:label \"FloraBase-ID\"@de ;\n\tskos:prefLabel \"FloraBase-ID\"@de ;\n\tschema:name \"FloraBase-ID\"@de ;\n\trdfs:label \"FloraBase ID\"@en ;\n\tskos:prefLabel \"FloraBase ID\"@en ;\n\tschema:name \"FloraBase ID\"@en ;\n\tschema:description \"Identifikator in FloraBase - the Western Australian Flora\"@de,\n\t\t\"identifier for a plant taxon, in the Government of Western Australia's FloraBase database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3101 ;\n\twikibase:claim p:P3101 ;\n\twikibase:statementProperty ps:P3101 ;\n\twikibase:statementValue psv:P3101 ;\n\twikibase:qualifier pq:P3101 ;\n\twikibase:qualifierValue pqv:P3101 ;\n\twikibase:reference pr:P3101 ;\n\twikibase:referenceValue prv:P3101 ;\n\twikibase:novalue wdno:P3101 ;\n\twikibase:directClaimNormalized wdtn:P3101 ;\n\twikibase:statementValueNormalized psn:P3101 ;\n\twikibase:qualifierValueNormalized pqn:P3101 ;\n\twikibase:referenceValueNormalized prn:P3101 .\n\np:P3101 a owl:ObjectProperty .\n\npsv:P3101 a owl:ObjectProperty .\n\npqv:P3101 a owl:ObjectProperty .\n\nprv:P3101 a owl:ObjectProperty .\n\nwdt:P3101 a owl:DatatypeProperty .\n\nps:P3101 a owl:DatatypeProperty .\n\npq:P3101 a owl:DatatypeProperty .\n\npr:P3101 a owl:DatatypeProperty .\n\npsn:P3101 a owl:ObjectProperty .\n\npqn:P3101 a owl:ObjectProperty .\n\nprn:P3101 a owl:ObjectProperty .\n\nwdtn:P3101 a owl:ObjectProperty .\n\nwdno:P3101 a owl:Class ;\n\towl:complementOf _:2f5ab10124576f39347070565fca3ca1 .\n\n_:2f5ab10124576f39347070565fca3ca1 a owl:Restriction ;\n\towl:onProperty wdt:P3101 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P13478 a wikibase:Property ;\n\trdfs:label \"nomenklatorischer Typ von\"@de ;\n\tskos:prefLabel \"nomenklatorischer Typ von\"@de ;\n\tschema:name \"nomenklatorischer Typ von\"@de ;\n\trdfs:label \"nomenclatural type of\"@en ;\n\tskos:prefLabel \"nomenclatural type of\"@en ;\n\tschema:name \"nomenclatural type of\"@en ;\n\tschema:description \"taxon item of which this item is the taxonomic type (name-bearing type), e.g. the family for which this genus is the type, the genus for which this species is the type, the taxon for which this type specimen is the type, ect...\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P13478 ;\n\twikibase:claim p:P13478 ;\n\twikibase:statementProperty ps:P13478 ;\n\twikibase:statementValue psv:P13478 ;\n\twikibase:qualifier pq:P13478 ;\n\twikibase:qualifierValue pqv:P13478 ;\n\twikibase:reference pr:P13478 ;\n\twikibase:referenceValue prv:P13478 ;\n\twikibase:novalue wdno:P13478 .\n\np:P13478 a owl:ObjectProperty .\n\npsv:P13478 a owl:ObjectProperty .\n\npqv:P13478 a owl:ObjectProperty .\n\nprv:P13478 a owl:ObjectProperty .\n\nwdt:P13478 a owl:ObjectProperty .\n\nps:P13478 a owl:ObjectProperty .\n\npq:P13478 a owl:ObjectProperty .\n\npr:P13478 a owl:ObjectProperty .\n\nwdno:P13478 a owl:Class ;\n\towl:complementOf _:e7bb5000b48e13ecb8f85d41964076ac .\n\n_:e7bb5000b48e13ecb8f85d41964076ac a owl:Restriction ;\n\towl:onProperty wdt:P13478 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5252 a wikibase:Property ;\n\trdfs:label \"Winteransicht\"@de ;\n\tskos:prefLabel \"Winteransicht\"@de ;\n\tschema:name \"Winteransicht\"@de ;\n\trdfs:label \"winter view\"@en ;\n\tskos:prefLabel \"winter view\"@en ;\n\tschema:name \"winter view\"@en ;\n\tschema:description \"Bild des Objekts im Winter, vorzugsweise mit Schnee\"@de,\n\t\t\"image of the subject in winter, preferably with snow\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5252 ;\n\twikibase:claim p:P5252 ;\n\twikibase:statementProperty ps:P5252 ;\n\twikibase:statementValue psv:P5252 ;\n\twikibase:qualifier pq:P5252 ;\n\twikibase:qualifierValue pqv:P5252 ;\n\twikibase:reference pr:P5252 ;\n\twikibase:referenceValue prv:P5252 ;\n\twikibase:novalue wdno:P5252 .\n\np:P5252 a owl:ObjectProperty .\n\npsv:P5252 a owl:ObjectProperty .\n\npqv:P5252 a owl:ObjectProperty .\n\nprv:P5252 a owl:ObjectProperty .\n\nwdt:P5252 a owl:ObjectProperty .\n\nps:P5252 a owl:ObjectProperty .\n\npq:P5252 a owl:ObjectProperty .\n\npr:P5252 a owl:ObjectProperty .\n\nwdno:P5252 a owl:Class ;\n\towl:complementOf _:af8d2087e237b7efd42011dd38f5e9b1 .\n\n_:af8d2087e237b7efd42011dd38f5e9b1 a owl:Restriction ;\n\towl:onProperty wdt:P5252 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21856107 a wikibase:Item ;\n\trdfs:label \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\tskos:prefLabel \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\tschema:name \"Species Plantarum. 1. Auflage, Band 2\"@de ;\n\trdfs:label \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tskos:prefLabel \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tschema:name \"Species Plantarum. 1st Edition, Volume 2\"@en ;\n\tschema:description \"book by Carolus Linnaeus\"@en .\n\nwd:P248 a wikibase:Property ;\n\trdfs:label \"nachgewiesen in\"@de ;\n\tskos:prefLabel \"nachgewiesen in\"@de ;\n\tschema:name \"nachgewiesen in\"@de ;\n\trdfs:label \"stated in\"@en ;\n\tskos:prefLabel \"stated in\"@en ;\n\tschema:name \"stated in\"@en ;\n\tschema:description \"für die Angabe der Quelle der Behauptung im Fundstellenfeld\"@de,\n\t\t\"to be used in the references field to refer to the information document or database in which a claim is made; for qualifiers use P805; for the type of document in which a claim is made use P3865\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P248 ;\n\twikibase:claim p:P248 ;\n\twikibase:statementProperty ps:P248 ;\n\twikibase:statementValue psv:P248 ;\n\twikibase:qualifier pq:P248 ;\n\twikibase:qualifierValue pqv:P248 ;\n\twikibase:reference pr:P248 ;\n\twikibase:referenceValue prv:P248 ;\n\twikibase:novalue wdno:P248 .\n\np:P248 a owl:ObjectProperty .\n\npsv:P248 a owl:ObjectProperty .\n\npqv:P248 a owl:ObjectProperty .\n\nprv:P248 a owl:ObjectProperty .\n\nwdt:P248 a owl:ObjectProperty .\n\nps:P248 a owl:ObjectProperty .\n\npq:P248 a owl:ObjectProperty .\n\npr:P248 a owl:ObjectProperty .\n\nwdno:P248 a owl:Class ;\n\towl:complementOf _:a2b31078afaf5caae811f4ac846f5f35 .\n\n_:a2b31078afaf5caae811f4ac846f5f35 a owl:Restriction ;\n\towl:onProperty wdt:P248 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P304 a wikibase:Property ;\n\trdfs:label \"Seite(n)\"@de ;\n\tskos:prefLabel \"Seite(n)\"@de ;\n\tschema:name \"Seite(n)\"@de ;\n\trdfs:label \"page(s)\"@en ;\n\tskos:prefLabel \"page(s)\"@en ;\n\tschema:name \"page(s)\"@en ;\n\tschema:description \"Seitenangabe für eine Fundstelle\"@de,\n\t\t\"page number of source referenced for statement. Note \\\"column(s)\\\" (P3903) and \\\"folio(s)\\\" (P7416) for other numbering systems\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P304 ;\n\twikibase:claim p:P304 ;\n\twikibase:statementProperty ps:P304 ;\n\twikibase:statementValue psv:P304 ;\n\twikibase:qualifier pq:P304 ;\n\twikibase:qualifierValue pqv:P304 ;\n\twikibase:reference pr:P304 ;\n\twikibase:referenceValue prv:P304 ;\n\twikibase:novalue wdno:P304 .\n\np:P304 a owl:ObjectProperty .\n\npsv:P304 a owl:ObjectProperty .\n\npqv:P304 a owl:ObjectProperty .\n\nprv:P304 a owl:ObjectProperty .\n\nwdt:P304 a owl:DatatypeProperty .\n\nps:P304 a owl:DatatypeProperty .\n\npq:P304 a owl:DatatypeProperty .\n\npr:P304 a owl:DatatypeProperty .\n\nwdno:P304 a owl:Class ;\n\towl:complementOf _:49f6b1d5994a21499c8de6a108f33226 .\n\n_:49f6b1d5994a21499c8de6a108f33226 a owl:Restriction ;\n\towl:onProperty wdt:P304 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P687 a wikibase:Property ;\n\trdfs:label \"BHL-Seiten-ID\"@de ;\n\tskos:prefLabel \"BHL-Seiten-ID\"@de ;\n\tschema:name \"BHL-Seiten-ID\"@de ;\n\trdfs:label \"BHL page ID\"@en ;\n\tskos:prefLabel \"BHL page ID\"@en ;\n\tschema:name \"BHL page ID\"@en ;\n\tschema:description \"Identifikator einer Seite in der Biodiversity Heritage Library (BHL)\"@de,\n\t\t\"identifier for a page in the Biodiversity Heritage Library (BHL)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P687 ;\n\twikibase:claim p:P687 ;\n\twikibase:statementProperty ps:P687 ;\n\twikibase:statementValue psv:P687 ;\n\twikibase:qualifier pq:P687 ;\n\twikibase:qualifierValue pqv:P687 ;\n\twikibase:reference pr:P687 ;\n\twikibase:referenceValue prv:P687 ;\n\twikibase:novalue wdno:P687 ;\n\twikibase:directClaimNormalized wdtn:P687 ;\n\twikibase:statementValueNormalized psn:P687 ;\n\twikibase:qualifierValueNormalized pqn:P687 ;\n\twikibase:referenceValueNormalized prn:P687 .\n\np:P687 a owl:ObjectProperty .\n\npsv:P687 a owl:ObjectProperty .\n\npqv:P687 a owl:ObjectProperty .\n\nprv:P687 a owl:ObjectProperty .\n\nwdt:P687 a owl:DatatypeProperty .\n\nps:P687 a owl:DatatypeProperty .\n\npq:P687 a owl:DatatypeProperty .\n\npr:P687 a owl:DatatypeProperty .\n\npsn:P687 a owl:ObjectProperty .\n\npqn:P687 a owl:ObjectProperty .\n\nprn:P687 a owl:ObjectProperty .\n\nwdtn:P687 a owl:ObjectProperty .\n\nwdno:P687 a owl:Class ;\n\towl:complementOf _:7abca516490bbd632bf135aef23e1bea .\n\n_:7abca516490bbd632bf135aef23e1bea a owl:Restriction ;\n\towl:onProperty wdt:P687 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1361864 a wikibase:Item ;\n\trdfs:label \"Erstbeschreibung\"@de ;\n\tskos:prefLabel \"Erstbeschreibung\"@de ;\n\tschema:name \"Erstbeschreibung\"@de ;\n\trdfs:label \"first valid description\"@en ;\n\tskos:prefLabel \"first valid description\"@en ;\n\tschema:name \"first valid description\"@en ;\n\tschema:description \"erstmalige, bestimmten formalen Ansprüchen genügende wissenschaftliche Beschreibung eines der Wissenschaft bisher unbekannten Lebewesens\"@de,\n\t\t\"formal description of a new taxon\"@en .\n\nwd:P6184 a wikibase:Property ;\n\trdfs:label \"Nachweis fungiert als\"@de ;\n\tskos:prefLabel \"Nachweis fungiert als\"@de ;\n\tschema:name \"Nachweis fungiert als\"@de ;\n\trdfs:label \"reference has role\"@en ;\n\tskos:prefLabel \"reference has role\"@en ;\n\tschema:name \"reference has role\"@en ;\n\tschema:description \"die Rolle oder Besonderheit der angegebenen Referenz\"@de,\n\t\t\"role, or specific nature, of the given reference\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6184 ;\n\twikibase:claim p:P6184 ;\n\twikibase:statementProperty ps:P6184 ;\n\twikibase:statementValue psv:P6184 ;\n\twikibase:qualifier pq:P6184 ;\n\twikibase:qualifierValue pqv:P6184 ;\n\twikibase:reference pr:P6184 ;\n\twikibase:referenceValue prv:P6184 ;\n\twikibase:novalue wdno:P6184 .\n\np:P6184 a owl:ObjectProperty .\n\npsv:P6184 a owl:ObjectProperty .\n\npqv:P6184 a owl:ObjectProperty .\n\nprv:P6184 a owl:ObjectProperty .\n\nwdt:P6184 a owl:ObjectProperty .\n\nps:P6184 a owl:ObjectProperty .\n\npq:P6184 a owl:ObjectProperty .\n\npr:P6184 a owl:ObjectProperty .\n\nwdno:P6184 a owl:Class ;\n\towl:complementOf _:6c69348bdc0fb40f4302205367e7575d .\n\n_:6c69348bdc0fb40f4302205367e7575d a owl:Restriction ;\n\towl:onProperty wdt:P6184 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q115962546 a wikibase:Item ;\n\trdfs:label \"Rote Liste der IUCN 2022.2\"@de ;\n\tskos:prefLabel \"Rote Liste der IUCN 2022.2\"@de ;\n\tschema:name \"Rote Liste der IUCN 2022.2\"@de ;\n\trdfs:label \"The IUCN Red List of Threatened Species 2022.2\"@en ;\n\tskos:prefLabel \"The IUCN Red List of Threatened Species 2022.2\"@en ;\n\tschema:name \"The IUCN Red List of Threatened Species 2022.2\"@en .\n\nwd:P813 a wikibase:Property ;\n\trdfs:label \"abgerufen am\"@de ;\n\tskos:prefLabel \"abgerufen am\"@de ;\n\tschema:name \"abgerufen am\"@de ;\n\trdfs:label \"retrieved\"@en ;\n\tskos:prefLabel \"retrieved\"@en ;\n\tschema:name \"retrieved\"@en ;\n\tschema:description \"Datum, an dem die belegte Information zuletzt geprüft wurde\"@de,\n\t\t\"date or point in time that information was retrieved from a database or website (for use in online sources)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P813 ;\n\twikibase:claim p:P813 ;\n\twikibase:statementProperty ps:P813 ;\n\twikibase:statementValue psv:P813 ;\n\twikibase:qualifier pq:P813 ;\n\twikibase:qualifierValue pqv:P813 ;\n\twikibase:reference pr:P813 ;\n\twikibase:referenceValue prv:P813 ;\n\twikibase:novalue wdno:P813 .\n\np:P813 a owl:ObjectProperty .\n\npsv:P813 a owl:ObjectProperty .\n\npqv:P813 a owl:ObjectProperty .\n\nprv:P813 a owl:ObjectProperty .\n\nwdt:P813 a owl:DatatypeProperty .\n\nps:P813 a owl:DatatypeProperty .\n\npq:P813 a owl:DatatypeProperty .\n\npr:P813 a owl:DatatypeProperty .\n\nwdno:P813 a owl:Class ;\n\towl:complementOf _:a84dea0fd38ed74f926ea4bdef778770 .\n\n_:a84dea0fd38ed74f926ea4bdef778770 a owl:Restriction ;\n\towl:onProperty wdt:P813 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1043 a wikibase:Item ;\n\trdfs:label \"Carl von Linné\"@de ;\n\tskos:prefLabel \"Carl von Linné\"@de ;\n\tschema:name \"Carl von Linné\"@de ;\n\trdfs:label \"Carl Linnaeus\"@mul ;\n\tskos:prefLabel \"Carl Linnaeus\"@mul ;\n\tschema:name \"Carl Linnaeus\"@mul ;\n\trdfs:label \"Carl Linnaeus\"@en ;\n\tskos:prefLabel \"Carl Linnaeus\"@en ;\n\tschema:name \"Carl Linnaeus\"@en ;\n\tschema:description \"schwedischer Naturwissenschaftler, der die Grundlagen der modernen Taxonomie entwickelte\"@de,\n\t\t\"Swedish botanist, physician, and zoologist (1707–1778)\"@en .\n\nwd:P405 a wikibase:Property ;\n\trdfs:label \"Autor(en) des Taxons\"@de ;\n\tskos:prefLabel \"Autor(en) des Taxons\"@de ;\n\tschema:name \"Autor(en) des Taxons\"@de ;\n\trdfs:label \"taxon author\"@en ;\n\tskos:prefLabel \"taxon author\"@en ;\n\tschema:name \"taxon author\"@en ;\n\tschema:description \"Autor(en) des nomenklatorischen Namens\"@de,\n\t\t\"the author(s) that (optionally) may be cited with the scientific name\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P405 ;\n\twikibase:claim p:P405 ;\n\twikibase:statementProperty ps:P405 ;\n\twikibase:statementValue psv:P405 ;\n\twikibase:qualifier pq:P405 ;\n\twikibase:qualifierValue pqv:P405 ;\n\twikibase:reference pr:P405 ;\n\twikibase:referenceValue prv:P405 ;\n\twikibase:novalue wdno:P405 .\n\np:P405 a owl:ObjectProperty .\n\npsv:P405 a owl:ObjectProperty .\n\npqv:P405 a owl:ObjectProperty .\n\nprv:P405 a owl:ObjectProperty .\n\nwdt:P405 a owl:ObjectProperty .\n\nps:P405 a owl:ObjectProperty .\n\npq:P405 a owl:ObjectProperty .\n\npr:P405 a owl:ObjectProperty .\n\nwdno:P405 a owl:Class ;\n\towl:complementOf _:09743fef9c80f246289e32d731a678be .\n\n_:09743fef9c80f246289e32d731a678be a owl:Restriction ;\n\towl:onProperty wdt:P405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P574 a wikibase:Property ;\n\trdfs:label \"veröffentlicht im Jahr\"@de ;\n\tskos:prefLabel \"veröffentlicht im Jahr\"@de ;\n\tschema:name \"veröffentlicht im Jahr\"@de ;\n\trdfs:label \"year of publication of scientific name for taxon\"@en ;\n\tskos:prefLabel \"year of publication of scientific name for taxon\"@en ;\n\tschema:name \"year of publication of scientific name for taxon\"@en ;\n\tschema:description \"Jahr, in dem die Erstbeschreibung oder Umkombination veröffentlicht wurde\"@de,\n\t\t\"year when this taxon was formally described (for animals); year when this taxon name was formally established (for plants)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P574 ;\n\twikibase:claim p:P574 ;\n\twikibase:statementProperty ps:P574 ;\n\twikibase:statementValue psv:P574 ;\n\twikibase:qualifier pq:P574 ;\n\twikibase:qualifierValue pqv:P574 ;\n\twikibase:reference pr:P574 ;\n\twikibase:referenceValue prv:P574 ;\n\twikibase:novalue wdno:P574 .\n\np:P574 a owl:ObjectProperty .\n\npsv:P574 a owl:ObjectProperty .\n\npqv:P574 a owl:ObjectProperty .\n\nprv:P574 a owl:ObjectProperty .\n\nwdt:P574 a owl:DatatypeProperty .\n\nps:P574 a owl:DatatypeProperty .\n\npq:P574 a owl:DatatypeProperty .\n\npr:P574 a owl:DatatypeProperty .\n\nwdno:P574 a owl:Class ;\n\towl:complementOf _:9ed7c35cce0b9f9b47cc5f1822000494 .\n\n_:9ed7c35cce0b9f9b47cc5f1822000494 a owl:Restriction ;\n\towl:onProperty wdt:P574 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q10884 a wikibase:Item ;\n\trdfs:label \"Baum\"@de ;\n\tskos:prefLabel \"Baum\"@de ;\n\tschema:name \"Baum\"@de ;\n\trdfs:label \"tree\"@en ;\n\tskos:prefLabel \"tree\"@en ;\n\tschema:name \"tree\"@en ;\n\tschema:description \"eine verholzte Pflanze, die aus einer Wurzel, einem Stamm und einer Krone besteht\"@de,\n\t\t\"perennial woody plant\"@en .\n\nwd:P180 a wikibase:Property ;\n\trdfs:label \"Motiv\"@de ;\n\tskos:prefLabel \"Motiv\"@de ;\n\tschema:name \"Motiv\"@de ;\n\trdfs:label \"depicts\"@en ;\n\tskos:prefLabel \"depicts\"@en ;\n\tschema:name \"depicts\"@en ;\n\tschema:description \"Gegenstand der Darstellung (z. B. Person, Ort, Objekt oder Ereignis), siehe auch Schlagwort (P921)\"@de,\n\t\t\"entity visually depicted in an image, literarily described in a work, or otherwise incorporated into an audiovisual or other medium; see also P921, 'main subject'\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P180 ;\n\twikibase:claim p:P180 ;\n\twikibase:statementProperty ps:P180 ;\n\twikibase:statementValue psv:P180 ;\n\twikibase:qualifier pq:P180 ;\n\twikibase:qualifierValue pqv:P180 ;\n\twikibase:reference pr:P180 ;\n\twikibase:referenceValue prv:P180 ;\n\twikibase:novalue wdno:P180 .\n\np:P180 a owl:ObjectProperty .\n\npsv:P180 a owl:ObjectProperty .\n\npqv:P180 a owl:ObjectProperty .\n\nprv:P180 a owl:ObjectProperty .\n\nwdt:P180 a owl:ObjectProperty .\n\nps:P180 a owl:ObjectProperty .\n\npq:P180 a owl:ObjectProperty .\n\npr:P180 a owl:ObjectProperty .\n\nwdno:P180 a owl:Class ;\n\towl:complementOf _:20c681d1555b7d642c63c655f8ceb64a .\n\n_:20c681d1555b7d642c63c655f8ceb64a a owl:Restriction ;\n\towl:onProperty wdt:P180 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1364 a wikibase:Item ;\n\trdfs:label \"Frucht\"@de ;\n\tskos:prefLabel \"Frucht\"@de ;\n\tschema:name \"Frucht\"@de ;\n\trdfs:label \"fruit\"@en ;\n\tskos:prefLabel \"fruit\"@en ;\n\tschema:name \"fruit\"@en ;\n\tschema:description \"Blüte im Zustand der Samenreife\"@de,\n\t\t\"botanical term for the mature ovary or ovaries of one or more flowers. For foods commonly known as fruit, use Q3314483\"@en .\n\nwd:P5961 a wikibase:Property ;\n\trdfs:label \"dargestellter Teil\"@de ;\n\tskos:prefLabel \"dargestellter Teil\"@de ;\n\tschema:name \"dargestellter Teil\"@de ;\n\trdfs:label \"depicted part\"@en ;\n\tskos:prefLabel \"depicted part\"@en ;\n\tschema:name \"depicted part\"@en ;\n\tschema:description \"Zur Verwendung als Qualifikator von \\\"Motiv\\\" (P180)\"@de,\n\t\t\"use as qualifier for \\\"depicts\\\" (P180) or image (P18)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5961 ;\n\twikibase:claim p:P5961 ;\n\twikibase:statementProperty ps:P5961 ;\n\twikibase:statementValue psv:P5961 ;\n\twikibase:qualifier pq:P5961 ;\n\twikibase:qualifierValue pqv:P5961 ;\n\twikibase:reference pr:P5961 ;\n\twikibase:referenceValue prv:P5961 ;\n\twikibase:novalue wdno:P5961 .\n\np:P5961 a owl:ObjectProperty .\n\npsv:P5961 a owl:ObjectProperty .\n\npqv:P5961 a owl:ObjectProperty .\n\nprv:P5961 a owl:ObjectProperty .\n\nwdt:P5961 a owl:ObjectProperty .\n\nps:P5961 a owl:ObjectProperty .\n\npq:P5961 a owl:ObjectProperty .\n\npr:P5961 a owl:ObjectProperty .\n\nwdno:P5961 a owl:Class ;\n\towl:complementOf _:d93d7c0b22e00f757b773c6b3a5ac203 .\n\n_:d93d7c0b22e00f757b773c6b3a5ac203 a owl:Restriction ;\n\towl:onProperty wdt:P5961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q3796486 a wikibase:Item ;\n\trdfs:label \"Botanische Illustration\"@de ;\n\tskos:prefLabel \"Botanische Illustration\"@de ;\n\tschema:name \"Botanische Illustration\"@de ;\n\trdfs:label \"botanical illustration\"@en ;\n\tskos:prefLabel \"botanical illustration\"@en ;\n\tschema:name \"botanical illustration\"@en ;\n\tschema:description \"Zeichnung oder Gemälde von Pflanzen und ihrer Pflanzenteile\"@de,\n\t\t\"drawing or painted image of plants and their components\"@en .\n\nwd:P3831 a wikibase:Property ;\n\trdfs:label \"Objekt der Aussage fungiert als\"@de ;\n\tskos:prefLabel \"Objekt der Aussage fungiert als\"@de ;\n\tschema:name \"Objekt der Aussage fungiert als\"@de ;\n\trdfs:label \"object of statement has role\"@en ;\n\tskos:prefLabel \"object of statement has role\"@en ;\n\tschema:name \"object of statement has role\"@en ;\n\tschema:description \"Rolle des Objekts der Aussage im konkreten Zusammenhang. Für die Rolle des Subjekts P2868 verwenden\"@de,\n\t\t\"(qualifier) role held by the predicate value (object) of a statement in the context of that statement; for the role of the item the statement appears on (subject), use P2868\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3831 ;\n\twikibase:claim p:P3831 ;\n\twikibase:statementProperty ps:P3831 ;\n\twikibase:statementValue psv:P3831 ;\n\twikibase:qualifier pq:P3831 ;\n\twikibase:qualifierValue pqv:P3831 ;\n\twikibase:reference pr:P3831 ;\n\twikibase:referenceValue prv:P3831 ;\n\twikibase:novalue wdno:P3831 .\n\np:P3831 a owl:ObjectProperty .\n\npsv:P3831 a owl:ObjectProperty .\n\npqv:P3831 a owl:ObjectProperty .\n\nprv:P3831 a owl:ObjectProperty .\n\nwdt:P3831 a owl:ObjectProperty .\n\nps:P3831 a owl:ObjectProperty .\n\npq:P3831 a owl:ObjectProperty .\n\npr:P3831 a owl:ObjectProperty .\n\nwdno:P3831 a owl:Class ;\n\towl:complementOf _:4941dbdb9a38c5a500b05366e45fe45d .\n\n_:4941dbdb9a38c5a500b05366e45fe45d a owl:Restriction ;\n\towl:onProperty wdt:P3831 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q61726742 a wikibase:Item ;\n\trdfs:label \"herbarium specimen\"@en ;\n\tskos:prefLabel \"herbarium specimen\"@en ;\n\tschema:name \"herbarium specimen\"@en ;\n\tschema:description \"specimen housed in a herbarium\"@en .\n\nwd:Q8447 a wikibase:Item ;\n\trdfs:label \"französischsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"französischsprachige Wikipedia\"@de ;\n\tschema:name \"französischsprachige Wikipedia\"@de ;\n\trdfs:label \"French Wikipedia\"@en ;\n\tskos:prefLabel \"French Wikipedia\"@en ;\n\tschema:name \"French Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in französischer Sprache\"@de,\n\t\t\"French-language edition of Wikipedia\"@en .\n\nwd:P143 a wikibase:Property ;\n\trdfs:label \"importiert aus Wikimedia-Projekt\"@de ;\n\tskos:prefLabel \"importiert aus Wikimedia-Projekt\"@de ;\n\tschema:name \"importiert aus Wikimedia-Projekt\"@de ;\n\trdfs:label \"imported from Wikimedia project\"@en ;\n\tskos:prefLabel \"imported from Wikimedia project\"@en ;\n\tschema:name \"imported from Wikimedia project\"@en ;\n\tschema:description \"Angaben übernommen aus (nur für Fundstellen)\"@de,\n\t\t\"source of this claim's value; used in references section by bots or humans importing data from Wikimedia projects\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P143 ;\n\twikibase:claim p:P143 ;\n\twikibase:statementProperty ps:P143 ;\n\twikibase:statementValue psv:P143 ;\n\twikibase:qualifier pq:P143 ;\n\twikibase:qualifierValue pqv:P143 ;\n\twikibase:reference pr:P143 ;\n\twikibase:referenceValue prv:P143 ;\n\twikibase:novalue wdno:P143 .\n\np:P143 a owl:ObjectProperty .\n\npsv:P143 a owl:ObjectProperty .\n\npqv:P143 a owl:ObjectProperty .\n\nprv:P143 a owl:ObjectProperty .\n\nwdt:P143 a owl:ObjectProperty .\n\nps:P143 a owl:ObjectProperty .\n\npq:P143 a owl:ObjectProperty .\n\npr:P143 a owl:ObjectProperty .\n\nwdno:P143 a owl:Class ;\n\towl:complementOf _:66a2156e9cbfe8d655274b862fca1b59 .\n\n_:66a2156e9cbfe8d655274b862fca1b59 a owl:Restriction ;\n\towl:onProperty wdt:P143 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q12159796 a wikibase:Item ;\n\trdfs:label \"Taxonomiedatenbank des NCBI\"@de ;\n\tskos:prefLabel \"Taxonomiedatenbank des NCBI\"@de ;\n\tschema:name \"Taxonomiedatenbank des NCBI\"@de ;\n\trdfs:label \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tskos:prefLabel \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:name \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:description \"Taxonomiedatenbank für Molekularbiologie\"@de,\n\t\t\"curated classification and nomenclature for all of the organisms in the public sequence databases\"@en .\n\nwd:Q82575 a wikibase:Item ;\n\trdfs:label \"Integrated Taxonomic Information System\"@de ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@de ;\n\tschema:name \"Integrated Taxonomic Information System\"@de ;\n\trdfs:label \"Integrated Taxonomic Information System\"@en ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@en ;\n\tschema:name \"Integrated Taxonomic Information System\"@en ;\n\tschema:description \"Projekt zur Standardisierung und Bereitstellung taxonomischer Informationen\"@de,\n\t\t\"authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world\"@en .\n\nwd:Q15241312 a wikibase:Item ;\n\trdfs:label \"Freebase-Datendump\"@de ;\n\tskos:prefLabel \"Freebase-Datendump\"@de ;\n\tschema:name \"Freebase-Datendump\"@de ;\n\trdfs:label \"Freebase Data Dumps\"@en ;\n\tskos:prefLabel \"Freebase Data Dumps\"@en ;\n\tschema:name \"Freebase Data Dumps\"@en ;\n\tschema:description \"Datenbankdumps des Google Knowledge Graph\"@de,\n\t\t\"dumps of the public part of Google's Knowledge Graph\"@en .\n\nwd:P577 a wikibase:Property ;\n\trdfs:label \"Veröffentlichungsdatum\"@de ;\n\tskos:prefLabel \"Veröffentlichungsdatum\"@de ;\n\tschema:name \"Veröffentlichungsdatum\"@de ;\n\trdfs:label \"publication date\"@en ;\n\tskos:prefLabel \"publication date\"@en ;\n\tschema:name \"publication date\"@en ;\n\tschema:description \"Zeitpunkt, an dem ein Werk (zuerst) veröffentlicht wurde; (aktualisierte Fassungen/Versionen haben ein eigenes Veröffentlichungsdatum)\"@de,\n\t\t\"date or point in time when a work or product was first published or released\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P577 ;\n\twikibase:claim p:P577 ;\n\twikibase:statementProperty ps:P577 ;\n\twikibase:statementValue psv:P577 ;\n\twikibase:qualifier pq:P577 ;\n\twikibase:qualifierValue pqv:P577 ;\n\twikibase:reference pr:P577 ;\n\twikibase:referenceValue prv:P577 ;\n\twikibase:novalue wdno:P577 .\n\np:P577 a owl:ObjectProperty .\n\npsv:P577 a owl:ObjectProperty .\n\npqv:P577 a owl:ObjectProperty .\n\nprv:P577 a owl:ObjectProperty .\n\nwdt:P577 a owl:DatatypeProperty .\n\nps:P577 a owl:DatatypeProperty .\n\npq:P577 a owl:DatatypeProperty .\n\npr:P577 a owl:DatatypeProperty .\n\nwdno:P577 a owl:Class ;\n\towl:complementOf _:eca5fcd2c546d0e0c20e05f61e0aa797 .\n\n_:eca5fcd2c546d0e0c20e05f61e0aa797 a owl:Restriction ;\n\towl:onProperty wdt:P577 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q48183 a wikibase:Item ;\n\trdfs:label \"deutschsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"deutschsprachige Wikipedia\"@de ;\n\tschema:name \"deutschsprachige Wikipedia\"@de ;\n\trdfs:label \"German Wikipedia\"@en ;\n\tskos:prefLabel \"German Wikipedia\"@en ;\n\tschema:name \"German Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in deutscher Sprache\"@de,\n\t\t\"German-language edition of Wikipedia\"@en .\n\nwd:Q2578548 a wikibase:Item ;\n\trdfs:label \"Tropicos\"@de ;\n\tskos:prefLabel \"Tropicos\"@de ;\n\tschema:name \"Tropicos\"@de ;\n\trdfs:label \"Tropicos\"@mul ;\n\tskos:prefLabel \"Tropicos\"@mul ;\n\tschema:name \"Tropicos\"@mul ;\n\trdfs:label \"Tropicos\"@en ;\n\tskos:prefLabel \"Tropicos\"@en ;\n\tschema:name \"Tropicos\"@en ;\n\tschema:description \"database on tropical plants, mainly the ecozone Neotropica\"@en .\n\nwd:Q82486 a wikibase:Item ;\n\trdfs:label \"Encyclopedia of Life\"@mul ;\n\tskos:prefLabel \"Encyclopedia of Life\"@mul ;\n\tschema:name \"Encyclopedia of Life\"@mul ;\n\tschema:description \"ein Kooperationsprojekt zur Erstellung einer Enzyklopädie, die alle in der Wissenschaft bekannten lebenden Arten dokumentiert.\"@de,\n\t\t\"collaborative project intended to create an encyclopedia documenting all living species known to science\"@en .\n\nwd:Q15628808 a wikibase:Item ;\n\trdfs:label \"The Plant List 1.1\"@de ;\n\tskos:prefLabel \"The Plant List 1.1\"@de ;\n\tschema:name \"The Plant List 1.1\"@de ;\n\trdfs:label \"The Plant List 1.1\"@en ;\n\tskos:prefLabel \"The Plant List 1.1\"@en ;\n\tschema:name \"The Plant List 1.1\"@en ;\n\tschema:description \"enumeration\"@en .\n\nwd:Q1429295 a wikibase:Item ;\n\trdfs:label \"Flora of North America\"@de ;\n\tskos:prefLabel \"Flora of North America\"@de ;\n\tschema:name \"Flora of North America\"@de ;\n\trdfs:label \"Flora of North America\"@en ;\n\tskos:prefLabel \"Flora of North America\"@en ;\n\tschema:name \"Flora of North America\"@en ;\n\tschema:description \"mehrbändiges Werk über die Flora von Nordamerika\"@de,\n\t\t\"book, website, database\"@en .\n\nwd:Q19544711 a wikibase:Item ;\n\trdfs:label \"Vascular Plants of Canada\"@de ;\n\tskos:prefLabel \"Vascular Plants of Canada\"@de ;\n\tschema:name \"Vascular Plants of Canada\"@de ;\n\trdfs:label \"Database of Vascular Plants of Canada\"@en ;\n\tskos:prefLabel \"Database of Vascular Plants of Canada\"@en ;\n\tschema:name \"Database of Vascular Plants of Canada\"@en ;\n\tschema:description \"community contributed taxonomic checklist of all vascular plants of Canada, Saint Pierre and Miquelon, and Greenland\"@en .\n\nwd:Q5460442 a wikibase:Item ;\n\trdfs:label \"Flora of China\"@de ;\n\tskos:prefLabel \"Flora of China\"@de ;\n\tschema:name \"Flora of China\"@de ;\n\trdfs:label \"Flora of China\"@en ;\n\tskos:prefLabel \"Flora of China\"@en ;\n\tschema:name \"Flora of China\"@en ;\n\tschema:description \"mehrteilige Publikation über die chinesische Flora\"@de,\n\t\t\"English-language multi-volume book and online database\"@en .\n\nwd:Q19576476 a wikibase:Item ;\n\trdfs:label \"GRIN Taxonomie der Pflanzen\"@de ;\n\tskos:prefLabel \"GRIN Taxonomie der Pflanzen\"@de ;\n\tschema:name \"GRIN Taxonomie der Pflanzen\"@de ;\n\trdfs:label \"GRIN Taxonomy for Plants\"@en ;\n\tskos:prefLabel \"GRIN Taxonomy for Plants\"@en ;\n\tschema:name \"GRIN Taxonomy for Plants\"@en ;\n\tschema:description \"taxonomische Datenbank des Germplasm Resources Information Network (GRIN)\"@de,\n\t\t\"Germplasm Resources Information Network\"@en .\n\nwd:Q19636200 a wikibase:Item ;\n\trdfs:label \"USDA Plants Database\"@de ;\n\tskos:prefLabel \"USDA Plants Database\"@de ;\n\tschema:name \"USDA Plants Database\"@de ;\n\trdfs:label \"United States Department of Agriculture Plants Database\"@en ;\n\tskos:prefLabel \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:name \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:description \"database of plants found in the USA\"@en .\n\nwd:Q1531570 a wikibase:Item ;\n\trdfs:label \"Global Biodiversity Information Facility\"@de ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@de ;\n\tschema:name \"Global Biodiversity Information Facility\"@de ;\n\trdfs:label \"Global Biodiversity Information Facility\"@mul ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@mul ;\n\tschema:name \"Global Biodiversity Information Facility\"@mul ;\n\trdfs:label \"Global Biodiversity Information Facility\"@en ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@en ;\n\tschema:name \"Global Biodiversity Information Facility\"@en ;\n\tschema:description \"internationale Organisation\"@de,\n\t\t\"aggregator of scientific data on biodiversity; data portal\"@en .\n\nwd:Q20425914 a wikibase:Item ;\n\trdfs:label \"Dyntaxa\"@de ;\n\tskos:prefLabel \"Dyntaxa\"@de ;\n\tschema:name \"Dyntaxa\"@de ;\n\trdfs:label \"Dyntaxa\"@en ;\n\tskos:prefLabel \"Dyntaxa\"@en ;\n\tschema:name \"Dyntaxa\"@en ;\n\tschema:description \"Schwedische Taxonomie-Datenbank\"@de,\n\t\t\"Swedish taxonomy database\"@en .\n\nwd:Q20862705 a wikibase:Item ;\n\trdfs:label \"African Plant Database\"@de ;\n\tskos:prefLabel \"African Plant Database\"@de ;\n\tschema:name \"African Plant Database\"@de ;\n\trdfs:label \"African Plant Database\"@en ;\n\tskos:prefLabel \"African Plant Database\"@en ;\n\tschema:name \"African Plant Database\"@en .\n\nwd:Q23893915 a wikibase:Item ;\n\trdfs:label \"New Zealand Organisms Register\"@de ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@de ;\n\tschema:name \"New Zealand Organisms Register\"@de ;\n\trdfs:label \"New Zealand Organisms Register\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@en ;\n\tschema:name \"New Zealand Organisms Register\"@en ;\n\tschema:description \"Datenbank\"@de,\n\t\t\"catalogue of scientific names of New Zealand biota\"@en .\n\nwd:Q32059 a wikibase:Item ;\n\trdfs:label \"Rote Liste gefährdeter Arten\"@de ;\n\tskos:prefLabel \"Rote Liste gefährdeter Arten\"@de ;\n\tschema:name \"Rote Liste gefährdeter Arten\"@de ;\n\trdfs:label \"IUCN Red List\"@en ;\n\tskos:prefLabel \"IUCN Red List\"@en ;\n\tschema:name \"IUCN Red List\"@en ;\n\tschema:description \"Liste weltweit gefährdeter Tier- und Pflanzenarten\"@de,\n\t\t\"inventory of the global conservation status of biological species\"@en .\n\nwd:Q26936509 a wikibase:Item ;\n\trdfs:label \"TAXREF v9.0\"@de ;\n\tskos:prefLabel \"TAXREF v9.0\"@de ;\n\tschema:name \"TAXREF v9.0\"@de ;\n\trdfs:label \"TAXREF v9.0\"@en ;\n\tskos:prefLabel \"TAXREF v9.0\"@en ;\n\tschema:name \"TAXREF v9.0\"@en .\n\nwd:Q45029859 a wikibase:Item ;\n\trdfs:label \"TAXREF v10.0\"@de ;\n\tskos:prefLabel \"TAXREF v10.0\"@de ;\n\tschema:name \"TAXREF v10.0\"@de ;\n\trdfs:label \"TAXREF v10.0\"@en ;\n\tskos:prefLabel \"TAXREF v10.0\"@en ;\n\tschema:name \"TAXREF v10.0\"@en .\n\nwd:Q45029998 a wikibase:Item ;\n\trdfs:label \"TAXREF v11.0\"@de ;\n\tskos:prefLabel \"TAXREF v11.0\"@de ;\n\tschema:name \"TAXREF v11.0\"@de ;\n\trdfs:label \"TAXREF v11.0\"@en ;\n\tskos:prefLabel \"TAXREF v11.0\"@en ;\n\tschema:name \"TAXREF v11.0\"@en .\n\nwd:Q58035056 a wikibase:Item ;\n\trdfs:label \"TAXREF v12.0\"@de ;\n\tskos:prefLabel \"TAXREF v12.0\"@de ;\n\tschema:name \"TAXREF v12.0\"@de ;\n\trdfs:label \"TAXREF v12.0\"@en ;\n\tskos:prefLabel \"TAXREF v12.0\"@en ;\n\tschema:name \"TAXREF v12.0\"@en .\n\nwd:Q79844869 a wikibase:Item ;\n\trdfs:label \"TAXREF v13.0\"@de ;\n\tskos:prefLabel \"TAXREF v13.0\"@de ;\n\tschema:name \"TAXREF v13.0\"@de ;\n\trdfs:label \"TAXREF v13.0\"@en ;\n\tskos:prefLabel \"TAXREF v13.0\"@en ;\n\tschema:name \"TAXREF v13.0\"@en .\n\nwd:Q104290728 a wikibase:Item ;\n\trdfs:label \"TAXREF v14.0\"@de ;\n\tskos:prefLabel \"TAXREF v14.0\"@de ;\n\tschema:name \"TAXREF v14.0\"@de ;\n\trdfs:label \"TAXREF v14.0\"@en ;\n\tskos:prefLabel \"TAXREF v14.0\"@en ;\n\tschema:name \"TAXREF v14.0\"@en .\n\nwd:Q110438362 a wikibase:Item ;\n\trdfs:label \"TAXREF v15.0\"@de ;\n\tskos:prefLabel \"TAXREF v15.0\"@de ;\n\tschema:name \"TAXREF v15.0\"@de ;\n\trdfs:label \"TAXREF v15.0\"@en ;\n\tskos:prefLabel \"TAXREF v15.0\"@en ;\n\tschema:name \"TAXREF v15.0\"@en .\n\nwd:Q116008531 a wikibase:Item ;\n\trdfs:label \"TAXREF v16.0\"@de ;\n\tskos:prefLabel \"TAXREF v16.0\"@de ;\n\tschema:name \"TAXREF v16.0\"@de ;\n\trdfs:label \"TAXREF v16.0\"@en ;\n\tskos:prefLabel \"TAXREF v16.0\"@en ;\n\tschema:name \"TAXREF v16.0\"@en .\n\nwd:Q6970988 a wikibase:Item ;\n\trdfs:label \"National Biodiversity Network\"@de ;\n\tskos:prefLabel \"National Biodiversity Network\"@de ;\n\tschema:name \"National Biodiversity Network\"@de ;\n\trdfs:label \"National Biodiversity Network\"@en ;\n\tskos:prefLabel \"National Biodiversity Network\"@en ;\n\tschema:name \"National Biodiversity Network\"@en ;\n\tschema:description \"UK biodiversity database\"@en .\n\nwd:Q2246990 a wikibase:Item ;\n\trdfs:label \"Nederlands Soortenregister\"@de ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@de ;\n\tschema:name \"Nederlands Soortenregister\"@de ;\n\trdfs:label \"Nederlands Soortenregister\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@en ;\n\tschema:name \"Nederlands Soortenregister\"@en ;\n\tschema:description \"gibt einen Überblick über die Biodiversität der Niederlande\"@de,\n\t\t\"Dutch database of species\"@en .\n\nwd:Q8035497 a wikibase:Item ;\n\trdfs:label \"World Checklist of Selected Plant Families\"@de ;\n\tskos:prefLabel \"World Checklist of Selected Plant Families\"@de ;\n\tschema:name \"World Checklist of Selected Plant Families\"@de ;\n\trdfs:label \"World Checklist of Selected Plant Families\"@en ;\n\tskos:prefLabel \"World Checklist of Selected Plant Families\"@en ;\n\tschema:name \"World Checklist of Selected Plant Families\"@en ;\n\tschema:description \"project in Kew Gardens\"@en .\n\nwd:Q191168 a wikibase:Item ;\n\trdfs:label \"tschechischsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"tschechischsprachige Wikipedia\"@de ;\n\tschema:name \"tschechischsprachige Wikipedia\"@de ;\n\trdfs:label \"Czech Wikipedia\"@en ;\n\tskos:prefLabel \"Czech Wikipedia\"@en ;\n\tschema:name \"Czech Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in tschechischer Sprache\"@de,\n\t\t\"Czech-language edition of Wikipedia\"@en .\n\nwd:P1810 a wikibase:Property ;\n\trdfs:label \"genannt als\"@de ;\n\tskos:prefLabel \"genannt als\"@de ;\n\tschema:name \"genannt als\"@de ;\n\trdfs:label \"subject named as\"@en ;\n\tskos:prefLabel \"subject named as\"@en ;\n\tschema:name \"subject named as\"@en ;\n\tschema:description \"Name, unter dem ein Subjekt in einer Datenbank geführt wird oder als Mitwirkender an einem Werk genannt wird\"@de,\n\t\t\"name by which a subject is recorded in a database, mentioned as a contributor of a work, or is referred to in a particular context\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1810 ;\n\twikibase:claim p:P1810 ;\n\twikibase:statementProperty ps:P1810 ;\n\twikibase:statementValue psv:P1810 ;\n\twikibase:qualifier pq:P1810 ;\n\twikibase:qualifierValue pqv:P1810 ;\n\twikibase:reference pr:P1810 ;\n\twikibase:referenceValue prv:P1810 ;\n\twikibase:novalue wdno:P1810 .\n\np:P1810 a owl:ObjectProperty .\n\npsv:P1810 a owl:ObjectProperty .\n\npqv:P1810 a owl:ObjectProperty .\n\nprv:P1810 a owl:ObjectProperty .\n\nwdt:P1810 a owl:DatatypeProperty .\n\nps:P1810 a owl:DatatypeProperty .\n\npq:P1810 a owl:DatatypeProperty .\n\npr:P1810 a owl:DatatypeProperty .\n\nwdno:P1810 a owl:Class ;\n\towl:complementOf _:1d6e1ecf4f0164f6a3471dd66d38c9d8 .\n\n_:1d6e1ecf4f0164f6a3471dd66d38c9d8 a owl:Restriction ;\n\towl:onProperty wdt:P1810 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P585 a wikibase:Property ;\n\trdfs:label \"Zeitpunkt/Stand\"@de ;\n\tskos:prefLabel \"Zeitpunkt/Stand\"@de ;\n\tschema:name \"Zeitpunkt/Stand\"@de ;\n\trdfs:label \"point in time\"@en ;\n\tskos:prefLabel \"point in time\"@en ;\n\tschema:name \"point in time\"@en ;\n\tschema:description \"Moment, an dem etwas stattfand, existierte oder wahr war\"@de,\n\t\t\"date something took place, existed or a statement was true; for providing time use the \\\"refine date\\\" property (P4241)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P585 ;\n\twikibase:claim p:P585 ;\n\twikibase:statementProperty ps:P585 ;\n\twikibase:statementValue psv:P585 ;\n\twikibase:qualifier pq:P585 ;\n\twikibase:qualifierValue pqv:P585 ;\n\twikibase:reference pr:P585 ;\n\twikibase:referenceValue prv:P585 ;\n\twikibase:novalue wdno:P585 .\n\np:P585 a owl:ObjectProperty .\n\npsv:P585 a owl:ObjectProperty .\n\npqv:P585 a owl:ObjectProperty .\n\nprv:P585 a owl:ObjectProperty .\n\nwdt:P585 a owl:DatatypeProperty .\n\nps:P585 a owl:DatatypeProperty .\n\npq:P585 a owl:DatatypeProperty .\n\npr:P585 a owl:DatatypeProperty .\n\nwdno:P585 a owl:Class ;\n\towl:complementOf _:dd1c08307a09e1466ce90c482ad42ea9 .\n\n_:dd1c08307a09e1466ce90c482ad42ea9 a owl:Restriction ;\n\towl:onProperty wdt:P585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P854 a wikibase:Property ;\n\trdfs:label \"URL der Fundstelle\"@de ;\n\tskos:prefLabel \"URL der Fundstelle\"@de ;\n\tschema:name \"URL der Fundstelle\"@de ;\n\trdfs:label \"reference URL\"@en ;\n\tskos:prefLabel \"reference URL\"@en ;\n\tschema:name \"reference URL\"@en ;\n\tschema:description \"Internetadresse für Quellenangaben. Benutze P4656 für Interwiki-Links\"@de,\n\t\t\"should be used for Internet URLs as references. Use \\\"Wikimedia import URL\\\" (P4656) for imports from WMF sites\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P854 ;\n\twikibase:claim p:P854 ;\n\twikibase:statementProperty ps:P854 ;\n\twikibase:statementValue psv:P854 ;\n\twikibase:qualifier pq:P854 ;\n\twikibase:qualifierValue pqv:P854 ;\n\twikibase:reference pr:P854 ;\n\twikibase:referenceValue prv:P854 ;\n\twikibase:novalue wdno:P854 .\n\np:P854 a owl:ObjectProperty .\n\npsv:P854 a owl:ObjectProperty .\n\npqv:P854 a owl:ObjectProperty .\n\nprv:P854 a owl:ObjectProperty .\n\nwdt:P854 a owl:ObjectProperty .\n\nps:P854 a owl:ObjectProperty .\n\npq:P854 a owl:ObjectProperty .\n\npr:P854 a owl:ObjectProperty .\n\nwdno:P854 a owl:Class ;\n\towl:complementOf _:7317e7e5a3edc1980ecfe7616bb5fa1d .\n\n_:7317e7e5a3edc1980ecfe7616bb5fa1d a owl:Restriction ;\n\towl:onProperty wdt:P854 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q47542613 a wikibase:Item ;\n\trdfs:label \"Plants of the World Online\"@de ;\n\tskos:prefLabel \"Plants of the World Online\"@de ;\n\tschema:name \"Plants of the World Online\"@de ;\n\trdfs:label \"Plants of the World Online\"@en ;\n\tskos:prefLabel \"Plants of the World Online\"@en ;\n\tschema:name \"Plants of the World Online\"@en ;\n\tschema:description \"online database of the world's plants\"@en .\n\nwd:Q54859980 a wikibase:Item ;\n\trdfs:label \"Portál informačního systému ochrany přírody\"@en ;\n\tskos:prefLabel \"Portál informačního systému ochrany přírody\"@en ;\n\tschema:name \"Portál informačního systému ochrany přírody\"@en .\n\nwd:P1065 a wikibase:Property ;\n\trdfs:label \"URL des Archivs\"@de ;\n\tskos:prefLabel \"URL des Archivs\"@de ;\n\tschema:name \"URL des Archivs\"@de ;\n\trdfs:label \"archive URL\"@en ;\n\tskos:prefLabel \"archive URL\"@en ;\n\tschema:name \"archive URL\"@en ;\n\tschema:description \"Internetadresse (URL) zu dem archivierten Inhalt\"@de,\n\t\t\"URL to the archived web page specified with URL property\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1065 ;\n\twikibase:claim p:P1065 ;\n\twikibase:statementProperty ps:P1065 ;\n\twikibase:statementValue psv:P1065 ;\n\twikibase:qualifier pq:P1065 ;\n\twikibase:qualifierValue pqv:P1065 ;\n\twikibase:reference pr:P1065 ;\n\twikibase:referenceValue prv:P1065 ;\n\twikibase:novalue wdno:P1065 .\n\np:P1065 a owl:ObjectProperty .\n\npsv:P1065 a owl:ObjectProperty .\n\npqv:P1065 a owl:ObjectProperty .\n\nprv:P1065 a owl:ObjectProperty .\n\nwdt:P1065 a owl:ObjectProperty .\n\nps:P1065 a owl:ObjectProperty .\n\npq:P1065 a owl:ObjectProperty .\n\npr:P1065 a owl:ObjectProperty .\n\nwdno:P1065 a owl:Class ;\n\towl:complementOf _:03a90254ec54e448bc2aaf8d845e29f8 .\n\n_:03a90254ec54e448bc2aaf8d845e29f8 a owl:Restriction ;\n\towl:onProperty wdt:P1065 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2960 a wikibase:Property ;\n\trdfs:label \"Archivierungsdatum\"@de ;\n\tskos:prefLabel \"Archivierungsdatum\"@de ;\n\tschema:name \"Archivierungsdatum\"@de ;\n\trdfs:label \"archive date\"@en ;\n\tskos:prefLabel \"archive date\"@en ;\n\tschema:name \"archive date\"@en ;\n\tschema:description \"Datum, an dem ein Dokument archiviert wurde\"@de,\n\t\t\"date a document was archived\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2960 ;\n\twikibase:claim p:P2960 ;\n\twikibase:statementProperty ps:P2960 ;\n\twikibase:statementValue psv:P2960 ;\n\twikibase:qualifier pq:P2960 ;\n\twikibase:qualifierValue pqv:P2960 ;\n\twikibase:reference pr:P2960 ;\n\twikibase:referenceValue prv:P2960 ;\n\twikibase:novalue wdno:P2960 .\n\np:P2960 a owl:ObjectProperty .\n\npsv:P2960 a owl:ObjectProperty .\n\npqv:P2960 a owl:ObjectProperty .\n\nprv:P2960 a owl:ObjectProperty .\n\nwdt:P2960 a owl:DatatypeProperty .\n\nps:P2960 a owl:DatatypeProperty .\n\npq:P2960 a owl:DatatypeProperty .\n\npr:P2960 a owl:DatatypeProperty .\n\nwdno:P2960 a owl:Class ;\n\towl:complementOf _:e8842935d39a233def3d267ae3737d8c .\n\n_:e8842935d39a233def3d267ae3737d8c a owl:Restriction ;\n\towl:onProperty wdt:P2960 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q51885189 a wikibase:Item ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:description \"taxonomic database\"@en .\n\nwd:Q36578 a wikibase:Item ;\n\trdfs:label \"Gemeinsame Normdatei\"@de ;\n\tskos:prefLabel \"Gemeinsame Normdatei\"@de ;\n\tschema:name \"Gemeinsame Normdatei\"@de ;\n\trdfs:label \"Gemeinsame Normdatei\"@mul ;\n\tskos:prefLabel \"Gemeinsame Normdatei\"@mul ;\n\tschema:name \"Gemeinsame Normdatei\"@mul ;\n\trdfs:label \"Integrated Authority File\"@en ;\n\tskos:prefLabel \"Integrated Authority File\"@en ;\n\tschema:name \"Integrated Authority File\"@en ;\n\tschema:description \"internationale Normdatei zur Ansetzung von Namen und Sachbegriffen\"@de,\n\t\t\"German National Library authority file for personal names, subject headings and corporate bodies\"@en .\n\nwd:Q18912790 a wikibase:Item ;\n\trdfs:label \"Library of Congress Name Authority File\"@de ;\n\tskos:prefLabel \"Library of Congress Name Authority File\"@de ;\n\tschema:name \"Library of Congress Name Authority File\"@de ;\n\trdfs:label \"Library of Congress Name Authority File\"@en ;\n\tskos:prefLabel \"Library of Congress Name Authority File\"@en ;\n\tschema:name \"Library of Congress Name Authority File\"@en ;\n\tschema:description \"Normdatei zur Ansetzung von Personen, Körperschaften und Werktiteln\"@de,\n\t\t\"authoritative data for names of persons, organizations, events, places, and titles for subsequent uniform access to bibliographic resources\"@en .\n\nwd:Q58380943 a wikibase:Item ;\n\trdfs:label \"VicFlora\"@de ;\n\tskos:prefLabel \"VicFlora\"@de ;\n\tschema:name \"VicFlora\"@de ;\n\trdfs:label \"VicFlora\"@en ;\n\tskos:prefLabel \"VicFlora\"@en ;\n\tschema:name \"VicFlora\"@en ;\n\tschema:description \"Flora of Victoria, Australia online database\"@en .\n\nwd:Q167402 a wikibase:Item ;\n\trdfs:label \"Australian Plant Name Index\"@de ;\n\tskos:prefLabel \"Australian Plant Name Index\"@de ;\n\tschema:name \"Australian Plant Name Index\"@de ;\n\trdfs:label \"Australian Plant Name Index\"@en ;\n\tskos:prefLabel \"Australian Plant Name Index\"@en ;\n\tschema:name \"Australian Plant Name Index\"@en ;\n\tschema:description \"Botanische Online-Datenbank\"@de,\n\t\t\"database of Australian plant names\"@en .\n\nwd:Q20073251 a wikibase:Item ;\n\trdfs:label \"FloraWeb\"@de ;\n\tskos:prefLabel \"FloraWeb\"@de ;\n\tschema:name \"FloraWeb\"@de ;\n\trdfs:label \"FloraWeb\"@mul ;\n\tskos:prefLabel \"FloraWeb\"@mul ;\n\tschema:name \"FloraWeb\"@mul ;\n\trdfs:label \"FloraWeb\"@en ;\n\tskos:prefLabel \"FloraWeb\"@en ;\n\tschema:name \"FloraWeb\"@en ;\n\tschema:description \"Daten und Informationen zu Wildpflanzen Deutschlands\"@de .\n\nwd:Q374924 a wikibase:Item ;\n\trdfs:label \"European Nature Information System\"@de ;\n\tskos:prefLabel \"European Nature Information System\"@de ;\n\tschema:name \"European Nature Information System\"@de ;\n\trdfs:label \"European Nature Information System\"@en ;\n\tskos:prefLabel \"European Nature Information System\"@en ;\n\tschema:name \"European Nature Information System\"@en ;\n\tschema:description \"Datenbank zur Umweltberichterstattung\"@de .\n\nwd:Q12360981 a wikibase:Item ;\n\trdfs:label \"eBiodiversity\"@en ;\n\tskos:prefLabel \"eBiodiversity\"@en ;\n\tschema:name \"eBiodiversity\"@en ;\n\tschema:description \"portal for the taxa found in Estonia\"@en .\n\nwd:Q64007131 a wikibase:Item ;\n\trdfs:label \"Belgian Species List\"@de ;\n\tskos:prefLabel \"Belgian Species List\"@de ;\n\tschema:name \"Belgian Species List\"@de ;\n\trdfs:label \"Belgian Species List\"@en ;\n\tskos:prefLabel \"Belgian Species List\"@en ;\n\tschema:name \"Belgian Species List\"@en ;\n\tschema:description \"taxonomy database\"@en .\n\nwd:Q72729671 a wikibase:Item ;\n\trdfs:label \"Finnish Biodiversity Information Facility\"@de ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility\"@de ;\n\tschema:name \"Finnish Biodiversity Information Facility\"@de ;\n\trdfs:label \"Finnish Biodiversity Information Facility\"@en ;\n\tskos:prefLabel \"Finnish Biodiversity Information Facility\"@en ;\n\tschema:name \"Finnish Biodiversity Information Facility\"@en ;\n\tschema:description \"open access data repository for Finnish biodiversity information\"@en .\n\nwd:Q89345680 a wikibase:Item ;\n\trdfs:label \"YSO-Wikidata mapping project\"@en ;\n\tskos:prefLabel \"YSO-Wikidata mapping project\"@en ;\n\tschema:name \"YSO-Wikidata mapping project\"@en ;\n\tschema:description \"project where concepts of the Finnish General Ontology are matched with Wikidata equivalents\"@en .\n\nwd:Q64139102 a wikibase:Item ;\n\trdfs:label \"KBpedia\"@de ;\n\tskos:prefLabel \"KBpedia\"@de ;\n\tschema:name \"KBpedia\"@de ;\n\trdfs:label \"KBpedia\"@en ;\n\tskos:prefLabel \"KBpedia\"@en ;\n\tschema:name \"KBpedia\"@en ;\n\tschema:description \"Ontologie\"@de,\n\t\t\"free ontology aimed at making data and knowledge interoperable for machine learning\"@en .\n\nwd:Q77076820 a wikibase:Item ;\n\trdfs:label \"World Flora Online\"@de ;\n\tskos:prefLabel \"World Flora Online\"@de ;\n\tschema:name \"World Flora Online\"@de ;\n\trdfs:label \"World Flora Online\"@mul ;\n\tskos:prefLabel \"World Flora Online\"@mul ;\n\tschema:name \"World Flora Online\"@mul ;\n\trdfs:label \"World Flora Online\"@en ;\n\tskos:prefLabel \"World Flora Online\"@en ;\n\tschema:name \"World Flora Online\"@en ;\n\tschema:description \"Online-Florenwerk, Nachfolger der „Plant List“\"@de,\n\t\t\"online flora for plants\"@en .\n\nwd:Q57715373 a wikibase:Item ;\n\trdfs:label \"Red List of South African Plants\"@de ;\n\tskos:prefLabel \"Red List of South African Plants\"@de ;\n\tschema:name \"Red List of South African Plants\"@de ;\n\trdfs:label \"Red List of South African Plants\"@en ;\n\tskos:prefLabel \"Red List of South African Plants\"@en ;\n\tschema:name \"Red List of South African Plants\"@en ;\n\tschema:description \"list of national conservation statuses of South Africa's indigenous plants\"@en .\n\nwd:Q105527638 a wikibase:Item ;\n\trdfs:label \"Open Tree of Life, Version 3.2\"@de ;\n\tskos:prefLabel \"Open Tree of Life, Version 3.2\"@de ;\n\tschema:name \"Open Tree of Life, Version 3.2\"@de ;\n\trdfs:label \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tskos:prefLabel \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:name \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:description \"version of Open Tree of Life reference taxonomy\"@en .\n\nwd:Q107380242 a wikibase:Item ;\n\trdfs:label \"BDTFX v7.00\"@de ;\n\tskos:prefLabel \"BDTFX v7.00\"@de ;\n\tschema:name \"BDTFX v7.00\"@de ;\n\trdfs:label \"BDTFX v7.00\"@en ;\n\tskos:prefLabel \"BDTFX v7.00\"@en ;\n\tschema:name \"BDTFX v7.00\"@en .\n\nwd:Q107507571 a wikibase:Item ;\n\trdfs:label \"OpenAlex\"@de ;\n\tskos:prefLabel \"OpenAlex\"@de ;\n\tschema:name \"OpenAlex\"@de ;\n\trdfs:label \"OpenAlex\"@mul ;\n\tskos:prefLabel \"OpenAlex\"@mul ;\n\tschema:name \"OpenAlex\"@mul ;\n\trdfs:label \"OpenAlex\"@en ;\n\tskos:prefLabel \"OpenAlex\"@en ;\n\tschema:name \"OpenAlex\"@en ;\n\tschema:description \"freier Katalog wissenschaftlicher Arbeiten, Autoren, Institutionen, Veranstaltungsorte und Konzepte\"@de,\n\t\t\"open catalog of scholarly papers, authors, institutions, venues, and concepts\"@en .\n\nwd:Q114640452 a wikibase:Item .\n\nwd:P805 a wikibase:Property ;\n\trdfs:label \"beschreibendes Datenobjekt\"@de ;\n\tskos:prefLabel \"beschreibendes Datenobjekt\"@de ;\n\tschema:name \"beschreibendes Datenobjekt\"@de ;\n\trdfs:label \"statement is subject of\"@en ;\n\tskos:prefLabel \"statement is subject of\"@en ;\n\tschema:name \"statement is subject of\"@en ;\n\tschema:description \"(nur als Qualifikator) Datenobjekt zum Thema der Aussage\"@de,\n\t\t\"(qualifying) item that describes the relation identified in this statement\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P805 ;\n\twikibase:claim p:P805 ;\n\twikibase:statementProperty ps:P805 ;\n\twikibase:statementValue psv:P805 ;\n\twikibase:qualifier pq:P805 ;\n\twikibase:qualifierValue pqv:P805 ;\n\twikibase:reference pr:P805 ;\n\twikibase:referenceValue prv:P805 ;\n\twikibase:novalue wdno:P805 .\n\np:P805 a owl:ObjectProperty .\n\npsv:P805 a owl:ObjectProperty .\n\npqv:P805 a owl:ObjectProperty .\n\nprv:P805 a owl:ObjectProperty .\n\nwdt:P805 a owl:ObjectProperty .\n\nps:P805 a owl:ObjectProperty .\n\npq:P805 a owl:ObjectProperty .\n\npr:P805 a owl:ObjectProperty .\n\nwdno:P805 a owl:Class ;\n\towl:complementOf _:b0057da68fba9959eba43619c1638733 .\n\n_:b0057da68fba9959eba43619c1638733 a owl:Restriction ;\n\towl:onProperty wdt:P805 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q7737 a wikibase:Item ;\n\trdfs:label \"Russisch\"@de ;\n\tskos:prefLabel \"Russisch\"@de ;\n\tschema:name \"Russisch\"@de ;\n\trdfs:label \"Russian\"@en ;\n\tskos:prefLabel \"Russian\"@en ;\n\tschema:name \"Russian\"@en ;\n\tschema:description \"ostslawische Sprache\"@de,\n\t\t\"East Slavic language\"@en .\n\nwd:P407 a wikibase:Property ;\n\trdfs:label \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\tskos:prefLabel \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\tschema:name \"Sprache des Werks, Namens oder Begriffes\"@de ;\n\trdfs:label \"language of work or name\"@en ;\n\tskos:prefLabel \"language of work or name\"@en ;\n\tschema:name \"language of work or name\"@en ;\n\tschema:description \"zugeordnete menschliche Sprache (für Personen benutze P103 und P1412)\"@de,\n\t\t\"language associated with this creative work (such as books, shows, songs, broadcasts or websites) or a name (for persons use \\\"native language\\\" (P103) and \\\"languages spoken, written or signed\\\" (P1412))\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P407 ;\n\twikibase:claim p:P407 ;\n\twikibase:statementProperty ps:P407 ;\n\twikibase:statementValue psv:P407 ;\n\twikibase:qualifier pq:P407 ;\n\twikibase:qualifierValue pqv:P407 ;\n\twikibase:reference pr:P407 ;\n\twikibase:referenceValue prv:P407 ;\n\twikibase:novalue wdno:P407 .\n\np:P407 a owl:ObjectProperty .\n\npsv:P407 a owl:ObjectProperty .\n\npqv:P407 a owl:ObjectProperty .\n\nprv:P407 a owl:ObjectProperty .\n\nwdt:P407 a owl:ObjectProperty .\n\nps:P407 a owl:ObjectProperty .\n\npq:P407 a owl:ObjectProperty .\n\npr:P407 a owl:ObjectProperty .\n\nwdno:P407 a owl:Class ;\n\towl:complementOf _:7ecb658fb35d6b90057eeb2a2a932c62 .\n\n_:7ecb658fb35d6b90057eeb2a2a932c62 a owl:Restriction ;\n\towl:onProperty wdt:P407 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P478 a wikibase:Property ;\n\trdfs:label \"Band/Jahrgang\"@de ;\n\tskos:prefLabel \"Band/Jahrgang\"@de ;\n\tschema:name \"Band/Jahrgang\"@de ;\n\trdfs:label \"volume\"@en ;\n\tskos:prefLabel \"volume\"@en ;\n\tschema:name \"volume\"@en ;\n\tschema:description \"Nummer eines Buches aus einer Sammlung/Serie oder Jahrgang einer Zeitschrift\"@de,\n\t\t\"volume of a book or music release in a collection/series or a published collection of journal issues in a serial publication\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P478 ;\n\twikibase:claim p:P478 ;\n\twikibase:statementProperty ps:P478 ;\n\twikibase:statementValue psv:P478 ;\n\twikibase:qualifier pq:P478 ;\n\twikibase:qualifierValue pqv:P478 ;\n\twikibase:reference pr:P478 ;\n\twikibase:referenceValue prv:P478 ;\n\twikibase:novalue wdno:P478 .\n\np:P478 a owl:ObjectProperty .\n\npsv:P478 a owl:ObjectProperty .\n\npqv:P478 a owl:ObjectProperty .\n\nprv:P478 a owl:ObjectProperty .\n\nwdt:P478 a owl:DatatypeProperty .\n\nps:P478 a owl:DatatypeProperty .\n\npq:P478 a owl:DatatypeProperty .\n\npr:P478 a owl:DatatypeProperty .\n\nwdno:P478 a owl:Class ;\n\towl:complementOf _:535dab7014016140dd170125242aa305 .\n\n_:535dab7014016140dd170125242aa305 a owl:Restriction ;\n\towl:onProperty wdt:P478 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21339272 a wikibase:Item ;\n\trdfs:label \"Wladimir Petrowitsch Malejew\"@de ;\n\tskos:prefLabel \"Wladimir Petrowitsch Malejew\"@de ;\n\tschema:name \"Wladimir Petrowitsch Malejew\"@de ;\n\trdfs:label \"Vladimir Maleyev\"@en ;\n\tskos:prefLabel \"Vladimir Maleyev\"@en ;\n\tschema:name \"Vladimir Maleyev\"@en ;\n\tschema:description \"Russian (Soviet) botanist (1894-1941)\"@en .\n\nwd:P50 a wikibase:Property ;\n\trdfs:label \"Autor\"@de ;\n\tskos:prefLabel \"Autor\"@de ;\n\tschema:name \"Autor\"@de ;\n\trdfs:label \"author\"@en ;\n\tskos:prefLabel \"author\"@en ;\n\tschema:name \"author\"@en ;\n\tschema:description \"Person oder Personen, die ein schriftliches Werk verfasst hat bzw. haben; P2093 verwenden, falls der Autor in Wikidata nicht bekannt ist\"@de,\n\t\t\"main creator(s) of a written work (use on works, not humans); use P2093 (author name string) when Wikidata item is unknown or does not exist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P50 ;\n\twikibase:claim p:P50 ;\n\twikibase:statementProperty ps:P50 ;\n\twikibase:statementValue psv:P50 ;\n\twikibase:qualifier pq:P50 ;\n\twikibase:qualifierValue pqv:P50 ;\n\twikibase:reference pr:P50 ;\n\twikibase:referenceValue prv:P50 ;\n\twikibase:novalue wdno:P50 .\n\np:P50 a owl:ObjectProperty .\n\npsv:P50 a owl:ObjectProperty .\n\npqv:P50 a owl:ObjectProperty .\n\nprv:P50 a owl:ObjectProperty .\n\nwdt:P50 a owl:ObjectProperty .\n\nps:P50 a owl:ObjectProperty .\n\npq:P50 a owl:ObjectProperty .\n\npr:P50 a owl:ObjectProperty .\n\nwdno:P50 a owl:Class ;\n\towl:complementOf _:b031acc4c46aca4c83feb5878a7c4a6a .\n\n_:b031acc4c46aca4c83feb5878a7c4a6a a owl:Restriction ;\n\towl:onProperty wdt:P50 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q106509962 a wikibase:Item ;\n\trdfs:label \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\tskos:prefLabel \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\tschema:name \"Normdatei der Israelischen Nationalbibliothek\"@de ;\n\trdfs:label \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tskos:prefLabel \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tschema:name \"National Library of Israel Names and Subjects Authority File\"@en ;\n\tschema:description \"National Library of Israel authorities database\"@en .\n\nwd:Q47974 a wikibase:Item ;\n\trdfs:label \"Shaanxi\"@de ;\n\tskos:prefLabel \"Shaanxi\"@de ;\n\tschema:name \"Shaanxi\"@de ;\n\trdfs:label \"Shaanxi\"@mul ;\n\tskos:prefLabel \"Shaanxi\"@mul ;\n\tschema:name \"Shaanxi\"@mul ;\n\trdfs:label \"Shaanxi\"@en ;\n\tskos:prefLabel \"Shaanxi\"@en ;\n\tschema:name \"Shaanxi\"@en ;\n\tschema:description \"Provinz von China\"@de,\n\t\t\"province of central China with its capital Xi'an, the ancient homeland of the Zhou and center of several major dynasty\"@en .\n\nwd:P131 a wikibase:Property ;\n\trdfs:label \"liegt in der Verwaltungseinheit\"@de ;\n\tskos:prefLabel \"liegt in der Verwaltungseinheit\"@de ;\n\tschema:name \"liegt in der Verwaltungseinheit\"@de ;\n\trdfs:label \"located in the administrative territorial entity\"@en ;\n\tskos:prefLabel \"located in the administrative territorial entity\"@en ;\n\tschema:name \"located in the administrative territorial entity\"@en ;\n\tschema:description \"administratives Gebiet, auf dem sich das Subjekt befindet. Für andere Orte oder Gebiete, und für Veranstaltungen: benutze P276. Fällt das Subjekt nur teilweise in das Gebiet, benutze P1382.\"@de,\n\t\t\"the item is located on the territory of the following administrative entity. Use P276 for specifying locations that are non-administrative places and for items about events. Use P1382 if the item falls only partially into the administrative entity\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P131 ;\n\twikibase:claim p:P131 ;\n\twikibase:statementProperty ps:P131 ;\n\twikibase:statementValue psv:P131 ;\n\twikibase:qualifier pq:P131 ;\n\twikibase:qualifierValue pqv:P131 ;\n\twikibase:reference pr:P131 ;\n\twikibase:referenceValue prv:P131 ;\n\twikibase:novalue wdno:P131 .\n\np:P131 a owl:ObjectProperty .\n\npsv:P131 a owl:ObjectProperty .\n\npqv:P131 a owl:ObjectProperty .\n\nprv:P131 a owl:ObjectProperty .\n\nwdt:P131 a owl:ObjectProperty .\n\nps:P131 a owl:ObjectProperty .\n\npq:P131 a owl:ObjectProperty .\n\npr:P131 a owl:ObjectProperty .\n\nwdno:P131 a owl:Class ;\n\towl:complementOf _:1d2a8f0c3b3451be4d4228f97153e08d .\n\n_:1d2a8f0c3b3451be4d4228f97153e08d a owl:Restriction ;\n\towl:onProperty wdt:P131 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q113432740 a wikibase:Item ;\n\trdfs:label \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tskos:prefLabel \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:name \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article\"@en .\n\nwd:Q119459346 a wikibase:Item ;\n\trdfs:label \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tskos:prefLabel \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tschema:name \"inferred by common NCBI Taxon ID mappings on source and on Wikidata\"@en ;\n\tschema:description \"heuristic to use with P887 (heuristic) as provenance for assigning an identifier\"@en .\n\nwd:P887 a wikibase:Property ;\n\trdfs:label \"basierend auf Heuristik\"@de ;\n\tskos:prefLabel \"basierend auf Heuristik\"@de ;\n\tschema:name \"basierend auf Heuristik\"@de ;\n\trdfs:label \"based on heuristic\"@en ;\n\tskos:prefLabel \"based on heuristic\"@en ;\n\tschema:name \"based on heuristic\"@en ;\n\tschema:description \"der Eigenschaftswert basiert auf einer Heuristik; als Fundstelle zu benutzen\"@de,\n\t\t\"indicates that the property value is determined based on some heuristic (Q201413); to be used as source\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P887 ;\n\twikibase:claim p:P887 ;\n\twikibase:statementProperty ps:P887 ;\n\twikibase:statementValue psv:P887 ;\n\twikibase:qualifier pq:P887 ;\n\twikibase:qualifierValue pqv:P887 ;\n\twikibase:reference pr:P887 ;\n\twikibase:referenceValue prv:P887 ;\n\twikibase:novalue wdno:P887 .\n\np:P887 a owl:ObjectProperty .\n\npsv:P887 a owl:ObjectProperty .\n\npqv:P887 a owl:ObjectProperty .\n\nprv:P887 a owl:ObjectProperty .\n\nwdt:P887 a owl:ObjectProperty .\n\nps:P887 a owl:ObjectProperty .\n\npq:P887 a owl:ObjectProperty .\n\npr:P887 a owl:ObjectProperty .\n\nwdno:P887 a owl:Class ;\n\towl:complementOf _:e011110d3fc77cb743b2b08b63c4f19a .\n\n_:e011110d3fc77cb743b2b08b63c4f19a a owl:Restriction ;\n\towl:onProperty wdt:P887 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q118645236 a wikibase:Item ;\n\trdfs:label \"UMLS 2023\"@en ;\n\tskos:prefLabel \"UMLS 2023\"@en ;\n\tschema:name \"UMLS 2023\"@en ;\n\tschema:description \"Language System release in 2023\"@en .\n\nwd:Q116288654 a wikibase:Item ;\n\trdfs:label \"inferred from taxon name\"@en ;\n\tskos:prefLabel \"inferred from taxon name\"@en ;\n\tschema:name \"inferred from taxon name\"@en ;\n\tschema:description \"deducing information about an item based on its taxon name\"@en .\n\nwd:Q50658883 a wikibase:Item ;\n\trdfs:label \"India Biodiversity Portal\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal\"@en ;\n\tschema:name \"India Biodiversity Portal\"@en ;\n\tschema:description \"web repository of information on India's biodiversity\"@en .\n\nwd:Q58824067 a wikibase:Item ;\n\trdfs:label \"eFloraSA\"@de ;\n\tskos:prefLabel \"eFloraSA\"@de ;\n\tschema:name \"eFloraSA\"@de ;\n\trdfs:label \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\tskos:prefLabel \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\tschema:name \"https://www.youtube.com/watch?v=147oHxe2aBw\"@mul ;\n\trdfs:label \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tskos:prefLabel \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tschema:name \"https://www.youtube.com/watch?v=147oHxe2aBw\"@en ;\n\tschema:description \"Electronic Flora of South Australia\"@en .\n\nwd:Q110392228 a wikibase:Item ;\n\trdfs:label \"New York Flora Atlas\"@en ;\n\tskos:prefLabel \"New York Flora Atlas\"@en ;\n\tschema:name \"New York Flora Atlas\"@en ;\n\tschema:description \"website on distribution of plants within New York State, as well as information on plant habitats, associated ecological communities, and taxonomy\"@en .\n\nwd:Q113107292 a wikibase:Item ;\n\trdfs:label \"Naturbasen\"@de ;\n\tskos:prefLabel \"Naturbasen\"@de ;\n\tschema:name \"Naturbasen\"@de ;\n\trdfs:label \"Naturbasen\"@en ;\n\tskos:prefLabel \"Naturbasen\"@en ;\n\tschema:name \"Naturbasen\"@en ;\n\tschema:description \"website on biodiversity in Denmark\"@en .\n\nwd:Q111206949 a wikibase:Item ;\n\trdfs:label \"Virginia Tech Dendrology Factsheets\"@en ;\n\tskos:prefLabel \"Virginia Tech Dendrology Factsheets\"@en ;\n\tschema:name \"Virginia Tech Dendrology Factsheets\"@en ;\n\tschema:description \"online database on trees of North America\"@en .\n\nwd:Q116213766 a wikibase:Item ;\n\trdfs:label \"Plant Finder\"@en ;\n\tskos:prefLabel \"Plant Finder\"@en ;\n\tschema:name \"Plant Finder\"@en ;\n\tschema:description \"online database of plants in the Chicago Botanic Garden\"@en .\n\nwd:Q107282072 a wikibase:Item ;\n\trdfs:label \"E-Flora BC\"@en ;\n\tskos:prefLabel \"E-Flora BC\"@en ;\n\tschema:name \"E-Flora BC\"@en ;\n\tschema:description \"online biogeographic atlas of the vascular plants (established and non-established), bryophytes, lichens, algae, fungi and slime molds of British Columbia\"@en .\n\nwd:Q106140471 a wikibase:Item ;\n\trdfs:label \"Washington Flora Checklist\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist\"@de ;\n\tschema:name \"Washington Flora Checklist\"@de ;\n\trdfs:label \"Washington Flora Checklist\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist\"@en ;\n\tschema:name \"Washington Flora Checklist\"@en ;\n\tschema:description \"list of the native and naturalized vascular plants of Washington State, with current classifications, nomenclature and synonymy\"@en .\n\nwd:Q111543964 a wikibase:Item ;\n\trdfs:label \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tskos:prefLabel \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tschema:name \"North Carolina Extension Gardener Plant Toolbox\"@en ;\n\tschema:description \"website containing detailed descriptions and photographs of 4,620 plants that grow in and around North Carolina\"@en .\n\nwd:Q73389793 a wikibase:Item ;\n\trdfs:label \"Indian Medicinal Plants Database\"@en ;\n\tskos:prefLabel \"Indian Medicinal Plants Database\"@en ;\n\tschema:name \"Indian Medicinal Plants Database\"@en .\n\nwd:Q58006102 a wikibase:Item ;\n\trdfs:label \"Info flora\"@de ;\n\tskos:prefLabel \"Info flora\"@de ;\n\tschema:name \"Info flora\"@de ;\n\trdfs:label \"Info Flora\"@en ;\n\tskos:prefLabel \"Info Flora\"@en ;\n\tschema:name \"Info Flora\"@en ;\n\tschema:description \"Das nationale Daten- und Informationszentrum der Schweizer Flora\"@de .\n\nwd:Q123468062 a wikibase:Item ;\n\trdfs:label \"Flora of the Southeastern United States\"@en ;\n\tskos:prefLabel \"Flora of the Southeastern United States\"@en ;\n\tschema:name \"Flora of the Southeastern United States\"@en ;\n\tschema:description \"website\"@en .\n\nwd:Q111544237 a wikibase:Item ;\n\trdfs:label \"Go Botany\"@en ;\n\tskos:prefLabel \"Go Botany\"@en ;\n\tschema:name \"Go Botany\"@en ;\n\tschema:description \"website of the Native Plant Trust providing information on over 1,200 common native and naturalized New England plants\"@en .\n\nwd:Q97219228 a wikibase:Item ;\n\trdfs:label \"Flora Croatica Database\"@en ;\n\tskos:prefLabel \"Flora Croatica Database\"@en ;\n\tschema:name \"Flora Croatica Database\"@en ;\n\tschema:description \"database of Vascular Plants Taxonomy & Bibliography of Croatian Flora\"@en .\n\nwd:Q124259488 a wikibase:Item ;\n\trdfs:label \"SERNEC\"@en ;\n\tskos:prefLabel \"SERNEC\"@en ;\n\tschema:name \"SERNEC\"@en ;\n\tschema:description \"website of SERNEC, the SouthEast Regional Network of Expertise and Collections\"@en .\n\nwd:Q123473103 a wikibase:Item ;\n\trdfs:label \"Biota of New Zealand\"@en ;\n\tskos:prefLabel \"Biota of New Zealand\"@en ;\n\tschema:name \"Biota of New Zealand\"@en ;\n\tschema:description \"online database of the biota of New Zealand\"@en .\n\nwd:Q122629978 a wikibase:Item ;\n\trdfs:label \"FloraVeg.EU\"@en ;\n\tskos:prefLabel \"FloraVeg.EU\"@en ;\n\tschema:name \"FloraVeg.EU\"@en ;\n\tschema:description \"online database of European vegetation, habitats and flora\"@en .\n\nwd:Q18379771 a wikibase:Item ;\n\trdfs:label \"CalPhotos\"@en ;\n\tskos:prefLabel \"CalPhotos\"@en ;\n\tschema:name \"CalPhotos\"@en ;\n\tschema:description \"online collection of photos of plants, animals, fossils, people, and landscapes from around the world\"@en .\n\nwd:Q111694088 a wikibase:Item ;\n\trdfs:label \"Woody Plants Database\"@en ;\n\tskos:prefLabel \"Woody Plants Database\"@en ;\n\tschema:name \"Woody Plants Database\"@en ;\n\tschema:description \"online database of woody plant species, focusing on woody plants used for landscaping in New York and the Northeast\"@en .\n\nwd:Q111693859 a wikibase:Item ;\n\trdfs:label \"PlantFiles\"@en ;\n\tskos:prefLabel \"PlantFiles\"@en ;\n\tschema:name \"PlantFiles\"@en ;\n\tschema:description \"online plant database\"@en .\n\nwd:Q894631 a wikibase:Item ;\n\trdfs:label \"Botanical Society of the British Isles\"@de ;\n\tskos:prefLabel \"Botanical Society of the British Isles\"@de ;\n\tschema:name \"Botanical Society of the British Isles\"@de ;\n\trdfs:label \"Botanical Society of Britain and Ireland\"@en ;\n\tskos:prefLabel \"Botanical Society of Britain and Ireland\"@en ;\n\tschema:name \"Botanical Society of Britain and Ireland\"@en ;\n\tschema:description \"botanische Gesellschaft\"@de,\n\t\t\"learned society\"@en .\n\nwd:Q112867914 a wikibase:Item ;\n\trdfs:label \"List of plant species in China (2022 Edition)\"@en ;\n\tskos:prefLabel \"List of plant species in China (2022 Edition)\"@en ;\n\tschema:name \"List of plant species in China (2022 Edition)\"@en .\n\nwd:Q113193153 a wikibase:Item ;\n\trdfs:label \"A dataset on catalogue of alien plants in China\"@de ;\n\tskos:prefLabel \"A dataset on catalogue of alien plants in China\"@de ;\n\tschema:name \"A dataset on catalogue of alien plants in China\"@de ;\n\trdfs:label \"A dataset on catalogue of alien plants in China\"@en ;\n\tskos:prefLabel \"A dataset on catalogue of alien plants in China\"@en ;\n\tschema:name \"A dataset on catalogue of alien plants in China\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article, dataset\"@en .\n\nwd:P356 a wikibase:Property ;\n\trdfs:label \"DOI\"@de ;\n\tskos:prefLabel \"DOI\"@de ;\n\tschema:name \"DOI\"@de ;\n\trdfs:label \"DOI\"@mul ;\n\tskos:prefLabel \"DOI\"@mul ;\n\tschema:name \"DOI\"@mul ;\n\trdfs:label \"DOI\"@en ;\n\tskos:prefLabel \"DOI\"@en ;\n\tschema:name \"DOI\"@en ;\n\tschema:description \"digitaler Identifikator für physische, digitale oder abstrakte Objekte\"@de,\n\t\t\"serial code used to uniquely identify digital objects like academic papers (use upper case letters only)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P356 ;\n\twikibase:claim p:P356 ;\n\twikibase:statementProperty ps:P356 ;\n\twikibase:statementValue psv:P356 ;\n\twikibase:qualifier pq:P356 ;\n\twikibase:qualifierValue pqv:P356 ;\n\twikibase:reference pr:P356 ;\n\twikibase:referenceValue prv:P356 ;\n\twikibase:novalue wdno:P356 ;\n\twikibase:directClaimNormalized wdtn:P356 ;\n\twikibase:statementValueNormalized psn:P356 ;\n\twikibase:qualifierValueNormalized pqn:P356 ;\n\twikibase:referenceValueNormalized prn:P356 .\n\np:P356 a owl:ObjectProperty .\n\npsv:P356 a owl:ObjectProperty .\n\npqv:P356 a owl:ObjectProperty .\n\nprv:P356 a owl:ObjectProperty .\n\nwdt:P356 a owl:DatatypeProperty .\n\nps:P356 a owl:DatatypeProperty .\n\npq:P356 a owl:DatatypeProperty .\n\npr:P356 a owl:DatatypeProperty .\n\npsn:P356 a owl:ObjectProperty .\n\npqn:P356 a owl:ObjectProperty .\n\nprn:P356 a owl:ObjectProperty .\n\nwdtn:P356 a owl:ObjectProperty .\n\nwdno:P356 a owl:Class ;\n\towl:complementOf _:7c656241912b24503f517964814479d9 .\n\n_:7c656241912b24503f517964814479d9 a owl:Restriction ;\n\towl:onProperty wdt:P356 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q113333457 a wikibase:Item ;\n\trdfs:label \"A Scientific Dataset of useful plants of China\"@de ;\n\tskos:prefLabel \"A Scientific Dataset of useful plants of China\"@de ;\n\tschema:name \"A Scientific Dataset of useful plants of China\"@de ;\n\trdfs:label \"A Scientific Dataset of useful plants of China\"@en ;\n\tskos:prefLabel \"A Scientific Dataset of useful plants of China\"@en ;\n\tschema:name \"A Scientific Dataset of useful plants of China\"@en ;\n\tschema:description \"Datenbank chinesischer Nutzpflanzen\"@de,\n\t\t\"dataset\"@en .\n\nwd:Q124478613 a wikibase:Item ;\n\trdfs:label \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tskos:prefLabel \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tschema:name \"The Little Flora of Slovenia (3rd ed.)\"@en ;\n\tschema:description \"key for identifying ferns and seed plants; ed. A. Martinčič et al.; 3rd edition (1999)\"@en .\n\nwd:Q135518565 a wikibase:Item ;\n\trdfs:label \"EASIN Catalogue of Alien Species\"@en ;\n\tskos:prefLabel \"EASIN Catalogue of Alien Species\"@en ;\n\tschema:name \"EASIN Catalogue of Alien Species\"@en ;\n\tschema:description \"catalogue of alien species by the European Alien Species Information Network\"@en .\n\nwd:Q16764841 owl:sameAs wd:Q165145 .\n\nwd:Q97214575 owl:sameAs wd:Q165145 .\n\nwd:Q97307875 owl:sameAs wd:Q165145 .\n\nwd:Q130710270 owl:sameAs wd:Q165145 .\n\nwd:Q130710271 owl:sameAs wd:Q165145 .\n\nwdv:043329e001a17d1b3aae568fd3ec4251 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+930\"^^xsd:decimal ;\n\twikibase:quantityUnit .\n\nwdv:61dc588f3a33dc6696cabc0152164205 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+29328480000\"^^xsd:decimal ;\n\twikibase:quantityUnit ;\n\twikibase:quantityNormalized wdv:61dc588f3a33dc6696cabc0152164205 .\n\nwdv:043329e001a17d1b3aae568fd3ec4251 wikibase:quantityNormalized wdv:61dc588f3a33dc6696cabc0152164205 .\n\nwdv:039c0e76075a6942e780b1763d702c4a a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-01-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:4153fee0d70688a29ab9db6b000d1c1f a wikibase:TimeValue ;\n\twikibase:timeValue \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:c6fd65290009e13960296ecddf69c9f8 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-06-24T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:247bc4aa290b8a982f05b3b8fd2c979b a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-11-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f987783e1f9c9fa0cb0b774d330af52d a wikibase:TimeValue ;\n\twikibase:timeValue \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a7b25af64e51beb832d00ddb8d12b299 a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-05-05T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:cd3b945d020ffc574208857838dcfd0c a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-10-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:b7298f354b9c49842236f2836226a6fc a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-11-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:16d827b538b3bcdbb2dc54dd43d775f5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-02T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ac42dad640eb90e22818a63eb55daff3 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:6fa67d23025f7a9ffc03042f5bb78278 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d50ee04f9a85500d10f606199d4f96a9 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:32bfdb4b43666a09cad46eb3711ad48f a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-05-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:329cede4352fa35f370aa05ac3d8507a a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-06-27T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ed078216138fde868f522b5a485fda72 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-08-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:58f1ae1c0c2985970e3dd7c6dd87501b a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:710d2aa95e907f035a26a28f5ff02483 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-07-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1647d164dfd9ef5d0e311eafef75ca75 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-09-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:e781b1dd5903541abe8015934513842d a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-12-27T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:6c2f1d7e8acf90f7f670bc874a9a659a a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-01-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f52d5669675ffcac8490243435a8f479 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-03T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:86d08cb380a7d361151c510ebb4a98ec a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1b3e92cb4009608b77880de2e2253c55 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:35e1319e7e3e50fa61855eed888fdb47 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7e2a1c688bf5e9403281f2e785802575 a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-01-07T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:801966f49847b708154c18279deab3b0 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-05T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:72a0e216d244994e85cd6d730e6d9bc1 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-12-16T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:c7fbe36e05b19b3f6f98287268477919 a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-02-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:9930877c43e09a3dd26a2b4a0d5aa9c8 a wikibase:TimeValue ;\n\twikibase:timeValue \"1989-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:855c01435baadba4a7ae59257604d2bc a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-05-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:418aedfba643e02a5ba758952f8f7765 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5ab009f176c683ca055c711fde6476a5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:661ff2b4418d67a0c2d981a3179501fd a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-04-15T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5109fb9608768ce30181f0a02f9777b3 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-06-08T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:57969e969fcac232b6568124729fb241 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-07-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7b3bc14b466ea65a7f5e3f04a80c6f5b a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-06-13T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:e845f80d8a78f4d2337e9a316a5e42ba a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:51f80fa62dc38000550e1fc0fda2b59b a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:07e550cce6e0bf63dccf1aa9d8f84890 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:727a99af5e74c2de716e38b3e7e8e2ed a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:757c83ba4abe51b585250f934cb5a035 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-07-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:0e2531a07e9448df72a642e89d49fb69 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ad5f9c94378da3fa8bd53315a8f6bbef a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-11-12T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a1a2e4c5b0ebeafb0c12450e7cf514c8 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-01-20T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:664bae4effccc18fd4ad1ae188fab025 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1da8087a7dd4839390f06bd089d8e330 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:8e85c176da4d13f00385c00b15f77559 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-12-08T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:22d4f832fdefcef9ac387c783743479a a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:0df57471937b1f3375e9cba38ef420bb a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-07-04T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3b2ff2744ee9af4b07734336d1723792 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3b489e24891cc935d5c8c20e402d4315 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-01-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:4b6fcb2429083a7ef5021ca23059c45c a wikibase:TimeValue ;\n\twikibase:timeValue \"1878-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7d90d021a736d1126469a1c14712f70c a wikibase:TimeValue ;\n\twikibase:timeValue \"1936-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ef5da3df3946c3862162925f9fc98e24 a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-06-16T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1deff99bd5ccadb8e8b385772ff4d247 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-03-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:01ddc8c044da0455bc6bbcff8f994832 a wikibase:TimeValue ;\n\twikibase:timeValue \"2024-04-22T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ecc1a0a561cbd6057d67573eeb16e1f5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-06-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:02a77ce14b8ce0840cbf0bd0cdada7a7 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-06-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:3fea4c5bca9b285063d01bb6565f1b3d a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-21T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2becdb7a37d48a71bf512f8a8ce2c940 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-06-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:82772e1d68fb76f81ad9dbc73c7ce075 a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-08-22T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d0f25a2420df81f2d393521305e46bb5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5a152a5904b586c064410033df37c9fd a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a87ed9063c6b1aee5ccbb07b847c8dba a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ff7533549e53d0091ac78287d30e5cbb a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:447c4991e1f62b61a509db92d5b4e735 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-10-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d52a85e9f28ecb2fac7274239c2aef82 a wikibase:TimeValue ;\n\twikibase:timeValue \"2025-08-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdref:bb316b4ae2e8f5d3f0a96d1d720c30a977818a8a a wikibase:Reference ;\n\tpr:P248 wd:Q21856107 ;\n\tpr:P304 \"996\" ;\n\tpr:P687 \"359017\" ;\n\tpr:P6184 wd:Q1361864 .\n\nwdref:75402fc8ea5100b364db601b3ed88777b189f22e a wikibase:Reference ;\n\tpr:P248 wd:Q115962546 ;\n\tpr:P627 \"63532\" ;\n\tpr:P813 \"2023-01-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:039c0e76075a6942e780b1763d702c4a .\n\nwdref:d4bd87b862b12d99d26e86472d44f26858dee639 a wikibase:Reference ;\n\tpr:P143 wd:Q8447 .\n\nwdref:3d1d776b6f1d89ea5cd7b5f8db0a2f64ef67a804 a wikibase:Reference ;\n\tpr:P248 wd:Q12159796 ;\n\tpr:P813 \"2019-06-24T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:c6fd65290009e13960296ecddf69c9f8 .\n\nwdref:d39590feb5a714a291345f9d30a2cf68c0a97b66 a wikibase:Reference ;\n\tpr:P248 wd:Q82575 ;\n\tpr:P813 \"2014-11-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:247bc4aa290b8a982f05b3b8fd2c979b .\n\nwdref:2b00cb481cddcac7623114367489b5c194901c4a a wikibase:Reference ;\n\tpr:P248 wd:Q15241312 ;\n\tpr:P577 \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P577 wdv:f987783e1f9c9fa0cb0b774d330af52d .\n\nwdref:9a24f7c0208b05d6be97077d855671d1dfdbc0dd a wikibase:Reference ;\n\tpr:P143 wd:Q48183 .\n\nwdref:f81fe8e1506f3271f6ad35f3041f04dca1b1f7da a wikibase:Reference ;\n\tpr:P248 wd:Q2578548 ;\n\tpr:P813 \"2014-05-05T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a7b25af64e51beb832d00ddb8d12b299 .\n\nwdref:4e6a4543025cd3fc2a830bc6a7a83d94f32979a0 a wikibase:Reference ;\n\tpr:P248 wd:Q82486 ;\n\tpr:P813 \"2014-10-31T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:cd3b945d020ffc574208857838dcfd0c .\n\nwdref:a1d0f2ade207352295b2a3c1e7f58b61fa9f0afb a wikibase:Reference ;\n\tpr:P248 wd:Q15628808 ;\n\tpr:P813 \"2016-11-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:b7298f354b9c49842236f2836226a6fc .\n\nwdref:1005109b015da4ea28bf4b4a6075532a85144b72 a wikibase:Reference ;\n\tpr:P248 wd:Q1429295 ;\n\tpr:P813 \"2015-03-02T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:16d827b538b3bcdbb2dc54dd43d775f5 .\n\nwdref:a09a55f5df426ebeabfde6b0f3e5dbdfc1a99201 a wikibase:Reference ;\n\tpr:P248 wd:Q19544711 ;\n\tpr:P813 \"2015-03-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ac42dad640eb90e22818a63eb55daff3 .\n\nwdref:37709dc34274fc7b79ae6056ef25c396b30231ef a wikibase:Reference ;\n\tpr:P248 wd:Q5460442 ;\n\tpr:P813 \"2015-03-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:6fa67d23025f7a9ffc03042f5bb78278 .\n\nwdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec a wikibase:Reference ;\n\tpr:P248 wd:Q19576476 ;\n\tpr:P813 \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 .\n\nwdref:3ee42bed39fe58bd06a245cf377da864298c8a8c a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2015-03-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d50ee04f9a85500d10f606199d4f96a9 .\n\nwdref:b5ad2569bcf6622780b588eb1117c5be83d6a41a a wikibase:Reference ;\n\tpr:P248 wd:Q1531570 ;\n\tpr:P813 \"2015-05-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:32bfdb4b43666a09cad46eb3711ad48f .\n\nwdref:ded4d9855a794a13f212738b71babf44289d7193 a wikibase:Reference ;\n\tpr:P248 wd:Q20425914 ;\n\tpr:P813 \"2015-06-27T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:329cede4352fa35f370aa05ac3d8507a .\n\nwdref:f901ac280448f09da5efea3ba1884c7d4a496027 a wikibase:Reference ;\n\tpr:P248 wd:Q20862705 ;\n\tpr:P813 \"2015-08-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ed078216138fde868f522b5a485fda72 .\n\nwdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 a wikibase:Reference ;\n\tpr:P248 wd:Q23893915 ;\n\tpr:P813 \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:58f1ae1c0c2985970e3dd7c6dd87501b .\n\nwdref:6f8626cb03bb3ca6ee0a5c2ece82d7e62dc83598 a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-07-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:710d2aa95e907f035a26a28f5ff02483 .\n\nwdref:6f367a5bd07124a084786476520b5e616561c065 a wikibase:Reference ;\n\tpr:P248 wd:Q26936509 ;\n\tpr:P813 \"2016-09-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1647d164dfd9ef5d0e311eafef75ca75 .\n\nwdref:1ac5c51e8e692e5256710c5a6d6e288f535ccff9 a wikibase:Reference ;\n\tpr:P248 wd:Q45029859 ;\n\tpr:P813 \"2017-12-27T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:e781b1dd5903541abe8015934513842d .\n\nwdref:cf7fd8f44fda657c76a55dc510aa72bfa5b7d36b a wikibase:Reference ;\n\tpr:P248 wd:Q45029998 ;\n\tpr:P813 \"2018-01-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:6c2f1d7e8acf90f7f670bc874a9a659a .\n\nwdref:fc0d92af6b98a071aff12f3ac58f8e63d269aad8 a wikibase:Reference ;\n\tpr:P248 wd:Q58035056 ;\n\tpr:P813 \"2018-11-03T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:f52d5669675ffcac8490243435a8f479 .\n\nwdref:de8a49acdcf832419a5a6ba08567d671cdab1f9e a wikibase:Reference ;\n\tpr:P248 wd:Q79844869 ;\n\tpr:P813 \"2020-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:86d08cb380a7d361151c510ebb4a98ec .\n\nwdref:14326af8a3cdabe39d383c48265c7492c7bd2e45 a wikibase:Reference ;\n\tpr:P248 wd:Q104290728 ;\n\tpr:P813 \"2020-12-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1b3e92cb4009608b77880de2e2253c55 .\n\nwdref:7db1626f2a102c0854df622bef2772a11216c99f a wikibase:Reference ;\n\tpr:P248 wd:Q110438362 ;\n\tpr:P813 \"2022-01-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:35e1319e7e3e50fa61855eed888fdb47 .\n\nwdref:8e0be4dc867f902bec79db264192d2ddc273f01f a wikibase:Reference ;\n\tpr:P248 wd:Q116008531 ;\n\tpr:P813 \"2023-01-07T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:7e2a1c688bf5e9403281f2e785802575 .\n\nwdref:88d4460c262f012ed854b894d871b3c6faf85f39 a wikibase:Reference ;\n\tpr:P248 wd:Q6970988 ;\n\tpr:P813 \"2016-10-05T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:801966f49847b708154c18279deab3b0 .\n\nwdref:6df21c27373a2bde6ee75834c667ad037609ae83 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2016-12-16T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:72a0e216d244994e85cd6d730e6d9bc1 .\n\nwdref:80e889a54fb2429cbff6e51048c39c6a1280cea4 a wikibase:Reference ;\n\tpr:P248 wd:Q8035497 ;\n\tpr:P813 \"2017-02-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:c7fbe36e05b19b3f6f98287268477919 .\n\nwdref:3bf39867b037e8e494a8389ae8a03bad6825a7fc a wikibase:Reference ;\n\tpr:P143 wd:Q191168 .\n\nwdref:114afd4cf4950218b462673fa92b0ef05598deb6 a wikibase:Reference ;\n\tpr:P854 ;\n\tpr:P813 \"2019-05-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:855c01435baadba4a7ae59257604d2bc .\n\nwdref:bdf9bfa7e703825b14294c2be7dfa4186d7b041e a wikibase:Reference ;\n\tpr:P248 wd:Q47542613 ;\n\tpr:P813 \"2018-04-15T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:661ff2b4418d67a0c2d981a3179501fd .\n\nwdref:c43f7cca51643668a94140c8bf2e097967c52d8f a wikibase:Reference ;\n\tpr:P248 wd:Q54859980 ;\n\tpr:P813 \"2018-06-08T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5109fb9608768ce30181f0a02f9777b3 ;\n\tpr:P854 ;\n\tpr:P1065 ;\n\tpr:P2960 \"2018-07-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P2960 wdv:57969e969fcac232b6568124729fb241 .\n\nwdref:600bdd890d8e3c4c23219321dc839bbe89bfaaa2 a wikibase:Reference ;\n\tpr:P248 wd:Q51885189 ;\n\tpr:P813 \"2018-06-13T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:7b3bc14b466ea65a7f5e3f04a80c6f5b .\n\nwdref:ced024eb12b5fe38ed87cb5720ea18f3c54229a9 a wikibase:Reference ;\n\tpr:P248 wd:Q36578 .\n\nwdref:200610d082e6b441027a5ca3f3103396c55fcfd9 a wikibase:Reference ;\n\tpr:P248 wd:Q18912790 .\n\nwdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 a wikibase:Reference ;\n\tpr:P248 wd:Q58380943 ;\n\tpr:P813 \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:e845f80d8a78f4d2337e9a316a5e42ba .\n\nwdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa a wikibase:Reference ;\n\tpr:P248 wd:Q167402 ;\n\tpr:P813 \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:51f80fa62dc38000550e1fc0fda2b59b .\n\nwdref:72bdb9539d2e1574209db20ee4b2fc3abd3679f9 a wikibase:Reference ;\n\tpr:P248 wd:Q20073251 ;\n\tpr:P813 \"2020-12-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:07e550cce6e0bf63dccf1aa9d8f84890 .\n\nwdref:22ce2135adfe2d45928ca94b0363b3ec9f8bb95f a wikibase:Reference ;\n\tpr:P248 wd:Q374924 ;\n\tpr:P813 \"2018-11-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:727a99af5e74c2de716e38b3e7e8e2ed .\n\nwdref:a0cc3fef75da4fc0af0eecc1215e7c8a0733ee18 a wikibase:Reference ;\n\tpr:P813 \"2019-07-01T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:757c83ba4abe51b585250f934cb5a035 ;\n\tpr:P248 wd:Q12360981 .\n\nwdref:1d3b14364cabecbdb80f4cca466d63b80a938fde a wikibase:Reference ;\n\tpr:P248 wd:Q64007131 ;\n\tpr:P813 \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:0e2531a07e9448df72a642e89d49fb69 .\n\nwdref:07a7d9dc3b3d90a7819d98ab2fadfb1c9da6fd90 a wikibase:Reference ;\n\tpr:P248 wd:Q72729671 ;\n\tpr:P813 \"2019-11-12T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ad5f9c94378da3fa8bd53315a8f6bbef .\n\nwdref:96fbcc47bec0804bf008a41aac0d8a6f5d3bc6fb a wikibase:Reference ;\n\tpr:P854 ;\n\tpr:P813 \"2020-01-20T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a1a2e4c5b0ebeafb0c12450e7cf514c8 .\n\nwdref:f9bf1a1f034ddd51bd9928ac535e0f57d748e2cf a wikibase:Reference ;\n\tpr:P248 wd:Q89345680 .\n\nwdref:9a681f9dd95c90224547c404e11295f4f7dcf54e a wikibase:Reference ;\n\tpr:P248 wd:Q64139102 ;\n\tpr:P813 \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:664bae4effccc18fd4ad1ae188fab025 .\n\nwdref:ba81ba3d7197b0b21226d78ff78e9bca98c9060a a wikibase:Reference ;\n\tpr:P248 wd:Q77076820 ;\n\tpr:P813 \"2020-07-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1da8087a7dd4839390f06bd089d8e330 .\n\nwdref:8931dd12107a5b80dd44729771d17987008c9ff8 a wikibase:Reference ;\n\tpr:P248 wd:Q57715373 ;\n\tpr:P813 \"2020-12-08T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:8e85c176da4d13f00385c00b15f77559 .\n\nwdref:62990530a319358633159fa90952b2c8ed25f57e a wikibase:Reference ;\n\tpr:P248 wd:Q105527638 ;\n\tpr:P813 \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:22d4f832fdefcef9ac387c783743479a .\n\nwdref:28d1170718b10bb4ed207b2bfd230c6882c07789 a wikibase:Reference ;\n\tpr:P248 wd:Q107380242 ;\n\tpr:P813 \"2021-07-04T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:0df57471937b1f3375e9cba38ef420bb .\n\nwdref:e0b27d817c9a9b3247df341000fc490bafcba862 a wikibase:Reference ;\n\tpr:P248 wd:Q107507571 ;\n\tpr:P813 \"2022-01-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:3b2ff2744ee9af4b07734336d1723792 ;\n\tpr:P854 ;\n\tpr:P1065 ;\n\tpr:P2960 \"2022-01-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P2960 wdv:3b489e24891cc935d5c8c20e402d4315 .\n\nwdref:ecb7a39cf436eb1fba419853af168ef9f2ba1dab a wikibase:Reference ;\n\tpr:P248 wd:Q106509962 .\n\nwdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5 a wikibase:Reference ;\n\tpr:P248 wd:Q113432740 .\n\nwdref:22d5690dd7dbc0c61260ced6e331cbdb4322e6d1 a wikibase:Reference ;\n\tpr:P887 wd:Q119459346 ;\n\tpr:P248 wd:Q118645236 ;\n\tpr:P813 \"2023-06-16T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ef5da3df3946c3862162925f9fc98e24 .\n\nwdref:f20547ee50ef51494aeef73dfd45ba7be046ad14 a wikibase:Reference ;\n\tpr:P887 wd:Q116288654 .\n\nwdref:ef6dade85f49421e7db939f985e8ae99cc59823f a wikibase:Reference ;\n\tpr:P248 wd:Q50658883 .\n\nwdref:d1d7c4990e31806a1a6aad395ad1dcc7089d1efe a wikibase:Reference ;\n\tpr:P248 wd:Q58824067 .\n\nwdref:6a34e1f3bf074d6799e51cef91875a05ef435336 a wikibase:Reference ;\n\tpr:P248 wd:Q110392228 .\n\nwdref:06ae9714a8c680ab276f8e1db442f688c9b0e8e5 a wikibase:Reference ;\n\tpr:P248 wd:Q113107292 .\n\nwdref:6c2c858bc4fb0306293e3560b32c6eb59a01f0d7 a wikibase:Reference ;\n\tpr:P248 wd:Q111206949 .\n\nwdref:cab3057f5db9ea4280db3b574cbcba243caae14c a wikibase:Reference ;\n\tpr:P248 wd:Q116213766 .\n\nwdref:7ea084c3db5e67ecde9e295586e301a55e432449 a wikibase:Reference ;\n\tpr:P248 wd:Q107282072 .\n\nwdref:2f7c729d9a31ad15d727154e099f70e505f0c904 a wikibase:Reference ;\n\tpr:P248 wd:Q106140471 .\n\nwdref:fa3cad23c75341067cf975ccc9fb47e2893382c3 a wikibase:Reference ;\n\tpr:P248 wd:Q111543964 .\n\nwdref:22784a394cd3aea5e288e494960389a0d1663ac6 a wikibase:Reference ;\n\tpr:P248 wd:Q73389793 .\n\nwdref:5ea8dd57a23332a6b159dde3772f673cdce6b4ac a wikibase:Reference ;\n\tpr:P248 wd:Q58006102 .\n\nwdref:4ec3aeebaa6ec8a593cb8c2c60b57743a320e249 a wikibase:Reference ;\n\tpr:P248 wd:Q123468062 .\n\nwdref:94e0a80b9416e444fed447703b3373de7dd3fff6 a wikibase:Reference ;\n\tpr:P248 wd:Q111544237 .\n\nwdref:9181bc4f4878fcc4158a8e608171fd52a8868f7c a wikibase:Reference ;\n\tpr:P854 .\n\nwdref:1b33b4d83351dde126b8c32d5fda20c7ba8f9f2d a wikibase:Reference ;\n\tpr:P248 wd:Q97219228 ;\n\tpr:P813 \"2024-04-22T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:01ddc8c044da0455bc6bbcff8f994832 .\n\nwdref:d99c41681887e3d38d2389b7dea47c05ad94a96a a wikibase:Reference ;\n\tpr:P248 wd:Q124259488 .\n\nwdref:a643ae02b2a6b287036f9865b6be7b276cf7d962 a wikibase:Reference ;\n\tpr:P248 wd:Q123473103 .\n\nwdref:8383d79aab066851aeeddbd2d25b2e5147655873 a wikibase:Reference ;\n\tpr:P248 wd:Q122629978 .\n\nwdref:a06cc0f86df889b618446dcbe0f7700371fd0ad7 a wikibase:Reference ;\n\tpr:P248 wd:Q18379771 .\n\nwdref:f6086d69a610608336e3082a79eaee238b84d644 a wikibase:Reference ;\n\tpr:P248 wd:Q47542613 .\n\nwdref:a455efc47c08c4e2b1338db3c27e029c6aa0553e a wikibase:Reference ;\n\tpr:P248 wd:Q64007131 ;\n\tpr:P813 \"2019-06-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ecc1a0a561cbd6057d67573eeb16e1f5 ;\n\tpr:P854 .\n\nwdref:c64768a6caa1534e0e82f29fc4805235c3846107 a wikibase:Reference ;\n\tpr:P248 wd:Q20073251 ;\n\tpr:P854 ;\n\tpr:P813 \"2015-06-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:02a77ce14b8ce0840cbf0bd0cdada7a7 .\n\nwdref:eada84c58a38325085267509899037535799e978 a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-10-21T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:3fea4c5bca9b285063d01bb6565f1b3d .\n\nwdref:0352ad5356f9ad167b7390e04bdfa308a084d922 a wikibase:Reference ;\n\tpr:P248 wd:Q111694088 ;\n\tpr:P10793 \"208\" ;\n\tpr:P813 \"2022-06-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2becdb7a37d48a71bf512f8a8ce2c940 .\n\nwdref:ac585a9e426b7d61e460f519e31537d45f63ab94 a wikibase:Reference ;\n\tpr:P248 wd:Q111693859 ;\n\tpr:P10791 \"63879\" ;\n\tpr:P813 \"2022-08-22T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:82772e1d68fb76f81ad9dbc73c7ce075 .\n\nwdref:27680a583a745484413daff9c9e620fa68d31749 a wikibase:Reference ;\n\tpr:P248 wd:Q894631 .\n\nwdref:4a9b7589786948d52b86be8f72188bae741e4a0c a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d0f25a2420df81f2d393521305e46bb5 .\n\nwdref:362e3c5d6de1d193ef97205ba38834ba075191fc a wikibase:Reference ;\n\tpr:P248 wd:Q32059 ;\n\tpr:P813 \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5a152a5904b586c064410033df37c9fd .\n\nwdref:c0a11c33e1269de68db514169e1aa70667fa8666 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a87ed9063c6b1aee5ccbb07b847c8dba .\n\nwdref:e4038602d6b6524c2ae63f184cdd1cc3ec67a37a a wikibase:Reference ;\n\tpr:P248 wd:Q54859980 ;\n\tpr:P813 \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ff7533549e53d0091ac78287d30e5cbb ;\n\tpr:P854 .\n\nwdref:e7ababbc02c927e7a635872c9d70efe98410c8d3 a wikibase:Reference ;\n\tpr:P248 wd:Q72729671 ;\n\tpr:P813 \"2019-10-31T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:447c4991e1f62b61a509db92d5b4e735 ;\n\tpr:P854 .\n\nwdref:61224d88b30998fe0b42c1a46f5c697733a95d49 a wikibase:Reference ;\n\tpr:P248 wd:Q112867914 .\n\nwdref:96fd73e6eed9326f46a773a2147935e22ea6be64 a wikibase:Reference ;\n\tpr:P248 wd:Q112869398 ;\n\tpr:P304 \"239\" .\n\nwdref:bbae94e02e82d1e842e8612397e5e45f07cb1db5 a wikibase:Reference ;\n\tpr:P248 wd:Q113193153 .\n\nwdref:4aa3ef7b09734f4d57c3e7f552074cb7fa18c5b1 a wikibase:Reference ;\n\tpr:P356 \"10.17520/BIODS.2023093\" ;\n\tprn:P356 .\n\nwdref:cc2271e27add77b47c98d28a96827ed0a10cda8d a wikibase:Reference ;\n\tpr:P248 wd:Q113333457 .\n\nwdref:25371c05886d508f0bd3b89319c1e188ec3c8883 a wikibase:Reference ;\n\tpr:P854 .\n\nwdref:f76860944072719f61df28202589e186d5b936fc a wikibase:Reference ;\n\tpr:P248 wd:Q124478613 .\n\nwdref:7f65d78cb2248e5d0f7eec2715fc0f39c9b6fd3c a wikibase:Reference ;\n\tpr:P248 wd:Q135518565 ;\n\tpr:P813 \"2025-08-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d52a85e9f28ecb2fac7274239c2aef82 .\n", + "body_type": "text", + "headers": { + "accept-ch": [ + "" + ], + "access-control-allow-origin": [ + "*" + ], + "age": [ + "2" + ], + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-transform" + ], + "content-type": [ + "text/turtle; charset=UTF-8" + ], + "date": [ + "Thu, 19 Feb 2026 20:31:44 GMT" + ], + "last-modified": [ + "Mon, 19 Jan 2026 04:30:16 GMT" + ], + "nel": [ + "{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}" + ], + "report-to": [ + "{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }" + ], + "server": [ + "mw-web.eqiad.main-7b5496b6b9-ff72m" + ], + "server-timing": [ + "cache;desc=\"pass\", host;desc=\"cp3070\"" + ], + "set-cookie": [ + "WMF-Last-Access=19-Feb-2026;Path=/;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "WMF-Last-Access-Global=19-Feb-2026;Path=/;Domain=.wikidata.org;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "GeoIP=DE:NW:D__sseldorf:51.26:6.82:v4; Path=/; secure; Domain=.wikidata.org", + "NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600", + "WMF-Uniq=g5tZmw3iHnZKZQuepziE4AMMAAAAAFvdFxSsEUFdgF8kxp0QL4FLydUcJPZTiloe;Domain=.wikidata.org;Path=/;HttpOnly;secure;SameSite=None;Expires=Fri, 19 Feb 2027 00:00:00 GMT" + ], + "strict-transport-security": [ + "max-age=106384710; includeSubDomains; preload" + ], + "transfer-encoding": [ + "chunked" + ], + "vary": [ + "Accept-Encoding,User-Agent" + ], + "x-analytics": [ + "" + ], + "x-cache": [ + "cp3070 miss, cp3070 pass" + ], + "x-cache-status": [ + "pass" + ], + "x-client-ip": [ + "92.208.183.237" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "DENY" + ], + "x-request-id": [ + "a70b7e16-b2f0-41d8-8535-77f028894fd3" + ] + }, + "status": 200 + } + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/preparation/xylem/test/cassettes/wikidata_fetch_q434.json b/preparation/xylem/test/cassettes/wikidata_fetch_q434.json new file mode 100644 index 0000000..3bcb7dd --- /dev/null +++ b/preparation/xylem/test/cassettes/wikidata_fetch_q434.json @@ -0,0 +1,100 @@ +{ + "interactions": [ + { + "recorded_at": "2026-02-19T20:31:46.747987Z", + "request": { + "body": "", + "body_type": "text", + "headers": { + "accept-encoding": [ + "gzip" + ], + "user-agent": [ + "req/0.5.16" + ] + }, + "method": "GET", + "query_string": "uselang=de", + "uri": "https://www.wikidata.org/wiki/Special:EntityData/Q434.ttl" + }, + "response": { + "body": "@prefix rdf: .\n@prefix xsd: .\n@prefix ontolex: .\n@prefix dct: .\n@prefix rdfs: .\n@prefix owl: .\n@prefix wikibase: .\n@prefix skos: .\n@prefix schema: .\n@prefix cc: .\n@prefix geo: .\n@prefix prov: .\n@prefix wd: .\n@prefix data: .\n@prefix wds: .\n@prefix wdref: .\n@prefix wdv: .\n@prefix wdt: .\n@prefix wdtn: .\n@prefix p: .\n@prefix ps: .\n@prefix psv: .\n@prefix psn: .\n@prefix pq: .\n@prefix pqv: .\n@prefix pqn: .\n@prefix pr: .\n@prefix prv: .\n@prefix prn: .\n@prefix wdno: .\n\ndata:Q434 a schema:Dataset ;\n\tschema:about wd:Q434 ;\n\tcc:license ;\n\tschema:softwareVersion \"1.0.0\" ;\n\tschema:version \"2462451453\"^^xsd:integer ;\n\tschema:dateModified \"2026-02-10T23:28:11Z\"^^xsd:dateTime ;\n\twikibase:statements \"101\"^^xsd:integer ;\n\twikibase:sitelinks \"149\"^^xsd:integer ;\n\twikibase:identifiers \"68\"^^xsd:integer .\n\nwd:Q434 a wikibase:Item .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"az\" ;\n\tschema:isPartOf ;\n\tschema:name \"Armud\"@az .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ru\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@ru .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"pl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Grusza\"@pl .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@en .\n\n wikibase:wikiGroup \"species\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@en .\n\n wikibase:wikiGroup \"commons\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"en\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pear\"@en .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"de\" ;\n\tschema:isPartOf ;\n\tschema:name \"Birnen\"@de .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"fr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@fr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"es\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@es .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ru\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@ru .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"it\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@it .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ja\" ;\n\tschema:isPartOf ;\n\tschema:name \"ナシ属\"@ja .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"pl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Grusza\"@pl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"pt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pera\"@pt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"zh\" ;\n\tschema:isPartOf ;\n\tschema:name \"梨\"@zh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Päronsläktet\"@sv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"fa\" ;\n\tschema:isPartOf ;\n\tschema:name \"گلابی\"@fa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"he\" ;\n\tschema:isPartOf ;\n\tschema:name \"אגס\"@he .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Armut\"@tr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Körte\"@hu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"vi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Lê (thực vật)\"@vi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"nb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pæreslekta\"@nb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ko\" ;\n\tschema:isPartOf ;\n\tschema:name \"배나무속\"@ko .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ca\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@ca .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"cs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hrušeň\"@cs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Крушка\"@sr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@ro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"id\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pir\"@id .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"da\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pære\"@da .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"en-simple\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pear\"@en-simple .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"bg\" ;\n\tschema:isPartOf ;\n\tschema:name \"Круша\"@bg .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"af\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peer\"@af .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"am\" ;\n\tschema:isPartOf ;\n\tschema:name \"ሸክኒት\"@am .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"an\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@an .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"arc\" ;\n\tschema:isPartOf ;\n\tschema:name \"ܟܡܬܪܐ\"@arc .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"atj\" ;\n\tschema:isPartOf ;\n\tschema:name \"Wamin ka kinkomakisitc\"@atj .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"av\" ;\n\tschema:isPartOf ;\n\tschema:name \"Гени\"@av .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"az\" ;\n\tschema:isPartOf ;\n\tschema:name \"Armud\"@az .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"azb\" ;\n\tschema:isPartOf ;\n\tschema:name \"آرمود\"@azb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sgs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Grūšė\"@sgs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"be\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@be .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"bs\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kruška\"@bs .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"cdo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Lì\"@cdo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ceb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@ceb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"chr\" ;\n\tschema:isPartOf ;\n\tschema:name \"ᏎᏗᏳᏍᏗ ᏒᎦᏔ\"@chr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ckb\" ;\n\tschema:isPartOf ;\n\tschema:name \"ھەرمێ\"@ckb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"cy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Gellygen\"@cy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"dsb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kšušcyna\"@dsb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"dv\" ;\n\tschema:isPartOf ;\n\tschema:name \"ނާޝްޕަތީ\"@dv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"el\" ;\n\tschema:isPartOf ;\n\tschema:name \"Αχλάδι\"@el .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"eo\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pirarbo\"@eo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"et\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pirnipuu (perekond)\"@et .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"vro\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pirn\"@vro .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"frr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peerbuumer\"@frr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"fur\" ;\n\tschema:isPartOf ;\n\tschema:name \"Piruçâr\"@fur .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ga\" ;\n\tschema:isPartOf ;\n\tschema:name \"Piorra\"@ga .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"gl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@gl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"gv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peear\"@gv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kruška\"@hr .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hsb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Krušwina\"@hsb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"is\" ;\n\tschema:isPartOf ;\n\tschema:name \"Perur\"@is .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ka\" ;\n\tschema:isPartOf ;\n\tschema:name \"მსხალი\"@ka .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"kaa\" ;\n\tschema:isPartOf ;\n\tschema:name \"Almurt\"@kaa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"kk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Алмұрт\"@kk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"kn\" ;\n\tschema:isPartOf ;\n\tschema:name \"ಮರಸೇಬು\"@kn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ks\" ;\n\tschema:isPartOf ;\n\tschema:name \"ٹَنگ\"@ks .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ku\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hirmî\"@ku .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ky\" ;\n\tschema:isPartOf ;\n\tschema:name \"Алмурут\"@ky .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"la\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@la .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"lo\" ;\n\tschema:isPartOf ;\n\tschema:name \"ສາລີ້\"@lo .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"lt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kriaušė\"@lt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"lv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Bumbieres\"@lv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mdf\" ;\n\tschema:isPartOf ;\n\tschema:name \"Грушакс\"@mdf .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pea (huarākau)\"@mi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Круша\"@mk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mn\" ;\n\tschema:isPartOf ;\n\tschema:name \"Лийр\"@mn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mrj\" ;\n\tschema:isPartOf ;\n\tschema:name \"Грушаву\"@mrj .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"nah\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pera\"@nah .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ne\" ;\n\tschema:isPartOf ;\n\tschema:name \"नास्पाती\"@ne .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"os\" ;\n\tschema:isPartOf ;\n\tschema:name \"Кæрдо\"@os .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"pa\" ;\n\tschema:isPartOf ;\n\tschema:name \"ਨਾਸ਼ਪਾਤੀ\"@pa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ps\" ;\n\tschema:isPartOf ;\n\tschema:name \"ناک\"@ps .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"qu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pira\"@qu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sa\" ;\n\tschema:isPartOf ;\n\tschema:name \"रुचकफलम्\"@sa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sco\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peir\"@sco .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"se\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pearamuorat\"@se .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sh\" ;\n\tschema:isPartOf ;\n\tschema:name \"Kruška\"@sh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hruška (rod)\"@sl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sq\" ;\n\tschema:isPartOf ;\n\tschema:name \"Dardha\"@sq .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sw\" ;\n\tschema:isPartOf ;\n\tschema:name \"Mpea\"@sw .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ta\" ;\n\tschema:isPartOf ;\n\tschema:name \"பேரி\"@ta .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tg\" ;\n\tschema:isPartOf ;\n\tschema:name \"Нок\"@tg .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peras\"@tl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tyv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@tyv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ug\" ;\n\tschema:isPartOf ;\n\tschema:name \"ئامۇت\"@ug .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ur\" ;\n\tschema:isPartOf ;\n\tschema:name \"ناشپاتی\"@ur .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"uz\" ;\n\tschema:isPartOf ;\n\tschema:name \"Nok\"@uz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"wa\" ;\n\tschema:isPartOf ;\n\tschema:name \"Poerî\"@wa .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"war\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@war .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"xmf\" ;\n\tschema:isPartOf ;\n\tschema:name \"სხული\"@xmf .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"za\" ;\n\tschema:isPartOf ;\n\tschema:name \"Makleiz\"@za .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"nan\" ;\n\tschema:isPartOf ;\n\tschema:name \"Lâi-á\"@nan .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"yue\" ;\n\tschema:isPartOf ;\n\tschema:name \"梨屬\"@yue .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"wuu\" ;\n\tschema:isPartOf ;\n\tschema:name \"生梨\"@wuu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tt\" ;\n\tschema:isPartOf ;\n\tschema:name \"Армут\"@tt .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"scn\" ;\n\tschema:isPartOf ;\n\tschema:name \"Piru\"@scn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sd\" ;\n\tschema:isPartOf ;\n\tschema:name \"ناسپتي\"@sd .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"inh\" ;\n\tschema:isPartOf ;\n\tschema:name \"Кхор\"@inh .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ast\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@ast .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"te\" ;\n\tschema:isPartOf ;\n\tschema:name \"బేరి\"@te .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ar\" ;\n\tschema:isPartOf ;\n\tschema:name \"كمثرى (جنس)\"@ar .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hyw\" ;\n\tschema:isPartOf ;\n\tschema:name \"Տանձենի\"@hyw .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"uk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша (рід)\"@uk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"gsw\" ;\n\tschema:isPartOf ;\n\tschema:name \"Birnen\"@gsw .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"lb\" ;\n\tschema:isPartOf ;\n\tschema:name \"Bierebeem\"@lb .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hy\" ;\n\tschema:isPartOf ;\n\tschema:name \"Տանձ\"@hy .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"fi\" ;\n\tschema:isPartOf ;\n\tschema:name \"Päärynäpuut\"@fi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hruška (rod)\"@sk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"diq\" ;\n\tschema:isPartOf ;\n\tschema:name \"Mıro\"@diq .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"vec\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@vec .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"vls\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@vls .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"th\" ;\n\tschema:isPartOf ;\n\tschema:name \"สาลี่ (สกุล)\"@th .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"eu\" ;\n\tschema:isPartOf ;\n\tschema:name \"Udareondo (generoa)\"@eu .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"et\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pirnipuu\"@et .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"cv\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@cv .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ce\" ;\n\tschema:isPartOf ;\n\tschema:name \"Кхор\"@ce .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ms\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pir\"@ms .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"arz\" ;\n\tschema:isPartOf ;\n\tschema:name \"كمثرى (جنس نباتى)\"@arz .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"he\" ;\n\tschema:isPartOf ;\n\tschema:name \"אגס\"@he .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"nl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peer (geslacht)\"@nl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"crh-Latn\" ;\n\tschema:isPartOf ;\n\tschema:name \"Armut\"@crh-Latn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ba\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@ba .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"be-tarask\" ;\n\tschema:isPartOf ;\n\tschema:name \"Груша\"@be-tarask .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"vep\" ;\n\tschema:isPartOf ;\n\tschema:name \"Gruš\"@vep .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"pam\" ;\n\tschema:isPartOf ;\n\tschema:name \"Peras\"@pam .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"ru\" ;\n\tschema:isPartOf ;\n\tschema:name \"Категория:Груши\"@ru .\n\n wikibase:wikiGroup \"wikinews\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"tly\" ;\n\tschema:isPartOf ;\n\tschema:name \"Hulə\"@tly .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"sr\" ;\n\tschema:isPartOf ;\n\tschema:name \"Крушка\"@sr .\n\n wikibase:wikiGroup \"wikiquote\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"kge\" ;\n\tschema:isPartOf ;\n\tschema:name \"Jambu Binjai\"@kge .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"rsk\" ;\n\tschema:isPartOf ;\n\tschema:name \"Грушкa\"@rsk .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mwl\" ;\n\tschema:isPartOf ;\n\tschema:name \"Péra\"@mwl .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"li\" ;\n\tschema:isPartOf ;\n\tschema:name \"Paer\"@li .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"fj\" ;\n\tschema:isPartOf ;\n\tschema:name \"Pyrus\"@fj .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"hi\" ;\n\tschema:isPartOf ;\n\tschema:name \"नाशपाती\"@hi .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"bho\" ;\n\tschema:isPartOf ;\n\tschema:name \"नाशपाती\"@bho .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"as\" ;\n\tschema:isPartOf ;\n\tschema:name \"নাচপতি\"@as .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"bn\" ;\n\tschema:isPartOf ;\n\tschema:name \"নাশপাতি\"@bn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mai\" ;\n\tschema:isPartOf ;\n\tschema:name \"नास्पाती\"@mai .\n\n wikibase:wikiGroup \"wikipedia\" .\n\n a schema:Article ;\n\tschema:about wd:Q434 ;\n\tschema:inLanguage \"mzn\" ;\n\tschema:isPartOf ;\n\tschema:name \"میوه\"@mzn .\n\n wikibase:wikiGroup \"wikipedia\" .\n\nwd:Q434 wdt:P1672 wd:Q13099586,\n\t\twd:Q1964340,\n\t\twd:Q136648015 ;\n\twdt:P225 \"Pyrus\" ;\n\twdt:P105 wd:Q34740 ;\n\twdt:P373 \"Pyrus\" ;\n\twdt:P171 wd:Q2119847 ;\n\twdt:P18 ,\n\t\t,\n\t\t ;\n\twdt:P910 wd:Q6535616 ;\n\twdt:P685 \"3766\" ;\n\twdtn:P685 ;\n\twdt:P815 \"25294\" ;\n\twdt:P31 wd:Q16521 ;\n\twdt:P646 \"/m/061_f\" ;\n\twdt:P830 \"29920\" ;\n\twdt:P961 \"34002-1\" ;\n\twdtn:P961 ;\n\twdt:P1745 \"1608\" ;\n\twdt:P1421 ;\n\twdt:P1772 \"PYRUS\" ;\n\twdt:P1747 \"127801\" ;\n\twdt:P1939 \"1006578\" ;\n\twdt:P2036 \"194247\" ;\n\twdt:P935 \"Pyrus\" ;\n\twdt:P846 \"2986532\" ;\n\twdt:P1014 \"300375178\" ;\n\twdtn:P1014 ;\n\twdt:P2752 \"c6ce3481-e0f3-418f-87e7-89e4d1052d8f\" ;\n\twdt:P1843 \"pear\"@en,\n\t\t\"Peer\"@nl,\n\t\t\"梨属\"@zh-hans,\n\t\t\"梨属\"@zh ;\n\twdt:P3105 \"102597\" ;\n\twdt:P3101 \"22626\" ;\n\twdt:P3031 \"1PYUG\" ;\n\twdtn:P3031 ;\n\twdt:P960 \"40021515\" ;\n\twdt:P244 \"sh85099008\" ;\n\twdtn:P244 ;\n\twdt:P3405 \"121280\" ;\n\twdt:P3240 \"NHMSYS0000462196\" ;\n\twdt:P2354 wd:Q1863197 ;\n\twdt:P508 \"24148\" ;\n\twdtn:P508 ;\n\twdt:P4000 wd:Q41274 ;\n\twdt:P1417 \"plant/pear\" ;\n\twdt:P1343 wd:Q1138524,\n\t\twd:Q1768721,\n\t\twd:Q107402112,\n\t\twd:Q112869417,\n\t\twd:Q20078554,\n\t\twd:Q867541,\n\t\twd:Q16082057,\n\t\twd:Q1029706 ;\n\twdt:P5037 \"urn:lsid:ipni.org:names:30000967-2\" ;\n\twdtn:P5037 ;\n\twdt:P5019 \"birne-botanik\" ;\n\twdt:P5055 \"1332631\" ;\n\twdtn:P5055 ;\n\twdt:P3151 \"58736\" ;\n\twdt:P5263 \"39081\" ;\n\twdt:P5984 \"75432\" ;\n\twdt:P5945 \"0c00da0e-0a71-4772-b061-576d049e1310\" ;\n\twdt:P6573 \"Birnen\" ;\n\twdt:P6933 \"Pyrus\" ;\n\twdt:P486 \"D031989\" ;\n\twdtn:P486 ;\n\twdt:P7202 \"52243\" ;\n\twdt:P6142 \"6434\" ;\n\twdt:P4311 \"292\" ;\n\twdtn:P4311 ;\n\twdt:P618 wd:Q11358,\n\t\twd:Q21296145 ;\n\twdt:P8408 \"PearTree\" ;\n\twdtn:P8408 ;\n\twdt:P7715 \"wfo-4000032328\" ;\n\twdt:P8892 \"Pyrus\" ;\n\twdt:P9157 \"259068\" ;\n\twdt:P8707 \"103382\" ;\n\twdt:P3553 \"19965397\" ;\n\twdt:P9741 \"987\" ;\n\twdt:P9799 \"99013\" ;\n\twdt:P3911 \"14107-5\" ;\n\twdtn:P3911 ;\n\twdt:P8189 \"987007531448805171\" ;\n\twdt:P4342 \"pæreslekta\" ;\n\twdt:P8313 \"pære\" ;\n\twdt:P10585 \"7689\" ;\n\twdt:P8814 \"12672372-n\" ;\n\twdtn:P8814 ;\n\twdt:P5008 wd:Q6173448 ;\n\twdt:P2892 \"C1138601\" ;\n\twdt:P1617 \"b4617e6d-fd3a-4630-98e6-58245b0913de\" ;\n\twdtn:P1617 ;\n\twdt:P10565 \"483647\" ;\n\twdt:P3606 \"163500\" ;\n\twdt:P7537 \"225217\" ;\n\twdt:P9408 \"112173\" ;\n\twdt:P10707 \"493200\" ;\n\twdt:P1727 \"127801\" ;\n\twdt:P12367 \"7191\" ;\n\twdt:P12596 \"19712\" ;\n\twdt:P11514 \"grusha-9ae1e8\" ;\n\twdt:P12788 \"5688\" ;\n\twdt:P487 \"🍐\" ;\n\twdt:P672 \"B01.875.800.575.912.250.859.937.500.699\" ;\n\twdtn:P672 ;\n\twdt:P279 wd:Q10884 ;\n\twdt:P10890 \"142130\" ;\n\twdt:P10701 \"FB126506\" ;\n\twdt:P12292 \"6fff989c-7c69-44ba-8a48-385cb6a75c68\" ;\n\tp:P1672 wds:Q434-d221dcf7-4752-1ea9-9db5-fd213c79bf6d .\n\nwds:Q434-d221dcf7-4752-1ea9-9db5-fd213c79bf6d a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q13099586 .\n\nwd:Q434 p:P1672 wds:Q434-b367197e-4bf8-2fb1-9d13-cc6b2d714956 .\n\nwds:Q434-b367197e-4bf8-2fb1-9d13-cc6b2d714956 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q1964340 .\n\nwd:Q434 p:P1672 wds:Q434-06212ebf-4107-5ca1-f5e2-d596a0c57db4 .\n\nwds:Q434-06212ebf-4107-5ca1-f5e2-d596a0c57db4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1672 wd:Q136648015 .\n\nwd:Q434 p:P225 wds:q434-609F8DC3-5256-4015-A59B-D8988C3B8479 .\n\nwds:q434-609F8DC3-5256-4015-A59B-D8988C3B8479 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P225 \"Pyrus\" ;\n\tpq:P405 wd:Q1043 ;\n\tpq:P574 \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P574 wdv:4153fee0d70688a29ab9db6b000d1c1f ;\n\tprov:wasDerivedFrom wdref:69635d3baf5ffa819690813ceb5c81c458c7ec89,\n\t\twdref:d3ef5fc324ca908f24ea9b7ec3f82a60b1b5d1a5 .\n\nwd:Q434 p:P105 wds:q434-32D61421-9AE7-439D-A74D-2041CFB2F9F4 .\n\nwds:q434-32D61421-9AE7-439D-A74D-2041CFB2F9F4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P105 wd:Q34740 ;\n\tprov:wasDerivedFrom wdref:69635d3baf5ffa819690813ceb5c81c458c7ec89 .\n\nwd:Q434 p:P373 wds:q434-634ff1dd-42df-4a78-e3ca-28647b1c14f7 .\n\nwds:q434-634ff1dd-42df-4a78-e3ca-28647b1c14f7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P373 \"Pyrus\" .\n\nwd:Q434 p:P171 wds:q434-3685c675-46f0-c055-9b6f-86d5ef6e02e5 .\n\nwds:q434-3685c675-46f0-c055-9b6f-86d5ef6e02e5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P171 wd:Q2119847 .\n\nwd:Q434 p:P18 wds:Q434-CD491E3A-0313-40B9-83BB-C535B9E9B129 .\n\nwds:Q434-CD491E3A-0313-40B9-83BB-C535B9E9B129 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P5961 wd:Q506,\n\t\twd:Q33971 .\n\nwd:Q434 p:P18 wds:Q434-4746EFCA-DE1D-4CB6-974F-87402A55D1A8 .\n\nwds:Q434-4746EFCA-DE1D-4CB6-974F-87402A55D1A8 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 .\n\nwd:Q434 p:P18 wds:Q434-cb267b40-45eb-6b72-51aa-5e5740e04cad .\n\nwds:Q434-cb267b40-45eb-6b72-51aa-5e5740e04cad a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P18 ;\n\tpq:P5961 wd:Q1364 .\n\nwd:Q434 p:P910 wds:Q434-519F4E9D-7408-47BE-9B3B-740CAAE39F0A .\n\nwds:Q434-519F4E9D-7408-47BE-9B3B-740CAAE39F0A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P910 wd:Q6535616 .\n\nwd:Q434 p:P685 wds:Q434-FB65E389-78F5-475E-ACFC-785DD5F26105 .\n\nwds:Q434-FB65E389-78F5-475E-ACFC-785DD5F26105 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P685 \"3766\" ;\n\tpsn:P685 ;\n\tprov:wasDerivedFrom wdref:731c2c96b44f2bba4b1e6d92dc8c6b3e0b0d96da .\n\nwd:Q434 p:P815 wds:Q434-2F435BB3-A329-49E5-845B-71D5ADC42C19 .\n\nwds:Q434-2F435BB3-A329-49E5-845B-71D5ADC42C19 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P815 \"25294\" ;\n\tprov:wasDerivedFrom wdref:84b0bc804cd5367055bc5aac1e339b807ff3ad3f .\n\nwd:Q434 p:P31 wds:Q434-8E529B3E-47A7-48D8-A5D9-8E8E6D5A7924 .\n\nwds:Q434-8E529B3E-47A7-48D8-A5D9-8E8E6D5A7924 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P31 wd:Q16521 .\n\nwd:Q434 p:P646 wds:Q434-7377425D-1572-495A-BD82-89BD242CC676 .\n\nwds:Q434-7377425D-1572-495A-BD82-89BD242CC676 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P646 \"/m/061_f\" ;\n\tprov:wasDerivedFrom wdref:2b00cb481cddcac7623114367489b5c194901c4a .\n\nwd:Q434 p:P830 wds:Q434-CC49EE6E-DE0C-404A-B163-E77E10360887 .\n\nwds:Q434-CC49EE6E-DE0C-404A-B163-E77E10360887 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P830 \"29920\" ;\n\tprov:wasDerivedFrom wdref:7e71b7ede7931e7e2ee9ce54e832816fe948b402 .\n\nwd:Q434 p:P961 wds:Q434-77F0E9D1-46BD-4078-966F-E866113DBAD1 .\n\nwds:Q434-77F0E9D1-46BD-4078-966F-E866113DBAD1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P961 \"34002-1\" ;\n\tpsn:P961 .\n\nwd:Q434 p:P1745 wds:Q434-F3C43B75-9B27-4625-9397-6BFF1D8038D3 .\n\nwds:Q434-F3C43B75-9B27-4625-9397-6BFF1D8038D3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1745 \"1608\" ;\n\tprov:wasDerivedFrom wdref:8a182a7b73d40ae0b1c199afd13549991cd2b970 .\n\nwd:Q434 p:P1421 wds:Q434-189B65C5-E595-4FC1-AED9-F6857613BE40 .\n\nwds:Q434-189B65C5-E595-4FC1-AED9-F6857613BE40 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1421 ;\n\tprov:wasDerivedFrom wdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec .\n\nwd:Q434 p:P1772 wds:Q434-6357EF49-C979-48D8-9213-90B50B8F068E .\n\nwds:Q434-6357EF49-C979-48D8-9213-90B50B8F068E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1772 \"PYRUS\" ;\n\tprov:wasDerivedFrom wdref:40839070c4f4bcf09e6b4c9fd6ab0657fc7979fb .\n\nwd:Q434 p:P1747 wds:Q434-1DDDD366-1AE6-4AED-AC51-3313E61CD2AD .\n\nwds:Q434-1DDDD366-1AE6-4AED-AC51-3313E61CD2AD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1747 \"127801\" ;\n\tprov:wasDerivedFrom wdref:a83f6aef456a6b18761b8db5e165ebc2f9d1fc87 .\n\nwd:Q434 p:P1939 wds:Q434-D8BF75EC-6145-43DE-9FCC-BAEAC054FB36 .\n\nwds:Q434-D8BF75EC-6145-43DE-9FCC-BAEAC054FB36 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1939 \"1006578\" ;\n\tprov:wasDerivedFrom wdref:2847aa108f4028011a46974f874835af54401c1e .\n\nwd:Q434 p:P2036 wds:Q434-256EFF8D-66E8-4340-A39F-8C1DAC8C82CE .\n\nwds:Q434-256EFF8D-66E8-4340-A39F-8C1DAC8C82CE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2036 \"194247\" ;\n\tprov:wasDerivedFrom wdref:fa91f1c071001ae40458d3166f94962be960f313 .\n\nwd:Q434 p:P935 wds:Q434-4CB3ACD3-58C1-4A67-B600-867C62430022 .\n\nwds:Q434-4CB3ACD3-58C1-4A67-B600-867C62430022 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P935 \"Pyrus\" .\n\nwd:Q434 p:P846 wds:Q434-C247162A-EE25-47AA-AFD5-A4853DA740BB .\n\nwds:Q434-C247162A-EE25-47AA-AFD5-A4853DA740BB a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P846 \"2986532\" ;\n\tprov:wasDerivedFrom wdref:1203b041be4d35d68e612524c65512a7933a4fb1 .\n\nwd:Q434 p:P1014 wds:Q434-8AA9AB5E-3381-4A19-8B64-B45CB63041BD .\n\nwds:Q434-8AA9AB5E-3381-4A19-8B64-B45CB63041BD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1014 \"300375178\" ;\n\tpsn:P1014 .\n\nwd:Q434 p:P2752 wds:Q434-79603872-DA33-4D14-935A-6D3585609C4E .\n\nwds:Q434-79603872-DA33-4D14-935A-6D3585609C4E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2752 \"c6ce3481-e0f3-418f-87e7-89e4d1052d8f\" ;\n\tprov:wasDerivedFrom wdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 .\n\nwd:Q434 p:P1843 wds:Q434-C10D4930-FBC9-404C-890A-6B1E2451A491 .\n\nwds:Q434-C10D4930-FBC9-404C-890A-6B1E2451A491 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"pear\"@en ;\n\tprov:wasDerivedFrom wdref:4a9b7589786948d52b86be8f72188bae741e4a0c .\n\nwd:Q434 p:P1843 wds:Q434-E59FFB05-334E-4A73-A86E-4E350FB8231C .\n\nwds:Q434-E59FFB05-334E-4A73-A86E-4E350FB8231C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"Peer\"@nl ;\n\tprov:wasDerivedFrom wdref:c0a11c33e1269de68db514169e1aa70667fa8666 .\n\nwd:Q434 p:P1843 wds:Q434-E5EEBA80-326E-47DD-BCCD-B588B919EDCE .\n\nwds:Q434-E5EEBA80-326E-47DD-BCCD-B588B919EDCE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"梨属\"@zh-hans ;\n\tprov:wasDerivedFrom wdref:68c8b1cdd11af88f72ef5e28531c3f32c6d39e0f .\n\nwd:Q434 p:P1843 wds:Q434-5B157747-E380-4195-80D2-983A164338C5 .\n\nwds:Q434-5B157747-E380-4195-80D2-983A164338C5 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1843 \"梨属\"@zh ;\n\tprov:wasDerivedFrom wdref:89cd55a27fadb0c2a07ef70bc2369b8f145e045d,\n\t\twdref:e6289b059510246fa5e5b8a69bbfe87bd72f3909,\n\t\twdref:289c05080b160431bb93996ae6319710d1585139,\n\t\twdref:6428b6c59366d63c9281d028d59ab9d4a2ec36a5,\n\t\twdref:976ccd772da7b3c8def5011ced893cf7339eac4b,\n\t\twdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5,\n\t\twdref:0ea5e6cd63161b59a45123db1702f5daa4468603,\n\t\twdref:1fb582aac1c620902d8c85932d8f5a168fdced58,\n\t\twdref:5e40bce415e51d13178bb2013b8c823d2fecd247 .\n\nwd:Q434 p:P3105 wds:Q434-23445DE9-ED76-4847-B697-C562AB109EE4 .\n\nwds:Q434-23445DE9-ED76-4847-B697-C562AB109EE4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3105 \"102597\" ;\n\tprov:wasDerivedFrom wdref:d4bd87b862b12d99d26e86472d44f26858dee639 .\n\nwd:Q434 p:P3101 wds:Q434-190BC184-546C-41FA-A371-02F70EE14B26 .\n\nwds:Q434-190BC184-546C-41FA-A371-02F70EE14B26 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3101 \"22626\" ;\n\tprov:wasDerivedFrom wdref:bed3872ed426ee90c9beee63b5169ce4811e85c4 .\n\nwd:Q434 p:P3031 wds:Q434-4DA72537-AFF2-4337-AD30-CD0CB2682F30 .\n\nwds:Q434-4DA72537-AFF2-4337-AD30-CD0CB2682F30 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3031 \"1PYUG\" ;\n\tpsn:P3031 .\n\nwd:Q434 p:P960 wds:Q434-4DC2715A-4FA0-484F-8088-2B80B252831E .\n\nwds:Q434-4DC2715A-4FA0-484F-8088-2B80B252831E a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P960 \"40021515\" ;\n\tprov:wasDerivedFrom wdref:03ff8d3af648f80770f982403a704a607fdb1794 .\n\nwd:Q434 p:P244 wds:Q434-4101d3c5-4760-88f8-f7a3-0fa7c9ec330b .\n\nwds:Q434-4101d3c5-4760-88f8-f7a3-0fa7c9ec330b a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P244 \"sh85099008\" ;\n\tpsn:P244 ;\n\tprov:wasDerivedFrom wdref:b36c27460e708e7a8fd8b6f5af1a20d535c53d57 .\n\nwd:Q434 p:P3405 wds:Q434-1DEF1B81-01CE-4960-B492-F6F0E8AE4233 .\n\nwds:Q434-1DEF1B81-01CE-4960-B492-F6F0E8AE4233 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3405 \"121280\" ;\n\tprov:wasDerivedFrom wdref:2e164bfe7be311f804fcf231ac588871f5dbb532 .\n\nwd:Q434 p:P3240 wds:Q434-323CC240-DAC0-483D-8915-11ACB75F9D07 .\n\nwds:Q434-323CC240-DAC0-483D-8915-11ACB75F9D07 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3240 \"NHMSYS0000462196\" ;\n\tprov:wasDerivedFrom wdref:7483c54280ce0f876fc05446fae874ea9d29318e .\n\nwd:Q434 p:P2354 wds:Q434-69c57441-49ed-797b-29f2-793e66a50760 .\n\nwds:Q434-69c57441-49ed-797b-29f2-793e66a50760 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2354 wd:Q1863197 .\n\nwd:Q434 p:P508 wds:Q434-1A9A49D0-6F73-4EEA-8C2C-91930757F008 .\n\nwds:Q434-1A9A49D0-6F73-4EEA-8C2C-91930757F008 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P508 \"24148\" ;\n\tpsn:P508 ;\n\tprov:wasDerivedFrom wdref:ff65511d37e885bcf005b99c2241192548c3f03a .\n\nwd:Q434 p:P4000 wds:Q434-ea814dc4-46e0-a011-ee66-e79916d3ba15 .\n\nwds:Q434-ea814dc4-46e0-a011-ee66-e79916d3ba15 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4000 wd:Q41274 .\n\nwd:Q434 p:P1417 wds:Q434-5FC65D19-C4BA-47C9-8021-8221BD51903D .\n\nwds:Q434-5FC65D19-C4BA-47C9-8021-8221BD51903D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1417 \"plant/pear\" ;\n\tpq:P1810 \"pear\" .\n\nwd:Q434 p:P1343 wds:Q434-123C7153-9B8A-4117-AE8F-D6EF14CF86D3 .\n\nwds:Q434-123C7153-9B8A-4117-AE8F-D6EF14CF86D3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q1138524 ;\n\tpq:P805 wd:Q19993801 .\n\nwd:Q434 p:P1343 wds:Q434-9CCBDF49-8438-482B-87A0-22F7705471CD .\n\nwds:Q434-9CCBDF49-8438-482B-87A0-22F7705471CD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q1768721 ;\n\tpq:P805 wd:Q96599327 .\n\nwd:Q434 p:P1343 wds:Q434-8E35308F-918E-4DC4-8D37-5649BBD04707 .\n\nwds:Q434-8E35308F-918E-4DC4-8D37-5649BBD04707 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q107402112 ;\n\tpq:P805 wd:Q107403730 .\n\nwd:Q434 p:P1343 wds:Q434-7AAF5EA2-E9A1-497E-8711-790B449FD908 .\n\nwds:Q434-7AAF5EA2-E9A1-497E-8711-790B449FD908 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q112869417 ;\n\tpq:P304 \"354\" .\n\nwd:Q434 p:P1343 wds:Q434-a5902cc1-919b-4cf8-b8e9-f4fbf628fd44 .\n\nwds:Q434-a5902cc1-919b-4cf8-b8e9-f4fbf628fd44 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q20078554 ;\n\tpq:P805 wd:Q120641649 .\n\nwd:Q434 p:P1343 wds:Q434-6BD40B9B-3F06-4708-A845-E04D2BAEE619 .\n\nwds:Q434-6BD40B9B-3F06-4708-A845-E04D2BAEE619 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q867541 ;\n\tpq:P805 wd:Q84692162 .\n\nwd:Q434 p:P1343 wds:Q434-278D0A71-5704-4713-8995-ED3EB690A79A .\n\nwds:Q434-278D0A71-5704-4713-8995-ED3EB690A79A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q16082057 ;\n\tpq:P805 wd:Q124013478 .\n\nwd:Q434 p:P1343 wds:Q434-7D666E05-4777-40D1-9D0F-0912FC1244BB .\n\nwds:Q434-7D666E05-4777-40D1-9D0F-0912FC1244BB a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1343 wd:Q1029706 ;\n\tpq:P805 wd:Q136511599 .\n\nwd:Q434 p:P5037 wds:Q434-465AA261-E9BE-468E-98EF-85A43F0DB872 .\n\nwds:Q434-465AA261-E9BE-468E-98EF-85A43F0DB872 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5037 \"urn:lsid:ipni.org:names:30000967-2\" ;\n\tpsn:P5037 ;\n\tprov:wasDerivedFrom wdref:f8f2c50b3b360d24ac8f9512e371dbd2555b16cd .\n\nwd:Q434 p:P5019 wds:Q434-87a08094-40a5-a76c-206e-f228eacbac98 .\n\nwds:Q434-87a08094-40a5-a76c-206e-f228eacbac98 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5019 \"birne-botanik\" .\n\nwd:Q434 p:P5055 wds:Q434-8B246D3E-368F-4898-B167-45DBDCBD3BA7 .\n\nwds:Q434-8B246D3E-368F-4898-B167-45DBDCBD3BA7 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5055 \"1332631\" ;\n\tpsn:P5055 ;\n\tprov:wasDerivedFrom wdref:4e7d750bb4aef749817bba80ace910b07b40db24 .\n\nwd:Q434 p:P3151 wds:Q434-CCD0BC2D-3A87-4465-B7CC-BC6C67F5F6F3 .\n\nwds:Q434-CCD0BC2D-3A87-4465-B7CC-BC6C67F5F6F3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3151 \"58736\" .\n\nwd:Q434 p:P2924 wds:Q434-EF472A28-22EE-43F4-B175-C094C619152D .\n\nwds:Q434-EF472A28-22EE-43F4-B175-C094C619152D a wikibase:Statement ;\n\twikibase:rank wikibase:DeprecatedRank ;\n\tps:P2924 \"2855600\" ;\n\tpq:P1810 \"ГРУША\" ;\n\tpq:P2241 wd:Q123562959 .\n\nwd:Q434 p:P2924 wds:Q434-C03D9668-817F-4BC2-800B-D44A97ACE574 .\n\nwds:Q434-C03D9668-817F-4BC2-800B-D44A97ACE574 a wikibase:Statement ;\n\twikibase:rank wikibase:DeprecatedRank ;\n\tps:P2924 \"1933421\" ;\n\tpq:P2241 wd:Q45403344 .\n\nwd:Q434 p:P5263 wds:Q434-E5B005E1-D575-44D9-B2F8-BCB2B85BB760 .\n\nwds:Q434-E5B005E1-D575-44D9-B2F8-BCB2B85BB760 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5263 \"39081\" ;\n\tprov:wasDerivedFrom wdref:af0b4a3c41ef0249d8d6e03c1ecc7c6a8f948acf .\n\nwd:Q434 p:P5984 wds:Q434-9528E1EC-939D-4499-880B-37E9C3A82378 .\n\nwds:Q434-9528E1EC-939D-4499-880B-37E9C3A82378 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5984 \"75432\" ;\n\tprov:wasDerivedFrom wdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa .\n\nwd:Q434 p:P5945 wds:Q434-8AC8018E-45A7-497F-B67C-3A81AC6C3990 .\n\nwds:Q434-8AC8018E-45A7-497F-B67C-3A81AC6C3990 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5945 \"0c00da0e-0a71-4772-b061-576d049e1310\" ;\n\tprov:wasDerivedFrom wdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 .\n\nwd:Q434 p:P6573 wds:Q434-6C5D795E-A00A-45FE-8A36-C2A5E6F7DEEB .\n\nwds:Q434-6C5D795E-A00A-45FE-8A36-C2A5E6F7DEEB a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6573 \"Birnen\" .\n\nwd:Q434 p:P6933 wds:Q434-BE842DBC-A35C-4247-9BE6-57902BD3D03C .\n\nwds:Q434-BE842DBC-A35C-4247-9BE6-57902BD3D03C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6933 \"Pyrus\" .\n\nwd:Q434 p:P486 wds:Q434-51EDC108-AB61-427E-BADB-ED6EAB68B12F .\n\nwds:Q434-51EDC108-AB61-427E-BADB-ED6EAB68B12F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P486 \"D031989\" ;\n\tpsn:P486 ;\n\tpq:P1810 \"Pyrus\" .\n\nwd:Q434 p:P7202 wds:Q434-CA56D97B-E68A-4BE8-B7AE-6505EEFC6183 .\n\nwds:Q434-CA56D97B-E68A-4BE8-B7AE-6505EEFC6183 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7202 \"52243\" ;\n\tprov:wasDerivedFrom wdref:1d3b14364cabecbdb80f4cca466d63b80a938fde .\n\nwd:Q434 p:P6142 wds:Q434-BD7E5286-03F9-4875-8079-C0CC5874C03B .\n\nwds:Q434-BD7E5286-03F9-4875-8079-C0CC5874C03B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P6142 \"6434\" .\n\nwd:Q434 p:P4311 wds:Q434-641DD128-6753-4257-B116-EA1845BD9024 .\n\nwds:Q434-641DD128-6753-4257-B116-EA1845BD9024 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4311 \"292\" ;\n\tpsn:P4311 .\n\nwd:Q434 p:P618 wds:Q434-6da5964d-4f17-47ff-13a6-4cf8485bb3df .\n\nwds:Q434-6da5964d-4f17-47ff-13a6-4cf8485bb3df a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P618 wd:Q11358 ;\n\tpq:P2067 \"+15.23\"^^xsd:decimal ;\n\tpqv:P2067 wdv:73b409bc009834f8ea0a416f50c6c16e ;\n\tpqn:P2067 wdv:f32dfa91b44c7fed185ef5f8231c5f43 ;\n\tprov:wasDerivedFrom wdref:5d07ed25ea85b0247469ce4e84dec9b86cb4e53d .\n\nwd:Q434 p:P618 wds:Q434-f305c548-42f4-865d-8cd6-94da2ce47b94 .\n\nwds:Q434-f305c548-42f4-865d-8cd6-94da2ce47b94 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P618 wd:Q21296145 ;\n\tpq:P2067 \"+0.36\"^^xsd:decimal ;\n\tpqv:P2067 wdv:816fc22590a5382449019a6546e9ac16 ;\n\tpqn:P2067 wdv:f97d513c8c0db2729db757babf97fca7 ;\n\tprov:wasDerivedFrom wdref:c17932f465689aac378677d9774c28fd36645c45 .\n\nwd:Q434 p:P8408 wds:Q434-DF14E374-3D85-4747-A758-1705D5824F05 .\n\nwds:Q434-DF14E374-3D85-4747-A758-1705D5824F05 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8408 \"PearTree\" ;\n\tpsn:P8408 ;\n\tprov:wasDerivedFrom wdref:9a681f9dd95c90224547c404e11295f4f7dcf54e .\n\nwd:Q434 p:P7715 wds:Q434-7551BA0A-168F-4FF3-9A41-BF4804F07CAE .\n\nwds:Q434-7551BA0A-168F-4FF3-9A41-BF4804F07CAE a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7715 \"wfo-4000032328\" ;\n\tprov:wasDerivedFrom wdref:57527789703c566ce1f69966deea902f4b52db21 .\n\nwd:Q434 p:P8892 wds:Q434-DD7A1C02-20F8-4DE6-9CD9-C52C5E10BD5A .\n\nwds:Q434-DD7A1C02-20F8-4DE6-9CD9-C52C5E10BD5A a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8892 \"Pyrus\" .\n\nwd:Q434 p:P9157 wds:Q434-70161620-9561-4622-A115-DAE7B4FD32A1 .\n\nwds:Q434-70161620-9561-4622-A115-DAE7B4FD32A1 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9157 \"259068\" ;\n\tprov:wasDerivedFrom wdref:62990530a319358633159fa90952b2c8ed25f57e .\n\nwd:Q434 p:P8707 wds:Q434-851E996A-D637-4FEE-9E73-58AA7807138D .\n\nwds:Q434-851E996A-D637-4FEE-9E73-58AA7807138D a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8707 \"103382\" .\n\nwd:Q434 p:P3553 wds:Q434-D0527A17-C3B9-4F4B-9A6E-F073A419C890 .\n\nwds:Q434-D0527A17-C3B9-4F4B-9A6E-F073A419C890 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3553 \"19965397\" ;\n\tpq:P1810 \"梨\" .\n\nwd:Q434 p:P9741 wds:Q434-01778A62-2CB8-4B9F-B0A0-448D96CC3E42 .\n\nwds:Q434-01778A62-2CB8-4B9F-B0A0-448D96CC3E42 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9741 \"987\" .\n\nwd:Q434 p:P9799 wds:Q434-04945C3D-931F-4CBB-8639-6498E09B5DE9 .\n\nwds:Q434-04945C3D-931F-4CBB-8639-6498E09B5DE9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9799 \"99013\" .\n\nwd:Q434 p:P3911 wds:Q434-3DB58CE2-E6F2-48F1-A4F0-A3709DF28061 .\n\nwds:Q434-3DB58CE2-E6F2-48F1-A4F0-A3709DF28061 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3911 \"14107-5\" ;\n\tpsn:P3911 ;\n\tpq:P4390 wd:Q39893449 .\n\nwd:Q434 p:P8189 wds:Q434-1FF37D17-05DD-4855-949F-8F6395260311 .\n\nwds:Q434-1FF37D17-05DD-4855-949F-8F6395260311 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8189 \"987007531448805171\" ;\n\tprov:wasDerivedFrom wdref:c8a47202c92936005b390eb36ddd267921b51f43 .\n\nwd:Q434 p:P2347 wds:Q434-306151CB-B842-4C53-8448-50A5496F2A3E .\n\nwds:Q434-306151CB-B842-4C53-8448-50A5496F2A3E a wikibase:Statement ;\n\twikibase:rank wikibase:DeprecatedRank ;\n\tps:P2347 \"6797\" ;\n\tpsn:P2347 ;\n\tpq:P2241 wd:Q14946528 ;\n\tpq:P8327 wd:Q146281 ;\n\tprov:wasDerivedFrom wdref:1585ea2762c84b5b67c8121bbfbd7be6b571c3db .\n\nwd:Q434 p:P4342 wds:Q434-B84B9CD7-BA36-434E-9E47-85774CF693D3 .\n\nwds:Q434-B84B9CD7-BA36-434E-9E47-85774CF693D3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P4342 \"pæreslekta\" .\n\nwd:Q434 p:P8313 wds:Q434-134187C7-5A81-4E84-958B-B733DF6BD816 .\n\nwds:Q434-134187C7-5A81-4E84-958B-B733DF6BD816 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8313 \"pære\" .\n\nwd:Q434 p:P10585 wds:Q434-363E4A99-7923-4643-BCB9-5F0855F7C178 .\n\nwds:Q434-363E4A99-7923-4643-BCB9-5F0855F7C178 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10585 \"7689\" .\n\nwd:Q434 p:P8814 wds:Q434-345DD7F7-6FC0-44D9-B6BB-0C6B9939BA6B .\n\nwds:Q434-345DD7F7-6FC0-44D9-B6BB-0C6B9939BA6B a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P8814 \"12672372-n\" ;\n\tpsn:P8814 ;\n\tprov:wasDerivedFrom wdref:3f8c4934cc38de77b597e01bd5028acb514abd2d .\n\nwd:Q434 p:P5008 wds:Q434-22097D4C-BBFF-4C39-9C51-A6642EAE358C .\n\nwds:Q434-22097D4C-BBFF-4C39-9C51-A6642EAE358C a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P5008 wd:Q6173448 ;\n\tpq:P585 \"2022-10-31T00:00:00Z\"^^xsd:dateTime ;\n\tpqv:P585 wdv:70f06890e5b9388fda5e8da1c1fcd26a .\n\nwd:Q434 p:P2892 wds:Q434-FA641E8A-2A69-417E-82E7-D88966FFA83F .\n\nwds:Q434-FA641E8A-2A69-417E-82E7-D88966FFA83F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P2892 \"C1138601\" ;\n\tprov:wasDerivedFrom wdref:84a86b2096ce3b54ac349f67a0f238e8ed0be477 .\n\nwd:Q434 p:P1617 wds:Q434-DD13E104-7215-4890-81FC-014FEB00753F .\n\nwds:Q434-DD13E104-7215-4890-81FC-014FEB00753F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1617 \"b4617e6d-fd3a-4630-98e6-58245b0913de\" ;\n\tpsn:P1617 ;\n\tprov:wasDerivedFrom wdref:8582d8416671f1f2567247201bac753552435ca5 .\n\nwd:Q434 p:P10565 wds:Q434-a49b1f32-4dfa-edec-f6d6-eb1bf70bb2f6 .\n\nwds:Q434-a49b1f32-4dfa-edec-f6d6-eb1bf70bb2f6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10565 \"483647\" .\n\nwd:Q434 p:P3606 wds:Q434-BDF64FF8-DDB3-41AA-AE5C-E60BA4C507A9 .\n\nwds:Q434-BDF64FF8-DDB3-41AA-AE5C-E60BA4C507A9 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P3606 \"163500\" .\n\nwd:Q434 p:P7537 wds:Q434-1A7E67EF-E244-4517-97CD-D618C774FD11 .\n\nwds:Q434-1A7E67EF-E244-4517-97CD-D618C774FD11 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P7537 \"225217\" ;\n\tprov:wasDerivedFrom wdref:ef6dade85f49421e7db939f985e8ae99cc59823f .\n\nwd:Q434 p:P9408 wds:Q434-8A01DC82-A10A-42A6-8B93-F15850776A59 .\n\nwds:Q434-8A01DC82-A10A-42A6-8B93-F15850776A59 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P9408 \"112173\" ;\n\tprov:wasDerivedFrom wdref:2f7c729d9a31ad15d727154e099f70e505f0c904 .\n\nwd:Q434 p:P10707 wds:Q434-c19cb024-46f3-4e47-85c8-07b950cc01a4 .\n\nwds:Q434-c19cb024-46f3-4e47-85c8-07b950cc01a4 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10707 \"493200\" .\n\nwd:Q434 p:P1727 wds:Q434-FCB1EA23-4040-4777-B284-E24F7A96A368 .\n\nwds:Q434-FCB1EA23-4040-4777-B284-E24F7A96A368 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P1727 \"127801\" .\n\nwd:Q434 p:P12367 wds:Q434-f8780ea5-47e3-d95b-0849-fd070da84089 .\n\nwds:Q434-f8780ea5-47e3-d95b-0849-fd070da84089 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12367 \"7191\" .\n\nwd:Q434 p:P12596 wds:Q434-8C987F9C-D1E2-4D58-A9E1-749134E6836F .\n\nwds:Q434-8C987F9C-D1E2-4D58-A9E1-749134E6836F a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12596 \"19712\" .\n\nwd:Q434 p:P11514 wds:Q434-AD6E194D-C5EC-4548-81B5-EE594297F8B6 .\n\nwds:Q434-AD6E194D-C5EC-4548-81B5-EE594297F8B6 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P11514 \"grusha-9ae1e8\" .\n\nwd:Q434 p:P12788 wds:Q434-9f1a0133-4087-9f20-310d-7f4328e44ef0 .\n\nwds:Q434-9f1a0133-4087-9f20-310d-7f4328e44ef0 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12788 \"5688\" .\n\nwd:Q434 p:P487 wds:Q434-b7e5cc7e-4fe3-5d89-47cb-491f0016c821 .\n\nwds:Q434-b7e5cc7e-4fe3-5d89-47cb-491f0016c821 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P487 \"🍐\" .\n\nwd:Q434 p:P672 wds:Q434-a4f1a0eb-4686-a59a-824b-1e3c3c6563ed .\n\nwds:Q434-a4f1a0eb-4686-a59a-824b-1e3c3c6563ed a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P672 \"B01.875.800.575.912.250.859.937.500.699\" ;\n\tpsn:P672 ;\n\tpq:P4900 wd:Q46299 .\n\nwd:Q434 p:P279 wds:Q434-ffd89c34-4fb6-1051-ade6-fdd792f80f51 .\n\nwds:Q434-ffd89c34-4fb6-1051-ade6-fdd792f80f51 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P279 wd:Q10884 .\n\nwd:Q434 p:P10890 wds:Q434-ABF63CCF-F72C-46D7-948A-AFEA14B44CFD .\n\nwds:Q434-ABF63CCF-F72C-46D7-948A-AFEA14B44CFD a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10890 \"142130\" .\n\nwd:Q434 p:P10701 wds:Q434-FC595D45-CA86-4033-9606-87BB08CFDDF3 .\n\nwds:Q434-FC595D45-CA86-4033-9606-87BB08CFDDF3 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P10701 \"FB126506\" .\n\nwd:Q434 p:P12292 wds:Q434-367357CB-D245-4142-941D-44817F881A98 .\n\nwds:Q434-367357CB-D245-4142-941D-44817F881A98 a wikibase:Statement,\n\t\twikibase:BestRank ;\n\twikibase:rank wikibase:NormalRank ;\n\tps:P12292 \"6fff989c-7c69-44ba-8a48-385cb6a75c68\" ;\n\tprov:wasDerivedFrom wdref:59198ca54ab209108dad0259a7906e9f992049fc .\n\nwd:Q434 rdfs:label \"Pyrus\"@en ;\n\tskos:prefLabel \"Pyrus\"@en ;\n\tschema:name \"Pyrus\"@en ;\n\trdfs:label \"Pyrus\"@fr ;\n\tskos:prefLabel \"Pyrus\"@fr ;\n\tschema:name \"Pyrus\"@fr ;\n\trdfs:label \"Birnen\"@de ;\n\tskos:prefLabel \"Birnen\"@de ;\n\tschema:name \"Birnen\"@de ;\n\trdfs:label \"pære\"@nb ;\n\tskos:prefLabel \"pære\"@nb ;\n\tschema:name \"pære\"@nb ;\n\trdfs:label \"pera\"@pt ;\n\tskos:prefLabel \"pera\"@pt ;\n\tschema:name \"pera\"@pt ;\n\trdfs:label \"Pyrus\"@es ;\n\tskos:prefLabel \"Pyrus\"@es ;\n\tschema:name \"Pyrus\"@es ;\n\trdfs:label \"Armud\"@az ;\n\tskos:prefLabel \"Armud\"@az ;\n\tschema:name \"Armud\"@az ;\n\trdfs:label \"Peru\"@ang ;\n\tskos:prefLabel \"Peru\"@ang ;\n\tschema:name \"Peru\"@ang ;\n\trdfs:label \"كمثرى\"@ar ;\n\tskos:prefLabel \"كمثرى\"@ar ;\n\tschema:name \"كمثرى\"@ar ;\n\trdfs:label \"ܟܡܬܪܐ\"@arc ;\n\tskos:prefLabel \"ܟܡܬܪܐ\"@arc ;\n\tschema:name \"ܟܡܬܪܐ\"@arc ;\n\trdfs:label \"Гени\"@av ;\n\tskos:prefLabel \"Гени\"@av ;\n\tschema:name \"Гени\"@av ;\n\trdfs:label \"груша\"@be ;\n\tskos:prefLabel \"груша\"@be ;\n\tschema:name \"груша\"@be ;\n\trdfs:label \"круша\"@bg ;\n\tskos:prefLabel \"круша\"@bg ;\n\tschema:name \"круша\"@bg ;\n\trdfs:label \"নাশপাতি\"@bn ;\n\tskos:prefLabel \"নাশপাতি\"@bn ;\n\tschema:name \"নাশপাতি\"@bn ;\n\trdfs:label \"Kruška\"@bs ;\n\tskos:prefLabel \"Kruška\"@bs ;\n\tschema:name \"Kruška\"@bs ;\n\trdfs:label \"perera\"@ca ;\n\tskos:prefLabel \"perera\"@ca ;\n\tschema:name \"perera\"@ca ;\n\trdfs:label \"ھەرمێ\"@ckb ;\n\tskos:prefLabel \"ھەرمێ\"@ckb ;\n\tschema:name \"ھەرمێ\"@ckb ;\n\trdfs:label \"hrušeň\"@cs ;\n\tskos:prefLabel \"hrušeň\"@cs ;\n\tschema:name \"hrušeň\"@cs ;\n\trdfs:label \"Gellygen\"@cy ;\n\tskos:prefLabel \"Gellygen\"@cy ;\n\tschema:name \"Gellygen\"@cy ;\n\trdfs:label \"pære\"@da ;\n\tskos:prefLabel \"pære\"@da ;\n\tschema:name \"pære\"@da ;\n\trdfs:label \"Kšušcyna\"@dsb ;\n\tskos:prefLabel \"Kšušcyna\"@dsb ;\n\tschema:name \"Kšušcyna\"@dsb ;\n\trdfs:label \"ނާޝްޕަތީ\"@dv ;\n\tskos:prefLabel \"ނާޝްޕަތީ\"@dv ;\n\tschema:name \"ނާޝްޕަތީ\"@dv ;\n\trdfs:label \"Αχλάδι\"@el ;\n\tskos:prefLabel \"Αχλάδι\"@el ;\n\tschema:name \"Αχλάδι\"@el ;\n\trdfs:label \"Pìr\"@eml ;\n\tskos:prefLabel \"Pìr\"@eml ;\n\tschema:name \"Pìr\"@eml ;\n\trdfs:label \"Piro\"@eo ;\n\tskos:prefLabel \"Piro\"@eo ;\n\tschema:name \"Piro\"@eo ;\n\trdfs:label \"udareondo\"@eu ;\n\tskos:prefLabel \"udareondo\"@eu ;\n\tschema:name \"udareondo\"@eu ;\n\trdfs:label \"گلابی\"@fa ;\n\tskos:prefLabel \"گلابی\"@fa ;\n\tschema:name \"گلابی\"@fa ;\n\trdfs:label \"päärynäpuut\"@fi ;\n\tskos:prefLabel \"päärynäpuut\"@fi ;\n\tschema:name \"päärynäpuut\"@fi ;\n\trdfs:label \"Piruçâr\"@fur ;\n\tskos:prefLabel \"Piruçâr\"@fur ;\n\tschema:name \"Piruçâr\"@fur ;\n\trdfs:label \"piorra\"@ga ;\n\tskos:prefLabel \"piorra\"@ga ;\n\tschema:name \"piorra\"@ga ;\n\trdfs:label \"Pyrus\"@gl ;\n\tskos:prefLabel \"Pyrus\"@gl ;\n\tschema:name \"Pyrus\"@gl ;\n\trdfs:label \"Peear\"@gv ;\n\tskos:prefLabel \"Peear\"@gv ;\n\tschema:name \"Peear\"@gv ;\n\trdfs:label \"אגס\"@he ;\n\tskos:prefLabel \"אגס\"@he ;\n\tschema:name \"אגס\"@he ;\n\trdfs:label \"नाशपाती\"@hi ;\n\tskos:prefLabel \"नाशपाती\"@hi ;\n\tschema:name \"नाशपाती\"@hi ;\n\trdfs:label \"Kruške\"@hr ;\n\tskos:prefLabel \"Kruške\"@hr ;\n\tschema:name \"Kruške\"@hr ;\n\trdfs:label \"Krušwa\"@hsb ;\n\tskos:prefLabel \"Krušwa\"@hsb ;\n\tschema:name \"Krušwa\"@hsb ;\n\trdfs:label \"körte\"@hu ;\n\tskos:prefLabel \"körte\"@hu ;\n\tschema:name \"körte\"@hu ;\n\trdfs:label \"տանձ\"@hy ;\n\tskos:prefLabel \"տանձ\"@hy ;\n\tschema:name \"տանձ\"@hy ;\n\trdfs:label \"Pir\"@id ;\n\tskos:prefLabel \"Pir\"@id ;\n\tschema:name \"Pir\"@id ;\n\trdfs:label \"Ube\"@ig ;\n\tskos:prefLabel \"Ube\"@ig ;\n\tschema:name \"Ube\"@ig ;\n\trdfs:label \"Piro\"@io ;\n\tskos:prefLabel \"Piro\"@io ;\n\tschema:name \"Piro\"@io ;\n\trdfs:label \"Pyrus\"@it ;\n\tskos:prefLabel \"Pyrus\"@it ;\n\tschema:name \"Pyrus\"@it ;\n\trdfs:label \"ナシ属\"@ja ;\n\tskos:prefLabel \"ナシ属\"@ja ;\n\tschema:name \"ナシ属\"@ja ;\n\trdfs:label \"მსხალი\"@ka ;\n\tskos:prefLabel \"მსხალი\"@ka ;\n\tschema:name \"მსხალი\"@ka ;\n\trdfs:label \"Almurt\"@kaa ;\n\tskos:prefLabel \"Almurt\"@kaa ;\n\tschema:name \"Almurt\"@kaa ;\n\trdfs:label \"배나무속\"@ko ;\n\tskos:prefLabel \"배나무속\"@ko ;\n\tschema:name \"배나무속\"@ko ;\n\trdfs:label \"ٹَنگ\"@ks ;\n\tskos:prefLabel \"ٹَنگ\"@ks ;\n\tschema:name \"ٹَنگ\"@ks ;\n\trdfs:label \"Алмурут\"@ky ;\n\tskos:prefLabel \"Алмурут\"@ky ;\n\tschema:name \"Алмурут\"@ky ;\n\trdfs:label \"Pyrus\"@la ;\n\tskos:prefLabel \"Pyrus\"@la ;\n\tschema:name \"Pyrus\"@la ;\n\trdfs:label \"Bir\"@lb ;\n\tskos:prefLabel \"Bir\"@lb ;\n\tschema:name \"Bir\"@lb ;\n\trdfs:label \"Kriaušė\"@lt ;\n\tskos:prefLabel \"Kriaušė\"@lt ;\n\tschema:name \"Kriaušė\"@lt ;\n\trdfs:label \"bumbieres\"@lv ;\n\tskos:prefLabel \"bumbieres\"@lv ;\n\tschema:name \"bumbieres\"@lv ;\n\trdfs:label \"Груша\"@mdf ;\n\tskos:prefLabel \"Груша\"@mdf ;\n\tschema:name \"Груша\"@mdf ;\n\trdfs:label \"Pea\"@mi ;\n\tskos:prefLabel \"Pea\"@mi ;\n\tschema:name \"Pea\"@mi ;\n\trdfs:label \"круша\"@mk ;\n\tskos:prefLabel \"круша\"@mk ;\n\tschema:name \"круша\"@mk ;\n\trdfs:label \"Грушаву\"@mrj ;\n\tskos:prefLabel \"Грушаву\"@mrj ;\n\tschema:name \"Грушаву\"@mrj ;\n\trdfs:label \"Lai\"@ms ;\n\tskos:prefLabel \"Lai\"@ms ;\n\tschema:name \"Lai\"@ms ;\n\trdfs:label \"Pera\"@nah ;\n\tskos:prefLabel \"Pera\"@nah ;\n\tschema:name \"Pera\"@nah ;\n\trdfs:label \"peer\"@nl ;\n\tskos:prefLabel \"peer\"@nl ;\n\tschema:name \"peer\"@nl ;\n\trdfs:label \"Pære\"@nn ;\n\tskos:prefLabel \"Pære\"@nn ;\n\tschema:name \"Pære\"@nn ;\n\trdfs:label \"Peire\"@nrm ;\n\tskos:prefLabel \"Peire\"@nrm ;\n\tschema:name \"Peire\"@nrm ;\n\trdfs:label \"Pera\"@oc ;\n\tskos:prefLabel \"Pera\"@oc ;\n\tschema:name \"Pera\"@oc ;\n\trdfs:label \"кæрдо\"@os ;\n\tskos:prefLabel \"кæрдо\"@os ;\n\tschema:name \"кæрдо\"@os ;\n\trdfs:label \"grusza\"@pl ;\n\tskos:prefLabel \"grusza\"@pl ;\n\tschema:name \"grusza\"@pl ;\n\trdfs:label \"Pira\"@qu ;\n\tskos:prefLabel \"Pira\"@qu ;\n\tschema:name \"Pira\"@qu ;\n\trdfs:label \"груша\"@ru ;\n\tskos:prefLabel \"груша\"@ru ;\n\tschema:name \"груша\"@ru ;\n\trdfs:label \"Peir\"@sco ;\n\tskos:prefLabel \"Peir\"@sco ;\n\tschema:name \"Peir\"@sco ;\n\trdfs:label \"hruška\"@sl ;\n\tskos:prefLabel \"hruška\"@sl ;\n\tschema:name \"hruška\"@sl ;\n\trdfs:label \"Dardha\"@sq ;\n\tskos:prefLabel \"Dardha\"@sq ;\n\tschema:name \"Dardha\"@sq ;\n\trdfs:label \"крушка\"@sr ;\n\tskos:prefLabel \"крушка\"@sr ;\n\tschema:name \"крушка\"@sr ;\n\trdfs:label \"päronsläktet\"@sv ;\n\tskos:prefLabel \"päronsläktet\"@sv ;\n\tschema:name \"päronsläktet\"@sv ;\n\trdfs:label \"பேரி\"@ta ;\n\tskos:prefLabel \"பேரி\"@ta ;\n\tschema:name \"பேரி\"@ta ;\n\trdfs:label \"Peras\"@tl ;\n\tskos:prefLabel \"Peras\"@tl ;\n\tschema:name \"Peras\"@tl ;\n\trdfs:label \"Armut\"@tr ;\n\tskos:prefLabel \"Armut\"@tr ;\n\tschema:name \"Armut\"@tr ;\n\trdfs:label \"груша\"@uk ;\n\tskos:prefLabel \"груша\"@uk ;\n\tschema:name \"груша\"@uk ;\n\trdfs:label \"ناشپاتی\"@ur ;\n\tskos:prefLabel \"ناشپاتی\"@ur ;\n\tschema:name \"ناشپاتی\"@ur ;\n\trdfs:label \"Pyrus\"@vec ;\n\tskos:prefLabel \"Pyrus\"@vec ;\n\tschema:name \"Pyrus\"@vec ;\n\trdfs:label \"Lê\"@vi ;\n\tskos:prefLabel \"Lê\"@vi ;\n\tschema:name \"Lê\"@vi ;\n\trdfs:label \"Poerî\"@wa ;\n\tskos:prefLabel \"Poerî\"@wa ;\n\tschema:name \"Poerî\"@wa ;\n\trdfs:label \"梨属\"@zh ;\n\tskos:prefLabel \"梨属\"@zh ;\n\tschema:name \"梨属\"@zh ;\n\trdfs:label \"梨属\"@zh-hans ;\n\tskos:prefLabel \"梨属\"@zh-hans ;\n\tschema:name \"梨属\"@zh-hans ;\n\trdfs:label \"梨\"@zh-hant ;\n\tskos:prefLabel \"梨\"@zh-hant ;\n\tschema:name \"梨\"@zh-hant ;\n\trdfs:label \"梨属\"@zh-cn ;\n\tskos:prefLabel \"梨属\"@zh-cn ;\n\tschema:name \"梨属\"@zh-cn ;\n\trdfs:label \"梨\"@zh-sg ;\n\tskos:prefLabel \"梨\"@zh-sg ;\n\tschema:name \"梨\"@zh-sg ;\n\trdfs:label \"梨\"@zh-my ;\n\tskos:prefLabel \"梨\"@zh-my ;\n\tschema:name \"梨\"@zh-my ;\n\trdfs:label \"梨\"@zh-hk ;\n\tskos:prefLabel \"梨\"@zh-hk ;\n\tschema:name \"梨\"@zh-hk ;\n\trdfs:label \"梨屬\"@zh-tw ;\n\tskos:prefLabel \"梨屬\"@zh-tw ;\n\tschema:name \"梨屬\"@zh-tw ;\n\trdfs:label \"梨\"@zh-mo ;\n\tskos:prefLabel \"梨\"@zh-mo ;\n\tschema:name \"梨\"@zh-mo ;\n\trdfs:label \"ಮರಸೇಬು\"@kn ;\n\tskos:prefLabel \"ಮರಸೇಬು\"@kn ;\n\tschema:name \"ಮರಸೇಬು\"@kn ;\n\trdfs:label \"Nok\"@uz ;\n\tskos:prefLabel \"Nok\"@uz ;\n\tschema:name \"Nok\"@uz ;\n\trdfs:label \"Pyrus\"@ro ;\n\tskos:prefLabel \"Pyrus\"@ro ;\n\tschema:name \"Pyrus\"@ro ;\n\trdfs:label \"Mpea\"@sw ;\n\tskos:prefLabel \"Mpea\"@sw ;\n\tschema:name \"Mpea\"@sw ;\n\trdfs:label \"Pyrus\"@an ;\n\tskos:prefLabel \"Pyrus\"@an ;\n\tschema:name \"Pyrus\"@an ;\n\trdfs:label \"Peerbuumer\"@frr ;\n\tskos:prefLabel \"Peerbuumer\"@frr ;\n\tschema:name \"Peerbuumer\"@frr ;\n\trdfs:label \"Kruška\"@sh ;\n\tskos:prefLabel \"Kruška\"@sh ;\n\tschema:name \"Kruška\"@sh ;\n\trdfs:label \"ifires\"@kab ;\n\tskos:prefLabel \"ifires\"@kab ;\n\tschema:name \"ifires\"@kab ;\n\trdfs:label \"梨屬\"@yue ;\n\tskos:prefLabel \"梨屬\"@yue ;\n\tschema:name \"梨屬\"@yue ;\n\trdfs:label \"Лийр\"@mn ;\n\tskos:prefLabel \"Лийр\"@mn ;\n\tschema:name \"Лийр\"@mn ;\n\trdfs:label \"Lâi-á\"@nan ;\n\tskos:prefLabel \"Lâi-á\"@nan ;\n\tschema:name \"Lâi-á\"@nan ;\n\trdfs:label \"Алмұрт\"@kk ;\n\tskos:prefLabel \"Алмұрт\"@kk ;\n\tschema:name \"Алмұрт\"@kk ;\n\trdfs:label \"Grūšė\"@sgs ;\n\tskos:prefLabel \"Grūšė\"@sgs ;\n\tschema:name \"Grūšė\"@sgs ;\n\trdfs:label \"ᏎᏗᏳᏍᏗ ᏒᎦᏔ\"@chr ;\n\tskos:prefLabel \"ᏎᏗᏳᏍᏗ ᏒᎦᏔ\"@chr ;\n\tschema:name \"ᏎᏗᏳᏍᏗ ᏒᎦᏔ\"@chr ;\n\trdfs:label \"Hirmî\"@ku ;\n\tskos:prefLabel \"Hirmî\"@ku ;\n\tschema:name \"Hirmî\"@ku ;\n\trdfs:label \"Груша\"@ba ;\n\tskos:prefLabel \"Груша\"@ba ;\n\tschema:name \"Груша\"@ba ;\n\trdfs:label \"हरियो स्याउ\"@ne ;\n\tskos:prefLabel \"हरियो स्याउ\"@ne ;\n\tschema:name \"हरियो स्याउ\"@ne ;\n\trdfs:label \"Beern\"@nds ;\n\tskos:prefLabel \"Beern\"@nds ;\n\tschema:name \"Beern\"@nds ;\n\trdfs:label \"Pyrus\"@ceb ;\n\tskos:prefLabel \"Pyrus\"@ceb ;\n\tschema:name \"Pyrus\"@ceb ;\n\trdfs:label \"Pyrus\"@war ;\n\tskos:prefLabel \"Pyrus\"@war ;\n\tschema:name \"Pyrus\"@war ;\n\trdfs:label \"pirnipuu\"@et ;\n\tskos:prefLabel \"pirnipuu\"@et ;\n\tschema:name \"pirnipuu\"@et ;\n\trdfs:label \"pearamuorat\"@se ;\n\tskos:prefLabel \"pearamuorat\"@se ;\n\tschema:name \"pearamuorat\"@se ;\n\trdfs:label \"Lì\"@cdo ;\n\tskos:prefLabel \"Lì\"@cdo ;\n\tschema:name \"Lì\"@cdo ;\n\trdfs:label \"3xuli\"@lzz ;\n\tskos:prefLabel \"3xuli\"@lzz ;\n\tschema:name \"3xuli\"@lzz ;\n\trdfs:label \"ناک\"@ps ;\n\tskos:prefLabel \"ناک\"@ps ;\n\tschema:name \"ناک\"@ps ;\n\trdfs:label \"Pirn\"@vro ;\n\tskos:prefLabel \"Pirn\"@vro ;\n\tschema:name \"Pirn\"@vro ;\n\trdfs:label \"ສາລີ້\"@lo ;\n\tskos:prefLabel \"ສາລີ້\"@lo ;\n\tschema:name \"ສາລີ້\"@lo ;\n\trdfs:label \"रुचकफलम्\"@sa ;\n\tskos:prefLabel \"रुचकफलम्\"@sa ;\n\tschema:name \"रुचकफलम्\"@sa ;\n\trdfs:label \"Груша\"@tyv ;\n\tskos:prefLabel \"Груша\"@tyv ;\n\tschema:name \"Груша\"@tyv ;\n\trdfs:label \"Makleiz\"@za ;\n\tskos:prefLabel \"Makleiz\"@za ;\n\tschema:name \"Makleiz\"@za ;\n\trdfs:label \"hruška\"@sk ;\n\tskos:prefLabel \"hruška\"@sk ;\n\tschema:name \"hruška\"@sk ;\n\trdfs:label \"नाशपाती\"@bho ;\n\tskos:prefLabel \"नाशपाती\"@bho ;\n\tschema:name \"नाशपाती\"@bho ;\n\trdfs:label \"Peer\"@af ;\n\tskos:prefLabel \"Peer\"@af ;\n\tschema:name \"Peer\"@af ;\n\trdfs:label \"Нок\"@tg ;\n\tskos:prefLabel \"Нок\"@tg ;\n\tschema:name \"Нок\"@tg ;\n\trdfs:label \"أنجاص\"@aeb-arab ;\n\tskos:prefLabel \"أنجاص\"@aeb-arab ;\n\tschema:name \"أنجاص\"@aeb-arab ;\n\trdfs:label \"生梨\"@wuu ;\n\tskos:prefLabel \"生梨\"@wuu ;\n\tschema:name \"生梨\"@wuu ;\n\trdfs:label \"армут\"@tt ;\n\tskos:prefLabel \"армут\"@tt ;\n\tschema:name \"армут\"@tt ;\n\trdfs:label \"Piru\"@scn ;\n\tskos:prefLabel \"Piru\"@scn ;\n\tschema:name \"Piru\"@scn ;\n\trdfs:label \"სხული\"@xmf ;\n\tskos:prefLabel \"სხული\"@xmf ;\n\tschema:name \"სხული\"@xmf ;\n\trdfs:label \"Кхор\"@inh ;\n\tskos:prefLabel \"Кхор\"@inh ;\n\tschema:name \"Кхор\"@inh ;\n\trdfs:label \"പിയർ\"@ml ;\n\tskos:prefLabel \"പിയർ\"@ml ;\n\tschema:name \"പിയർ\"@ml ;\n\trdfs:label \"ئامۇت\"@ug ;\n\tskos:prefLabel \"ئامۇت\"@ug ;\n\tschema:name \"ئامۇت\"@ug ;\n\trdfs:label \"नास्पाती\"@mai ;\n\tskos:prefLabel \"नास्पाती\"@mai ;\n\tschema:name \"नास्पाती\"@mai ;\n\trdfs:label \"Pyrus\"@ia ;\n\tskos:prefLabel \"Pyrus\"@ia ;\n\tschema:name \"Pyrus\"@ia ;\n\trdfs:label \"Perur\"@is ;\n\tskos:prefLabel \"Perur\"@is ;\n\tschema:name \"Perur\"@is ;\n\trdfs:label \"ਨਾਸ਼ਪਾਤੀ\"@pa ;\n\tskos:prefLabel \"ਨਾਸ਼ਪਾਤੀ\"@pa ;\n\tschema:name \"ਨਾਸ਼ਪਾਤੀ\"@pa ;\n\trdfs:label \"ناسپتي\"@sd ;\n\tskos:prefLabel \"ناسپتي\"@sd ;\n\tschema:name \"ناسپتي\"@sd ;\n\trdfs:label \"Wamin ka kinkomakisitc\"@atj ;\n\tskos:prefLabel \"Wamin ka kinkomakisitc\"@atj ;\n\tschema:name \"Wamin ka kinkomakisitc\"@atj ;\n\trdfs:label \"آرمود\"@azb ;\n\tskos:prefLabel \"آرمود\"@azb ;\n\tschema:name \"آرمود\"@azb ;\n\trdfs:label \"Biana\"@bar ;\n\tskos:prefLabel \"Biana\"@bar ;\n\tschema:name \"Biana\"@bar ;\n\trdfs:label \"ሸክኒት\"@am ;\n\tskos:prefLabel \"ሸክኒት\"@am ;\n\tschema:name \"ሸክኒት\"@am ;\n\trdfs:label \"పైరస్\"@te ;\n\tskos:prefLabel \"పైరస్\"@te ;\n\tschema:name \"పైరస్\"@te ;\n\trdfs:label \"Pyrus\"@ast ;\n\tskos:prefLabel \"Pyrus\"@ast ;\n\tschema:name \"Pyrus\"@ast ;\n\trdfs:label \"Birne\"@gsw ;\n\tskos:prefLabel \"Birne\"@gsw ;\n\tschema:name \"Birne\"@gsw ;\n\trdfs:label \"Տանձենի\"@hyw ;\n\tskos:prefLabel \"Տանձենի\"@hyw ;\n\tschema:name \"Տանձենի\"@hyw ;\n\trdfs:label \"নাচপতি\"@as ;\n\tskos:prefLabel \"নাচপতি\"@as ;\n\tschema:name \"নাচপতি\"@as ;\n\trdfs:label \"Mıro\"@diq ;\n\tskos:prefLabel \"Mıro\"@diq ;\n\tschema:name \"Mıro\"@diq ;\n\trdfs:label \"Pyrus\"@vls ;\n\tskos:prefLabel \"Pyrus\"@vls ;\n\tschema:name \"Pyrus\"@vls ;\n\trdfs:label \"армут\"@tt-cyrl ;\n\tskos:prefLabel \"армут\"@tt-cyrl ;\n\tschema:name \"армут\"@tt-cyrl ;\n\trdfs:label \"梨\"@lzh ;\n\tskos:prefLabel \"梨\"@lzh ;\n\tschema:name \"梨\"@lzh ;\n\trdfs:label \"สาลี่ (สกุล)\"@th ;\n\tskos:prefLabel \"สาลี่ (สกุล)\"@th ;\n\tschema:name \"สาลี่ (สกุล)\"@th ;\n\trdfs:label \"Груша\"@cv ;\n\tskos:prefLabel \"Груша\"@cv ;\n\tschema:name \"Груша\"@cv ;\n\trdfs:label \"Кхор\"@ce ;\n\tskos:prefLabel \"Кхор\"@ce ;\n\tschema:name \"Кхор\"@ce ;\n\trdfs:label \"Pyrus\"@ext ;\n\tskos:prefLabel \"Pyrus\"@ext ;\n\tschema:name \"Pyrus\"@ext ;\n\trdfs:label \"Pyrus\"@pt-br ;\n\tskos:prefLabel \"Pyrus\"@pt-br ;\n\tschema:name \"Pyrus\"@pt-br ;\n\trdfs:label \"Pyrus\"@vo ;\n\tskos:prefLabel \"Pyrus\"@vo ;\n\tschema:name \"Pyrus\"@vo ;\n\trdfs:label \"Pyrus\"@ie ;\n\tskos:prefLabel \"Pyrus\"@ie ;\n\tschema:name \"Pyrus\"@ie ;\n\trdfs:label \"كمثرى\"@arz ;\n\tskos:prefLabel \"كمثرى\"@arz ;\n\tschema:name \"كمثرى\"@arz ;\n\trdfs:label \"груша\"@be-tarask ;\n\tskos:prefLabel \"груша\"@be-tarask ;\n\tschema:name \"груша\"@be-tarask ;\n\trdfs:label \"Armut\"@crh ;\n\tskos:prefLabel \"Armut\"@crh ;\n\tschema:name \"Armut\"@crh ;\n\trdfs:label \"Hülə\"@tly ;\n\tskos:prefLabel \"Hülə\"@tly ;\n\tschema:name \"Hülə\"@tly ;\n\trdfs:label \"Gruš\"@vep ;\n\tskos:prefLabel \"Gruš\"@vep ;\n\tschema:name \"Gruš\"@vep ;\n\trdfs:label \"Peras\"@pam ;\n\tskos:prefLabel \"Peras\"@pam ;\n\tschema:name \"Peras\"@pam ;\n\trdfs:label \"هۀمه‌رۈ\"@mzn ;\n\tskos:prefLabel \"هۀمه‌رۈ\"@mzn ;\n\tschema:name \"هۀمه‌رۈ\"@mzn ;\n\trdfs:label \"Jambu Binjai\"@kge ;\n\tskos:prefLabel \"Jambu Binjai\"@kge ;\n\tschema:name \"Jambu Binjai\"@kge ;\n\trdfs:label \"Грушкa\"@rsk ;\n\tskos:prefLabel \"Грушкa\"@rsk ;\n\tschema:name \"Грушкa\"@rsk ;\n\trdfs:label \"Péra\"@mwl ;\n\tskos:prefLabel \"Péra\"@mwl ;\n\tschema:name \"Péra\"@mwl ;\n\trdfs:label \"Paer\"@li ;\n\tskos:prefLabel \"Paer\"@li ;\n\tschema:name \"Paer\"@li ;\n\trdfs:label \"Pyrus\"@mul ;\n\tskos:prefLabel \"Pyrus\"@mul ;\n\tschema:name \"Pyrus\"@mul ;\n\trdfs:label \"ἄπιος\"@grc ;\n\tskos:prefLabel \"ἄπιος\"@grc ;\n\tschema:name \"ἄπιος\"@grc ;\n\trdfs:label \"απίδιν\"@pnt ;\n\tskos:prefLabel \"απίδιν\"@pnt ;\n\tschema:name \"απίδιν\"@pnt ;\n\trdfs:label \"သစ်တော်သီး\"@my ;\n\tskos:prefLabel \"သစ်တော်သီး\"@my ;\n\tschema:name \"သစ်တော်သီး\"@my ;\n\trdfs:label \"မၢၵ်ႇၵေႃႈ\"@shn ;\n\tskos:prefLabel \"မၢၵ်ႇၵေႃႈ\"@shn ;\n\tschema:name \"မၢၵ်ႇၵေႃႈ\"@shn ;\n\tschema:description \"genus of plants\"@en,\n\t\t\"genere di piante\"@it,\n\t\t\"género botánico del peral\"@es,\n\t\t\"Pflanzengattung, die zu den Kernobstgewächsen in der Familie der Rosengewächse gehört\"@de,\n\t\t\"род плодовых и декоративных деревьев и кустарников семейства Розовые\"@ru,\n\t\t\"kasvisuku Pyrus, siihen kuuluva puu- tai pensaslaji tai tällaisen lajin hedelmä\"@fi,\n\t\t\"plantengeslacht uit de rozenfamilie\"@nl,\n\t\t\"xénero botánico das pereiras\"@gl,\n\t\t\"рід плодових і декоративних дерев та кущів родини Rosaceae\"@uk,\n\t\t\"növénynemzetség\"@hu,\n\t\t\"Gattung vun Kernoovst\"@nds,\n\t\t\"atirguldoshlar (Rosaceae) oilasiga mansub mevali va manzarali daraxt va butalar turi\"@uz,\n\t\t\"род растения\"@bg,\n\t\t\"جنس نباتي\"@ar,\n\t\t\"roślina, drzewo owocowe\"@pl,\n\t\t\"نوعی میوه گلابی\"@fa,\n\t\t\"род биљака\"@sr,\n\t\t\"xéneru de plantes\"@ast,\n\t\t\"gênero\"@pt,\n\t\t\"ফলের গণ ও সাধারণ প্রজাতি\"@bn,\n\t\t\"բույս\"@hy,\n\t\t\"gènere de plantes\"@ca,\n\t\t\"جنس نباتى\"@arz,\n\t\t\"род пладовых дрэваў\"@be-tarask,\n\t\t\"پھل کی قسم\"@ur,\n\t\t\"蔷薇科的一属植物\"@zh,\n\t\t\"γένος φυτών\"@el,\n\t\t\"ávaxtategund\"@is,\n\t\t\"genus tumbuhan\"@ms,\n\t\t\"род пладовых дрэваў\"@be,\n\t\t\"planteslægt\"@da,\n\t\t\"장미과에 속하는 속\"@ko,\n\t\t\"udareak ematen dituen zuhaitza\"@eu,\n\t\t\"genws o blanhigion\"@cy,\n\t\t\"taimeperekond\"@et,\n\t\t\"סוג של צמח\"@he,\n\t\t\"genus tumbuh-tumbuhan\"@id,\n\t\t\"genero di planti\"@io,\n\t\t\"planteslekt\"@nb,\n\t\t\"planteslekt\"@nn,\n\t\t\"gênero de plantas\"@pt-br,\n\t\t\"gen de plante\"@ro,\n\t\t\"gjini e bimëve\"@sq,\n\t\t\"släkte rosväxter\"@sv,\n\t\t\"géineas plandaí\"@ga,\n\t\t\"genus arborum\"@la,\n\t\t\"bitki cinsi\"@tr,\n\t\t\"genre de plantes de la famille des Rosaceae\"@fr,\n\t\t\"bitki cinsi\"@az,\n\t\t\"మొక్కల జాతి\"@te,\n\t\t\"rod stromů\"@cs,\n\t\t\"မၢၵ်ႇ ဢၼ်ၼိူဝ်ႉၶွပ်ႈ၊ ၼမ်ႉၵိုၼ်း မီးသၢႆဝၢၼ် တူၼ်ႈ ပၢၼ်ၵၢင်\"@shn ;\n\tskos:altLabel \"梨子\"@zh,\n\t\t\"梨子\"@zh-hans,\n\t\t\"梨屬\"@zh-hant,\n\t\t\"梨子\"@zh-hant,\n\t\t\"梨子\"@zh-cn,\n\t\t\"梨属\"@zh-sg,\n\t\t\"梨子\"@zh-sg,\n\t\t\"梨属\"@zh-my,\n\t\t\"梨子\"@zh-my,\n\t\t\"梨屬\"@zh-hk,\n\t\t\"梨子\"@zh-hk,\n\t\t\"梨子\"@zh-tw,\n\t\t\"梨屬\"@zh-mo,\n\t\t\"梨子\"@zh-mo,\n\t\t\"Pyrus\"@de,\n\t\t\"Pyrus\"@hu,\n\t\t\"Nashvati\"@uz,\n\t\t\"Olmurut\"@uz,\n\t\t\"pear genus\"@en,\n\t\t\"pear\"@en,\n\t\t\"pear trees\"@en,\n\t\t\"pear tree\"@en,\n\t\t\"Pyrus\"@nl,\n\t\t\"poiriers\"@fr,\n\t\t\"pero\"@it,\n\t\t\"gruszka\"@pl,\n\t\t\"дулякс\"@mdf,\n\t\t\"peral\"@ast,\n\t\t\"peréu\"@ast,\n\t\t\"paniega\"@ast,\n\t\t\"Pyrus\"@ru,\n\t\t\"Pyrus\"@bg,\n\t\t\"päärynät\"@fi,\n\t\t\"päärynä\"@fi,\n\t\t\"Pyrus\"@fi,\n\t\t\"груша\"@tt-cyrl,\n\t\t\"груша\"@tt,\n\t\t\"Pæreslekta\"@nb,\n\t\t\"পাইরাস\"@bn,\n\t\t\"নাশপাতি গণ\"@bn,\n\t\t\"Birnen\"@gsw,\n\t\t\"Pyrus\"@sl,\n\t\t\"Pir\"@ms,\n\t\t\"ἀχράς\"@grc,\n\t\t\"ὄγχνη\"@grc,\n\t\t\"Pyrus\"@af,\n\t\t\"кæрдобæлас\"@os,\n\t\t\"పియర్ జాతి\"@te,\n\t\t\"απίδ'\"@pnt,\n\t\t\"Pyrus\"@cs .\n\nwd:Q13099586 a wikibase:Item ;\n\trdfs:label \"Birne\"@de ;\n\tskos:prefLabel \"Birne\"@de ;\n\tschema:name \"Birne\"@de ;\n\trdfs:label \"pear\"@en ;\n\tskos:prefLabel \"pear\"@en ;\n\tschema:name \"pear\"@en ;\n\tschema:description \"Frucht\"@de,\n\t\t\"fruit\"@en .\n\nwd:P1672 a wikibase:Property ;\n\trdfs:label \"Ursprung von\"@de ;\n\tskos:prefLabel \"Ursprung von\"@de ;\n\tschema:name \"Ursprung von\"@de ;\n\trdfs:label \"this taxon is source of\"@en ;\n\tskos:prefLabel \"this taxon is source of\"@en ;\n\tschema:name \"this taxon is source of\"@en ;\n\tschema:description \"ein Naturprodukt wird durch Verarbeitung zu\"@de,\n\t\t\"links a taxon to natural products it produces. Note that it does not say \\\"this taxon is the source of\\\" or \\\"this taxon is a source of\\\" as this may vary. Some products may be yielded by more than one taxon.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1672 ;\n\twikibase:claim p:P1672 ;\n\twikibase:statementProperty ps:P1672 ;\n\twikibase:statementValue psv:P1672 ;\n\twikibase:qualifier pq:P1672 ;\n\twikibase:qualifierValue pqv:P1672 ;\n\twikibase:reference pr:P1672 ;\n\twikibase:referenceValue prv:P1672 ;\n\twikibase:novalue wdno:P1672 .\n\np:P1672 a owl:ObjectProperty .\n\npsv:P1672 a owl:ObjectProperty .\n\npqv:P1672 a owl:ObjectProperty .\n\nprv:P1672 a owl:ObjectProperty .\n\nwdt:P1672 a owl:ObjectProperty .\n\nps:P1672 a owl:ObjectProperty .\n\npq:P1672 a owl:ObjectProperty .\n\npr:P1672 a owl:ObjectProperty .\n\nwdno:P1672 a owl:Class ;\n\towl:complementOf _:3e72da6d1f4375bcd65f48901e370109 .\n\n_:3e72da6d1f4375bcd65f48901e370109 a owl:Restriction ;\n\towl:onProperty wdt:P1672 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1964340 a wikibase:Item ;\n\trdfs:label \"Birnbaumholz\"@de ;\n\tskos:prefLabel \"Birnbaumholz\"@de ;\n\tschema:name \"Birnbaumholz\"@de ;\n\trdfs:label \"pearwood\"@en ;\n\tskos:prefLabel \"pearwood\"@en ;\n\tschema:name \"pearwood\"@en ;\n\tschema:description \"Holzart\"@de,\n\t\t\"type of wood\"@en .\n\nwd:Q136648015 a wikibase:Item ;\n\trdfs:label \"Smell of pears\"@en ;\n\tskos:prefLabel \"Smell of pears\"@en ;\n\tschema:name \"Smell of pears\"@en ;\n\tschema:description \"Fruity odour\"@en .\n\nwd:P225 a wikibase:Property ;\n\trdfs:label \"wissenschaftlicher Name\"@de ;\n\tskos:prefLabel \"wissenschaftlicher Name\"@de ;\n\tschema:name \"wissenschaftlicher Name\"@de ;\n\trdfs:label \"taxon name\"@en ;\n\tskos:prefLabel \"taxon name\"@en ;\n\tschema:name \"taxon name\"@en ;\n\tschema:description \"wissenschaftlicher Name einer Gruppe von Lebewesen\"@de,\n\t\t\"correct scientific name of a taxon (according to the reference given)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P225 ;\n\twikibase:claim p:P225 ;\n\twikibase:statementProperty ps:P225 ;\n\twikibase:statementValue psv:P225 ;\n\twikibase:qualifier pq:P225 ;\n\twikibase:qualifierValue pqv:P225 ;\n\twikibase:reference pr:P225 ;\n\twikibase:referenceValue prv:P225 ;\n\twikibase:novalue wdno:P225 .\n\np:P225 a owl:ObjectProperty .\n\npsv:P225 a owl:ObjectProperty .\n\npqv:P225 a owl:ObjectProperty .\n\nprv:P225 a owl:ObjectProperty .\n\nwdt:P225 a owl:DatatypeProperty .\n\nps:P225 a owl:DatatypeProperty .\n\npq:P225 a owl:DatatypeProperty .\n\npr:P225 a owl:DatatypeProperty .\n\nwdno:P225 a owl:Class ;\n\towl:complementOf _:337f4de465ca1537b0804c6775b1bbd1 .\n\n_:337f4de465ca1537b0804c6775b1bbd1 a owl:Restriction ;\n\towl:onProperty wdt:P225 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q34740 a wikibase:Item ;\n\trdfs:label \"Gattung\"@de ;\n\tskos:prefLabel \"Gattung\"@de ;\n\tschema:name \"Gattung\"@de ;\n\trdfs:label \"genus\"@en ;\n\tskos:prefLabel \"genus\"@en ;\n\tschema:name \"genus\"@en ;\n\tschema:description \"Rangstufe innerhalb der Hierarchie der biologischen Systematik\"@de,\n\t\t\"taxonomic rank used in the biological classification of living and fossil organisms, and viruses\"@en .\n\nwd:P105 a wikibase:Property ;\n\trdfs:label \"taxonomischer Rang\"@de ;\n\tskos:prefLabel \"taxonomischer Rang\"@de ;\n\tschema:name \"taxonomischer Rang\"@de ;\n\trdfs:label \"taxon rank\"@en ;\n\tskos:prefLabel \"taxon rank\"@en ;\n\tschema:name \"taxon rank\"@en ;\n\tschema:description \"Stufe der Einteilung von Lebewesen und Viren\"@de,\n\t\t\"level in a taxonomic hierarchy\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P105 ;\n\twikibase:claim p:P105 ;\n\twikibase:statementProperty ps:P105 ;\n\twikibase:statementValue psv:P105 ;\n\twikibase:qualifier pq:P105 ;\n\twikibase:qualifierValue pqv:P105 ;\n\twikibase:reference pr:P105 ;\n\twikibase:referenceValue prv:P105 ;\n\twikibase:novalue wdno:P105 .\n\np:P105 a owl:ObjectProperty .\n\npsv:P105 a owl:ObjectProperty .\n\npqv:P105 a owl:ObjectProperty .\n\nprv:P105 a owl:ObjectProperty .\n\nwdt:P105 a owl:ObjectProperty .\n\nps:P105 a owl:ObjectProperty .\n\npq:P105 a owl:ObjectProperty .\n\npr:P105 a owl:ObjectProperty .\n\nwdno:P105 a owl:Class ;\n\towl:complementOf _:f35a97beabbdd2885e54631a33ae3b5a .\n\n_:f35a97beabbdd2885e54631a33ae3b5a a owl:Restriction ;\n\towl:onProperty wdt:P105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P373 a wikibase:Property ;\n\trdfs:label \"Commons-Kategorie\"@de ;\n\tskos:prefLabel \"Commons-Kategorie\"@de ;\n\tschema:name \"Commons-Kategorie\"@de ;\n\trdfs:label \"Commons category\"@en ;\n\tskos:prefLabel \"Commons category\"@en ;\n\tschema:name \"Commons category\"@en ;\n\tschema:description \"Name der Kategorie auf Wikimedia Commons, die Dateien zu dem Objekt (item) beinhaltet (ohne das Präfix „Category:“)\"@de,\n\t\t\"name of the Wikimedia Commons category containing files related to this item (without the prefix \\\"Category:\\\")\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P373 ;\n\twikibase:claim p:P373 ;\n\twikibase:statementProperty ps:P373 ;\n\twikibase:statementValue psv:P373 ;\n\twikibase:qualifier pq:P373 ;\n\twikibase:qualifierValue pqv:P373 ;\n\twikibase:reference pr:P373 ;\n\twikibase:referenceValue prv:P373 ;\n\twikibase:novalue wdno:P373 .\n\np:P373 a owl:ObjectProperty .\n\npsv:P373 a owl:ObjectProperty .\n\npqv:P373 a owl:ObjectProperty .\n\nprv:P373 a owl:ObjectProperty .\n\nwdt:P373 a owl:DatatypeProperty .\n\nps:P373 a owl:DatatypeProperty .\n\npq:P373 a owl:DatatypeProperty .\n\npr:P373 a owl:DatatypeProperty .\n\nwdno:P373 a owl:Class ;\n\towl:complementOf _:3de19c92e209926f02f215095eb4fd12 .\n\n_:3de19c92e209926f02f215095eb4fd12 a owl:Restriction ;\n\towl:onProperty wdt:P373 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q2119847 a wikibase:Item ;\n\trdfs:label \"Maleae\"@de ;\n\tskos:prefLabel \"Maleae\"@de ;\n\tschema:name \"Maleae\"@de ;\n\trdfs:label \"Maleae\"@mul ;\n\tskos:prefLabel \"Maleae\"@mul ;\n\tschema:name \"Maleae\"@mul ;\n\trdfs:label \"Maleae\"@en ;\n\tskos:prefLabel \"Maleae\"@en ;\n\tschema:name \"Maleae\"@en ;\n\tschema:description \"Tribus der Unterfamilie Spiraeoideae\"@de,\n\t\t\"tribe of plants\"@en .\n\nwd:P171 a wikibase:Property ;\n\trdfs:label \"übergeordnetes Taxon\"@de ;\n\tskos:prefLabel \"übergeordnetes Taxon\"@de ;\n\tschema:name \"übergeordnetes Taxon\"@de ;\n\trdfs:label \"parent taxon\"@en ;\n\tskos:prefLabel \"parent taxon\"@en ;\n\tschema:name \"parent taxon\"@en ;\n\tschema:description \"wissenschaftlicher Name des dem Taxon unmittelbar übergeordneten Taxons\"@de,\n\t\t\"closest parent taxon of the taxon in question\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P171 ;\n\twikibase:claim p:P171 ;\n\twikibase:statementProperty ps:P171 ;\n\twikibase:statementValue psv:P171 ;\n\twikibase:qualifier pq:P171 ;\n\twikibase:qualifierValue pqv:P171 ;\n\twikibase:reference pr:P171 ;\n\twikibase:referenceValue prv:P171 ;\n\twikibase:novalue wdno:P171 .\n\np:P171 a owl:ObjectProperty .\n\npsv:P171 a owl:ObjectProperty .\n\npqv:P171 a owl:ObjectProperty .\n\nprv:P171 a owl:ObjectProperty .\n\nwdt:P171 a owl:ObjectProperty .\n\nps:P171 a owl:ObjectProperty .\n\npq:P171 a owl:ObjectProperty .\n\npr:P171 a owl:ObjectProperty .\n\nwdno:P171 a owl:Class ;\n\towl:complementOf _:8aeadeaf2d8f2f6cf0ac9e3e419da65b .\n\n_:8aeadeaf2d8f2f6cf0ac9e3e419da65b a owl:Restriction ;\n\towl:onProperty wdt:P171 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P18 a wikibase:Property ;\n\trdfs:label \"Bild\"@de ;\n\tskos:prefLabel \"Bild\"@de ;\n\tschema:name \"Bild\"@de ;\n\trdfs:label \"image\"@en ;\n\tskos:prefLabel \"image\"@en ;\n\tschema:name \"image\"@en ;\n\tschema:description \"Foto, Grafik etc. des Subjekts aus Wikimedia Commons (ohne „File:“)\"@de,\n\t\t\"image of relevant illustration of the subject; if available, also use more specific properties (sample: coat of arms image, locator map, flag image, signature image, logo image, collage image)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P18 ;\n\twikibase:claim p:P18 ;\n\twikibase:statementProperty ps:P18 ;\n\twikibase:statementValue psv:P18 ;\n\twikibase:qualifier pq:P18 ;\n\twikibase:qualifierValue pqv:P18 ;\n\twikibase:reference pr:P18 ;\n\twikibase:referenceValue prv:P18 ;\n\twikibase:novalue wdno:P18 .\n\np:P18 a owl:ObjectProperty .\n\npsv:P18 a owl:ObjectProperty .\n\npqv:P18 a owl:ObjectProperty .\n\nprv:P18 a owl:ObjectProperty .\n\nwdt:P18 a owl:ObjectProperty .\n\nps:P18 a owl:ObjectProperty .\n\npq:P18 a owl:ObjectProperty .\n\npr:P18 a owl:ObjectProperty .\n\nwdno:P18 a owl:Class ;\n\towl:complementOf _:90353c5ec33a5dc569985590a17a3551 .\n\n_:90353c5ec33a5dc569985590a17a3551 a owl:Restriction ;\n\towl:onProperty wdt:P18 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q6535616 a wikibase:Item ;\n\trdfs:label \"Category:Pyrus\"@en ;\n\tskos:prefLabel \"Category:Pyrus\"@en ;\n\tschema:name \"Category:Pyrus\"@en ;\n\tschema:description \"Wikimedia-Kategorie\"@de,\n\t\t\"Wikimedia category\"@en .\n\nwd:P910 a wikibase:Property ;\n\trdfs:label \"Hauptkategorie des Themas\"@de ;\n\tskos:prefLabel \"Hauptkategorie des Themas\"@de ;\n\tschema:name \"Hauptkategorie des Themas\"@de ;\n\trdfs:label \"topic's main category\"@en ;\n\tskos:prefLabel \"topic's main category\"@en ;\n\tschema:name \"topic's main category\"@en ;\n\tschema:description \"Haupt-Wikimedia-Kategorie\"@de,\n\t\t\"main Wikimedia category\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P910 ;\n\twikibase:claim p:P910 ;\n\twikibase:statementProperty ps:P910 ;\n\twikibase:statementValue psv:P910 ;\n\twikibase:qualifier pq:P910 ;\n\twikibase:qualifierValue pqv:P910 ;\n\twikibase:reference pr:P910 ;\n\twikibase:referenceValue prv:P910 ;\n\twikibase:novalue wdno:P910 .\n\np:P910 a owl:ObjectProperty .\n\npsv:P910 a owl:ObjectProperty .\n\npqv:P910 a owl:ObjectProperty .\n\nprv:P910 a owl:ObjectProperty .\n\nwdt:P910 a owl:ObjectProperty .\n\nps:P910 a owl:ObjectProperty .\n\npq:P910 a owl:ObjectProperty .\n\npr:P910 a owl:ObjectProperty .\n\nwdno:P910 a owl:Class ;\n\towl:complementOf _:06be9361e78d041ce01df69013cf6906 .\n\n_:06be9361e78d041ce01df69013cf6906 a owl:Restriction ;\n\towl:onProperty wdt:P910 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P685 a wikibase:Property ;\n\trdfs:label \"NCBI-ID\"@de ;\n\tskos:prefLabel \"NCBI-ID\"@de ;\n\tschema:name \"NCBI-ID\"@de ;\n\trdfs:label \"NCBI taxonomy ID\"@en ;\n\tskos:prefLabel \"NCBI taxonomy ID\"@en ;\n\tschema:name \"NCBI taxonomy ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept in der Taxonomiedatenbank des National Center for Biotechnology Information (NCBI)\"@de,\n\t\t\"identifier for a taxon in the Taxonomy Database by the National Center for Biotechnology Information\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P685 ;\n\twikibase:claim p:P685 ;\n\twikibase:statementProperty ps:P685 ;\n\twikibase:statementValue psv:P685 ;\n\twikibase:qualifier pq:P685 ;\n\twikibase:qualifierValue pqv:P685 ;\n\twikibase:reference pr:P685 ;\n\twikibase:referenceValue prv:P685 ;\n\twikibase:novalue wdno:P685 ;\n\twikibase:directClaimNormalized wdtn:P685 ;\n\twikibase:statementValueNormalized psn:P685 ;\n\twikibase:qualifierValueNormalized pqn:P685 ;\n\twikibase:referenceValueNormalized prn:P685 .\n\np:P685 a owl:ObjectProperty .\n\npsv:P685 a owl:ObjectProperty .\n\npqv:P685 a owl:ObjectProperty .\n\nprv:P685 a owl:ObjectProperty .\n\nwdt:P685 a owl:DatatypeProperty .\n\nps:P685 a owl:DatatypeProperty .\n\npq:P685 a owl:DatatypeProperty .\n\npr:P685 a owl:DatatypeProperty .\n\npsn:P685 a owl:ObjectProperty .\n\npqn:P685 a owl:ObjectProperty .\n\nprn:P685 a owl:ObjectProperty .\n\nwdtn:P685 a owl:ObjectProperty .\n\nwdno:P685 a owl:Class ;\n\towl:complementOf _:bca77c5212845547080acb6703879a21 .\n\n_:bca77c5212845547080acb6703879a21 a owl:Restriction ;\n\towl:onProperty wdt:P685 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P815 a wikibase:Property ;\n\trdfs:label \"ITIS-TSN\"@de ;\n\tskos:prefLabel \"ITIS-TSN\"@de ;\n\tschema:name \"ITIS-TSN\"@de ;\n\trdfs:label \"ITIS TSN\"@en ;\n\tskos:prefLabel \"ITIS TSN\"@en ;\n\tschema:name \"ITIS TSN\"@en ;\n\tschema:description \"Identifikator (=Taxonomic Serial Number [TSN]) im Integrated Taxonomic Information System (ITIS)\"@de,\n\t\t\"identifier for a taxon in the Integrated Taxonomic Information System\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P815 ;\n\twikibase:claim p:P815 ;\n\twikibase:statementProperty ps:P815 ;\n\twikibase:statementValue psv:P815 ;\n\twikibase:qualifier pq:P815 ;\n\twikibase:qualifierValue pqv:P815 ;\n\twikibase:reference pr:P815 ;\n\twikibase:referenceValue prv:P815 ;\n\twikibase:novalue wdno:P815 ;\n\twikibase:directClaimNormalized wdtn:P815 ;\n\twikibase:statementValueNormalized psn:P815 ;\n\twikibase:qualifierValueNormalized pqn:P815 ;\n\twikibase:referenceValueNormalized prn:P815 .\n\np:P815 a owl:ObjectProperty .\n\npsv:P815 a owl:ObjectProperty .\n\npqv:P815 a owl:ObjectProperty .\n\nprv:P815 a owl:ObjectProperty .\n\nwdt:P815 a owl:DatatypeProperty .\n\nps:P815 a owl:DatatypeProperty .\n\npq:P815 a owl:DatatypeProperty .\n\npr:P815 a owl:DatatypeProperty .\n\npsn:P815 a owl:ObjectProperty .\n\npqn:P815 a owl:ObjectProperty .\n\nprn:P815 a owl:ObjectProperty .\n\nwdtn:P815 a owl:ObjectProperty .\n\nwdno:P815 a owl:Class ;\n\towl:complementOf _:69a818f0539fda285c2f3e1ac647ef76 .\n\n_:69a818f0539fda285c2f3e1ac647ef76 a owl:Restriction ;\n\towl:onProperty wdt:P815 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q16521 a wikibase:Item ;\n\trdfs:label \"Taxon\"@de ;\n\tskos:prefLabel \"Taxon\"@de ;\n\tschema:name \"Taxon\"@de ;\n\trdfs:label \"taxon\"@en ;\n\tskos:prefLabel \"taxon\"@en ;\n\tschema:name \"taxon\"@en ;\n\tschema:description \"biologische Einheit, der entsprechend bestimmter Kriterien eine Gruppe von Lebewesen zugeordnet wird\"@de,\n\t\t\"group of one or more organism(s), which a taxonomist adjudges to be a unit\"@en .\n\nwd:P31 a wikibase:Property ;\n\trdfs:label \"ist ein(e)\"@de ;\n\tskos:prefLabel \"ist ein(e)\"@de ;\n\tschema:name \"ist ein(e)\"@de ;\n\trdfs:label \"instance of\"@en ;\n\tskos:prefLabel \"instance of\"@en ;\n\tschema:name \"instance of\"@en ;\n\tschema:description \"Ausprägung oder Exemplar einer Sache, Mitglied einer Klasse. Zu unterscheiden von P279 (Unterklasse von), z. B. der K2 „ist ein“ Berg; Vulkan ist eine „Unterklasse von“ Berg (aber Vulkan „ist eine“ vulkanogene Landform)\"@de,\n\t\t\"type to which this subject corresponds/belongs. Different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P31 ;\n\twikibase:claim p:P31 ;\n\twikibase:statementProperty ps:P31 ;\n\twikibase:statementValue psv:P31 ;\n\twikibase:qualifier pq:P31 ;\n\twikibase:qualifierValue pqv:P31 ;\n\twikibase:reference pr:P31 ;\n\twikibase:referenceValue prv:P31 ;\n\twikibase:novalue wdno:P31 .\n\np:P31 a owl:ObjectProperty .\n\npsv:P31 a owl:ObjectProperty .\n\npqv:P31 a owl:ObjectProperty .\n\nprv:P31 a owl:ObjectProperty .\n\nwdt:P31 a owl:ObjectProperty .\n\nps:P31 a owl:ObjectProperty .\n\npq:P31 a owl:ObjectProperty .\n\npr:P31 a owl:ObjectProperty .\n\nwdno:P31 a owl:Class ;\n\towl:complementOf _:0b8bd71b926a65ca3fa72e5d9103e4d6 .\n\n_:0b8bd71b926a65ca3fa72e5d9103e4d6 a owl:Restriction ;\n\towl:onProperty wdt:P31 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P646 a wikibase:Property ;\n\trdfs:label \"Freebase-Kennung\"@de ;\n\tskos:prefLabel \"Freebase-Kennung\"@de ;\n\tschema:name \"Freebase-Kennung\"@de ;\n\trdfs:label \"Freebase ID\"@en ;\n\tskos:prefLabel \"Freebase ID\"@en ;\n\tschema:name \"Freebase ID\"@en ;\n\tschema:description \"Kennung des gleichbedeutenden Eintrags in der Freebase-Datenbank\"@de,\n\t\t\"identifier for a page in the Freebase database. Format: \\\"/m/0\\\" followed by 2 to 7 characters. For IDs starting with \\\"/g/\\\", use Google Knowledge Graph ID (P2671)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P646 ;\n\twikibase:claim p:P646 ;\n\twikibase:statementProperty ps:P646 ;\n\twikibase:statementValue psv:P646 ;\n\twikibase:qualifier pq:P646 ;\n\twikibase:qualifierValue pqv:P646 ;\n\twikibase:reference pr:P646 ;\n\twikibase:referenceValue prv:P646 ;\n\twikibase:novalue wdno:P646 ;\n\twikibase:directClaimNormalized wdtn:P646 ;\n\twikibase:statementValueNormalized psn:P646 ;\n\twikibase:qualifierValueNormalized pqn:P646 ;\n\twikibase:referenceValueNormalized prn:P646 .\n\np:P646 a owl:ObjectProperty .\n\npsv:P646 a owl:ObjectProperty .\n\npqv:P646 a owl:ObjectProperty .\n\nprv:P646 a owl:ObjectProperty .\n\nwdt:P646 a owl:DatatypeProperty .\n\nps:P646 a owl:DatatypeProperty .\n\npq:P646 a owl:DatatypeProperty .\n\npr:P646 a owl:DatatypeProperty .\n\npsn:P646 a owl:ObjectProperty .\n\npqn:P646 a owl:ObjectProperty .\n\nprn:P646 a owl:ObjectProperty .\n\nwdtn:P646 a owl:ObjectProperty .\n\nwdno:P646 a owl:Class ;\n\towl:complementOf _:38db277a4b10d59fd38a3fd995cbe570 .\n\n_:38db277a4b10d59fd38a3fd995cbe570 a owl:Restriction ;\n\towl:onProperty wdt:P646 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P830 a wikibase:Property ;\n\trdfs:label \"EOL-ID\"@de ;\n\tskos:prefLabel \"EOL-ID\"@de ;\n\tschema:name \"EOL-ID\"@de ;\n\trdfs:label \"Encyclopedia of Life ID\"@en ;\n\tskos:prefLabel \"Encyclopedia of Life ID\"@en ;\n\tschema:name \"Encyclopedia of Life ID\"@en ;\n\tschema:description \"Taxon-Konzept-Identifikator in der Encyclopedia of Life (EOL)\"@de,\n\t\t\"eol.org item reference number\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P830 ;\n\twikibase:claim p:P830 ;\n\twikibase:statementProperty ps:P830 ;\n\twikibase:statementValue psv:P830 ;\n\twikibase:qualifier pq:P830 ;\n\twikibase:qualifierValue pqv:P830 ;\n\twikibase:reference pr:P830 ;\n\twikibase:referenceValue prv:P830 ;\n\twikibase:novalue wdno:P830 ;\n\twikibase:directClaimNormalized wdtn:P830 ;\n\twikibase:statementValueNormalized psn:P830 ;\n\twikibase:qualifierValueNormalized pqn:P830 ;\n\twikibase:referenceValueNormalized prn:P830 .\n\np:P830 a owl:ObjectProperty .\n\npsv:P830 a owl:ObjectProperty .\n\npqv:P830 a owl:ObjectProperty .\n\nprv:P830 a owl:ObjectProperty .\n\nwdt:P830 a owl:DatatypeProperty .\n\nps:P830 a owl:DatatypeProperty .\n\npq:P830 a owl:DatatypeProperty .\n\npr:P830 a owl:DatatypeProperty .\n\npsn:P830 a owl:ObjectProperty .\n\npqn:P830 a owl:ObjectProperty .\n\nprn:P830 a owl:ObjectProperty .\n\nwdtn:P830 a owl:ObjectProperty .\n\nwdno:P830 a owl:Class ;\n\towl:complementOf _:f8dbe44ad4bbbd585dc613515bbbee7a .\n\n_:f8dbe44ad4bbbd585dc613515bbbee7a a owl:Restriction ;\n\towl:onProperty wdt:P830 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P961 a wikibase:Property ;\n\trdfs:label \"IPNI-TaxonName-ID\"@de ;\n\tskos:prefLabel \"IPNI-TaxonName-ID\"@de ;\n\tschema:name \"IPNI-TaxonName-ID\"@de ;\n\trdfs:label \"IPNI plant ID\"@en ;\n\tskos:prefLabel \"IPNI plant ID\"@en ;\n\tschema:name \"IPNI plant ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im International Plant Names Index (IPNI)\"@de,\n\t\t\"numerical identifier for a plant name in the International Plant Names Index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P961 ;\n\twikibase:claim p:P961 ;\n\twikibase:statementProperty ps:P961 ;\n\twikibase:statementValue psv:P961 ;\n\twikibase:qualifier pq:P961 ;\n\twikibase:qualifierValue pqv:P961 ;\n\twikibase:reference pr:P961 ;\n\twikibase:referenceValue prv:P961 ;\n\twikibase:novalue wdno:P961 ;\n\twikibase:directClaimNormalized wdtn:P961 ;\n\twikibase:statementValueNormalized psn:P961 ;\n\twikibase:qualifierValueNormalized pqn:P961 ;\n\twikibase:referenceValueNormalized prn:P961 .\n\np:P961 a owl:ObjectProperty .\n\npsv:P961 a owl:ObjectProperty .\n\npqv:P961 a owl:ObjectProperty .\n\nprv:P961 a owl:ObjectProperty .\n\nwdt:P961 a owl:DatatypeProperty .\n\nps:P961 a owl:DatatypeProperty .\n\npq:P961 a owl:DatatypeProperty .\n\npr:P961 a owl:DatatypeProperty .\n\npsn:P961 a owl:ObjectProperty .\n\npqn:P961 a owl:ObjectProperty .\n\nprn:P961 a owl:ObjectProperty .\n\nwdtn:P961 a owl:ObjectProperty .\n\nwdno:P961 a owl:Class ;\n\towl:complementOf _:aed2728bf2fd8763d252215824748a49 .\n\n_:aed2728bf2fd8763d252215824748a49 a owl:Restriction ;\n\towl:onProperty wdt:P961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1745 a wikibase:Property ;\n\trdfs:label \"VasCan-ID\"@de ;\n\tskos:prefLabel \"VasCan-ID\"@de ;\n\tschema:name \"VasCan-ID\"@de ;\n\trdfs:label \"VASCAN ID\"@mul ;\n\tskos:prefLabel \"VASCAN ID\"@mul ;\n\tschema:name \"VASCAN ID\"@mul ;\n\trdfs:label \"VASCAN ID\"@en ;\n\tskos:prefLabel \"VASCAN ID\"@en ;\n\tschema:name \"VASCAN ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank Vascular Plants of Canada (VasCan)\"@de,\n\t\t\"identifier for a taxon in the Database of Vascular Plants of Canada\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1745 ;\n\twikibase:claim p:P1745 ;\n\twikibase:statementProperty ps:P1745 ;\n\twikibase:statementValue psv:P1745 ;\n\twikibase:qualifier pq:P1745 ;\n\twikibase:qualifierValue pqv:P1745 ;\n\twikibase:reference pr:P1745 ;\n\twikibase:referenceValue prv:P1745 ;\n\twikibase:novalue wdno:P1745 ;\n\twikibase:directClaimNormalized wdtn:P1745 ;\n\twikibase:statementValueNormalized psn:P1745 ;\n\twikibase:qualifierValueNormalized pqn:P1745 ;\n\twikibase:referenceValueNormalized prn:P1745 .\n\np:P1745 a owl:ObjectProperty .\n\npsv:P1745 a owl:ObjectProperty .\n\npqv:P1745 a owl:ObjectProperty .\n\nprv:P1745 a owl:ObjectProperty .\n\nwdt:P1745 a owl:DatatypeProperty .\n\nps:P1745 a owl:DatatypeProperty .\n\npq:P1745 a owl:DatatypeProperty .\n\npr:P1745 a owl:DatatypeProperty .\n\npsn:P1745 a owl:ObjectProperty .\n\npqn:P1745 a owl:ObjectProperty .\n\nprn:P1745 a owl:ObjectProperty .\n\nwdtn:P1745 a owl:ObjectProperty .\n\nwdno:P1745 a owl:Class ;\n\towl:complementOf _:e263329d173aae293dd93e451a8d03e5 .\n\n_:e263329d173aae293dd93e451a8d03e5 a owl:Restriction ;\n\towl:onProperty wdt:P1745 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1421 a wikibase:Property ;\n\trdfs:label \"GRIN-URL\"@de ;\n\tskos:prefLabel \"GRIN-URL\"@de ;\n\tschema:name \"GRIN-URL\"@de ;\n\trdfs:label \"GRIN URL\"@en ;\n\tskos:prefLabel \"GRIN URL\"@en ;\n\tschema:name \"GRIN URL\"@en ;\n\tschema:description \"URL für den wissenschaftlichen Namen eines Taxons bei GRIN\"@de,\n\t\t\"URL for a taxon in the GRIN website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1421 ;\n\twikibase:claim p:P1421 ;\n\twikibase:statementProperty ps:P1421 ;\n\twikibase:statementValue psv:P1421 ;\n\twikibase:qualifier pq:P1421 ;\n\twikibase:qualifierValue pqv:P1421 ;\n\twikibase:reference pr:P1421 ;\n\twikibase:referenceValue prv:P1421 ;\n\twikibase:novalue wdno:P1421 .\n\np:P1421 a owl:ObjectProperty .\n\npsv:P1421 a owl:ObjectProperty .\n\npqv:P1421 a owl:ObjectProperty .\n\nprv:P1421 a owl:ObjectProperty .\n\nwdt:P1421 a owl:ObjectProperty .\n\nps:P1421 a owl:ObjectProperty .\n\npq:P1421 a owl:ObjectProperty .\n\npr:P1421 a owl:ObjectProperty .\n\nwdno:P1421 a owl:Class ;\n\towl:complementOf _:7fd183799213c781365b6c2268147965 .\n\n_:7fd183799213c781365b6c2268147965 a owl:Restriction ;\n\towl:onProperty wdt:P1421 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1772 a wikibase:Property ;\n\trdfs:label \"USDA-ID\"@de ;\n\tskos:prefLabel \"USDA-ID\"@de ;\n\tschema:name \"USDA-ID\"@de ;\n\trdfs:label \"USDA PLANTS ID\"@mul ;\n\tskos:prefLabel \"USDA PLANTS ID\"@mul ;\n\tschema:name \"USDA PLANTS ID\"@mul ;\n\trdfs:label \"USDA PLANTS ID\"@en ;\n\tskos:prefLabel \"USDA PLANTS ID\"@en ;\n\tschema:name \"USDA PLANTS ID\"@en ;\n\tschema:description \"Identifikator in der Datenbank des United States Department of Agriculture (USDA)\"@de,\n\t\t\"identifier in the United States Department of Agriculture PLANTS Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1772 ;\n\twikibase:claim p:P1772 ;\n\twikibase:statementProperty ps:P1772 ;\n\twikibase:statementValue psv:P1772 ;\n\twikibase:qualifier pq:P1772 ;\n\twikibase:qualifierValue pqv:P1772 ;\n\twikibase:reference pr:P1772 ;\n\twikibase:referenceValue prv:P1772 ;\n\twikibase:novalue wdno:P1772 ;\n\twikibase:directClaimNormalized wdtn:P1772 ;\n\twikibase:statementValueNormalized psn:P1772 ;\n\twikibase:qualifierValueNormalized pqn:P1772 ;\n\twikibase:referenceValueNormalized prn:P1772 .\n\np:P1772 a owl:ObjectProperty .\n\npsv:P1772 a owl:ObjectProperty .\n\npqv:P1772 a owl:ObjectProperty .\n\nprv:P1772 a owl:ObjectProperty .\n\nwdt:P1772 a owl:DatatypeProperty .\n\nps:P1772 a owl:DatatypeProperty .\n\npq:P1772 a owl:DatatypeProperty .\n\npr:P1772 a owl:DatatypeProperty .\n\npsn:P1772 a owl:ObjectProperty .\n\npqn:P1772 a owl:ObjectProperty .\n\nprn:P1772 a owl:ObjectProperty .\n\nwdtn:P1772 a owl:ObjectProperty .\n\nwdno:P1772 a owl:Class ;\n\towl:complementOf _:628f5161a15d4cb2d6c310b03688e314 .\n\n_:628f5161a15d4cb2d6c310b03688e314 a owl:Restriction ;\n\towl:onProperty wdt:P1772 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1747 a wikibase:Property ;\n\trdfs:label \"FOC-ID\"@de ;\n\tskos:prefLabel \"FOC-ID\"@de ;\n\tschema:name \"FOC-ID\"@de ;\n\trdfs:label \"Flora of China ID\"@en ;\n\tskos:prefLabel \"Flora of China ID\"@en ;\n\tschema:name \"Flora of China ID\"@en ;\n\tschema:description \"Identifikator in der Flora of China (FOC)\"@de,\n\t\t\"identifier for a taxon in Flora of China (English-language revision of Flora Reipublicae Popularis Sinicae)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1747 ;\n\twikibase:claim p:P1747 ;\n\twikibase:statementProperty ps:P1747 ;\n\twikibase:statementValue psv:P1747 ;\n\twikibase:qualifier pq:P1747 ;\n\twikibase:qualifierValue pqv:P1747 ;\n\twikibase:reference pr:P1747 ;\n\twikibase:referenceValue prv:P1747 ;\n\twikibase:novalue wdno:P1747 ;\n\twikibase:directClaimNormalized wdtn:P1747 ;\n\twikibase:statementValueNormalized psn:P1747 ;\n\twikibase:qualifierValueNormalized pqn:P1747 ;\n\twikibase:referenceValueNormalized prn:P1747 .\n\np:P1747 a owl:ObjectProperty .\n\npsv:P1747 a owl:ObjectProperty .\n\npqv:P1747 a owl:ObjectProperty .\n\nprv:P1747 a owl:ObjectProperty .\n\nwdt:P1747 a owl:DatatypeProperty .\n\nps:P1747 a owl:DatatypeProperty .\n\npq:P1747 a owl:DatatypeProperty .\n\npr:P1747 a owl:DatatypeProperty .\n\npsn:P1747 a owl:ObjectProperty .\n\npqn:P1747 a owl:ObjectProperty .\n\nprn:P1747 a owl:ObjectProperty .\n\nwdtn:P1747 a owl:ObjectProperty .\n\nwdno:P1747 a owl:Class ;\n\towl:complementOf _:1e07a8678adbd8700a1923df04eff524 .\n\n_:1e07a8678adbd8700a1923df04eff524 a owl:Restriction ;\n\towl:onProperty wdt:P1747 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1939 a wikibase:Property ;\n\trdfs:label \"Dyntaxa-ID\"@de ;\n\tskos:prefLabel \"Dyntaxa-ID\"@de ;\n\tschema:name \"Dyntaxa-ID\"@de ;\n\trdfs:label \"Dyntaxa ID\"@mul ;\n\tskos:prefLabel \"Dyntaxa ID\"@mul ;\n\tschema:name \"Dyntaxa ID\"@mul ;\n\trdfs:label \"Dyntaxa ID\"@en ;\n\tskos:prefLabel \"Dyntaxa ID\"@en ;\n\tschema:name \"Dyntaxa ID\"@en ;\n\tschema:description \"Identifikator in der schwedischen Taxonomiedatenbank (Dyntaxa)\"@de,\n\t\t\"identifier for a taxon in the Swedish Taxonomic Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1939 ;\n\twikibase:claim p:P1939 ;\n\twikibase:statementProperty ps:P1939 ;\n\twikibase:statementValue psv:P1939 ;\n\twikibase:qualifier pq:P1939 ;\n\twikibase:qualifierValue pqv:P1939 ;\n\twikibase:reference pr:P1939 ;\n\twikibase:referenceValue prv:P1939 ;\n\twikibase:novalue wdno:P1939 ;\n\twikibase:directClaimNormalized wdtn:P1939 ;\n\twikibase:statementValueNormalized psn:P1939 ;\n\twikibase:qualifierValueNormalized pqn:P1939 ;\n\twikibase:referenceValueNormalized prn:P1939 .\n\np:P1939 a owl:ObjectProperty .\n\npsv:P1939 a owl:ObjectProperty .\n\npqv:P1939 a owl:ObjectProperty .\n\nprv:P1939 a owl:ObjectProperty .\n\nwdt:P1939 a owl:DatatypeProperty .\n\nps:P1939 a owl:DatatypeProperty .\n\npq:P1939 a owl:DatatypeProperty .\n\npr:P1939 a owl:DatatypeProperty .\n\npsn:P1939 a owl:ObjectProperty .\n\npqn:P1939 a owl:ObjectProperty .\n\nprn:P1939 a owl:ObjectProperty .\n\nwdtn:P1939 a owl:ObjectProperty .\n\nwdno:P1939 a owl:Class ;\n\towl:complementOf _:e537016449ccafe75bdf201c04c0c059 .\n\n_:e537016449ccafe75bdf201c04c0c059 a owl:Restriction ;\n\towl:onProperty wdt:P1939 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2036 a wikibase:Property ;\n\trdfs:label \"African-Plant-Database-ID\"@de ;\n\tskos:prefLabel \"African-Plant-Database-ID\"@de ;\n\tschema:name \"African-Plant-Database-ID\"@de ;\n\trdfs:label \"African Plant Database ID\"@mul ;\n\tskos:prefLabel \"African Plant Database ID\"@mul ;\n\tschema:name \"African Plant Database ID\"@mul ;\n\trdfs:label \"African Plant Database ID\"@en ;\n\tskos:prefLabel \"African Plant Database ID\"@en ;\n\tschema:name \"African Plant Database ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons in der African Plant Database\"@de,\n\t\t\"identifier for a plant taxon, in the Conservatoire et Jardin botaniques de Genève's African Plant Database of scientific names\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2036 ;\n\twikibase:claim p:P2036 ;\n\twikibase:statementProperty ps:P2036 ;\n\twikibase:statementValue psv:P2036 ;\n\twikibase:qualifier pq:P2036 ;\n\twikibase:qualifierValue pqv:P2036 ;\n\twikibase:reference pr:P2036 ;\n\twikibase:referenceValue prv:P2036 ;\n\twikibase:novalue wdno:P2036 ;\n\twikibase:directClaimNormalized wdtn:P2036 ;\n\twikibase:statementValueNormalized psn:P2036 ;\n\twikibase:qualifierValueNormalized pqn:P2036 ;\n\twikibase:referenceValueNormalized prn:P2036 .\n\np:P2036 a owl:ObjectProperty .\n\npsv:P2036 a owl:ObjectProperty .\n\npqv:P2036 a owl:ObjectProperty .\n\nprv:P2036 a owl:ObjectProperty .\n\nwdt:P2036 a owl:DatatypeProperty .\n\nps:P2036 a owl:DatatypeProperty .\n\npq:P2036 a owl:DatatypeProperty .\n\npr:P2036 a owl:DatatypeProperty .\n\npsn:P2036 a owl:ObjectProperty .\n\npqn:P2036 a owl:ObjectProperty .\n\nprn:P2036 a owl:ObjectProperty .\n\nwdtn:P2036 a owl:ObjectProperty .\n\nwdno:P2036 a owl:Class ;\n\towl:complementOf _:b0f9170a47773a0767cc8b80a8af9385 .\n\n_:b0f9170a47773a0767cc8b80a8af9385 a owl:Restriction ;\n\towl:onProperty wdt:P2036 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P935 a wikibase:Property ;\n\trdfs:label \"Commons-Galerie\"@de ;\n\tskos:prefLabel \"Commons-Galerie\"@de ;\n\tschema:name \"Commons-Galerie\"@de ;\n\trdfs:label \"Commons gallery\"@en ;\n\tskos:prefLabel \"Commons gallery\"@en ;\n\tschema:name \"Commons gallery\"@en ;\n\tschema:description \"Name der Galerieseite(n) auf Wikimedia Commons mit Dateien zu dem Objekt (item)\"@de,\n\t\t\"name of the Wikimedia Commons gallery page(s) related to this item (is suitable to allow multiple links to more gallery pages)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P935 ;\n\twikibase:claim p:P935 ;\n\twikibase:statementProperty ps:P935 ;\n\twikibase:statementValue psv:P935 ;\n\twikibase:qualifier pq:P935 ;\n\twikibase:qualifierValue pqv:P935 ;\n\twikibase:reference pr:P935 ;\n\twikibase:referenceValue prv:P935 ;\n\twikibase:novalue wdno:P935 .\n\np:P935 a owl:ObjectProperty .\n\npsv:P935 a owl:ObjectProperty .\n\npqv:P935 a owl:ObjectProperty .\n\nprv:P935 a owl:ObjectProperty .\n\nwdt:P935 a owl:DatatypeProperty .\n\nps:P935 a owl:DatatypeProperty .\n\npq:P935 a owl:DatatypeProperty .\n\npr:P935 a owl:DatatypeProperty .\n\nwdno:P935 a owl:Class ;\n\towl:complementOf _:e611166fd8b736fb1e719dd5177883b3 .\n\n_:e611166fd8b736fb1e719dd5177883b3 a owl:Restriction ;\n\towl:onProperty wdt:P935 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P846 a wikibase:Property ;\n\trdfs:label \"GBIF Taxon-ID\"@de ;\n\tskos:prefLabel \"GBIF Taxon-ID\"@de ;\n\tschema:name \"GBIF Taxon-ID\"@de ;\n\trdfs:label \"GBIF taxon ID\"@en ;\n\tskos:prefLabel \"GBIF taxon ID\"@en ;\n\tschema:name \"GBIF taxon ID\"@en ;\n\tschema:description \"Identifikator bei der Global Biodiversity Information Facility (GBIF)\"@de,\n\t\t\"taxon identifier in GBIF\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P846 ;\n\twikibase:claim p:P846 ;\n\twikibase:statementProperty ps:P846 ;\n\twikibase:statementValue psv:P846 ;\n\twikibase:qualifier pq:P846 ;\n\twikibase:qualifierValue pqv:P846 ;\n\twikibase:reference pr:P846 ;\n\twikibase:referenceValue prv:P846 ;\n\twikibase:novalue wdno:P846 ;\n\twikibase:directClaimNormalized wdtn:P846 ;\n\twikibase:statementValueNormalized psn:P846 ;\n\twikibase:qualifierValueNormalized pqn:P846 ;\n\twikibase:referenceValueNormalized prn:P846 .\n\np:P846 a owl:ObjectProperty .\n\npsv:P846 a owl:ObjectProperty .\n\npqv:P846 a owl:ObjectProperty .\n\nprv:P846 a owl:ObjectProperty .\n\nwdt:P846 a owl:DatatypeProperty .\n\nps:P846 a owl:DatatypeProperty .\n\npq:P846 a owl:DatatypeProperty .\n\npr:P846 a owl:DatatypeProperty .\n\npsn:P846 a owl:ObjectProperty .\n\npqn:P846 a owl:ObjectProperty .\n\nprn:P846 a owl:ObjectProperty .\n\nwdtn:P846 a owl:ObjectProperty .\n\nwdno:P846 a owl:Class ;\n\towl:complementOf _:4e43dee4c86ca789b71d8b527d96e65b .\n\n_:4e43dee4c86ca789b71d8b527d96e65b a owl:Restriction ;\n\towl:onProperty wdt:P846 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1014 a wikibase:Property ;\n\trdfs:label \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tskos:prefLabel \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\tschema:name \"Art-and-Architecture-Thesaurus-Kennung\"@de ;\n\trdfs:label \"Art & Architecture Thesaurus ID\"@en ;\n\tskos:prefLabel \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:name \"Art & Architecture Thesaurus ID\"@en ;\n\tschema:description \"Identifikator im Art-and-Architecture-Thesaurus des Getty Research Institute\"@de,\n\t\t\"identifier in the Art & Architecture Thesaurus by the Getty Research Institute\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1014 ;\n\twikibase:claim p:P1014 ;\n\twikibase:statementProperty ps:P1014 ;\n\twikibase:statementValue psv:P1014 ;\n\twikibase:qualifier pq:P1014 ;\n\twikibase:qualifierValue pqv:P1014 ;\n\twikibase:reference pr:P1014 ;\n\twikibase:referenceValue prv:P1014 ;\n\twikibase:novalue wdno:P1014 ;\n\twikibase:directClaimNormalized wdtn:P1014 ;\n\twikibase:statementValueNormalized psn:P1014 ;\n\twikibase:qualifierValueNormalized pqn:P1014 ;\n\twikibase:referenceValueNormalized prn:P1014 .\n\np:P1014 a owl:ObjectProperty .\n\npsv:P1014 a owl:ObjectProperty .\n\npqv:P1014 a owl:ObjectProperty .\n\nprv:P1014 a owl:ObjectProperty .\n\nwdt:P1014 a owl:DatatypeProperty .\n\nps:P1014 a owl:DatatypeProperty .\n\npq:P1014 a owl:DatatypeProperty .\n\npr:P1014 a owl:DatatypeProperty .\n\npsn:P1014 a owl:ObjectProperty .\n\npqn:P1014 a owl:ObjectProperty .\n\nprn:P1014 a owl:ObjectProperty .\n\nwdtn:P1014 a owl:ObjectProperty .\n\nwdno:P1014 a owl:Class ;\n\towl:complementOf _:b3313e8714e8603bc734ad31fe890277 .\n\n_:b3313e8714e8603bc734ad31fe890277 a owl:Restriction ;\n\towl:onProperty wdt:P1014 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2752 a wikibase:Property ;\n\trdfs:label \"NZOR-ID\"@de ;\n\tskos:prefLabel \"NZOR-ID\"@de ;\n\tschema:name \"NZOR-ID\"@de ;\n\trdfs:label \"New Zealand Organisms Register ID\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register ID\"@en ;\n\tschema:name \"New Zealand Organisms Register ID\"@en ;\n\tschema:description \"Identifikator im New Zealand Organisms Register\"@de,\n\t\t\"identifier for a taxon names in the New Zealand Organisms Register\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2752 ;\n\twikibase:claim p:P2752 ;\n\twikibase:statementProperty ps:P2752 ;\n\twikibase:statementValue psv:P2752 ;\n\twikibase:qualifier pq:P2752 ;\n\twikibase:qualifierValue pqv:P2752 ;\n\twikibase:reference pr:P2752 ;\n\twikibase:referenceValue prv:P2752 ;\n\twikibase:novalue wdno:P2752 ;\n\twikibase:directClaimNormalized wdtn:P2752 ;\n\twikibase:statementValueNormalized psn:P2752 ;\n\twikibase:qualifierValueNormalized pqn:P2752 ;\n\twikibase:referenceValueNormalized prn:P2752 .\n\np:P2752 a owl:ObjectProperty .\n\npsv:P2752 a owl:ObjectProperty .\n\npqv:P2752 a owl:ObjectProperty .\n\nprv:P2752 a owl:ObjectProperty .\n\nwdt:P2752 a owl:DatatypeProperty .\n\nps:P2752 a owl:DatatypeProperty .\n\npq:P2752 a owl:DatatypeProperty .\n\npr:P2752 a owl:DatatypeProperty .\n\npsn:P2752 a owl:ObjectProperty .\n\npqn:P2752 a owl:ObjectProperty .\n\nprn:P2752 a owl:ObjectProperty .\n\nwdtn:P2752 a owl:ObjectProperty .\n\nwdno:P2752 a owl:Class ;\n\towl:complementOf _:7abc2b813b7dc941a17c84c2fcfe1b31 .\n\n_:7abc2b813b7dc941a17c84c2fcfe1b31 a owl:Restriction ;\n\towl:onProperty wdt:P2752 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1843 a wikibase:Property ;\n\trdfs:label \"einheimische Namen\"@de ;\n\tskos:prefLabel \"einheimische Namen\"@de ;\n\tschema:name \"einheimische Namen\"@de ;\n\trdfs:label \"taxon common name\"@en ;\n\tskos:prefLabel \"taxon common name\"@en ;\n\tschema:name \"taxon common name\"@en ;\n\tschema:description \"einheimischer Name eines Taxons\"@de,\n\t\t\"common or vernacular name of a biological taxon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1843 ;\n\twikibase:claim p:P1843 ;\n\twikibase:statementProperty ps:P1843 ;\n\twikibase:statementValue psv:P1843 ;\n\twikibase:qualifier pq:P1843 ;\n\twikibase:qualifierValue pqv:P1843 ;\n\twikibase:reference pr:P1843 ;\n\twikibase:referenceValue prv:P1843 ;\n\twikibase:novalue wdno:P1843 .\n\np:P1843 a owl:ObjectProperty .\n\npsv:P1843 a owl:ObjectProperty .\n\npqv:P1843 a owl:ObjectProperty .\n\nprv:P1843 a owl:ObjectProperty .\n\nwdt:P1843 a owl:DatatypeProperty .\n\nps:P1843 a owl:DatatypeProperty .\n\npq:P1843 a owl:DatatypeProperty .\n\npr:P1843 a owl:DatatypeProperty .\n\nwdno:P1843 a owl:Class ;\n\towl:complementOf _:7bfe1ef45e254e59572c648515b3bc8b .\n\n_:7bfe1ef45e254e59572c648515b3bc8b a owl:Restriction ;\n\towl:onProperty wdt:P1843 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3105 a wikibase:Property ;\n\trdfs:label \"Tela-Botanica-BDTFX-ID\"@de ;\n\tskos:prefLabel \"Tela-Botanica-BDTFX-ID\"@de ;\n\tschema:name \"Tela-Botanica-BDTFX-ID\"@de ;\n\trdfs:label \"Tela Botanica ID\"@en ;\n\tskos:prefLabel \"Tela Botanica ID\"@en ;\n\tschema:name \"Tela Botanica ID\"@en ;\n\tschema:description \"identifier for a plant taxon in Tela Botanica's 'base des trachéophytes de France métropolitaine' - BDTFX - (Metropolitan France Tracheophyte Database)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3105 ;\n\twikibase:claim p:P3105 ;\n\twikibase:statementProperty ps:P3105 ;\n\twikibase:statementValue psv:P3105 ;\n\twikibase:qualifier pq:P3105 ;\n\twikibase:qualifierValue pqv:P3105 ;\n\twikibase:reference pr:P3105 ;\n\twikibase:referenceValue prv:P3105 ;\n\twikibase:novalue wdno:P3105 ;\n\twikibase:directClaimNormalized wdtn:P3105 ;\n\twikibase:statementValueNormalized psn:P3105 ;\n\twikibase:qualifierValueNormalized pqn:P3105 ;\n\twikibase:referenceValueNormalized prn:P3105 .\n\np:P3105 a owl:ObjectProperty .\n\npsv:P3105 a owl:ObjectProperty .\n\npqv:P3105 a owl:ObjectProperty .\n\nprv:P3105 a owl:ObjectProperty .\n\nwdt:P3105 a owl:DatatypeProperty .\n\nps:P3105 a owl:DatatypeProperty .\n\npq:P3105 a owl:DatatypeProperty .\n\npr:P3105 a owl:DatatypeProperty .\n\npsn:P3105 a owl:ObjectProperty .\n\npqn:P3105 a owl:ObjectProperty .\n\nprn:P3105 a owl:ObjectProperty .\n\nwdtn:P3105 a owl:ObjectProperty .\n\nwdno:P3105 a owl:Class ;\n\towl:complementOf _:39ec9e8a1cc534a4563a511d4c8fda02 .\n\n_:39ec9e8a1cc534a4563a511d4c8fda02 a owl:Restriction ;\n\towl:onProperty wdt:P3105 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3101 a wikibase:Property ;\n\trdfs:label \"FloraBase-ID\"@de ;\n\tskos:prefLabel \"FloraBase-ID\"@de ;\n\tschema:name \"FloraBase-ID\"@de ;\n\trdfs:label \"FloraBase ID\"@en ;\n\tskos:prefLabel \"FloraBase ID\"@en ;\n\tschema:name \"FloraBase ID\"@en ;\n\tschema:description \"Identifikator in FloraBase - the Western Australian Flora\"@de,\n\t\t\"identifier for a plant taxon, in the Government of Western Australia's FloraBase database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3101 ;\n\twikibase:claim p:P3101 ;\n\twikibase:statementProperty ps:P3101 ;\n\twikibase:statementValue psv:P3101 ;\n\twikibase:qualifier pq:P3101 ;\n\twikibase:qualifierValue pqv:P3101 ;\n\twikibase:reference pr:P3101 ;\n\twikibase:referenceValue prv:P3101 ;\n\twikibase:novalue wdno:P3101 ;\n\twikibase:directClaimNormalized wdtn:P3101 ;\n\twikibase:statementValueNormalized psn:P3101 ;\n\twikibase:qualifierValueNormalized pqn:P3101 ;\n\twikibase:referenceValueNormalized prn:P3101 .\n\np:P3101 a owl:ObjectProperty .\n\npsv:P3101 a owl:ObjectProperty .\n\npqv:P3101 a owl:ObjectProperty .\n\nprv:P3101 a owl:ObjectProperty .\n\nwdt:P3101 a owl:DatatypeProperty .\n\nps:P3101 a owl:DatatypeProperty .\n\npq:P3101 a owl:DatatypeProperty .\n\npr:P3101 a owl:DatatypeProperty .\n\npsn:P3101 a owl:ObjectProperty .\n\npqn:P3101 a owl:ObjectProperty .\n\nprn:P3101 a owl:ObjectProperty .\n\nwdtn:P3101 a owl:ObjectProperty .\n\nwdno:P3101 a owl:Class ;\n\towl:complementOf _:2f5ab10124576f39347070565fca3ca1 .\n\n_:2f5ab10124576f39347070565fca3ca1 a owl:Restriction ;\n\towl:onProperty wdt:P3101 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3031 a wikibase:Property ;\n\trdfs:label \"EPPO-Code\"@de ;\n\tskos:prefLabel \"EPPO-Code\"@de ;\n\tschema:name \"EPPO-Code\"@de ;\n\trdfs:label \"EPPO Code\"@en ;\n\tskos:prefLabel \"EPPO Code\"@en ;\n\tschema:name \"EPPO Code\"@en ;\n\tschema:description \"der EPPO-Code ist ein System zur schnellen Identifikation von Schadorganismen in landwirtschaftlich genutzten Kulturpflanzen\"@de,\n\t\t\"identifier for a taxon in the EPPO Global Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3031 ;\n\twikibase:claim p:P3031 ;\n\twikibase:statementProperty ps:P3031 ;\n\twikibase:statementValue psv:P3031 ;\n\twikibase:qualifier pq:P3031 ;\n\twikibase:qualifierValue pqv:P3031 ;\n\twikibase:reference pr:P3031 ;\n\twikibase:referenceValue prv:P3031 ;\n\twikibase:novalue wdno:P3031 ;\n\twikibase:directClaimNormalized wdtn:P3031 ;\n\twikibase:statementValueNormalized psn:P3031 ;\n\twikibase:qualifierValueNormalized pqn:P3031 ;\n\twikibase:referenceValueNormalized prn:P3031 .\n\np:P3031 a owl:ObjectProperty .\n\npsv:P3031 a owl:ObjectProperty .\n\npqv:P3031 a owl:ObjectProperty .\n\nprv:P3031 a owl:ObjectProperty .\n\nwdt:P3031 a owl:DatatypeProperty .\n\nps:P3031 a owl:DatatypeProperty .\n\npq:P3031 a owl:DatatypeProperty .\n\npr:P3031 a owl:DatatypeProperty .\n\npsn:P3031 a owl:ObjectProperty .\n\npqn:P3031 a owl:ObjectProperty .\n\nprn:P3031 a owl:ObjectProperty .\n\nwdtn:P3031 a owl:ObjectProperty .\n\nwdno:P3031 a owl:Class ;\n\towl:complementOf _:e744cd0c79cf1a4f2c8fde243102dd40 .\n\n_:e744cd0c79cf1a4f2c8fde243102dd40 a owl:Restriction ;\n\towl:onProperty wdt:P3031 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P960 a wikibase:Property ;\n\trdfs:label \"Tropicos-ID\"@de ;\n\tskos:prefLabel \"Tropicos-ID\"@de ;\n\tschema:name \"Tropicos-ID\"@de ;\n\trdfs:label \"Tropicos ID\"@en ;\n\tskos:prefLabel \"Tropicos ID\"@en ;\n\tschema:name \"Tropicos ID\"@en ;\n\tschema:description \"Identifikator für einen wissenschaftlichen Namen eines Taxons bei Tropicos\"@de,\n\t\t\"identifier for a taxon name in the Tropicos database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P960 ;\n\twikibase:claim p:P960 ;\n\twikibase:statementProperty ps:P960 ;\n\twikibase:statementValue psv:P960 ;\n\twikibase:qualifier pq:P960 ;\n\twikibase:qualifierValue pqv:P960 ;\n\twikibase:reference pr:P960 ;\n\twikibase:referenceValue prv:P960 ;\n\twikibase:novalue wdno:P960 ;\n\twikibase:directClaimNormalized wdtn:P960 ;\n\twikibase:statementValueNormalized psn:P960 ;\n\twikibase:qualifierValueNormalized pqn:P960 ;\n\twikibase:referenceValueNormalized prn:P960 .\n\np:P960 a owl:ObjectProperty .\n\npsv:P960 a owl:ObjectProperty .\n\npqv:P960 a owl:ObjectProperty .\n\nprv:P960 a owl:ObjectProperty .\n\nwdt:P960 a owl:DatatypeProperty .\n\nps:P960 a owl:DatatypeProperty .\n\npq:P960 a owl:DatatypeProperty .\n\npr:P960 a owl:DatatypeProperty .\n\npsn:P960 a owl:ObjectProperty .\n\npqn:P960 a owl:ObjectProperty .\n\nprn:P960 a owl:ObjectProperty .\n\nwdtn:P960 a owl:ObjectProperty .\n\nwdno:P960 a owl:Class ;\n\towl:complementOf _:a48351de085b0375b132cc36ff7067bd .\n\n_:a48351de085b0375b132cc36ff7067bd a owl:Restriction ;\n\towl:onProperty wdt:P960 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P244 a wikibase:Property ;\n\trdfs:label \"LCAuth-Kennung\"@de ;\n\tskos:prefLabel \"LCAuth-Kennung\"@de ;\n\tschema:name \"LCAuth-Kennung\"@de ;\n\trdfs:label \"Library of Congress authority ID\"@en ;\n\tskos:prefLabel \"Library of Congress authority ID\"@en ;\n\tschema:name \"Library of Congress authority ID\"@en ;\n\tschema:description \"Identifikator eines Normdatensatzes in der Library of Congress (für einzelne Bücher siehe P1144). Zwischen den Buchstabe(n) und den folgenden Zahlen keine Leerstelle!\"@de,\n\t\t\"Library of Congress name authority (persons, families, corporate bodies, events, places, works and expressions) and subject authority identifier [Format: 1-2 specific letters followed by 8-10 digits (see regex). For manifestations, use P1144]\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P244 ;\n\twikibase:claim p:P244 ;\n\twikibase:statementProperty ps:P244 ;\n\twikibase:statementValue psv:P244 ;\n\twikibase:qualifier pq:P244 ;\n\twikibase:qualifierValue pqv:P244 ;\n\twikibase:reference pr:P244 ;\n\twikibase:referenceValue prv:P244 ;\n\twikibase:novalue wdno:P244 ;\n\twikibase:directClaimNormalized wdtn:P244 ;\n\twikibase:statementValueNormalized psn:P244 ;\n\twikibase:qualifierValueNormalized pqn:P244 ;\n\twikibase:referenceValueNormalized prn:P244 .\n\np:P244 a owl:ObjectProperty .\n\npsv:P244 a owl:ObjectProperty .\n\npqv:P244 a owl:ObjectProperty .\n\nprv:P244 a owl:ObjectProperty .\n\nwdt:P244 a owl:DatatypeProperty .\n\nps:P244 a owl:DatatypeProperty .\n\npq:P244 a owl:DatatypeProperty .\n\npr:P244 a owl:DatatypeProperty .\n\npsn:P244 a owl:ObjectProperty .\n\npqn:P244 a owl:ObjectProperty .\n\nprn:P244 a owl:ObjectProperty .\n\nwdtn:P244 a owl:ObjectProperty .\n\nwdno:P244 a owl:Class ;\n\towl:complementOf _:590c65ffccb1a1851cc444e4370c7714 .\n\n_:590c65ffccb1a1851cc444e4370c7714 a owl:Restriction ;\n\towl:onProperty wdt:P244 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3405 a wikibase:Property ;\n\trdfs:label \"NSR-ID\"@de ;\n\tskos:prefLabel \"NSR-ID\"@de ;\n\tschema:name \"NSR-ID\"@de ;\n\trdfs:label \"Nederlands Soortenregister ID\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister ID\"@en ;\n\tschema:name \"Nederlands Soortenregister ID\"@en ;\n\tschema:description \"Identifikator für den wissenschaftlichen Namen eines Taxons im Nederlands Soortenregister\"@de,\n\t\t\"identifier for a taxon in the ''Nederlands Soortenregister'', a database of taxa in the Netherlands by Naturalis Biodiversity Center\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3405 ;\n\twikibase:claim p:P3405 ;\n\twikibase:statementProperty ps:P3405 ;\n\twikibase:statementValue psv:P3405 ;\n\twikibase:qualifier pq:P3405 ;\n\twikibase:qualifierValue pqv:P3405 ;\n\twikibase:reference pr:P3405 ;\n\twikibase:referenceValue prv:P3405 ;\n\twikibase:novalue wdno:P3405 ;\n\twikibase:directClaimNormalized wdtn:P3405 ;\n\twikibase:statementValueNormalized psn:P3405 ;\n\twikibase:qualifierValueNormalized pqn:P3405 ;\n\twikibase:referenceValueNormalized prn:P3405 .\n\np:P3405 a owl:ObjectProperty .\n\npsv:P3405 a owl:ObjectProperty .\n\npqv:P3405 a owl:ObjectProperty .\n\nprv:P3405 a owl:ObjectProperty .\n\nwdt:P3405 a owl:DatatypeProperty .\n\nps:P3405 a owl:DatatypeProperty .\n\npq:P3405 a owl:DatatypeProperty .\n\npr:P3405 a owl:DatatypeProperty .\n\npsn:P3405 a owl:ObjectProperty .\n\npqn:P3405 a owl:ObjectProperty .\n\nprn:P3405 a owl:ObjectProperty .\n\nwdtn:P3405 a owl:ObjectProperty .\n\nwdno:P3405 a owl:Class ;\n\towl:complementOf _:1ce44f5ee81f62022e69a4f9a706fc62 .\n\n_:1ce44f5ee81f62022e69a4f9a706fc62 a owl:Restriction ;\n\towl:onProperty wdt:P3405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3240 a wikibase:Property ;\n\trdfs:label \"NBN-ID\"@de ;\n\tskos:prefLabel \"NBN-ID\"@de ;\n\tschema:name \"NBN-ID\"@de ;\n\trdfs:label \"NBN System Key\"@mul ;\n\tskos:prefLabel \"NBN System Key\"@mul ;\n\tschema:name \"NBN System Key\"@mul ;\n\trdfs:label \"NBN System Key\"@en ;\n\tskos:prefLabel \"NBN System Key\"@en ;\n\tschema:name \"NBN System Key\"@en ;\n\tschema:description \"identifier of a taxon in the National Biodiversity Network (UK)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3240 ;\n\twikibase:claim p:P3240 ;\n\twikibase:statementProperty ps:P3240 ;\n\twikibase:statementValue psv:P3240 ;\n\twikibase:qualifier pq:P3240 ;\n\twikibase:qualifierValue pqv:P3240 ;\n\twikibase:reference pr:P3240 ;\n\twikibase:referenceValue prv:P3240 ;\n\twikibase:novalue wdno:P3240 ;\n\twikibase:directClaimNormalized wdtn:P3240 ;\n\twikibase:statementValueNormalized psn:P3240 ;\n\twikibase:qualifierValueNormalized pqn:P3240 ;\n\twikibase:referenceValueNormalized prn:P3240 .\n\np:P3240 a owl:ObjectProperty .\n\npsv:P3240 a owl:ObjectProperty .\n\npqv:P3240 a owl:ObjectProperty .\n\nprv:P3240 a owl:ObjectProperty .\n\nwdt:P3240 a owl:DatatypeProperty .\n\nps:P3240 a owl:DatatypeProperty .\n\npq:P3240 a owl:DatatypeProperty .\n\npr:P3240 a owl:DatatypeProperty .\n\npsn:P3240 a owl:ObjectProperty .\n\npqn:P3240 a owl:ObjectProperty .\n\nprn:P3240 a owl:ObjectProperty .\n\nwdtn:P3240 a owl:ObjectProperty .\n\nwdno:P3240 a owl:Class ;\n\towl:complementOf _:8c5bcb3534b61ba7ac85ad93d3f23a2f .\n\n_:8c5bcb3534b61ba7ac85ad93d3f23a2f a owl:Restriction ;\n\towl:onProperty wdt:P3240 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1863197 a wikibase:Item ;\n\trdfs:label \"Liste von Birnensorten\"@de ;\n\tskos:prefLabel \"Liste von Birnensorten\"@de ;\n\tschema:name \"Liste von Birnensorten\"@de ;\n\trdfs:label \"list of pear cultivars\"@en ;\n\tskos:prefLabel \"list of pear cultivars\"@en ;\n\tschema:name \"list of pear cultivars\"@en ;\n\tschema:description \"Wikimedia-Liste\"@de,\n\t\t\"Wikimedia list article\"@en .\n\nwd:P2354 a wikibase:Property ;\n\trdfs:label \"entsprechende Liste\"@de ;\n\tskos:prefLabel \"entsprechende Liste\"@de ;\n\tschema:name \"entsprechende Liste\"@de ;\n\trdfs:label \"has list\"@en ;\n\tskos:prefLabel \"has list\"@en ;\n\tschema:name \"has list\"@en ;\n\tschema:description \"Wikimedia-Liste zu diesem Objekt\"@de,\n\t\t\"Wikimedia list related to this subject\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2354 ;\n\twikibase:claim p:P2354 ;\n\twikibase:statementProperty ps:P2354 ;\n\twikibase:statementValue psv:P2354 ;\n\twikibase:qualifier pq:P2354 ;\n\twikibase:qualifierValue pqv:P2354 ;\n\twikibase:reference pr:P2354 ;\n\twikibase:referenceValue prv:P2354 ;\n\twikibase:novalue wdno:P2354 .\n\np:P2354 a owl:ObjectProperty .\n\npsv:P2354 a owl:ObjectProperty .\n\npqv:P2354 a owl:ObjectProperty .\n\nprv:P2354 a owl:ObjectProperty .\n\nwdt:P2354 a owl:ObjectProperty .\n\nps:P2354 a owl:ObjectProperty .\n\npq:P2354 a owl:ObjectProperty .\n\npr:P2354 a owl:ObjectProperty .\n\nwdno:P2354 a owl:Class ;\n\towl:complementOf _:791ea1bcdc4c5009fbb485e56fdf2cd0 .\n\n_:791ea1bcdc4c5009fbb485e56fdf2cd0 a owl:Restriction ;\n\towl:onProperty wdt:P2354 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P508 a wikibase:Property ;\n\trdfs:label \"BNCF-Thesaurus-Kennung\"@de ;\n\tskos:prefLabel \"BNCF-Thesaurus-Kennung\"@de ;\n\tschema:name \"BNCF-Thesaurus-Kennung\"@de ;\n\trdfs:label \"BNCF Thesaurus ID\"@mul ;\n\tskos:prefLabel \"BNCF Thesaurus ID\"@mul ;\n\tschema:name \"BNCF Thesaurus ID\"@mul ;\n\trdfs:label \"BNCF Thesaurus ID\"@en ;\n\tskos:prefLabel \"BNCF Thesaurus ID\"@en ;\n\tschema:name \"BNCF Thesaurus ID\"@en ;\n\tschema:description \"bibliographischer Eintrag der italienischen Nationalbibliothek\"@de,\n\t\t\"identifier in the subject indexing tool of the National Central Library of Florence\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P508 ;\n\twikibase:claim p:P508 ;\n\twikibase:statementProperty ps:P508 ;\n\twikibase:statementValue psv:P508 ;\n\twikibase:qualifier pq:P508 ;\n\twikibase:qualifierValue pqv:P508 ;\n\twikibase:reference pr:P508 ;\n\twikibase:referenceValue prv:P508 ;\n\twikibase:novalue wdno:P508 ;\n\twikibase:directClaimNormalized wdtn:P508 ;\n\twikibase:statementValueNormalized psn:P508 ;\n\twikibase:qualifierValueNormalized pqn:P508 ;\n\twikibase:referenceValueNormalized prn:P508 .\n\np:P508 a owl:ObjectProperty .\n\npsv:P508 a owl:ObjectProperty .\n\npqv:P508 a owl:ObjectProperty .\n\nprv:P508 a owl:ObjectProperty .\n\nwdt:P508 a owl:DatatypeProperty .\n\nps:P508 a owl:DatatypeProperty .\n\npq:P508 a owl:DatatypeProperty .\n\npr:P508 a owl:DatatypeProperty .\n\npsn:P508 a owl:ObjectProperty .\n\npqn:P508 a owl:ObjectProperty .\n\nprn:P508 a owl:ObjectProperty .\n\nwdtn:P508 a owl:ObjectProperty .\n\nwdno:P508 a owl:Class ;\n\towl:complementOf _:5fd266465d236ed65347f82b760ee461 .\n\n_:5fd266465d236ed65347f82b760ee461 a owl:Restriction ;\n\towl:onProperty wdt:P508 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q41274 a wikibase:Item ;\n\trdfs:label \"Apfelfrucht\"@de ;\n\tskos:prefLabel \"Apfelfrucht\"@de ;\n\tschema:name \"Apfelfrucht\"@de ;\n\trdfs:label \"pome\"@en ;\n\tskos:prefLabel \"pome\"@en ;\n\tschema:name \"pome\"@en ;\n\tschema:description \"durch Achsengewebe verbundene Sammelbalgfrüchte\"@de,\n\t\t\"type of fruit produced by plants in the subtribe Malinae\"@en .\n\nwd:P4000 a wikibase:Property ;\n\trdfs:label \"Fruchttyp\"@de ;\n\tskos:prefLabel \"Fruchttyp\"@de ;\n\tschema:name \"Fruchttyp\"@de ;\n\trdfs:label \"has fruit type\"@en ;\n\tskos:prefLabel \"has fruit type\"@en ;\n\tschema:name \"has fruit type\"@en ;\n\tschema:description \"morphology of the fruit of this taxon, as defined in botany\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4000 ;\n\twikibase:claim p:P4000 ;\n\twikibase:statementProperty ps:P4000 ;\n\twikibase:statementValue psv:P4000 ;\n\twikibase:qualifier pq:P4000 ;\n\twikibase:qualifierValue pqv:P4000 ;\n\twikibase:reference pr:P4000 ;\n\twikibase:referenceValue prv:P4000 ;\n\twikibase:novalue wdno:P4000 .\n\np:P4000 a owl:ObjectProperty .\n\npsv:P4000 a owl:ObjectProperty .\n\npqv:P4000 a owl:ObjectProperty .\n\nprv:P4000 a owl:ObjectProperty .\n\nwdt:P4000 a owl:ObjectProperty .\n\nps:P4000 a owl:ObjectProperty .\n\npq:P4000 a owl:ObjectProperty .\n\npr:P4000 a owl:ObjectProperty .\n\nwdno:P4000 a owl:Class ;\n\towl:complementOf _:68811254c8a5b1c08bb4e074836b7a2c .\n\n_:68811254c8a5b1c08bb4e074836b7a2c a owl:Restriction ;\n\towl:onProperty wdt:P4000 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1417 a wikibase:Property ;\n\trdfs:label \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tskos:prefLabel \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\tschema:name \"Encyclopædia-Britannica-Online-Kennung\"@de ;\n\trdfs:label \"Encyclopædia Britannica Online ID\"@en ;\n\tskos:prefLabel \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:name \"Encyclopædia Britannica Online ID\"@en ;\n\tschema:description \"Kennung eines Artikels in der Onlineausgabe der Encyclopædia Britannica\"@de,\n\t\t\"identifier for an article in the online version of Encyclopædia Britannica\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1417 ;\n\twikibase:claim p:P1417 ;\n\twikibase:statementProperty ps:P1417 ;\n\twikibase:statementValue psv:P1417 ;\n\twikibase:qualifier pq:P1417 ;\n\twikibase:qualifierValue pqv:P1417 ;\n\twikibase:reference pr:P1417 ;\n\twikibase:referenceValue prv:P1417 ;\n\twikibase:novalue wdno:P1417 ;\n\twikibase:directClaimNormalized wdtn:P1417 ;\n\twikibase:statementValueNormalized psn:P1417 ;\n\twikibase:qualifierValueNormalized pqn:P1417 ;\n\twikibase:referenceValueNormalized prn:P1417 .\n\np:P1417 a owl:ObjectProperty .\n\npsv:P1417 a owl:ObjectProperty .\n\npqv:P1417 a owl:ObjectProperty .\n\nprv:P1417 a owl:ObjectProperty .\n\nwdt:P1417 a owl:DatatypeProperty .\n\nps:P1417 a owl:DatatypeProperty .\n\npq:P1417 a owl:DatatypeProperty .\n\npr:P1417 a owl:DatatypeProperty .\n\npsn:P1417 a owl:ObjectProperty .\n\npqn:P1417 a owl:ObjectProperty .\n\nprn:P1417 a owl:ObjectProperty .\n\nwdtn:P1417 a owl:ObjectProperty .\n\nwdno:P1417 a owl:Class ;\n\towl:complementOf _:0cb1ab8817799c4db539b18975ce292a .\n\n_:0cb1ab8817799c4db539b18975ce292a a owl:Restriction ;\n\towl:onProperty wdt:P1417 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1138524 a wikibase:Item ;\n\trdfs:label \"Pauly-Wissowa\"@de ;\n\tskos:prefLabel \"Pauly-Wissowa\"@de ;\n\tschema:name \"Pauly-Wissowa\"@de ;\n\trdfs:label \"Pauly–Wissowa\"@mul ;\n\tskos:prefLabel \"Pauly–Wissowa\"@mul ;\n\tschema:name \"Pauly–Wissowa\"@mul ;\n\trdfs:label \"Pauly–Wissowa\"@en ;\n\tskos:prefLabel \"Pauly–Wissowa\"@en ;\n\tschema:name \"Pauly–Wissowa\"@en ;\n\tschema:description \"umfangreiche und umfassende Enzyklopädie zur Antike\"@de,\n\t\t\"German classics encyclopedia (1894–1980)\"@en .\n\nwd:P1343 a wikibase:Property ;\n\trdfs:label \"beschrieben in\"@de ;\n\tskos:prefLabel \"beschrieben in\"@de ;\n\tschema:name \"beschrieben in\"@de ;\n\trdfs:label \"described by source\"@en ;\n\tskos:prefLabel \"described by source\"@en ;\n\tschema:name \"described by source\"@en ;\n\tschema:description \"Werk, in dem das Objekt beschrieben wird\"@de,\n\t\t\"work where this item is described, in statistical contexts, a methodological note describing the data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1343 ;\n\twikibase:claim p:P1343 ;\n\twikibase:statementProperty ps:P1343 ;\n\twikibase:statementValue psv:P1343 ;\n\twikibase:qualifier pq:P1343 ;\n\twikibase:qualifierValue pqv:P1343 ;\n\twikibase:reference pr:P1343 ;\n\twikibase:referenceValue prv:P1343 ;\n\twikibase:novalue wdno:P1343 .\n\np:P1343 a owl:ObjectProperty .\n\npsv:P1343 a owl:ObjectProperty .\n\npqv:P1343 a owl:ObjectProperty .\n\nprv:P1343 a owl:ObjectProperty .\n\nwdt:P1343 a owl:ObjectProperty .\n\nps:P1343 a owl:ObjectProperty .\n\npq:P1343 a owl:ObjectProperty .\n\npr:P1343 a owl:ObjectProperty .\n\nwdno:P1343 a owl:Class ;\n\towl:complementOf _:9c5978c46703ed90be57b769a8622d59 .\n\n_:9c5978c46703ed90be57b769a8622d59 a owl:Restriction ;\n\towl:onProperty wdt:P1343 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1768721 a wikibase:Item ;\n\trdfs:label \"Gujin Tushu Jicheng\"@de ;\n\tskos:prefLabel \"Gujin Tushu Jicheng\"@de ;\n\tschema:name \"Gujin Tushu Jicheng\"@de ;\n\trdfs:label \"Gǔjīn Túshū Jíchéng\"@mul ;\n\tskos:prefLabel \"Gǔjīn Túshū Jíchéng\"@mul ;\n\tschema:name \"Gǔjīn Túshū Jíchéng\"@mul ;\n\trdfs:label \"Gujin Tushu Jicheng\"@en ;\n\tskos:prefLabel \"Gujin Tushu Jicheng\"@en ;\n\tschema:name \"Gujin Tushu Jicheng\"@en ;\n\tschema:description \"Enzyklopädie\"@de,\n\t\t\"Chinese encyclopedia completed in 1725\"@en .\n\nwd:Q107402112 a wikibase:Item ;\n\trdfs:label \"Zhiwu Mingshi Tukao\"@en ;\n\tskos:prefLabel \"Zhiwu Mingshi Tukao\"@en ;\n\tschema:name \"Zhiwu Mingshi Tukao\"@en ;\n\tschema:description \"1848 edition\"@en .\n\nwd:Q112869417 a wikibase:Item ;\n\trdfs:label \"Flora Reipublicae Popularis Sinicae, volume 36\"@en ;\n\tskos:prefLabel \"Flora Reipublicae Popularis Sinicae, volume 36\"@en ;\n\tschema:name \"Flora Reipublicae Popularis Sinicae, volume 36\"@en .\n\nwd:Q20078554 a wikibase:Item ;\n\trdfs:label \"Große Sowjetische Enzyklopädie (1926–1947)\"@de ;\n\tskos:prefLabel \"Große Sowjetische Enzyklopädie (1926–1947)\"@de ;\n\tschema:name \"Große Sowjetische Enzyklopädie (1926–1947)\"@de ;\n\trdfs:label \"Great Soviet Encyclopedia (1926–1947)\"@en ;\n\tskos:prefLabel \"Great Soviet Encyclopedia (1926–1947)\"@en ;\n\tschema:name \"Great Soviet Encyclopedia (1926–1947)\"@en ;\n\tschema:description \"Erste Edition der Großen Sowjetischen Enzyklopädie\"@de,\n\t\t\"1st edition of the Great Soviet Encyclopedia\"@en .\n\nwd:Q867541 a wikibase:Item ;\n\trdfs:label \"Encyclopædia Britannica (1911)\"@de ;\n\tskos:prefLabel \"Encyclopædia Britannica (1911)\"@de ;\n\tschema:name \"Encyclopædia Britannica (1911)\"@de ;\n\trdfs:label \"Encyclopædia Britannica 11th edition\"@en ;\n\tskos:prefLabel \"Encyclopædia Britannica 11th edition\"@en ;\n\tschema:name \"Encyclopædia Britannica 11th edition\"@en ;\n\tschema:description \"11. Auflage der englischsprachigen Enzyklopädie\"@de,\n\t\t\"11th edition of Encyclopædia Britannica\"@en .\n\nwd:Q16082057 a wikibase:Item ;\n\trdfs:label \"The New Student’s Reference Work\"@de ;\n\tskos:prefLabel \"The New Student’s Reference Work\"@de ;\n\tschema:name \"The New Student’s Reference Work\"@de ;\n\trdfs:label \"The New Student's Reference Work\"@en ;\n\tskos:prefLabel \"The New Student's Reference Work\"@en ;\n\tschema:name \"The New Student's Reference Work\"@en .\n\nwd:Q1029706 a wikibase:Item ;\n\trdfs:label \"New International Encyclopedia\"@de ;\n\tskos:prefLabel \"New International Encyclopedia\"@de ;\n\tschema:name \"New International Encyclopedia\"@de ;\n\trdfs:label \"New International Encyclopedia\"@mul ;\n\tskos:prefLabel \"New International Encyclopedia\"@mul ;\n\tschema:name \"New International Encyclopedia\"@mul ;\n\trdfs:label \"New International Encyclopedia\"@en ;\n\tskos:prefLabel \"New International Encyclopedia\"@en ;\n\tschema:name \"New International Encyclopedia\"@en ;\n\tschema:description \"Amerikanische Enzyklopädie\"@de,\n\t\t\"American encyclopedia first published in 1902\"@en .\n\nwd:P5037 a wikibase:Property ;\n\trdfs:label \"POWO-URN\"@de ;\n\tskos:prefLabel \"POWO-URN\"@de ;\n\tschema:name \"POWO-URN\"@de ;\n\trdfs:label \"Plants of the World Online ID\"@en ;\n\tskos:prefLabel \"Plants of the World Online ID\"@en ;\n\tschema:name \"Plants of the World Online ID\"@en ;\n\tschema:description \"LSID für den wissenschaftlichen Namen eines Taxons in der Datenbank Plants of the World online (POWO)\"@de,\n\t\t\"identifier of a (vascular) plant name in the Plants of the World online database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5037 ;\n\twikibase:claim p:P5037 ;\n\twikibase:statementProperty ps:P5037 ;\n\twikibase:statementValue psv:P5037 ;\n\twikibase:qualifier pq:P5037 ;\n\twikibase:qualifierValue pqv:P5037 ;\n\twikibase:reference pr:P5037 ;\n\twikibase:referenceValue prv:P5037 ;\n\twikibase:novalue wdno:P5037 ;\n\twikibase:directClaimNormalized wdtn:P5037 ;\n\twikibase:statementValueNormalized psn:P5037 ;\n\twikibase:qualifierValueNormalized pqn:P5037 ;\n\twikibase:referenceValueNormalized prn:P5037 .\n\np:P5037 a owl:ObjectProperty .\n\npsv:P5037 a owl:ObjectProperty .\n\npqv:P5037 a owl:ObjectProperty .\n\nprv:P5037 a owl:ObjectProperty .\n\nwdt:P5037 a owl:DatatypeProperty .\n\nps:P5037 a owl:DatatypeProperty .\n\npq:P5037 a owl:DatatypeProperty .\n\npr:P5037 a owl:DatatypeProperty .\n\npsn:P5037 a owl:ObjectProperty .\n\npqn:P5037 a owl:ObjectProperty .\n\nprn:P5037 a owl:ObjectProperty .\n\nwdtn:P5037 a owl:ObjectProperty .\n\nwdno:P5037 a owl:Class ;\n\towl:complementOf _:e3823d3564c4e92668e101ce2eaea20a .\n\n_:e3823d3564c4e92668e101ce2eaea20a a owl:Restriction ;\n\towl:onProperty wdt:P5037 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5019 a wikibase:Property ;\n\trdfs:label \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tskos:prefLabel \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\tschema:name \"Brockhaus-Enzyklopädie-Kennung\"@de ;\n\trdfs:label \"Brockhaus Enzyklopädie online ID\"@en ;\n\tskos:prefLabel \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:name \"Brockhaus Enzyklopädie online ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Onlineausgabe der Brockhaus Enzyklopädie\"@de,\n\t\t\"identifier for an article in the online version of Brockhaus Enzyklopädie\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5019 ;\n\twikibase:claim p:P5019 ;\n\twikibase:statementProperty ps:P5019 ;\n\twikibase:statementValue psv:P5019 ;\n\twikibase:qualifier pq:P5019 ;\n\twikibase:qualifierValue pqv:P5019 ;\n\twikibase:reference pr:P5019 ;\n\twikibase:referenceValue prv:P5019 ;\n\twikibase:novalue wdno:P5019 ;\n\twikibase:directClaimNormalized wdtn:P5019 ;\n\twikibase:statementValueNormalized psn:P5019 ;\n\twikibase:qualifierValueNormalized pqn:P5019 ;\n\twikibase:referenceValueNormalized prn:P5019 .\n\np:P5019 a owl:ObjectProperty .\n\npsv:P5019 a owl:ObjectProperty .\n\npqv:P5019 a owl:ObjectProperty .\n\nprv:P5019 a owl:ObjectProperty .\n\nwdt:P5019 a owl:DatatypeProperty .\n\nps:P5019 a owl:DatatypeProperty .\n\npq:P5019 a owl:DatatypeProperty .\n\npr:P5019 a owl:DatatypeProperty .\n\npsn:P5019 a owl:ObjectProperty .\n\npqn:P5019 a owl:ObjectProperty .\n\nprn:P5019 a owl:ObjectProperty .\n\nwdtn:P5019 a owl:ObjectProperty .\n\nwdno:P5019 a owl:Class ;\n\towl:complementOf _:8f2e067276b7b0125a88b1cdcccdf2ae .\n\n_:8f2e067276b7b0125a88b1cdcccdf2ae a owl:Restriction ;\n\towl:onProperty wdt:P5019 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5055 a wikibase:Property ;\n\trdfs:label \"IRMNG-ID\"@de ;\n\tskos:prefLabel \"IRMNG-ID\"@de ;\n\tschema:name \"IRMNG-ID\"@de ;\n\trdfs:label \"IRMNG ID\"@en ;\n\tskos:prefLabel \"IRMNG ID\"@en ;\n\tschema:name \"IRMNG ID\"@en ;\n\tschema:description \"Identifikator im Interim Register of Marine and Nonmarine Genera (IRMNG)\"@de,\n\t\t\"identifier of a scientific name, in the Interim Register of Marine and Nonmarine Genera (IRMNG) database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5055 ;\n\twikibase:claim p:P5055 ;\n\twikibase:statementProperty ps:P5055 ;\n\twikibase:statementValue psv:P5055 ;\n\twikibase:qualifier pq:P5055 ;\n\twikibase:qualifierValue pqv:P5055 ;\n\twikibase:reference pr:P5055 ;\n\twikibase:referenceValue prv:P5055 ;\n\twikibase:novalue wdno:P5055 ;\n\twikibase:directClaimNormalized wdtn:P5055 ;\n\twikibase:statementValueNormalized psn:P5055 ;\n\twikibase:qualifierValueNormalized pqn:P5055 ;\n\twikibase:referenceValueNormalized prn:P5055 .\n\np:P5055 a owl:ObjectProperty .\n\npsv:P5055 a owl:ObjectProperty .\n\npqv:P5055 a owl:ObjectProperty .\n\nprv:P5055 a owl:ObjectProperty .\n\nwdt:P5055 a owl:DatatypeProperty .\n\nps:P5055 a owl:DatatypeProperty .\n\npq:P5055 a owl:DatatypeProperty .\n\npr:P5055 a owl:DatatypeProperty .\n\npsn:P5055 a owl:ObjectProperty .\n\npqn:P5055 a owl:ObjectProperty .\n\nprn:P5055 a owl:ObjectProperty .\n\nwdtn:P5055 a owl:ObjectProperty .\n\nwdno:P5055 a owl:Class ;\n\towl:complementOf _:eba65cbc5b51f8dc3ea346bef40b70b6 .\n\n_:eba65cbc5b51f8dc3ea346bef40b70b6 a owl:Restriction ;\n\towl:onProperty wdt:P5055 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3151 a wikibase:Property ;\n\trdfs:label \"iNaturalist-Taxon-ID\"@de ;\n\tskos:prefLabel \"iNaturalist-Taxon-ID\"@de ;\n\tschema:name \"iNaturalist-Taxon-ID\"@de ;\n\trdfs:label \"iNaturalist taxon ID\"@en ;\n\tskos:prefLabel \"iNaturalist taxon ID\"@en ;\n\tschema:name \"iNaturalist taxon ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in iNaturalist\"@de,\n\t\t\"identifier in iNaturalist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3151 ;\n\twikibase:claim p:P3151 ;\n\twikibase:statementProperty ps:P3151 ;\n\twikibase:statementValue psv:P3151 ;\n\twikibase:qualifier pq:P3151 ;\n\twikibase:qualifierValue pqv:P3151 ;\n\twikibase:reference pr:P3151 ;\n\twikibase:referenceValue prv:P3151 ;\n\twikibase:novalue wdno:P3151 ;\n\twikibase:directClaimNormalized wdtn:P3151 ;\n\twikibase:statementValueNormalized psn:P3151 ;\n\twikibase:qualifierValueNormalized pqn:P3151 ;\n\twikibase:referenceValueNormalized prn:P3151 .\n\np:P3151 a owl:ObjectProperty .\n\npsv:P3151 a owl:ObjectProperty .\n\npqv:P3151 a owl:ObjectProperty .\n\nprv:P3151 a owl:ObjectProperty .\n\nwdt:P3151 a owl:DatatypeProperty .\n\nps:P3151 a owl:DatatypeProperty .\n\npq:P3151 a owl:DatatypeProperty .\n\npr:P3151 a owl:DatatypeProperty .\n\npsn:P3151 a owl:ObjectProperty .\n\npqn:P3151 a owl:ObjectProperty .\n\nprn:P3151 a owl:ObjectProperty .\n\nwdtn:P3151 a owl:ObjectProperty .\n\nwdno:P3151 a owl:Class ;\n\towl:complementOf _:31d695e397adbd65a632ab66939a23e5 .\n\n_:31d695e397adbd65a632ab66939a23e5 a owl:Restriction ;\n\towl:onProperty wdt:P3151 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5263 a wikibase:Property ;\n\trdfs:label \"NDOP-Taxon-ID\"@de ;\n\tskos:prefLabel \"NDOP-Taxon-ID\"@de ;\n\tschema:name \"NDOP-Taxon-ID\"@de ;\n\trdfs:label \"Czech NDOP taxon ID\"@en ;\n\tskos:prefLabel \"Czech NDOP taxon ID\"@en ;\n\tschema:name \"Czech NDOP taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in the Conservancy Species Occurrence Finding Database, managed by the Nature Conservation Agency of the Czech Republic\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5263 ;\n\twikibase:claim p:P5263 ;\n\twikibase:statementProperty ps:P5263 ;\n\twikibase:statementValue psv:P5263 ;\n\twikibase:qualifier pq:P5263 ;\n\twikibase:qualifierValue pqv:P5263 ;\n\twikibase:reference pr:P5263 ;\n\twikibase:referenceValue prv:P5263 ;\n\twikibase:novalue wdno:P5263 ;\n\twikibase:directClaimNormalized wdtn:P5263 ;\n\twikibase:statementValueNormalized psn:P5263 ;\n\twikibase:qualifierValueNormalized pqn:P5263 ;\n\twikibase:referenceValueNormalized prn:P5263 .\n\np:P5263 a owl:ObjectProperty .\n\npsv:P5263 a owl:ObjectProperty .\n\npqv:P5263 a owl:ObjectProperty .\n\nprv:P5263 a owl:ObjectProperty .\n\nwdt:P5263 a owl:DatatypeProperty .\n\nps:P5263 a owl:DatatypeProperty .\n\npq:P5263 a owl:DatatypeProperty .\n\npr:P5263 a owl:DatatypeProperty .\n\npsn:P5263 a owl:ObjectProperty .\n\npqn:P5263 a owl:ObjectProperty .\n\nprn:P5263 a owl:ObjectProperty .\n\nwdtn:P5263 a owl:ObjectProperty .\n\nwdno:P5263 a owl:Class ;\n\towl:complementOf _:8fa24224d484a1329916a97de357af8c .\n\n_:8fa24224d484a1329916a97de357af8c a owl:Restriction ;\n\towl:onProperty wdt:P5263 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5984 a wikibase:Property ;\n\trdfs:label \"APNI-ID\"@de ;\n\tskos:prefLabel \"APNI-ID\"@de ;\n\tschema:name \"APNI-ID\"@de ;\n\trdfs:label \"APNI ID\"@en ;\n\tskos:prefLabel \"APNI ID\"@en ;\n\tschema:name \"APNI ID\"@en ;\n\tschema:description \"identifier for a plant, in the Australian Plant Name index\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5984 ;\n\twikibase:claim p:P5984 ;\n\twikibase:statementProperty ps:P5984 ;\n\twikibase:statementValue psv:P5984 ;\n\twikibase:qualifier pq:P5984 ;\n\twikibase:qualifierValue pqv:P5984 ;\n\twikibase:reference pr:P5984 ;\n\twikibase:referenceValue prv:P5984 ;\n\twikibase:novalue wdno:P5984 ;\n\twikibase:directClaimNormalized wdtn:P5984 ;\n\twikibase:statementValueNormalized psn:P5984 ;\n\twikibase:qualifierValueNormalized pqn:P5984 ;\n\twikibase:referenceValueNormalized prn:P5984 .\n\np:P5984 a owl:ObjectProperty .\n\npsv:P5984 a owl:ObjectProperty .\n\npqv:P5984 a owl:ObjectProperty .\n\nprv:P5984 a owl:ObjectProperty .\n\nwdt:P5984 a owl:DatatypeProperty .\n\nps:P5984 a owl:DatatypeProperty .\n\npq:P5984 a owl:DatatypeProperty .\n\npr:P5984 a owl:DatatypeProperty .\n\npsn:P5984 a owl:ObjectProperty .\n\npqn:P5984 a owl:ObjectProperty .\n\nprn:P5984 a owl:ObjectProperty .\n\nwdtn:P5984 a owl:ObjectProperty .\n\nwdno:P5984 a owl:Class ;\n\towl:complementOf _:23d63bd73b8ff95adea3e7abdac0ecb1 .\n\n_:23d63bd73b8ff95adea3e7abdac0ecb1 a owl:Restriction ;\n\towl:onProperty wdt:P5984 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P5945 a wikibase:Property ;\n\trdfs:label \"VicFlora-ID\"@de ;\n\tskos:prefLabel \"VicFlora-ID\"@de ;\n\tschema:name \"VicFlora-ID\"@de ;\n\trdfs:label \"VicFlora ID\"@en ;\n\tskos:prefLabel \"VicFlora ID\"@en ;\n\tschema:name \"VicFlora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'Flora of Victoria' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5945 ;\n\twikibase:claim p:P5945 ;\n\twikibase:statementProperty ps:P5945 ;\n\twikibase:statementValue psv:P5945 ;\n\twikibase:qualifier pq:P5945 ;\n\twikibase:qualifierValue pqv:P5945 ;\n\twikibase:reference pr:P5945 ;\n\twikibase:referenceValue prv:P5945 ;\n\twikibase:novalue wdno:P5945 ;\n\twikibase:directClaimNormalized wdtn:P5945 ;\n\twikibase:statementValueNormalized psn:P5945 ;\n\twikibase:qualifierValueNormalized pqn:P5945 ;\n\twikibase:referenceValueNormalized prn:P5945 .\n\np:P5945 a owl:ObjectProperty .\n\npsv:P5945 a owl:ObjectProperty .\n\npqv:P5945 a owl:ObjectProperty .\n\nprv:P5945 a owl:ObjectProperty .\n\nwdt:P5945 a owl:DatatypeProperty .\n\nps:P5945 a owl:DatatypeProperty .\n\npq:P5945 a owl:DatatypeProperty .\n\npr:P5945 a owl:DatatypeProperty .\n\npsn:P5945 a owl:ObjectProperty .\n\npqn:P5945 a owl:ObjectProperty .\n\nprn:P5945 a owl:ObjectProperty .\n\nwdtn:P5945 a owl:ObjectProperty .\n\nwdno:P5945 a owl:Class ;\n\towl:complementOf _:2746352d5347bafe24877cad3ed0d012 .\n\n_:2746352d5347bafe24877cad3ed0d012 a owl:Restriction ;\n\towl:onProperty wdt:P5945 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6573 a wikibase:Property ;\n\trdfs:label \"Klexikon-Artikelkennung\"@de ;\n\tskos:prefLabel \"Klexikon-Artikelkennung\"@de ;\n\tschema:name \"Klexikon-Artikelkennung\"@de ;\n\trdfs:label \"Klexikon article ID\"@en ;\n\tskos:prefLabel \"Klexikon article ID\"@en ;\n\tschema:name \"Klexikon article ID\"@en ;\n\tschema:description \"Identifikator eines Artikels auf Klexikon\"@de,\n\t\t\"ID of an article in Klexikon\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6573 ;\n\twikibase:claim p:P6573 ;\n\twikibase:statementProperty ps:P6573 ;\n\twikibase:statementValue psv:P6573 ;\n\twikibase:qualifier pq:P6573 ;\n\twikibase:qualifierValue pqv:P6573 ;\n\twikibase:reference pr:P6573 ;\n\twikibase:referenceValue prv:P6573 ;\n\twikibase:novalue wdno:P6573 ;\n\twikibase:directClaimNormalized wdtn:P6573 ;\n\twikibase:statementValueNormalized psn:P6573 ;\n\twikibase:qualifierValueNormalized pqn:P6573 ;\n\twikibase:referenceValueNormalized prn:P6573 .\n\np:P6573 a owl:ObjectProperty .\n\npsv:P6573 a owl:ObjectProperty .\n\npqv:P6573 a owl:ObjectProperty .\n\nprv:P6573 a owl:ObjectProperty .\n\nwdt:P6573 a owl:DatatypeProperty .\n\nps:P6573 a owl:DatatypeProperty .\n\npq:P6573 a owl:DatatypeProperty .\n\npr:P6573 a owl:DatatypeProperty .\n\npsn:P6573 a owl:ObjectProperty .\n\npqn:P6573 a owl:ObjectProperty .\n\nprn:P6573 a owl:ObjectProperty .\n\nwdtn:P6573 a owl:ObjectProperty .\n\nwdno:P6573 a owl:Class ;\n\towl:complementOf _:2a10105f084b066808bdf8dfd6a00e20 .\n\n_:2a10105f084b066808bdf8dfd6a00e20 a owl:Restriction ;\n\towl:onProperty wdt:P6573 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6933 a wikibase:Property ;\n\trdfs:label \"SA-Flora-ID\"@de ;\n\tskos:prefLabel \"SA-Flora-ID\"@de ;\n\tschema:name \"SA-Flora-ID\"@de ;\n\trdfs:label \"SA Flora ID\"@en ;\n\tskos:prefLabel \"SA Flora ID\"@en ;\n\tschema:name \"SA Flora ID\"@en ;\n\tschema:description \"identifier for a plant taxon, in the Australian 'South Australian electronic Flora' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6933 ;\n\twikibase:claim p:P6933 ;\n\twikibase:statementProperty ps:P6933 ;\n\twikibase:statementValue psv:P6933 ;\n\twikibase:qualifier pq:P6933 ;\n\twikibase:qualifierValue pqv:P6933 ;\n\twikibase:reference pr:P6933 ;\n\twikibase:referenceValue prv:P6933 ;\n\twikibase:novalue wdno:P6933 ;\n\twikibase:directClaimNormalized wdtn:P6933 ;\n\twikibase:statementValueNormalized psn:P6933 ;\n\twikibase:qualifierValueNormalized pqn:P6933 ;\n\twikibase:referenceValueNormalized prn:P6933 .\n\np:P6933 a owl:ObjectProperty .\n\npsv:P6933 a owl:ObjectProperty .\n\npqv:P6933 a owl:ObjectProperty .\n\nprv:P6933 a owl:ObjectProperty .\n\nwdt:P6933 a owl:DatatypeProperty .\n\nps:P6933 a owl:DatatypeProperty .\n\npq:P6933 a owl:DatatypeProperty .\n\npr:P6933 a owl:DatatypeProperty .\n\npsn:P6933 a owl:ObjectProperty .\n\npqn:P6933 a owl:ObjectProperty .\n\nprn:P6933 a owl:ObjectProperty .\n\nwdtn:P6933 a owl:ObjectProperty .\n\nwdno:P6933 a owl:Class ;\n\towl:complementOf _:9aedc50c21286aab9afe201a2a4e9eac .\n\n_:9aedc50c21286aab9afe201a2a4e9eac a owl:Restriction ;\n\towl:onProperty wdt:P6933 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P486 a wikibase:Property ;\n\trdfs:label \"MeSH-Kennung\"@de ;\n\tskos:prefLabel \"MeSH-Kennung\"@de ;\n\tschema:name \"MeSH-Kennung\"@de ;\n\trdfs:label \"MeSH descriptor ID\"@en ;\n\tskos:prefLabel \"MeSH descriptor ID\"@en ;\n\tschema:name \"MeSH descriptor ID\"@en ;\n\tschema:description \"Primärschlüssel der Medical-Subject-Headings-Datenbank\"@de,\n\t\t\"identifier for Descriptor or Supplementary concept in the Medical Subject Headings controlled vocabulary\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P486 ;\n\twikibase:claim p:P486 ;\n\twikibase:statementProperty ps:P486 ;\n\twikibase:statementValue psv:P486 ;\n\twikibase:qualifier pq:P486 ;\n\twikibase:qualifierValue pqv:P486 ;\n\twikibase:reference pr:P486 ;\n\twikibase:referenceValue prv:P486 ;\n\twikibase:novalue wdno:P486 ;\n\twikibase:directClaimNormalized wdtn:P486 ;\n\twikibase:statementValueNormalized psn:P486 ;\n\twikibase:qualifierValueNormalized pqn:P486 ;\n\twikibase:referenceValueNormalized prn:P486 .\n\np:P486 a owl:ObjectProperty .\n\npsv:P486 a owl:ObjectProperty .\n\npqv:P486 a owl:ObjectProperty .\n\nprv:P486 a owl:ObjectProperty .\n\nwdt:P486 a owl:DatatypeProperty .\n\nps:P486 a owl:DatatypeProperty .\n\npq:P486 a owl:DatatypeProperty .\n\npr:P486 a owl:DatatypeProperty .\n\npsn:P486 a owl:ObjectProperty .\n\npqn:P486 a owl:ObjectProperty .\n\nprn:P486 a owl:ObjectProperty .\n\nwdtn:P486 a owl:ObjectProperty .\n\nwdno:P486 a owl:Class ;\n\towl:complementOf _:83c049441265b92d0b382cb5c4638257 .\n\n_:83c049441265b92d0b382cb5c4638257 a owl:Restriction ;\n\towl:onProperty wdt:P486 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7202 a wikibase:Property ;\n\trdfs:label \"Belgian-Species-List-ID\"@de ;\n\tskos:prefLabel \"Belgian-Species-List-ID\"@de ;\n\tschema:name \"Belgian-Species-List-ID\"@de ;\n\trdfs:label \"Belgian Species List ID\"@en ;\n\tskos:prefLabel \"Belgian Species List ID\"@en ;\n\tschema:name \"Belgian Species List ID\"@en ;\n\tschema:description \"identifier for a taxon in the Belgian Species List\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7202 ;\n\twikibase:claim p:P7202 ;\n\twikibase:statementProperty ps:P7202 ;\n\twikibase:statementValue psv:P7202 ;\n\twikibase:qualifier pq:P7202 ;\n\twikibase:qualifierValue pqv:P7202 ;\n\twikibase:reference pr:P7202 ;\n\twikibase:referenceValue prv:P7202 ;\n\twikibase:novalue wdno:P7202 ;\n\twikibase:directClaimNormalized wdtn:P7202 ;\n\twikibase:statementValueNormalized psn:P7202 ;\n\twikibase:qualifierValueNormalized pqn:P7202 ;\n\twikibase:referenceValueNormalized prn:P7202 .\n\np:P7202 a owl:ObjectProperty .\n\npsv:P7202 a owl:ObjectProperty .\n\npqv:P7202 a owl:ObjectProperty .\n\nprv:P7202 a owl:ObjectProperty .\n\nwdt:P7202 a owl:DatatypeProperty .\n\nps:P7202 a owl:DatatypeProperty .\n\npq:P7202 a owl:DatatypeProperty .\n\npr:P7202 a owl:DatatypeProperty .\n\npsn:P7202 a owl:ObjectProperty .\n\npqn:P7202 a owl:ObjectProperty .\n\nprn:P7202 a owl:ObjectProperty .\n\nwdtn:P7202 a owl:ObjectProperty .\n\nwdno:P7202 a owl:Class ;\n\towl:complementOf _:a08267a1e4cce76217317ed94826cc29 .\n\n_:a08267a1e4cce76217317ed94826cc29 a owl:Restriction ;\n\towl:onProperty wdt:P7202 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P6142 a wikibase:Property ;\n\trdfs:label \"Verspreidingsatlas.nl ID\"@en ;\n\tskos:prefLabel \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:name \"Verspreidingsatlas.nl ID\"@en ;\n\tschema:description \"identifier for a species on the verspreidingsatlas.nl website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6142 ;\n\twikibase:claim p:P6142 ;\n\twikibase:statementProperty ps:P6142 ;\n\twikibase:statementValue psv:P6142 ;\n\twikibase:qualifier pq:P6142 ;\n\twikibase:qualifierValue pqv:P6142 ;\n\twikibase:reference pr:P6142 ;\n\twikibase:referenceValue prv:P6142 ;\n\twikibase:novalue wdno:P6142 ;\n\twikibase:directClaimNormalized wdtn:P6142 ;\n\twikibase:statementValueNormalized psn:P6142 ;\n\twikibase:qualifierValueNormalized pqn:P6142 ;\n\twikibase:referenceValueNormalized prn:P6142 .\n\np:P6142 a owl:ObjectProperty .\n\npsv:P6142 a owl:ObjectProperty .\n\npqv:P6142 a owl:ObjectProperty .\n\nprv:P6142 a owl:ObjectProperty .\n\nwdt:P6142 a owl:DatatypeProperty .\n\nps:P6142 a owl:DatatypeProperty .\n\npq:P6142 a owl:DatatypeProperty .\n\npr:P6142 a owl:DatatypeProperty .\n\npsn:P6142 a owl:ObjectProperty .\n\npqn:P6142 a owl:ObjectProperty .\n\nprn:P6142 a owl:ObjectProperty .\n\nwdtn:P6142 a owl:ObjectProperty .\n\nwdno:P6142 a owl:Class ;\n\towl:complementOf _:832a4ae34d94bc7d68c4074f1a6f4896 .\n\n_:832a4ae34d94bc7d68c4074f1a6f4896 a owl:Restriction ;\n\towl:onProperty wdt:P6142 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4311 a wikibase:Property ;\n\trdfs:label \"FOIH-Taxon-ID\"@de ;\n\tskos:prefLabel \"FOIH-Taxon-ID\"@de ;\n\tschema:name \"FOIH-Taxon-ID\"@de ;\n\trdfs:label \"FOIH taxon ID\"@en ;\n\tskos:prefLabel \"FOIH taxon ID\"@en ;\n\tschema:name \"FOIH taxon ID\"@en ;\n\tschema:description \"Identifikator für Taxa im Thesaurus der flämischen Organisation für unbewegliches Kulturerbe\"@de,\n\t\t\"identifier for a taxon in the thesaurus of the Flemish organization for Immovable Heritage\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4311 ;\n\twikibase:claim p:P4311 ;\n\twikibase:statementProperty ps:P4311 ;\n\twikibase:statementValue psv:P4311 ;\n\twikibase:qualifier pq:P4311 ;\n\twikibase:qualifierValue pqv:P4311 ;\n\twikibase:reference pr:P4311 ;\n\twikibase:referenceValue prv:P4311 ;\n\twikibase:novalue wdno:P4311 ;\n\twikibase:directClaimNormalized wdtn:P4311 ;\n\twikibase:statementValueNormalized psn:P4311 ;\n\twikibase:qualifierValueNormalized pqn:P4311 ;\n\twikibase:referenceValueNormalized prn:P4311 .\n\np:P4311 a owl:ObjectProperty .\n\npsv:P4311 a owl:ObjectProperty .\n\npqv:P4311 a owl:ObjectProperty .\n\nprv:P4311 a owl:ObjectProperty .\n\nwdt:P4311 a owl:DatatypeProperty .\n\nps:P4311 a owl:DatatypeProperty .\n\npq:P4311 a owl:DatatypeProperty .\n\npr:P4311 a owl:DatatypeProperty .\n\npsn:P4311 a owl:ObjectProperty .\n\npqn:P4311 a owl:ObjectProperty .\n\nprn:P4311 a owl:ObjectProperty .\n\nwdtn:P4311 a owl:ObjectProperty .\n\nwdno:P4311 a owl:Class ;\n\towl:complementOf _:b4b7cc24da1182c831879e07ac52ac8d .\n\n_:b4b7cc24da1182c831879e07ac52ac8d a owl:Restriction ;\n\towl:onProperty wdt:P4311 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q11358 a wikibase:Item ;\n\trdfs:label \"Kohlenhydrate\"@de ;\n\tskos:prefLabel \"Kohlenhydrate\"@de ;\n\tschema:name \"Kohlenhydrate\"@de ;\n\trdfs:label \"carbohydrate\"@en ;\n\tskos:prefLabel \"carbohydrate\"@en ;\n\tschema:name \"carbohydrate\"@en ;\n\tschema:description \"organische Verbindungen, Stoffklasse mit Zuckern und Stärken\"@de,\n\t\t\"organic compound that consists only of carbon, hydrogen, and oxygen\"@en .\n\nwd:P618 a wikibase:Property ;\n\trdfs:label \"Energiequelle\"@de ;\n\tskos:prefLabel \"Energiequelle\"@de ;\n\tschema:name \"Energiequelle\"@de ;\n\trdfs:label \"source of energy\"@en ;\n\tskos:prefLabel \"source of energy\"@en ;\n\tschema:name \"source of energy\"@en ;\n\tschema:description \"Art der Energie, die ein bewegtes Objekt (Maschine oder Lebewesen) nutzt\"@de,\n\t\t\"describes the source of energy an animated object (machine or animal) uses\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P618 ;\n\twikibase:claim p:P618 ;\n\twikibase:statementProperty ps:P618 ;\n\twikibase:statementValue psv:P618 ;\n\twikibase:qualifier pq:P618 ;\n\twikibase:qualifierValue pqv:P618 ;\n\twikibase:reference pr:P618 ;\n\twikibase:referenceValue prv:P618 ;\n\twikibase:novalue wdno:P618 .\n\np:P618 a owl:ObjectProperty .\n\npsv:P618 a owl:ObjectProperty .\n\npqv:P618 a owl:ObjectProperty .\n\nprv:P618 a owl:ObjectProperty .\n\nwdt:P618 a owl:ObjectProperty .\n\nps:P618 a owl:ObjectProperty .\n\npq:P618 a owl:ObjectProperty .\n\npr:P618 a owl:ObjectProperty .\n\nwdno:P618 a owl:Class ;\n\towl:complementOf _:a6091ffca15331ebe35fa7563fb40652 .\n\n_:a6091ffca15331ebe35fa7563fb40652 a owl:Restriction ;\n\towl:onProperty wdt:P618 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21296145 a wikibase:Item ;\n\trdfs:label \"protein\"@en ;\n\tskos:prefLabel \"protein\"@en ;\n\tschema:name \"protein\"@en ;\n\tschema:description \"nutrient for the human body\"@en .\n\nwd:P8408 a wikibase:Property ;\n\trdfs:label \"KBpedia-Kennung\"@de ;\n\tskos:prefLabel \"KBpedia-Kennung\"@de ;\n\tschema:name \"KBpedia-Kennung\"@de ;\n\trdfs:label \"KBpedia ID\"@en ;\n\tskos:prefLabel \"KBpedia ID\"@en ;\n\tschema:name \"KBpedia ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags bei KBpedia\"@de,\n\t\t\"identifier for the KBpedia knowledge graph, which provides consistent mappings across seven large-scale public knowledge bases including Wikidata, and is used to promote data interoperability and extraction of training sets for machine learning\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8408 ;\n\twikibase:claim p:P8408 ;\n\twikibase:statementProperty ps:P8408 ;\n\twikibase:statementValue psv:P8408 ;\n\twikibase:qualifier pq:P8408 ;\n\twikibase:qualifierValue pqv:P8408 ;\n\twikibase:reference pr:P8408 ;\n\twikibase:referenceValue prv:P8408 ;\n\twikibase:novalue wdno:P8408 ;\n\twikibase:directClaimNormalized wdtn:P8408 ;\n\twikibase:statementValueNormalized psn:P8408 ;\n\twikibase:qualifierValueNormalized pqn:P8408 ;\n\twikibase:referenceValueNormalized prn:P8408 .\n\np:P8408 a owl:ObjectProperty .\n\npsv:P8408 a owl:ObjectProperty .\n\npqv:P8408 a owl:ObjectProperty .\n\nprv:P8408 a owl:ObjectProperty .\n\nwdt:P8408 a owl:DatatypeProperty .\n\nps:P8408 a owl:DatatypeProperty .\n\npq:P8408 a owl:DatatypeProperty .\n\npr:P8408 a owl:DatatypeProperty .\n\npsn:P8408 a owl:ObjectProperty .\n\npqn:P8408 a owl:ObjectProperty .\n\nprn:P8408 a owl:ObjectProperty .\n\nwdtn:P8408 a owl:ObjectProperty .\n\nwdno:P8408 a owl:Class ;\n\towl:complementOf _:a5c6b2a39aa8787e5b2a55612fc3d63e .\n\n_:a5c6b2a39aa8787e5b2a55612fc3d63e a owl:Restriction ;\n\towl:onProperty wdt:P8408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7715 a wikibase:Property ;\n\trdfs:label \"World-Flora-Online-ID\"@de ;\n\tskos:prefLabel \"World-Flora-Online-ID\"@de ;\n\tschema:name \"World-Flora-Online-ID\"@de ;\n\trdfs:label \"World Flora Online ID\"@en ;\n\tskos:prefLabel \"World Flora Online ID\"@en ;\n\tschema:name \"World Flora Online ID\"@en ;\n\tschema:description \"identifier for a plant in World Flora Online\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7715 ;\n\twikibase:claim p:P7715 ;\n\twikibase:statementProperty ps:P7715 ;\n\twikibase:statementValue psv:P7715 ;\n\twikibase:qualifier pq:P7715 ;\n\twikibase:qualifierValue pqv:P7715 ;\n\twikibase:reference pr:P7715 ;\n\twikibase:referenceValue prv:P7715 ;\n\twikibase:novalue wdno:P7715 ;\n\twikibase:directClaimNormalized wdtn:P7715 ;\n\twikibase:statementValueNormalized psn:P7715 ;\n\twikibase:qualifierValueNormalized pqn:P7715 ;\n\twikibase:referenceValueNormalized prn:P7715 .\n\np:P7715 a owl:ObjectProperty .\n\npsv:P7715 a owl:ObjectProperty .\n\npqv:P7715 a owl:ObjectProperty .\n\nprv:P7715 a owl:ObjectProperty .\n\nwdt:P7715 a owl:DatatypeProperty .\n\nps:P7715 a owl:DatatypeProperty .\n\npq:P7715 a owl:DatatypeProperty .\n\npr:P7715 a owl:DatatypeProperty .\n\npsn:P7715 a owl:ObjectProperty .\n\npqn:P7715 a owl:ObjectProperty .\n\nprn:P7715 a owl:ObjectProperty .\n\nwdtn:P7715 a owl:ObjectProperty .\n\nwdno:P7715 a owl:Class ;\n\towl:complementOf _:d0f111360d13e6cf7be8fb1204acf6a7 .\n\n_:d0f111360d13e6cf7be8fb1204acf6a7 a owl:Restriction ;\n\towl:onProperty wdt:P7715 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8892 a wikibase:Property ;\n\trdfs:label \"edition humboldt digital Flora ID\"@de ;\n\tskos:prefLabel \"edition humboldt digital Flora ID\"@de ;\n\tschema:name \"edition humboldt digital Flora ID\"@de ;\n\trdfs:label \"edition humboldt digital Flora ID\"@en ;\n\tskos:prefLabel \"edition humboldt digital Flora ID\"@en ;\n\tschema:name \"edition humboldt digital Flora ID\"@en ;\n\tschema:description \"ID des Pflanzenregisters der edition humboldt digital\"@de,\n\t\t\"identifier for the register of plants in edition humboldt digital\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8892 ;\n\twikibase:claim p:P8892 ;\n\twikibase:statementProperty ps:P8892 ;\n\twikibase:statementValue psv:P8892 ;\n\twikibase:qualifier pq:P8892 ;\n\twikibase:qualifierValue pqv:P8892 ;\n\twikibase:reference pr:P8892 ;\n\twikibase:referenceValue prv:P8892 ;\n\twikibase:novalue wdno:P8892 ;\n\twikibase:directClaimNormalized wdtn:P8892 ;\n\twikibase:statementValueNormalized psn:P8892 ;\n\twikibase:qualifierValueNormalized pqn:P8892 ;\n\twikibase:referenceValueNormalized prn:P8892 .\n\np:P8892 a owl:ObjectProperty .\n\npsv:P8892 a owl:ObjectProperty .\n\npqv:P8892 a owl:ObjectProperty .\n\nprv:P8892 a owl:ObjectProperty .\n\nwdt:P8892 a owl:DatatypeProperty .\n\nps:P8892 a owl:DatatypeProperty .\n\npq:P8892 a owl:DatatypeProperty .\n\npr:P8892 a owl:DatatypeProperty .\n\npsn:P8892 a owl:ObjectProperty .\n\npqn:P8892 a owl:ObjectProperty .\n\nprn:P8892 a owl:ObjectProperty .\n\nwdtn:P8892 a owl:ObjectProperty .\n\nwdno:P8892 a owl:Class ;\n\towl:complementOf _:ce4081a45d1eaece8d59a10c63d9b931 .\n\n_:ce4081a45d1eaece8d59a10c63d9b931 a owl:Restriction ;\n\towl:onProperty wdt:P8892 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9157 a wikibase:Property ;\n\trdfs:label \"OTT-ID\"@de ;\n\tskos:prefLabel \"OTT-ID\"@de ;\n\tschema:name \"OTT-ID\"@de ;\n\trdfs:label \"Open Tree of Life ID\"@en ;\n\tskos:prefLabel \"Open Tree of Life ID\"@en ;\n\tschema:name \"Open Tree of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxon in der Referenztaxonomie (OTT) des Projektes Open Tree of Life\"@de,\n\t\t\"identifier for an entity in Open Tree of Life, a comprehensive, dynamic and digitally-available tree of life by synthesizing published phylogenetic trees along with taxonomic data\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9157 ;\n\twikibase:claim p:P9157 ;\n\twikibase:statementProperty ps:P9157 ;\n\twikibase:statementValue psv:P9157 ;\n\twikibase:qualifier pq:P9157 ;\n\twikibase:qualifierValue pqv:P9157 ;\n\twikibase:reference pr:P9157 ;\n\twikibase:referenceValue prv:P9157 ;\n\twikibase:novalue wdno:P9157 ;\n\twikibase:directClaimNormalized wdtn:P9157 ;\n\twikibase:statementValueNormalized psn:P9157 ;\n\twikibase:qualifierValueNormalized pqn:P9157 ;\n\twikibase:referenceValueNormalized prn:P9157 .\n\np:P9157 a owl:ObjectProperty .\n\npsv:P9157 a owl:ObjectProperty .\n\npqv:P9157 a owl:ObjectProperty .\n\nprv:P9157 a owl:ObjectProperty .\n\nwdt:P9157 a owl:DatatypeProperty .\n\nps:P9157 a owl:DatatypeProperty .\n\npq:P9157 a owl:DatatypeProperty .\n\npr:P9157 a owl:DatatypeProperty .\n\npsn:P9157 a owl:ObjectProperty .\n\npqn:P9157 a owl:ObjectProperty .\n\nprn:P9157 a owl:ObjectProperty .\n\nwdtn:P9157 a owl:ObjectProperty .\n\nwdno:P9157 a owl:Class ;\n\towl:complementOf _:746cb7f5a9cfa7771b15b745abbfaf11 .\n\n_:746cb7f5a9cfa7771b15b745abbfaf11 a owl:Restriction ;\n\towl:onProperty wdt:P9157 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8707 a wikibase:Property ;\n\trdfs:label \"NBIC-Taxon-ID\"@de ;\n\tskos:prefLabel \"NBIC-Taxon-ID\"@de ;\n\tschema:name \"NBIC-Taxon-ID\"@de ;\n\trdfs:label \"NBIC scientific name ID\"@en ;\n\tskos:prefLabel \"NBIC scientific name ID\"@en ;\n\tschema:name \"NBIC scientific name ID\"@en ;\n\tschema:description \"identifier for a taxon's scientific name in the Norwegian Biodiversity Information Centre database, a database on species and ecosystems in Norway\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8707 ;\n\twikibase:claim p:P8707 ;\n\twikibase:statementProperty ps:P8707 ;\n\twikibase:statementValue psv:P8707 ;\n\twikibase:qualifier pq:P8707 ;\n\twikibase:qualifierValue pqv:P8707 ;\n\twikibase:reference pr:P8707 ;\n\twikibase:referenceValue prv:P8707 ;\n\twikibase:novalue wdno:P8707 ;\n\twikibase:directClaimNormalized wdtn:P8707 ;\n\twikibase:statementValueNormalized psn:P8707 ;\n\twikibase:qualifierValueNormalized pqn:P8707 ;\n\twikibase:referenceValueNormalized prn:P8707 .\n\np:P8707 a owl:ObjectProperty .\n\npsv:P8707 a owl:ObjectProperty .\n\npqv:P8707 a owl:ObjectProperty .\n\nprv:P8707 a owl:ObjectProperty .\n\nwdt:P8707 a owl:DatatypeProperty .\n\nps:P8707 a owl:DatatypeProperty .\n\npq:P8707 a owl:DatatypeProperty .\n\npr:P8707 a owl:DatatypeProperty .\n\npsn:P8707 a owl:ObjectProperty .\n\npqn:P8707 a owl:ObjectProperty .\n\nprn:P8707 a owl:ObjectProperty .\n\nwdtn:P8707 a owl:ObjectProperty .\n\nwdno:P8707 a owl:Class ;\n\towl:complementOf _:dee2239e5b92581688afa8584199dddf .\n\n_:dee2239e5b92581688afa8584199dddf a owl:Restriction ;\n\towl:onProperty wdt:P8707 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3553 a wikibase:Property ;\n\trdfs:label \"Zhihu-Themenkennung\"@de ;\n\tskos:prefLabel \"Zhihu-Themenkennung\"@de ;\n\tschema:name \"Zhihu-Themenkennung\"@de ;\n\trdfs:label \"Zhihu topic ID\"@en ;\n\tskos:prefLabel \"Zhihu topic ID\"@en ;\n\tschema:name \"Zhihu topic ID\"@en ;\n\tschema:description \"Identifikator eines Themas auf der chinesischen Website Zhihu\"@de,\n\t\t\"numeric id of topics (tags) of questions on Zhihu, a Chinese question-and-answer website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3553 ;\n\twikibase:claim p:P3553 ;\n\twikibase:statementProperty ps:P3553 ;\n\twikibase:statementValue psv:P3553 ;\n\twikibase:qualifier pq:P3553 ;\n\twikibase:qualifierValue pqv:P3553 ;\n\twikibase:reference pr:P3553 ;\n\twikibase:referenceValue prv:P3553 ;\n\twikibase:novalue wdno:P3553 ;\n\twikibase:directClaimNormalized wdtn:P3553 ;\n\twikibase:statementValueNormalized psn:P3553 ;\n\twikibase:qualifierValueNormalized pqn:P3553 ;\n\twikibase:referenceValueNormalized prn:P3553 .\n\np:P3553 a owl:ObjectProperty .\n\npsv:P3553 a owl:ObjectProperty .\n\npqv:P3553 a owl:ObjectProperty .\n\nprv:P3553 a owl:ObjectProperty .\n\nwdt:P3553 a owl:DatatypeProperty .\n\nps:P3553 a owl:DatatypeProperty .\n\npq:P3553 a owl:DatatypeProperty .\n\npr:P3553 a owl:DatatypeProperty .\n\npsn:P3553 a owl:ObjectProperty .\n\npqn:P3553 a owl:ObjectProperty .\n\nprn:P3553 a owl:ObjectProperty .\n\nwdtn:P3553 a owl:ObjectProperty .\n\nwdno:P3553 a owl:Class ;\n\towl:complementOf _:e01b5a62bba388307b8ff53da20cb1ff .\n\n_:e01b5a62bba388307b8ff53da20cb1ff a owl:Restriction ;\n\towl:onProperty wdt:P3553 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9741 a wikibase:Property ;\n\trdfs:label \"Pladias ID\"@en ;\n\tskos:prefLabel \"Pladias ID\"@en ;\n\tschema:name \"Pladias ID\"@en ;\n\tschema:description \"taxon identifier in Pladias database of Czech plant species\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9741 ;\n\twikibase:claim p:P9741 ;\n\twikibase:statementProperty ps:P9741 ;\n\twikibase:statementValue psv:P9741 ;\n\twikibase:qualifier pq:P9741 ;\n\twikibase:qualifierValue pqv:P9741 ;\n\twikibase:reference pr:P9741 ;\n\twikibase:referenceValue prv:P9741 ;\n\twikibase:novalue wdno:P9741 ;\n\twikibase:directClaimNormalized wdtn:P9741 ;\n\twikibase:statementValueNormalized psn:P9741 ;\n\twikibase:qualifierValueNormalized pqn:P9741 ;\n\twikibase:referenceValueNormalized prn:P9741 .\n\np:P9741 a owl:ObjectProperty .\n\npsv:P9741 a owl:ObjectProperty .\n\npqv:P9741 a owl:ObjectProperty .\n\nprv:P9741 a owl:ObjectProperty .\n\nwdt:P9741 a owl:DatatypeProperty .\n\nps:P9741 a owl:DatatypeProperty .\n\npq:P9741 a owl:DatatypeProperty .\n\npr:P9741 a owl:DatatypeProperty .\n\npsn:P9741 a owl:ObjectProperty .\n\npqn:P9741 a owl:ObjectProperty .\n\nprn:P9741 a owl:ObjectProperty .\n\nwdtn:P9741 a owl:ObjectProperty .\n\nwdno:P9741 a owl:Class ;\n\towl:complementOf _:35a4923ba29d2b98e744ff0419641efa .\n\n_:35a4923ba29d2b98e744ff0419641efa a owl:Restriction ;\n\towl:onProperty wdt:P9741 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9799 a wikibase:Property ;\n\trdfs:label \"Palynodata taxa ID\"@en ;\n\tskos:prefLabel \"Palynodata taxa ID\"@en ;\n\tschema:name \"Palynodata taxa ID\"@en ;\n\tschema:description \"Kennung eines Taxons in der Palynodata-Datenbank\"@de,\n\t\t\"identifier of a taxon in the Palynodata database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9799 ;\n\twikibase:claim p:P9799 ;\n\twikibase:statementProperty ps:P9799 ;\n\twikibase:statementValue psv:P9799 ;\n\twikibase:qualifier pq:P9799 ;\n\twikibase:qualifierValue pqv:P9799 ;\n\twikibase:reference pr:P9799 ;\n\twikibase:referenceValue prv:P9799 ;\n\twikibase:novalue wdno:P9799 ;\n\twikibase:directClaimNormalized wdtn:P9799 ;\n\twikibase:statementValueNormalized psn:P9799 ;\n\twikibase:qualifierValueNormalized pqn:P9799 ;\n\twikibase:referenceValueNormalized prn:P9799 .\n\np:P9799 a owl:ObjectProperty .\n\npsv:P9799 a owl:ObjectProperty .\n\npqv:P9799 a owl:ObjectProperty .\n\nprv:P9799 a owl:ObjectProperty .\n\nwdt:P9799 a owl:DatatypeProperty .\n\nps:P9799 a owl:DatatypeProperty .\n\npq:P9799 a owl:DatatypeProperty .\n\npr:P9799 a owl:DatatypeProperty .\n\npsn:P9799 a owl:ObjectProperty .\n\npqn:P9799 a owl:ObjectProperty .\n\nprn:P9799 a owl:ObjectProperty .\n\nwdtn:P9799 a owl:ObjectProperty .\n\nwdno:P9799 a owl:Class ;\n\towl:complementOf _:c5610fa6af112054656ff9924a7ef36f .\n\n_:c5610fa6af112054656ff9924a7ef36f a owl:Restriction ;\n\towl:onProperty wdt:P9799 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3911 a wikibase:Property ;\n\trdfs:label \"STW-Kennung\"@de ;\n\tskos:prefLabel \"STW-Kennung\"@de ;\n\tschema:name \"STW-Kennung\"@de ;\n\trdfs:label \"STW Thesaurus for Economics ID\"@en ;\n\tskos:prefLabel \"STW Thesaurus for Economics ID\"@en ;\n\tschema:name \"STW Thesaurus for Economics ID\"@en ;\n\tschema:description \"Identifikator für einen Deskriptor des Standard-Thesaurus Wirtschaft (STW), der auf volks- und betriebswirtschaftliche Literatur verlinkt\"@de,\n\t\t\"identifier for a descriptor of the STW Thesaurus for Economics, linking to literature on economics and business administration\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3911 ;\n\twikibase:claim p:P3911 ;\n\twikibase:statementProperty ps:P3911 ;\n\twikibase:statementValue psv:P3911 ;\n\twikibase:qualifier pq:P3911 ;\n\twikibase:qualifierValue pqv:P3911 ;\n\twikibase:reference pr:P3911 ;\n\twikibase:referenceValue prv:P3911 ;\n\twikibase:novalue wdno:P3911 ;\n\twikibase:directClaimNormalized wdtn:P3911 ;\n\twikibase:statementValueNormalized psn:P3911 ;\n\twikibase:qualifierValueNormalized pqn:P3911 ;\n\twikibase:referenceValueNormalized prn:P3911 .\n\np:P3911 a owl:ObjectProperty .\n\npsv:P3911 a owl:ObjectProperty .\n\npqv:P3911 a owl:ObjectProperty .\n\nprv:P3911 a owl:ObjectProperty .\n\nwdt:P3911 a owl:DatatypeProperty .\n\nps:P3911 a owl:DatatypeProperty .\n\npq:P3911 a owl:DatatypeProperty .\n\npr:P3911 a owl:DatatypeProperty .\n\npsn:P3911 a owl:ObjectProperty .\n\npqn:P3911 a owl:ObjectProperty .\n\nprn:P3911 a owl:ObjectProperty .\n\nwdtn:P3911 a owl:ObjectProperty .\n\nwdno:P3911 a owl:Class ;\n\towl:complementOf _:372903839c4415068dc9be1bc2bc376d .\n\n_:372903839c4415068dc9be1bc2bc376d a owl:Restriction ;\n\towl:onProperty wdt:P3911 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8189 a wikibase:Property ;\n\trdfs:label \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tskos:prefLabel \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\tschema:name \"J9U-Kennung der Israelischen Nationalbibliothek\"@de ;\n\trdfs:label \"J9U ID\"@mul ;\n\tskos:prefLabel \"J9U ID\"@mul ;\n\tschema:name \"J9U ID\"@mul ;\n\trdfs:label \"National Library of Israel J9U ID\"@en ;\n\tskos:prefLabel \"National Library of Israel J9U ID\"@en ;\n\tschema:name \"National Library of Israel J9U ID\"@en ;\n\tschema:description \"Identifikator eines Eintrags, der von der Israelischen Nationalbibliothek verwendet wird (neu)\"@de,\n\t\t\"identifier used by the National Library of Israel\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8189 ;\n\twikibase:claim p:P8189 ;\n\twikibase:statementProperty ps:P8189 ;\n\twikibase:statementValue psv:P8189 ;\n\twikibase:qualifier pq:P8189 ;\n\twikibase:qualifierValue pqv:P8189 ;\n\twikibase:reference pr:P8189 ;\n\twikibase:referenceValue prv:P8189 ;\n\twikibase:novalue wdno:P8189 ;\n\twikibase:directClaimNormalized wdtn:P8189 ;\n\twikibase:statementValueNormalized psn:P8189 ;\n\twikibase:qualifierValueNormalized pqn:P8189 ;\n\twikibase:referenceValueNormalized prn:P8189 .\n\np:P8189 a owl:ObjectProperty .\n\npsv:P8189 a owl:ObjectProperty .\n\npqv:P8189 a owl:ObjectProperty .\n\nprv:P8189 a owl:ObjectProperty .\n\nwdt:P8189 a owl:DatatypeProperty .\n\nps:P8189 a owl:DatatypeProperty .\n\npq:P8189 a owl:DatatypeProperty .\n\npr:P8189 a owl:DatatypeProperty .\n\npsn:P8189 a owl:ObjectProperty .\n\npqn:P8189 a owl:ObjectProperty .\n\nprn:P8189 a owl:ObjectProperty .\n\nwdtn:P8189 a owl:ObjectProperty .\n\nwdno:P8189 a owl:Class ;\n\towl:complementOf _:92bc7d972c1bed2e801eb42a65bd6c0a .\n\n_:92bc7d972c1bed2e801eb42a65bd6c0a a owl:Restriction ;\n\towl:onProperty wdt:P8189 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P4342 a wikibase:Property ;\n\trdfs:label \"SNL-Kennung\"@de ;\n\tskos:prefLabel \"SNL-Kennung\"@de ;\n\tschema:name \"SNL-Kennung\"@de ;\n\trdfs:label \"Great Norwegian Encyclopedia ID\"@en ;\n\tskos:prefLabel \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:name \"Great Norwegian Encyclopedia ID\"@en ;\n\tschema:description \"Identifikator eines Artikels in der Online-Enzyklopädie snl.no\"@de,\n\t\t\"identifier of an article in the online encyclopedia snl.no\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4342 ;\n\twikibase:claim p:P4342 ;\n\twikibase:statementProperty ps:P4342 ;\n\twikibase:statementValue psv:P4342 ;\n\twikibase:qualifier pq:P4342 ;\n\twikibase:qualifierValue pqv:P4342 ;\n\twikibase:reference pr:P4342 ;\n\twikibase:referenceValue prv:P4342 ;\n\twikibase:novalue wdno:P4342 ;\n\twikibase:directClaimNormalized wdtn:P4342 ;\n\twikibase:statementValueNormalized psn:P4342 ;\n\twikibase:qualifierValueNormalized pqn:P4342 ;\n\twikibase:referenceValueNormalized prn:P4342 .\n\np:P4342 a owl:ObjectProperty .\n\npsv:P4342 a owl:ObjectProperty .\n\npqv:P4342 a owl:ObjectProperty .\n\nprv:P4342 a owl:ObjectProperty .\n\nwdt:P4342 a owl:DatatypeProperty .\n\nps:P4342 a owl:DatatypeProperty .\n\npq:P4342 a owl:DatatypeProperty .\n\npr:P4342 a owl:DatatypeProperty .\n\npsn:P4342 a owl:ObjectProperty .\n\npqn:P4342 a owl:ObjectProperty .\n\nprn:P4342 a owl:ObjectProperty .\n\nwdtn:P4342 a owl:ObjectProperty .\n\nwdno:P4342 a owl:Class ;\n\towl:complementOf _:798f6d589e42f1b7a13b07c18239c1c6 .\n\n_:798f6d589e42f1b7a13b07c18239c1c6 a owl:Restriction ;\n\towl:onProperty wdt:P4342 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8313 a wikibase:Property ;\n\trdfs:label \"Lex-Kennung\"@de ;\n\tskos:prefLabel \"Lex-Kennung\"@de ;\n\tschema:name \"Lex-Kennung\"@de ;\n\trdfs:label \"Lex ID\"@en ;\n\tskos:prefLabel \"Lex ID\"@en ;\n\tschema:name \"Lex ID\"@en ;\n\tschema:description \"Identifikator für einen Artikel in der Onlineausgabe der Den Store Danske Encyklopædi auf lex.dk\"@de,\n\t\t\"identifier of an article in the online encyclopedia.lex.dk\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8313 ;\n\twikibase:claim p:P8313 ;\n\twikibase:statementProperty ps:P8313 ;\n\twikibase:statementValue psv:P8313 ;\n\twikibase:qualifier pq:P8313 ;\n\twikibase:qualifierValue pqv:P8313 ;\n\twikibase:reference pr:P8313 ;\n\twikibase:referenceValue prv:P8313 ;\n\twikibase:novalue wdno:P8313 ;\n\twikibase:directClaimNormalized wdtn:P8313 ;\n\twikibase:statementValueNormalized psn:P8313 ;\n\twikibase:qualifierValueNormalized pqn:P8313 ;\n\twikibase:referenceValueNormalized prn:P8313 .\n\np:P8313 a owl:ObjectProperty .\n\npsv:P8313 a owl:ObjectProperty .\n\npqv:P8313 a owl:ObjectProperty .\n\nprv:P8313 a owl:ObjectProperty .\n\nwdt:P8313 a owl:DatatypeProperty .\n\nps:P8313 a owl:DatatypeProperty .\n\npq:P8313 a owl:DatatypeProperty .\n\npr:P8313 a owl:DatatypeProperty .\n\npsn:P8313 a owl:ObjectProperty .\n\npqn:P8313 a owl:ObjectProperty .\n\nprn:P8313 a owl:ObjectProperty .\n\nwdtn:P8313 a owl:ObjectProperty .\n\nwdno:P8313 a owl:Class ;\n\towl:complementOf _:5ce4742f42f26afe436b747d2437666d .\n\n_:5ce4742f42f26afe436b747d2437666d a owl:Restriction ;\n\towl:onProperty wdt:P8313 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10585 a wikibase:Property ;\n\trdfs:label \"CoL-ID\"@de ;\n\tskos:prefLabel \"CoL-ID\"@de ;\n\tschema:name \"CoL-ID\"@de ;\n\trdfs:label \"Catalogue of Life ID\"@en ;\n\tskos:prefLabel \"Catalogue of Life ID\"@en ;\n\tschema:name \"Catalogue of Life ID\"@en ;\n\tschema:description \"Identifikator für ein Taxonkonzept im Catalogue of Life (CoL)\"@de,\n\t\t\"identifier of a taxon or synonym in the Catalogue of Life\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10585 ;\n\twikibase:claim p:P10585 ;\n\twikibase:statementProperty ps:P10585 ;\n\twikibase:statementValue psv:P10585 ;\n\twikibase:qualifier pq:P10585 ;\n\twikibase:qualifierValue pqv:P10585 ;\n\twikibase:reference pr:P10585 ;\n\twikibase:referenceValue prv:P10585 ;\n\twikibase:novalue wdno:P10585 ;\n\twikibase:directClaimNormalized wdtn:P10585 ;\n\twikibase:statementValueNormalized psn:P10585 ;\n\twikibase:qualifierValueNormalized pqn:P10585 ;\n\twikibase:referenceValueNormalized prn:P10585 .\n\np:P10585 a owl:ObjectProperty .\n\npsv:P10585 a owl:ObjectProperty .\n\npqv:P10585 a owl:ObjectProperty .\n\nprv:P10585 a owl:ObjectProperty .\n\nwdt:P10585 a owl:DatatypeProperty .\n\nps:P10585 a owl:DatatypeProperty .\n\npq:P10585 a owl:DatatypeProperty .\n\npr:P10585 a owl:DatatypeProperty .\n\npsn:P10585 a owl:ObjectProperty .\n\npqn:P10585 a owl:ObjectProperty .\n\nprn:P10585 a owl:ObjectProperty .\n\nwdtn:P10585 a owl:ObjectProperty .\n\nwdno:P10585 a owl:Class ;\n\towl:complementOf _:0eab513998be3c909e4532fab5e7920d .\n\n_:0eab513998be3c909e4532fab5e7920d a owl:Restriction ;\n\towl:onProperty wdt:P10585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P8814 a wikibase:Property ;\n\trdfs:label \"Synsetkennung (WordNet 3.1)\"@de ;\n\tskos:prefLabel \"Synsetkennung (WordNet 3.1)\"@de ;\n\tschema:name \"Synsetkennung (WordNet 3.1)\"@de ;\n\trdfs:label \"WordNet 3.1 Synset ID\"@en ;\n\tskos:prefLabel \"WordNet 3.1 Synset ID\"@en ;\n\tschema:name \"WordNet 3.1 Synset ID\"@en ;\n\tschema:description \"Identifikator für einen Synset in der WordNet-Version 3.1 von Princeton\"@de,\n\t\t\"Synset identifier in Princeton’s WordNet Version 3.1\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8814 ;\n\twikibase:claim p:P8814 ;\n\twikibase:statementProperty ps:P8814 ;\n\twikibase:statementValue psv:P8814 ;\n\twikibase:qualifier pq:P8814 ;\n\twikibase:qualifierValue pqv:P8814 ;\n\twikibase:reference pr:P8814 ;\n\twikibase:referenceValue prv:P8814 ;\n\twikibase:novalue wdno:P8814 ;\n\twikibase:directClaimNormalized wdtn:P8814 ;\n\twikibase:statementValueNormalized psn:P8814 ;\n\twikibase:qualifierValueNormalized pqn:P8814 ;\n\twikibase:referenceValueNormalized prn:P8814 .\n\np:P8814 a owl:ObjectProperty .\n\npsv:P8814 a owl:ObjectProperty .\n\npqv:P8814 a owl:ObjectProperty .\n\nprv:P8814 a owl:ObjectProperty .\n\nwdt:P8814 a owl:DatatypeProperty .\n\nps:P8814 a owl:DatatypeProperty .\n\npq:P8814 a owl:DatatypeProperty .\n\npr:P8814 a owl:DatatypeProperty .\n\npsn:P8814 a owl:ObjectProperty .\n\npqn:P8814 a owl:ObjectProperty .\n\nprn:P8814 a owl:ObjectProperty .\n\nwdtn:P8814 a owl:ObjectProperty .\n\nwdno:P8814 a owl:Class ;\n\towl:complementOf _:eb345aeb18fe7fba166f7abc9770574d .\n\n_:eb345aeb18fe7fba166f7abc9770574d a owl:Restriction ;\n\towl:onProperty wdt:P8814 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q6173448 a wikibase:Item ;\n\trdfs:label \"Wikipedia:Artikel, die es in allen Wikipedias geben sollte/Erweitert\"@de ;\n\tskos:prefLabel \"Wikipedia:Artikel, die es in allen Wikipedias geben sollte/Erweitert\"@de ;\n\tschema:name \"Wikipedia:Artikel, die es in allen Wikipedias geben sollte/Erweitert\"@de ;\n\trdfs:label \"Wikipedia:Vital articles/Level/4\"@en ;\n\tskos:prefLabel \"Wikipedia:Vital articles/Level/4\"@en ;\n\tschema:name \"Wikipedia:Vital articles/Level/4\"@en ;\n\tschema:description \"Wikimedia-Liste\"@de,\n\t\t\"Wikimedia project page\"@en .\n\nwd:P5008 a wikibase:Property ;\n\trdfs:label \"auf der Arbeitsliste des Wikimedia-Projektes\"@de ;\n\tskos:prefLabel \"auf der Arbeitsliste des Wikimedia-Projektes\"@de ;\n\tschema:name \"auf der Arbeitsliste des Wikimedia-Projektes\"@de ;\n\trdfs:label \"on focus list of Wikimedia project\"@en ;\n\tskos:prefLabel \"on focus list of Wikimedia project\"@en ;\n\tschema:name \"on focus list of Wikimedia project\"@en ;\n\tschema:description \"die Eigenschaft signalisiert, dass das Objekt auf einer Arbeitsliste eines Wikimedia-Projektes (WikiProjekt, Redaktion, Portal, etc.) enthalten ist. Siehe auch P6104, P972, P2354\"@de,\n\t\t\"property to indicate that an item is of particular interest for a Wikimedia project. This property does not add notability. Items should not be created with this property if they are not notable for Wikidata. See also P6104, P972, P2354\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5008 ;\n\twikibase:claim p:P5008 ;\n\twikibase:statementProperty ps:P5008 ;\n\twikibase:statementValue psv:P5008 ;\n\twikibase:qualifier pq:P5008 ;\n\twikibase:qualifierValue pqv:P5008 ;\n\twikibase:reference pr:P5008 ;\n\twikibase:referenceValue prv:P5008 ;\n\twikibase:novalue wdno:P5008 .\n\np:P5008 a owl:ObjectProperty .\n\npsv:P5008 a owl:ObjectProperty .\n\npqv:P5008 a owl:ObjectProperty .\n\nprv:P5008 a owl:ObjectProperty .\n\nwdt:P5008 a owl:ObjectProperty .\n\nps:P5008 a owl:ObjectProperty .\n\npq:P5008 a owl:ObjectProperty .\n\npr:P5008 a owl:ObjectProperty .\n\nwdno:P5008 a owl:Class ;\n\towl:complementOf _:ccd0828df5e103c905abf7e82e607008 .\n\n_:ccd0828df5e103c905abf7e82e607008 a owl:Restriction ;\n\towl:onProperty wdt:P5008 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P2892 a wikibase:Property ;\n\trdfs:label \"UMLS CUI\"@de ;\n\tskos:prefLabel \"UMLS CUI\"@de ;\n\tschema:name \"UMLS CUI\"@de ;\n\trdfs:label \"UMLS CUI\"@en ;\n\tskos:prefLabel \"UMLS CUI\"@en ;\n\tschema:name \"UMLS CUI\"@en ;\n\tschema:description \"NLM Unified Medical Language System (UMLS) controlled biomedical vocabulary unique identifier\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2892 ;\n\twikibase:claim p:P2892 ;\n\twikibase:statementProperty ps:P2892 ;\n\twikibase:statementValue psv:P2892 ;\n\twikibase:qualifier pq:P2892 ;\n\twikibase:qualifierValue pqv:P2892 ;\n\twikibase:reference pr:P2892 ;\n\twikibase:referenceValue prv:P2892 ;\n\twikibase:novalue wdno:P2892 ;\n\twikibase:directClaimNormalized wdtn:P2892 ;\n\twikibase:statementValueNormalized psn:P2892 ;\n\twikibase:qualifierValueNormalized pqn:P2892 ;\n\twikibase:referenceValueNormalized prn:P2892 .\n\np:P2892 a owl:ObjectProperty .\n\npsv:P2892 a owl:ObjectProperty .\n\npqv:P2892 a owl:ObjectProperty .\n\nprv:P2892 a owl:ObjectProperty .\n\nwdt:P2892 a owl:DatatypeProperty .\n\nps:P2892 a owl:DatatypeProperty .\n\npq:P2892 a owl:DatatypeProperty .\n\npr:P2892 a owl:DatatypeProperty .\n\npsn:P2892 a owl:ObjectProperty .\n\npqn:P2892 a owl:ObjectProperty .\n\nprn:P2892 a owl:ObjectProperty .\n\nwdtn:P2892 a owl:ObjectProperty .\n\nwdno:P2892 a owl:Class ;\n\towl:complementOf _:7f1dcb74568bce8b9b5e3a764e58321b .\n\n_:7f1dcb74568bce8b9b5e3a764e58321b a owl:Restriction ;\n\towl:onProperty wdt:P2892 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1617 a wikibase:Property ;\n\trdfs:label \"BBC-Things-Kennung\"@de ;\n\tskos:prefLabel \"BBC-Things-Kennung\"@de ;\n\tschema:name \"BBC-Things-Kennung\"@de ;\n\trdfs:label \"BBC Things ID\"@en ;\n\tskos:prefLabel \"BBC Things ID\"@en ;\n\tschema:name \"BBC Things ID\"@en ;\n\tschema:description \"Identifikationsnummer in Datenbank BBC Things\"@de,\n\t\t\"identifier in the BBC Things database, automatically enriched with Wikipedia and MusicBrainz content\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1617 ;\n\twikibase:claim p:P1617 ;\n\twikibase:statementProperty ps:P1617 ;\n\twikibase:statementValue psv:P1617 ;\n\twikibase:qualifier pq:P1617 ;\n\twikibase:qualifierValue pqv:P1617 ;\n\twikibase:reference pr:P1617 ;\n\twikibase:referenceValue prv:P1617 ;\n\twikibase:novalue wdno:P1617 ;\n\twikibase:directClaimNormalized wdtn:P1617 ;\n\twikibase:statementValueNormalized psn:P1617 ;\n\twikibase:qualifierValueNormalized pqn:P1617 ;\n\twikibase:referenceValueNormalized prn:P1617 .\n\np:P1617 a owl:ObjectProperty .\n\npsv:P1617 a owl:ObjectProperty .\n\npqv:P1617 a owl:ObjectProperty .\n\nprv:P1617 a owl:ObjectProperty .\n\nwdt:P1617 a owl:DatatypeProperty .\n\nps:P1617 a owl:DatatypeProperty .\n\npq:P1617 a owl:DatatypeProperty .\n\npr:P1617 a owl:DatatypeProperty .\n\npsn:P1617 a owl:ObjectProperty .\n\npqn:P1617 a owl:ObjectProperty .\n\nprn:P1617 a owl:ObjectProperty .\n\nwdtn:P1617 a owl:ObjectProperty .\n\nwdno:P1617 a owl:Class ;\n\towl:complementOf _:8fdc3215765eb06e29c097f7d29bf9cf .\n\n_:8fdc3215765eb06e29c097f7d29bf9cf a owl:Restriction ;\n\towl:onProperty wdt:P1617 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10565 a wikibase:Property ;\n\trdfs:label \"Enzyklopädie-von-China-Kennung (dritte Ausgabe)\"@de ;\n\tskos:prefLabel \"Enzyklopädie-von-China-Kennung (dritte Ausgabe)\"@de ;\n\tschema:name \"Enzyklopädie-von-China-Kennung (dritte Ausgabe)\"@de ;\n\trdfs:label \"Encyclopedia of China (Third Edition) ID\"@en ;\n\tskos:prefLabel \"Encyclopedia of China (Third Edition) ID\"@en ;\n\tschema:name \"Encyclopedia of China (Third Edition) ID\"@en ;\n\tschema:description \"Identifikator für einen Artikel in der Onlineversion der Enzyklopädie von China (dritte Ausgabe)\"@de,\n\t\t\"identifier for an article in the online version of Encyclopedia of China (third edition)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10565 ;\n\twikibase:claim p:P10565 ;\n\twikibase:statementProperty ps:P10565 ;\n\twikibase:statementValue psv:P10565 ;\n\twikibase:qualifier pq:P10565 ;\n\twikibase:qualifierValue pqv:P10565 ;\n\twikibase:reference pr:P10565 ;\n\twikibase:referenceValue prv:P10565 ;\n\twikibase:novalue wdno:P10565 ;\n\twikibase:directClaimNormalized wdtn:P10565 ;\n\twikibase:statementValueNormalized psn:P10565 ;\n\twikibase:qualifierValueNormalized pqn:P10565 ;\n\twikibase:referenceValueNormalized prn:P10565 .\n\np:P10565 a owl:ObjectProperty .\n\npsv:P10565 a owl:ObjectProperty .\n\npqv:P10565 a owl:ObjectProperty .\n\nprv:P10565 a owl:ObjectProperty .\n\nwdt:P10565 a owl:DatatypeProperty .\n\nps:P10565 a owl:DatatypeProperty .\n\npq:P10565 a owl:DatatypeProperty .\n\npr:P10565 a owl:DatatypeProperty .\n\npsn:P10565 a owl:ObjectProperty .\n\npqn:P10565 a owl:ObjectProperty .\n\nprn:P10565 a owl:ObjectProperty .\n\nwdtn:P10565 a owl:ObjectProperty .\n\nwdno:P10565 a owl:Class ;\n\towl:complementOf _:694b361957c9876d0bb1e09940ba210b .\n\n_:694b361957c9876d0bb1e09940ba210b a owl:Restriction ;\n\towl:onProperty wdt:P10565 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P3606 a wikibase:Property ;\n\trdfs:label \"BOLD-ID\"@de ;\n\tskos:prefLabel \"BOLD-ID\"@de ;\n\tschema:name \"BOLD-ID\"@de ;\n\trdfs:label \"BOLD Systems taxon ID\"@en ;\n\tskos:prefLabel \"BOLD Systems taxon ID\"@en ;\n\tschema:name \"BOLD Systems taxon ID\"@en ;\n\tschema:description \"identifier for a taxon in boldsystems.org\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P3606 ;\n\twikibase:claim p:P3606 ;\n\twikibase:statementProperty ps:P3606 ;\n\twikibase:statementValue psv:P3606 ;\n\twikibase:qualifier pq:P3606 ;\n\twikibase:qualifierValue pqv:P3606 ;\n\twikibase:reference pr:P3606 ;\n\twikibase:referenceValue prv:P3606 ;\n\twikibase:novalue wdno:P3606 ;\n\twikibase:directClaimNormalized wdtn:P3606 ;\n\twikibase:statementValueNormalized psn:P3606 ;\n\twikibase:qualifierValueNormalized pqn:P3606 ;\n\twikibase:referenceValueNormalized prn:P3606 .\n\np:P3606 a owl:ObjectProperty .\n\npsv:P3606 a owl:ObjectProperty .\n\npqv:P3606 a owl:ObjectProperty .\n\nprv:P3606 a owl:ObjectProperty .\n\nwdt:P3606 a owl:DatatypeProperty .\n\nps:P3606 a owl:DatatypeProperty .\n\npq:P3606 a owl:DatatypeProperty .\n\npr:P3606 a owl:DatatypeProperty .\n\npsn:P3606 a owl:ObjectProperty .\n\npqn:P3606 a owl:ObjectProperty .\n\nprn:P3606 a owl:ObjectProperty .\n\nwdtn:P3606 a owl:ObjectProperty .\n\nwdno:P3606 a owl:Class ;\n\towl:complementOf _:acc177627a773c938331831fcf8d8402 .\n\n_:acc177627a773c938331831fcf8d8402 a owl:Restriction ;\n\towl:onProperty wdt:P3606 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P7537 a wikibase:Property ;\n\trdfs:label \"India Biodiversity Portal species ID\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal species ID\"@en ;\n\tschema:name \"India Biodiversity Portal species ID\"@en ;\n\tschema:description \"identifier for species found in India maintained by the 'India Biodiversity Portal' database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P7537 ;\n\twikibase:claim p:P7537 ;\n\twikibase:statementProperty ps:P7537 ;\n\twikibase:statementValue psv:P7537 ;\n\twikibase:qualifier pq:P7537 ;\n\twikibase:qualifierValue pqv:P7537 ;\n\twikibase:reference pr:P7537 ;\n\twikibase:referenceValue prv:P7537 ;\n\twikibase:novalue wdno:P7537 ;\n\twikibase:directClaimNormalized wdtn:P7537 ;\n\twikibase:statementValueNormalized psn:P7537 ;\n\twikibase:qualifierValueNormalized pqn:P7537 ;\n\twikibase:referenceValueNormalized prn:P7537 .\n\np:P7537 a owl:ObjectProperty .\n\npsv:P7537 a owl:ObjectProperty .\n\npqv:P7537 a owl:ObjectProperty .\n\nprv:P7537 a owl:ObjectProperty .\n\nwdt:P7537 a owl:DatatypeProperty .\n\nps:P7537 a owl:DatatypeProperty .\n\npq:P7537 a owl:DatatypeProperty .\n\npr:P7537 a owl:DatatypeProperty .\n\npsn:P7537 a owl:ObjectProperty .\n\npqn:P7537 a owl:ObjectProperty .\n\nprn:P7537 a owl:ObjectProperty .\n\nwdtn:P7537 a owl:ObjectProperty .\n\nwdno:P7537 a owl:Class ;\n\towl:complementOf _:45bfeffd386632be7dfa03e971418aee .\n\n_:45bfeffd386632be7dfa03e971418aee a owl:Restriction ;\n\towl:onProperty wdt:P7537 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P9408 a wikibase:Property ;\n\trdfs:label \"Washington Flora Checklist ID\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@de ;\n\tschema:name \"Washington Flora Checklist ID\"@de ;\n\trdfs:label \"Washington Flora Checklist ID\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist ID\"@en ;\n\tschema:name \"Washington Flora Checklist ID\"@en ;\n\tschema:description \"Identifikator für die Washington Flora Checklist\"@de,\n\t\t\"identifier in the Washington Flora Checklist\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P9408 ;\n\twikibase:claim p:P9408 ;\n\twikibase:statementProperty ps:P9408 ;\n\twikibase:statementValue psv:P9408 ;\n\twikibase:qualifier pq:P9408 ;\n\twikibase:qualifierValue pqv:P9408 ;\n\twikibase:reference pr:P9408 ;\n\twikibase:referenceValue prv:P9408 ;\n\twikibase:novalue wdno:P9408 ;\n\twikibase:directClaimNormalized wdtn:P9408 ;\n\twikibase:statementValueNormalized psn:P9408 ;\n\twikibase:qualifierValueNormalized pqn:P9408 ;\n\twikibase:referenceValueNormalized prn:P9408 .\n\np:P9408 a owl:ObjectProperty .\n\npsv:P9408 a owl:ObjectProperty .\n\npqv:P9408 a owl:ObjectProperty .\n\nprv:P9408 a owl:ObjectProperty .\n\nwdt:P9408 a owl:DatatypeProperty .\n\nps:P9408 a owl:DatatypeProperty .\n\npq:P9408 a owl:DatatypeProperty .\n\npr:P9408 a owl:DatatypeProperty .\n\npsn:P9408 a owl:ObjectProperty .\n\npqn:P9408 a owl:ObjectProperty .\n\nprn:P9408 a owl:ObjectProperty .\n\nwdtn:P9408 a owl:ObjectProperty .\n\nwdno:P9408 a owl:Class ;\n\towl:complementOf _:fed86cc56db5ba320e1c445ba9ded27d .\n\n_:fed86cc56db5ba320e1c445ba9ded27d a owl:Restriction ;\n\towl:onProperty wdt:P9408 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10707 a wikibase:Property ;\n\trdfs:label \"McGraw-Hill-AccessScience-URL-Fragment\"@de ;\n\tskos:prefLabel \"McGraw-Hill-AccessScience-URL-Fragment\"@de ;\n\tschema:name \"McGraw-Hill-AccessScience-URL-Fragment\"@de ;\n\trdfs:label \"AccessScience ID\"@en ;\n\tskos:prefLabel \"AccessScience ID\"@en ;\n\tschema:name \"AccessScience ID\"@en ;\n\tschema:description \"identifier for content in the online encyclopedia AccessScience\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10707 ;\n\twikibase:claim p:P10707 ;\n\twikibase:statementProperty ps:P10707 ;\n\twikibase:statementValue psv:P10707 ;\n\twikibase:qualifier pq:P10707 ;\n\twikibase:qualifierValue pqv:P10707 ;\n\twikibase:reference pr:P10707 ;\n\twikibase:referenceValue prv:P10707 ;\n\twikibase:novalue wdno:P10707 ;\n\twikibase:directClaimNormalized wdtn:P10707 ;\n\twikibase:statementValueNormalized psn:P10707 ;\n\twikibase:qualifierValueNormalized pqn:P10707 ;\n\twikibase:referenceValueNormalized prn:P10707 .\n\np:P10707 a owl:ObjectProperty .\n\npsv:P10707 a owl:ObjectProperty .\n\npqv:P10707 a owl:ObjectProperty .\n\nprv:P10707 a owl:ObjectProperty .\n\nwdt:P10707 a owl:DatatypeProperty .\n\nps:P10707 a owl:DatatypeProperty .\n\npq:P10707 a owl:DatatypeProperty .\n\npr:P10707 a owl:DatatypeProperty .\n\npsn:P10707 a owl:ObjectProperty .\n\npqn:P10707 a owl:ObjectProperty .\n\nprn:P10707 a owl:ObjectProperty .\n\nwdtn:P10707 a owl:ObjectProperty .\n\nwdno:P10707 a owl:Class ;\n\towl:complementOf _:95032e127a5f90d5b657a9b3f10d4795 .\n\n_:95032e127a5f90d5b657a9b3f10d4795 a owl:Restriction ;\n\towl:onProperty wdt:P10707 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1727 a wikibase:Property ;\n\trdfs:label \"FNA-ID\"@de ;\n\tskos:prefLabel \"FNA-ID\"@de ;\n\tschema:name \"FNA-ID\"@de ;\n\trdfs:label \"Flora of North America taxon ID\"@en ;\n\tskos:prefLabel \"Flora of North America taxon ID\"@en ;\n\tschema:name \"Flora of North America taxon ID\"@en ;\n\tschema:description \"Identifikator in der Flora of North America (FNA)\"@de,\n\t\t\"identifier for a taxon in the Flora of North America database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1727 ;\n\twikibase:claim p:P1727 ;\n\twikibase:statementProperty ps:P1727 ;\n\twikibase:statementValue psv:P1727 ;\n\twikibase:qualifier pq:P1727 ;\n\twikibase:qualifierValue pqv:P1727 ;\n\twikibase:reference pr:P1727 ;\n\twikibase:referenceValue prv:P1727 ;\n\twikibase:novalue wdno:P1727 ;\n\twikibase:directClaimNormalized wdtn:P1727 ;\n\twikibase:statementValueNormalized psn:P1727 ;\n\twikibase:qualifierValueNormalized pqn:P1727 ;\n\twikibase:referenceValueNormalized prn:P1727 .\n\np:P1727 a owl:ObjectProperty .\n\npsv:P1727 a owl:ObjectProperty .\n\npqv:P1727 a owl:ObjectProperty .\n\nprv:P1727 a owl:ObjectProperty .\n\nwdt:P1727 a owl:DatatypeProperty .\n\nps:P1727 a owl:DatatypeProperty .\n\npq:P1727 a owl:DatatypeProperty .\n\npr:P1727 a owl:DatatypeProperty .\n\npsn:P1727 a owl:ObjectProperty .\n\npqn:P1727 a owl:ObjectProperty .\n\nprn:P1727 a owl:ObjectProperty .\n\nwdtn:P1727 a owl:ObjectProperty .\n\nwdno:P1727 a owl:Class ;\n\towl:complementOf _:dc0fa6f3d42b3ff6f2cff66b498dbf11 .\n\n_:dc0fa6f3d42b3ff6f2cff66b498dbf11 a owl:Restriction ;\n\towl:onProperty wdt:P1727 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12367 a wikibase:Property ;\n\trdfs:label \"Plant Illustrations taxon ID\"@en ;\n\tskos:prefLabel \"Plant Illustrations taxon ID\"@en ;\n\tschema:name \"Plant Illustrations taxon ID\"@en ;\n\tschema:description \"identifier for a taxon other than species on the Plant Illustrations website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12367 ;\n\twikibase:claim p:P12367 ;\n\twikibase:statementProperty ps:P12367 ;\n\twikibase:statementValue psv:P12367 ;\n\twikibase:qualifier pq:P12367 ;\n\twikibase:qualifierValue pqv:P12367 ;\n\twikibase:reference pr:P12367 ;\n\twikibase:referenceValue prv:P12367 ;\n\twikibase:novalue wdno:P12367 ;\n\twikibase:directClaimNormalized wdtn:P12367 ;\n\twikibase:statementValueNormalized psn:P12367 ;\n\twikibase:qualifierValueNormalized pqn:P12367 ;\n\twikibase:referenceValueNormalized prn:P12367 .\n\np:P12367 a owl:ObjectProperty .\n\npsv:P12367 a owl:ObjectProperty .\n\npqv:P12367 a owl:ObjectProperty .\n\nprv:P12367 a owl:ObjectProperty .\n\nwdt:P12367 a owl:DatatypeProperty .\n\nps:P12367 a owl:DatatypeProperty .\n\npq:P12367 a owl:DatatypeProperty .\n\npr:P12367 a owl:DatatypeProperty .\n\npsn:P12367 a owl:ObjectProperty .\n\npqn:P12367 a owl:ObjectProperty .\n\nprn:P12367 a owl:ObjectProperty .\n\nwdtn:P12367 a owl:ObjectProperty .\n\nwdno:P12367 a owl:Class ;\n\towl:complementOf _:96116abbe93d6ec0ee6b23a8a44a228e .\n\n_:96116abbe93d6ec0ee6b23a8a44a228e a owl:Restriction ;\n\towl:onProperty wdt:P12367 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12596 a wikibase:Property ;\n\trdfs:label \"museum-digital-Tag-Kennung\"@de ;\n\tskos:prefLabel \"museum-digital-Tag-Kennung\"@de ;\n\tschema:name \"museum-digital-Tag-Kennung\"@de ;\n\trdfs:label \"museum-digital tag ID\"@en ;\n\tskos:prefLabel \"museum-digital tag ID\"@en ;\n\tschema:name \"museum-digital tag ID\"@en ;\n\tschema:description \"numerischer Identifikator für Schlagworte, die auf Museum-Digital zur Beschreibung von Kulturerbeobjekten verwendet werden.\"@de,\n\t\t\"numeric identifier for keywords used in the description of cultural heritage objects in Museum-Digital\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12596 ;\n\twikibase:claim p:P12596 ;\n\twikibase:statementProperty ps:P12596 ;\n\twikibase:statementValue psv:P12596 ;\n\twikibase:qualifier pq:P12596 ;\n\twikibase:qualifierValue pqv:P12596 ;\n\twikibase:reference pr:P12596 ;\n\twikibase:referenceValue prv:P12596 ;\n\twikibase:novalue wdno:P12596 ;\n\twikibase:directClaimNormalized wdtn:P12596 ;\n\twikibase:statementValueNormalized psn:P12596 ;\n\twikibase:qualifierValueNormalized pqn:P12596 ;\n\twikibase:referenceValueNormalized prn:P12596 .\n\np:P12596 a owl:ObjectProperty .\n\npsv:P12596 a owl:ObjectProperty .\n\npqv:P12596 a owl:ObjectProperty .\n\nprv:P12596 a owl:ObjectProperty .\n\nwdt:P12596 a owl:DatatypeProperty .\n\nps:P12596 a owl:DatatypeProperty .\n\npq:P12596 a owl:DatatypeProperty .\n\npr:P12596 a owl:DatatypeProperty .\n\npsn:P12596 a owl:ObjectProperty .\n\npqn:P12596 a owl:ObjectProperty .\n\nprn:P12596 a owl:ObjectProperty .\n\nwdtn:P12596 a owl:ObjectProperty .\n\nwdno:P12596 a owl:Class ;\n\towl:complementOf _:b747b2a4439a6912260952555f840e49 .\n\n_:b747b2a4439a6912260952555f840e49 a owl:Restriction ;\n\towl:onProperty wdt:P12596 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P11514 a wikibase:Property ;\n\trdfs:label \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tskos:prefLabel \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\tschema:name \"Große-Russische-Enzyklopädie-Portalkennung\"@de ;\n\trdfs:label \"Great Russian Encyclopedia portal ID\"@en ;\n\tskos:prefLabel \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:name \"Great Russian Encyclopedia portal ID\"@en ;\n\tschema:description \"Identifikator eines Portals auf der offiziellen Website der Großen Russischen Enzyklopädie\"@de,\n\t\t\"identifier of an entry on the web portal based on the Great Russian Encyclopedia (for the older version of encyclopedia use P2924)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P11514 ;\n\twikibase:claim p:P11514 ;\n\twikibase:statementProperty ps:P11514 ;\n\twikibase:statementValue psv:P11514 ;\n\twikibase:qualifier pq:P11514 ;\n\twikibase:qualifierValue pqv:P11514 ;\n\twikibase:reference pr:P11514 ;\n\twikibase:referenceValue prv:P11514 ;\n\twikibase:novalue wdno:P11514 ;\n\twikibase:directClaimNormalized wdtn:P11514 ;\n\twikibase:statementValueNormalized psn:P11514 ;\n\twikibase:qualifierValueNormalized pqn:P11514 ;\n\twikibase:referenceValueNormalized prn:P11514 .\n\np:P11514 a owl:ObjectProperty .\n\npsv:P11514 a owl:ObjectProperty .\n\npqv:P11514 a owl:ObjectProperty .\n\nprv:P11514 a owl:ObjectProperty .\n\nwdt:P11514 a owl:DatatypeProperty .\n\nps:P11514 a owl:DatatypeProperty .\n\npq:P11514 a owl:DatatypeProperty .\n\npr:P11514 a owl:DatatypeProperty .\n\npsn:P11514 a owl:ObjectProperty .\n\npqn:P11514 a owl:ObjectProperty .\n\nprn:P11514 a owl:ObjectProperty .\n\nwdtn:P11514 a owl:ObjectProperty .\n\nwdno:P11514 a owl:Class ;\n\towl:complementOf _:5d36652ac32d2710f4fb28e817a22714 .\n\n_:5d36652ac32d2710f4fb28e817a22714 a owl:Restriction ;\n\towl:onProperty wdt:P11514 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12788 a wikibase:Property ;\n\trdfs:label \"A Dictionary of Plant Sciences ID\"@en ;\n\tskos:prefLabel \"A Dictionary of Plant Sciences ID\"@en ;\n\tschema:name \"A Dictionary of Plant Sciences ID\"@en ;\n\tschema:description \"identifier for an entry in online fourth edition of A Dictionary of Plant Sciences\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12788 ;\n\twikibase:claim p:P12788 ;\n\twikibase:statementProperty ps:P12788 ;\n\twikibase:statementValue psv:P12788 ;\n\twikibase:qualifier pq:P12788 ;\n\twikibase:qualifierValue pqv:P12788 ;\n\twikibase:reference pr:P12788 ;\n\twikibase:referenceValue prv:P12788 ;\n\twikibase:novalue wdno:P12788 ;\n\twikibase:directClaimNormalized wdtn:P12788 ;\n\twikibase:statementValueNormalized psn:P12788 ;\n\twikibase:qualifierValueNormalized pqn:P12788 ;\n\twikibase:referenceValueNormalized prn:P12788 .\n\np:P12788 a owl:ObjectProperty .\n\npsv:P12788 a owl:ObjectProperty .\n\npqv:P12788 a owl:ObjectProperty .\n\nprv:P12788 a owl:ObjectProperty .\n\nwdt:P12788 a owl:DatatypeProperty .\n\nps:P12788 a owl:DatatypeProperty .\n\npq:P12788 a owl:DatatypeProperty .\n\npr:P12788 a owl:DatatypeProperty .\n\npsn:P12788 a owl:ObjectProperty .\n\npqn:P12788 a owl:ObjectProperty .\n\nprn:P12788 a owl:ObjectProperty .\n\nwdtn:P12788 a owl:ObjectProperty .\n\nwdno:P12788 a owl:Class ;\n\towl:complementOf _:a315438b8ea5f3ce660d9103a362bcd5 .\n\n_:a315438b8ea5f3ce660d9103a362bcd5 a owl:Restriction ;\n\towl:onProperty wdt:P12788 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P487 a wikibase:Property ;\n\trdfs:label \"Unicodezeichen\"@de ;\n\tskos:prefLabel \"Unicodezeichen\"@de ;\n\tschema:name \"Unicodezeichen\"@de ;\n\trdfs:label \"Unicode character\"@en ;\n\tskos:prefLabel \"Unicode character\"@en ;\n\tschema:name \"Unicode character\"@en ;\n\tschema:description \"Zeichen des Datenobjekts\"@de,\n\t\t\"Unicode character representing the item (only if this is not a control character or a compatiblity character: in that case, use only P4213)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P487 ;\n\twikibase:claim p:P487 ;\n\twikibase:statementProperty ps:P487 ;\n\twikibase:statementValue psv:P487 ;\n\twikibase:qualifier pq:P487 ;\n\twikibase:qualifierValue pqv:P487 ;\n\twikibase:reference pr:P487 ;\n\twikibase:referenceValue prv:P487 ;\n\twikibase:novalue wdno:P487 .\n\np:P487 a owl:ObjectProperty .\n\npsv:P487 a owl:ObjectProperty .\n\npqv:P487 a owl:ObjectProperty .\n\nprv:P487 a owl:ObjectProperty .\n\nwdt:P487 a owl:DatatypeProperty .\n\nps:P487 a owl:DatatypeProperty .\n\npq:P487 a owl:DatatypeProperty .\n\npr:P487 a owl:DatatypeProperty .\n\nwdno:P487 a owl:Class ;\n\towl:complementOf _:85fbb6a8a80ba2ce9023845ab82205a0 .\n\n_:85fbb6a8a80ba2ce9023845ab82205a0 a owl:Restriction ;\n\towl:onProperty wdt:P487 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P672 a wikibase:Property ;\n\trdfs:label \"MeSH-Code\"@de ;\n\tskos:prefLabel \"MeSH-Code\"@de ;\n\tschema:name \"MeSH-Code\"@de ;\n\trdfs:label \"MeSH tree code\"@en ;\n\tskos:prefLabel \"MeSH tree code\"@en ;\n\tschema:name \"MeSH tree code\"@en ;\n\tschema:description \"Medical Subject Headings (MeSH)-Codes sind ein Index und Thesaurus für die Lebenswissenschaften (≠ MeSH ID)\"@de,\n\t\t\"hierarchical category codes for MeSH descriptors (≠ MeSH ID)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P672 ;\n\twikibase:claim p:P672 ;\n\twikibase:statementProperty ps:P672 ;\n\twikibase:statementValue psv:P672 ;\n\twikibase:qualifier pq:P672 ;\n\twikibase:qualifierValue pqv:P672 ;\n\twikibase:reference pr:P672 ;\n\twikibase:referenceValue prv:P672 ;\n\twikibase:novalue wdno:P672 ;\n\twikibase:directClaimNormalized wdtn:P672 ;\n\twikibase:statementValueNormalized psn:P672 ;\n\twikibase:qualifierValueNormalized pqn:P672 ;\n\twikibase:referenceValueNormalized prn:P672 .\n\np:P672 a owl:ObjectProperty .\n\npsv:P672 a owl:ObjectProperty .\n\npqv:P672 a owl:ObjectProperty .\n\nprv:P672 a owl:ObjectProperty .\n\nwdt:P672 a owl:DatatypeProperty .\n\nps:P672 a owl:DatatypeProperty .\n\npq:P672 a owl:DatatypeProperty .\n\npr:P672 a owl:DatatypeProperty .\n\npsn:P672 a owl:ObjectProperty .\n\npqn:P672 a owl:ObjectProperty .\n\nprn:P672 a owl:ObjectProperty .\n\nwdtn:P672 a owl:ObjectProperty .\n\nwdno:P672 a owl:Class ;\n\towl:complementOf _:ff244d7b26e1caa8b75b7cc8c845b42c .\n\n_:ff244d7b26e1caa8b75b7cc8c845b42c a owl:Restriction ;\n\towl:onProperty wdt:P672 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q10884 a wikibase:Item ;\n\trdfs:label \"Baum\"@de ;\n\tskos:prefLabel \"Baum\"@de ;\n\tschema:name \"Baum\"@de ;\n\trdfs:label \"tree\"@en ;\n\tskos:prefLabel \"tree\"@en ;\n\tschema:name \"tree\"@en ;\n\tschema:description \"eine verholzte Pflanze, die aus einer Wurzel, einem Stamm und einer Krone besteht\"@de,\n\t\t\"perennial woody plant\"@en .\n\nwd:P279 a wikibase:Property ;\n\trdfs:label \"Unterklasse von\"@de ;\n\tskos:prefLabel \"Unterklasse von\"@de ;\n\tschema:name \"Unterklasse von\"@de ;\n\trdfs:label \"subclass of\"@en ;\n\tskos:prefLabel \"subclass of\"@en ;\n\tschema:name \"subclass of\"@en ;\n\tschema:description \"Diese Klasse/Gruppe ist eine Unterklasse zu jener Klasse/Gruppe. Alle Elemente der Unterklasse sind auch Elemente der Oberklasse; verschieden von P31 („ist ein(e)“), z.B.: Vulkan ist eine „Unterklasse von“ Berg, der K2 „ist ein“ Berg.\"@de,\n\t\t\"this item is a subclass (subset) of that item; ALL instances of this item are instances of that item; different from P31 (instance of), e.g.: volcano is a subclass of mountain; Everest is an instance of mountain\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P279 ;\n\twikibase:claim p:P279 ;\n\twikibase:statementProperty ps:P279 ;\n\twikibase:statementValue psv:P279 ;\n\twikibase:qualifier pq:P279 ;\n\twikibase:qualifierValue pqv:P279 ;\n\twikibase:reference pr:P279 ;\n\twikibase:referenceValue prv:P279 ;\n\twikibase:novalue wdno:P279 .\n\np:P279 a owl:ObjectProperty .\n\npsv:P279 a owl:ObjectProperty .\n\npqv:P279 a owl:ObjectProperty .\n\nprv:P279 a owl:ObjectProperty .\n\nwdt:P279 a owl:ObjectProperty .\n\nps:P279 a owl:ObjectProperty .\n\npq:P279 a owl:ObjectProperty .\n\npr:P279 a owl:ObjectProperty .\n\nwdno:P279 a owl:Class ;\n\towl:complementOf _:55a0a46aa65f620d17fa7dc3671280d4 .\n\n_:55a0a46aa65f620d17fa7dc3671280d4 a owl:Restriction ;\n\towl:onProperty wdt:P279 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10890 a wikibase:Property ;\n\trdfs:label \"PM20 ware ID\"@en ;\n\tskos:prefLabel \"PM20 ware ID\"@en ;\n\tschema:name \"PM20 ware ID\"@en ;\n\tschema:description \"identifier for a wares category in the 20th Century Press Archives' commodities/wares category system\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10890 ;\n\twikibase:claim p:P10890 ;\n\twikibase:statementProperty ps:P10890 ;\n\twikibase:statementValue psv:P10890 ;\n\twikibase:qualifier pq:P10890 ;\n\twikibase:qualifierValue pqv:P10890 ;\n\twikibase:reference pr:P10890 ;\n\twikibase:referenceValue prv:P10890 ;\n\twikibase:novalue wdno:P10890 ;\n\twikibase:directClaimNormalized wdtn:P10890 ;\n\twikibase:statementValueNormalized psn:P10890 ;\n\twikibase:qualifierValueNormalized pqn:P10890 ;\n\twikibase:referenceValueNormalized prn:P10890 .\n\np:P10890 a owl:ObjectProperty .\n\npsv:P10890 a owl:ObjectProperty .\n\npqv:P10890 a owl:ObjectProperty .\n\nprv:P10890 a owl:ObjectProperty .\n\nwdt:P10890 a owl:DatatypeProperty .\n\nps:P10890 a owl:DatatypeProperty .\n\npq:P10890 a owl:DatatypeProperty .\n\npr:P10890 a owl:DatatypeProperty .\n\npsn:P10890 a owl:ObjectProperty .\n\npqn:P10890 a owl:ObjectProperty .\n\nprn:P10890 a owl:ObjectProperty .\n\nwdtn:P10890 a owl:ObjectProperty .\n\nwdno:P10890 a owl:Class ;\n\towl:complementOf _:953cbdf60174135618ca704d770310f2 .\n\n_:953cbdf60174135618ca704d770310f2 a owl:Restriction ;\n\towl:onProperty wdt:P10890 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P10701 a wikibase:Property ;\n\trdfs:label \"Reflora ID\"@en ;\n\tskos:prefLabel \"Reflora ID\"@en ;\n\tschema:name \"Reflora ID\"@en ;\n\tschema:description \"identifier for a taxon on the Reflora Flora e Funga do Brasil website\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P10701 ;\n\twikibase:claim p:P10701 ;\n\twikibase:statementProperty ps:P10701 ;\n\twikibase:statementValue psv:P10701 ;\n\twikibase:qualifier pq:P10701 ;\n\twikibase:qualifierValue pqv:P10701 ;\n\twikibase:reference pr:P10701 ;\n\twikibase:referenceValue prv:P10701 ;\n\twikibase:novalue wdno:P10701 ;\n\twikibase:directClaimNormalized wdtn:P10701 ;\n\twikibase:statementValueNormalized psn:P10701 ;\n\twikibase:qualifierValueNormalized pqn:P10701 ;\n\twikibase:referenceValueNormalized prn:P10701 .\n\np:P10701 a owl:ObjectProperty .\n\npsv:P10701 a owl:ObjectProperty .\n\npqv:P10701 a owl:ObjectProperty .\n\nprv:P10701 a owl:ObjectProperty .\n\nwdt:P10701 a owl:DatatypeProperty .\n\nps:P10701 a owl:DatatypeProperty .\n\npq:P10701 a owl:DatatypeProperty .\n\npr:P10701 a owl:DatatypeProperty .\n\npsn:P10701 a owl:ObjectProperty .\n\npqn:P10701 a owl:ObjectProperty .\n\nprn:P10701 a owl:ObjectProperty .\n\nwdtn:P10701 a owl:ObjectProperty .\n\nwdno:P10701 a owl:Class ;\n\towl:complementOf _:dbfe4a31bd767a32457edef0ca19440f .\n\n_:dbfe4a31bd767a32457edef0ca19440f a owl:Restriction ;\n\towl:onProperty wdt:P10701 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P12292 a wikibase:Property ;\n\trdfs:label \"Biota of New Zealand ID\"@en ;\n\tskos:prefLabel \"Biota of New Zealand ID\"@en ;\n\tschema:name \"Biota of New Zealand ID\"@en ;\n\tschema:description \"identifier for a taxon in the Biota of New Zealand database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P12292 ;\n\twikibase:claim p:P12292 ;\n\twikibase:statementProperty ps:P12292 ;\n\twikibase:statementValue psv:P12292 ;\n\twikibase:qualifier pq:P12292 ;\n\twikibase:qualifierValue pqv:P12292 ;\n\twikibase:reference pr:P12292 ;\n\twikibase:referenceValue prv:P12292 ;\n\twikibase:novalue wdno:P12292 ;\n\twikibase:directClaimNormalized wdtn:P12292 ;\n\twikibase:statementValueNormalized psn:P12292 ;\n\twikibase:qualifierValueNormalized pqn:P12292 ;\n\twikibase:referenceValueNormalized prn:P12292 .\n\np:P12292 a owl:ObjectProperty .\n\npsv:P12292 a owl:ObjectProperty .\n\npqv:P12292 a owl:ObjectProperty .\n\nprv:P12292 a owl:ObjectProperty .\n\nwdt:P12292 a owl:DatatypeProperty .\n\nps:P12292 a owl:DatatypeProperty .\n\npq:P12292 a owl:DatatypeProperty .\n\npr:P12292 a owl:DatatypeProperty .\n\npsn:P12292 a owl:ObjectProperty .\n\npqn:P12292 a owl:ObjectProperty .\n\nprn:P12292 a owl:ObjectProperty .\n\nwdtn:P12292 a owl:ObjectProperty .\n\nwdno:P12292 a owl:Class ;\n\towl:complementOf _:1cc1b6493f222337c779ec315ef9c771 .\n\n_:1cc1b6493f222337c779ec315ef9c771 a owl:Restriction ;\n\towl:onProperty wdt:P12292 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q1043 a wikibase:Item ;\n\trdfs:label \"Carl von Linné\"@de ;\n\tskos:prefLabel \"Carl von Linné\"@de ;\n\tschema:name \"Carl von Linné\"@de ;\n\trdfs:label \"Carl Linnaeus\"@mul ;\n\tskos:prefLabel \"Carl Linnaeus\"@mul ;\n\tschema:name \"Carl Linnaeus\"@mul ;\n\trdfs:label \"Carl Linnaeus\"@en ;\n\tskos:prefLabel \"Carl Linnaeus\"@en ;\n\tschema:name \"Carl Linnaeus\"@en ;\n\tschema:description \"schwedischer Naturwissenschaftler, der die Grundlagen der modernen Taxonomie entwickelte\"@de,\n\t\t\"Swedish botanist, physician, and zoologist (1707–1778)\"@en .\n\nwd:P405 a wikibase:Property ;\n\trdfs:label \"Autor(en) des Taxons\"@de ;\n\tskos:prefLabel \"Autor(en) des Taxons\"@de ;\n\tschema:name \"Autor(en) des Taxons\"@de ;\n\trdfs:label \"taxon author\"@en ;\n\tskos:prefLabel \"taxon author\"@en ;\n\tschema:name \"taxon author\"@en ;\n\tschema:description \"Autor(en) des nomenklatorischen Namens\"@de,\n\t\t\"the author(s) that (optionally) may be cited with the scientific name\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P405 ;\n\twikibase:claim p:P405 ;\n\twikibase:statementProperty ps:P405 ;\n\twikibase:statementValue psv:P405 ;\n\twikibase:qualifier pq:P405 ;\n\twikibase:qualifierValue pqv:P405 ;\n\twikibase:reference pr:P405 ;\n\twikibase:referenceValue prv:P405 ;\n\twikibase:novalue wdno:P405 .\n\np:P405 a owl:ObjectProperty .\n\npsv:P405 a owl:ObjectProperty .\n\npqv:P405 a owl:ObjectProperty .\n\nprv:P405 a owl:ObjectProperty .\n\nwdt:P405 a owl:ObjectProperty .\n\nps:P405 a owl:ObjectProperty .\n\npq:P405 a owl:ObjectProperty .\n\npr:P405 a owl:ObjectProperty .\n\nwdno:P405 a owl:Class ;\n\towl:complementOf _:09743fef9c80f246289e32d731a678be .\n\n_:09743fef9c80f246289e32d731a678be a owl:Restriction ;\n\towl:onProperty wdt:P405 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P574 a wikibase:Property ;\n\trdfs:label \"veröffentlicht im Jahr\"@de ;\n\tskos:prefLabel \"veröffentlicht im Jahr\"@de ;\n\tschema:name \"veröffentlicht im Jahr\"@de ;\n\trdfs:label \"year of publication of scientific name for taxon\"@en ;\n\tskos:prefLabel \"year of publication of scientific name for taxon\"@en ;\n\tschema:name \"year of publication of scientific name for taxon\"@en ;\n\tschema:description \"Jahr, in dem die Erstbeschreibung oder Umkombination veröffentlicht wurde\"@de,\n\t\t\"year when this taxon was formally described (for animals); year when this taxon name was formally established (for plants)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P574 ;\n\twikibase:claim p:P574 ;\n\twikibase:statementProperty ps:P574 ;\n\twikibase:statementValue psv:P574 ;\n\twikibase:qualifier pq:P574 ;\n\twikibase:qualifierValue pqv:P574 ;\n\twikibase:reference pr:P574 ;\n\twikibase:referenceValue prv:P574 ;\n\twikibase:novalue wdno:P574 .\n\np:P574 a owl:ObjectProperty .\n\npsv:P574 a owl:ObjectProperty .\n\npqv:P574 a owl:ObjectProperty .\n\nprv:P574 a owl:ObjectProperty .\n\nwdt:P574 a owl:DatatypeProperty .\n\nps:P574 a owl:DatatypeProperty .\n\npq:P574 a owl:DatatypeProperty .\n\npr:P574 a owl:DatatypeProperty .\n\nwdno:P574 a owl:Class ;\n\towl:complementOf _:9ed7c35cce0b9f9b47cc5f1822000494 .\n\n_:9ed7c35cce0b9f9b47cc5f1822000494 a owl:Restriction ;\n\towl:onProperty wdt:P574 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q40975586 a wikibase:Item ;\n\trdfs:label \"Genera Plantarum. 5. Auflage\"@de ;\n\tskos:prefLabel \"Genera Plantarum. 5. Auflage\"@de ;\n\tschema:name \"Genera Plantarum. 5. Auflage\"@de ;\n\trdfs:label \"Genera Plantarum\"@mul ;\n\tskos:prefLabel \"Genera Plantarum\"@mul ;\n\tschema:name \"Genera Plantarum\"@mul ;\n\trdfs:label \"Genera Plantarum\"@en ;\n\tskos:prefLabel \"Genera Plantarum\"@en ;\n\tschema:name \"Genera Plantarum\"@en ;\n\tschema:description \"wissenschaftliches Werk\"@de,\n\t\t\"5th edition of Genera Plantarum by Carl Linnaeus\"@en .\n\nwd:P248 a wikibase:Property ;\n\trdfs:label \"nachgewiesen in\"@de ;\n\tskos:prefLabel \"nachgewiesen in\"@de ;\n\tschema:name \"nachgewiesen in\"@de ;\n\trdfs:label \"stated in\"@en ;\n\tskos:prefLabel \"stated in\"@en ;\n\tschema:name \"stated in\"@en ;\n\tschema:description \"für die Angabe der Quelle der Behauptung im Fundstellenfeld\"@de,\n\t\t\"to be used in the references field to refer to the information document or database in which a claim is made; for qualifiers use P805; for the type of document in which a claim is made use P3865\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P248 ;\n\twikibase:claim p:P248 ;\n\twikibase:statementProperty ps:P248 ;\n\twikibase:statementValue psv:P248 ;\n\twikibase:qualifier pq:P248 ;\n\twikibase:qualifierValue pqv:P248 ;\n\twikibase:reference pr:P248 ;\n\twikibase:referenceValue prv:P248 ;\n\twikibase:novalue wdno:P248 .\n\np:P248 a owl:ObjectProperty .\n\npsv:P248 a owl:ObjectProperty .\n\npqv:P248 a owl:ObjectProperty .\n\nprv:P248 a owl:ObjectProperty .\n\nwdt:P248 a owl:ObjectProperty .\n\nps:P248 a owl:ObjectProperty .\n\npq:P248 a owl:ObjectProperty .\n\npr:P248 a owl:ObjectProperty .\n\nwdno:P248 a owl:Class ;\n\towl:complementOf _:a2b31078afaf5caae811f4ac846f5f35 .\n\n_:a2b31078afaf5caae811f4ac846f5f35 a owl:Restriction ;\n\towl:onProperty wdt:P248 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P304 a wikibase:Property ;\n\trdfs:label \"Seite(n)\"@de ;\n\tskos:prefLabel \"Seite(n)\"@de ;\n\tschema:name \"Seite(n)\"@de ;\n\trdfs:label \"page(s)\"@en ;\n\tskos:prefLabel \"page(s)\"@en ;\n\tschema:name \"page(s)\"@en ;\n\tschema:description \"Seitenangabe für eine Fundstelle\"@de,\n\t\t\"page number of source referenced for statement. Note \\\"column(s)\\\" (P3903) and \\\"folio(s)\\\" (P7416) for other numbering systems\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P304 ;\n\twikibase:claim p:P304 ;\n\twikibase:statementProperty ps:P304 ;\n\twikibase:statementValue psv:P304 ;\n\twikibase:qualifier pq:P304 ;\n\twikibase:qualifierValue pqv:P304 ;\n\twikibase:reference pr:P304 ;\n\twikibase:referenceValue prv:P304 ;\n\twikibase:novalue wdno:P304 .\n\np:P304 a owl:ObjectProperty .\n\npsv:P304 a owl:ObjectProperty .\n\npqv:P304 a owl:ObjectProperty .\n\nprv:P304 a owl:ObjectProperty .\n\nwdt:P304 a owl:DatatypeProperty .\n\nps:P304 a owl:DatatypeProperty .\n\npq:P304 a owl:DatatypeProperty .\n\npr:P304 a owl:DatatypeProperty .\n\nwdno:P304 a owl:Class ;\n\towl:complementOf _:49f6b1d5994a21499c8de6a108f33226 .\n\n_:49f6b1d5994a21499c8de6a108f33226 a owl:Restriction ;\n\towl:onProperty wdt:P304 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P687 a wikibase:Property ;\n\trdfs:label \"BHL-Seiten-ID\"@de ;\n\tskos:prefLabel \"BHL-Seiten-ID\"@de ;\n\tschema:name \"BHL-Seiten-ID\"@de ;\n\trdfs:label \"BHL page ID\"@en ;\n\tskos:prefLabel \"BHL page ID\"@en ;\n\tschema:name \"BHL page ID\"@en ;\n\tschema:description \"Identifikator einer Seite in der Biodiversity Heritage Library (BHL)\"@de,\n\t\t\"identifier for a page in the Biodiversity Heritage Library (BHL)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P687 ;\n\twikibase:claim p:P687 ;\n\twikibase:statementProperty ps:P687 ;\n\twikibase:statementValue psv:P687 ;\n\twikibase:qualifier pq:P687 ;\n\twikibase:qualifierValue pqv:P687 ;\n\twikibase:reference pr:P687 ;\n\twikibase:referenceValue prv:P687 ;\n\twikibase:novalue wdno:P687 ;\n\twikibase:directClaimNormalized wdtn:P687 ;\n\twikibase:statementValueNormalized psn:P687 ;\n\twikibase:qualifierValueNormalized pqn:P687 ;\n\twikibase:referenceValueNormalized prn:P687 .\n\np:P687 a owl:ObjectProperty .\n\npsv:P687 a owl:ObjectProperty .\n\npqv:P687 a owl:ObjectProperty .\n\nprv:P687 a owl:ObjectProperty .\n\nwdt:P687 a owl:DatatypeProperty .\n\nps:P687 a owl:DatatypeProperty .\n\npq:P687 a owl:DatatypeProperty .\n\npr:P687 a owl:DatatypeProperty .\n\npsn:P687 a owl:ObjectProperty .\n\npqn:P687 a owl:ObjectProperty .\n\nprn:P687 a owl:ObjectProperty .\n\nwdtn:P687 a owl:ObjectProperty .\n\nwdno:P687 a owl:Class ;\n\towl:complementOf _:7abca516490bbd632bf135aef23e1bea .\n\n_:7abca516490bbd632bf135aef23e1bea a owl:Restriction ;\n\towl:onProperty wdt:P687 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q21856106 a wikibase:Item ;\n\trdfs:label \"Species Plantarum. 1. Auflage, Band 1\"@de ;\n\tskos:prefLabel \"Species Plantarum. 1. Auflage, Band 1\"@de ;\n\tschema:name \"Species Plantarum. 1. Auflage, Band 1\"@de ;\n\trdfs:label \"Species Plantarum. 1st Edition, Volume 1\"@en ;\n\tskos:prefLabel \"Species Plantarum. 1st Edition, Volume 1\"@en ;\n\tschema:name \"Species Plantarum. 1st Edition, Volume 1\"@en ;\n\tschema:description \"book by Carolus Linnaeus\"@en .\n\nwd:Q1361864 a wikibase:Item ;\n\trdfs:label \"Erstbeschreibung\"@de ;\n\tskos:prefLabel \"Erstbeschreibung\"@de ;\n\tschema:name \"Erstbeschreibung\"@de ;\n\trdfs:label \"first valid description\"@en ;\n\tskos:prefLabel \"first valid description\"@en ;\n\tschema:name \"first valid description\"@en ;\n\tschema:description \"erstmalige, bestimmten formalen Ansprüchen genügende wissenschaftliche Beschreibung eines der Wissenschaft bisher unbekannten Lebewesens\"@de,\n\t\t\"formal description of a new taxon\"@en .\n\nwd:P6184 a wikibase:Property ;\n\trdfs:label \"Nachweis fungiert als\"@de ;\n\tskos:prefLabel \"Nachweis fungiert als\"@de ;\n\tschema:name \"Nachweis fungiert als\"@de ;\n\trdfs:label \"reference has role\"@en ;\n\tskos:prefLabel \"reference has role\"@en ;\n\tschema:name \"reference has role\"@en ;\n\tschema:description \"die Rolle oder Besonderheit der angegebenen Referenz\"@de,\n\t\t\"role, or specific nature, of the given reference\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P6184 ;\n\twikibase:claim p:P6184 ;\n\twikibase:statementProperty ps:P6184 ;\n\twikibase:statementValue psv:P6184 ;\n\twikibase:qualifier pq:P6184 ;\n\twikibase:qualifierValue pqv:P6184 ;\n\twikibase:reference pr:P6184 ;\n\twikibase:referenceValue prv:P6184 ;\n\twikibase:novalue wdno:P6184 .\n\np:P6184 a owl:ObjectProperty .\n\npsv:P6184 a owl:ObjectProperty .\n\npqv:P6184 a owl:ObjectProperty .\n\nprv:P6184 a owl:ObjectProperty .\n\nwdt:P6184 a owl:ObjectProperty .\n\nps:P6184 a owl:ObjectProperty .\n\npq:P6184 a owl:ObjectProperty .\n\npr:P6184 a owl:ObjectProperty .\n\nwdno:P6184 a owl:Class ;\n\towl:complementOf _:6c69348bdc0fb40f4302205367e7575d .\n\n_:6c69348bdc0fb40f4302205367e7575d a owl:Restriction ;\n\towl:onProperty wdt:P6184 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q506 a wikibase:Item ;\n\trdfs:label \"Blüte\"@de ;\n\tskos:prefLabel \"Blüte\"@de ;\n\tschema:name \"Blüte\"@de ;\n\trdfs:label \"flower\"@en ;\n\tskos:prefLabel \"flower\"@en ;\n\tschema:name \"flower\"@en ;\n\tschema:description \"Organ der Samenpflanzen, das der sexuellen Fortpflanzung dient\"@de,\n\t\t\"sexual reproductive structure found on flowering plants\"@en .\n\nwd:P5961 a wikibase:Property ;\n\trdfs:label \"dargestellter Teil\"@de ;\n\tskos:prefLabel \"dargestellter Teil\"@de ;\n\tschema:name \"dargestellter Teil\"@de ;\n\trdfs:label \"depicted part\"@en ;\n\tskos:prefLabel \"depicted part\"@en ;\n\tschema:name \"depicted part\"@en ;\n\tschema:description \"Zur Verwendung als Qualifikator von \\\"Motiv\\\" (P180)\"@de,\n\t\t\"use as qualifier for \\\"depicts\\\" (P180) or image (P18)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P5961 ;\n\twikibase:claim p:P5961 ;\n\twikibase:statementProperty ps:P5961 ;\n\twikibase:statementValue psv:P5961 ;\n\twikibase:qualifier pq:P5961 ;\n\twikibase:qualifierValue pqv:P5961 ;\n\twikibase:reference pr:P5961 ;\n\twikibase:referenceValue prv:P5961 ;\n\twikibase:novalue wdno:P5961 .\n\np:P5961 a owl:ObjectProperty .\n\npsv:P5961 a owl:ObjectProperty .\n\npqv:P5961 a owl:ObjectProperty .\n\nprv:P5961 a owl:ObjectProperty .\n\nwdt:P5961 a owl:ObjectProperty .\n\nps:P5961 a owl:ObjectProperty .\n\npq:P5961 a owl:ObjectProperty .\n\npr:P5961 a owl:ObjectProperty .\n\nwdno:P5961 a owl:Class ;\n\towl:complementOf _:d93d7c0b22e00f757b773c6b3a5ac203 .\n\n_:d93d7c0b22e00f757b773c6b3a5ac203 a owl:Restriction ;\n\towl:onProperty wdt:P5961 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q33971 a wikibase:Item ;\n\trdfs:label \"Blatt\"@de ;\n\tskos:prefLabel \"Blatt\"@de ;\n\tschema:name \"Blatt\"@de ;\n\trdfs:label \"leaf\"@en ;\n\tskos:prefLabel \"leaf\"@en ;\n\tschema:name \"leaf\"@en ;\n\tschema:description \"Grundorgan der höheren Pflanzen\"@de,\n\t\t\"main organ of photosynthesis and transpiration in higher plants, usually consisting of a flat green blade attached to the stem directly or by a stalk\"@en .\n\nwd:Q1364 a wikibase:Item ;\n\trdfs:label \"Frucht\"@de ;\n\tskos:prefLabel \"Frucht\"@de ;\n\tschema:name \"Frucht\"@de ;\n\trdfs:label \"fruit\"@en ;\n\tskos:prefLabel \"fruit\"@en ;\n\tschema:name \"fruit\"@en ;\n\tschema:description \"Blüte im Zustand der Samenreife\"@de,\n\t\t\"botanical term for the mature ovary or ovaries of one or more flowers. For foods commonly known as fruit, use Q3314483\"@en .\n\nwd:Q12159796 a wikibase:Item ;\n\trdfs:label \"Taxonomiedatenbank des NCBI\"@de ;\n\tskos:prefLabel \"Taxonomiedatenbank des NCBI\"@de ;\n\tschema:name \"Taxonomiedatenbank des NCBI\"@de ;\n\trdfs:label \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tskos:prefLabel \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:name \"Taxonomy database of the U.S. National Center for Biotechnology Information\"@en ;\n\tschema:description \"Taxonomiedatenbank für Molekularbiologie\"@de,\n\t\t\"curated classification and nomenclature for all of the organisms in the public sequence databases\"@en .\n\nwd:P813 a wikibase:Property ;\n\trdfs:label \"abgerufen am\"@de ;\n\tskos:prefLabel \"abgerufen am\"@de ;\n\tschema:name \"abgerufen am\"@de ;\n\trdfs:label \"retrieved\"@en ;\n\tskos:prefLabel \"retrieved\"@en ;\n\tschema:name \"retrieved\"@en ;\n\tschema:description \"Datum, an dem die belegte Information zuletzt geprüft wurde\"@de,\n\t\t\"date or point in time that information was retrieved from a database or website (for use in online sources)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P813 ;\n\twikibase:claim p:P813 ;\n\twikibase:statementProperty ps:P813 ;\n\twikibase:statementValue psv:P813 ;\n\twikibase:qualifier pq:P813 ;\n\twikibase:qualifierValue pqv:P813 ;\n\twikibase:reference pr:P813 ;\n\twikibase:referenceValue prv:P813 ;\n\twikibase:novalue wdno:P813 .\n\np:P813 a owl:ObjectProperty .\n\npsv:P813 a owl:ObjectProperty .\n\npqv:P813 a owl:ObjectProperty .\n\nprv:P813 a owl:ObjectProperty .\n\nwdt:P813 a owl:DatatypeProperty .\n\nps:P813 a owl:DatatypeProperty .\n\npq:P813 a owl:DatatypeProperty .\n\npr:P813 a owl:DatatypeProperty .\n\nwdno:P813 a owl:Class ;\n\towl:complementOf _:a84dea0fd38ed74f926ea4bdef778770 .\n\n_:a84dea0fd38ed74f926ea4bdef778770 a owl:Restriction ;\n\towl:onProperty wdt:P813 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q82575 a wikibase:Item ;\n\trdfs:label \"Integrated Taxonomic Information System\"@de ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@de ;\n\tschema:name \"Integrated Taxonomic Information System\"@de ;\n\trdfs:label \"Integrated Taxonomic Information System\"@en ;\n\tskos:prefLabel \"Integrated Taxonomic Information System\"@en ;\n\tschema:name \"Integrated Taxonomic Information System\"@en ;\n\tschema:description \"Projekt zur Standardisierung und Bereitstellung taxonomischer Informationen\"@de,\n\t\t\"authoritative taxonomic information on plants, animals, fungi, and microbes of North America and the world\"@en .\n\nwd:Q15241312 a wikibase:Item ;\n\trdfs:label \"Freebase-Datendump\"@de ;\n\tskos:prefLabel \"Freebase-Datendump\"@de ;\n\tschema:name \"Freebase-Datendump\"@de ;\n\trdfs:label \"Freebase Data Dumps\"@en ;\n\tskos:prefLabel \"Freebase Data Dumps\"@en ;\n\tschema:name \"Freebase Data Dumps\"@en ;\n\tschema:description \"Datenbankdumps des Google Knowledge Graph\"@de,\n\t\t\"dumps of the public part of Google's Knowledge Graph\"@en .\n\nwd:P577 a wikibase:Property ;\n\trdfs:label \"Veröffentlichungsdatum\"@de ;\n\tskos:prefLabel \"Veröffentlichungsdatum\"@de ;\n\tschema:name \"Veröffentlichungsdatum\"@de ;\n\trdfs:label \"publication date\"@en ;\n\tskos:prefLabel \"publication date\"@en ;\n\tschema:name \"publication date\"@en ;\n\tschema:description \"Zeitpunkt, an dem ein Werk (zuerst) veröffentlicht wurde; (aktualisierte Fassungen/Versionen haben ein eigenes Veröffentlichungsdatum)\"@de,\n\t\t\"date or point in time when a work or product was first published or released\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P577 ;\n\twikibase:claim p:P577 ;\n\twikibase:statementProperty ps:P577 ;\n\twikibase:statementValue psv:P577 ;\n\twikibase:qualifier pq:P577 ;\n\twikibase:qualifierValue pqv:P577 ;\n\twikibase:reference pr:P577 ;\n\twikibase:referenceValue prv:P577 ;\n\twikibase:novalue wdno:P577 .\n\np:P577 a owl:ObjectProperty .\n\npsv:P577 a owl:ObjectProperty .\n\npqv:P577 a owl:ObjectProperty .\n\nprv:P577 a owl:ObjectProperty .\n\nwdt:P577 a owl:DatatypeProperty .\n\nps:P577 a owl:DatatypeProperty .\n\npq:P577 a owl:DatatypeProperty .\n\npr:P577 a owl:DatatypeProperty .\n\nwdno:P577 a owl:Class ;\n\towl:complementOf _:eca5fcd2c546d0e0c20e05f61e0aa797 .\n\n_:eca5fcd2c546d0e0c20e05f61e0aa797 a owl:Restriction ;\n\towl:onProperty wdt:P577 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q82486 a wikibase:Item ;\n\trdfs:label \"Encyclopedia of Life\"@mul ;\n\tskos:prefLabel \"Encyclopedia of Life\"@mul ;\n\tschema:name \"Encyclopedia of Life\"@mul ;\n\tschema:description \"ein Kooperationsprojekt zur Erstellung einer Enzyklopädie, die alle in der Wissenschaft bekannten lebenden Arten dokumentiert.\"@de,\n\t\t\"collaborative project intended to create an encyclopedia documenting all living species known to science\"@en .\n\nwd:Q19544711 a wikibase:Item ;\n\trdfs:label \"Vascular Plants of Canada\"@de ;\n\tskos:prefLabel \"Vascular Plants of Canada\"@de ;\n\tschema:name \"Vascular Plants of Canada\"@de ;\n\trdfs:label \"Database of Vascular Plants of Canada\"@en ;\n\tskos:prefLabel \"Database of Vascular Plants of Canada\"@en ;\n\tschema:name \"Database of Vascular Plants of Canada\"@en ;\n\tschema:description \"community contributed taxonomic checklist of all vascular plants of Canada, Saint Pierre and Miquelon, and Greenland\"@en .\n\nwd:Q19576476 a wikibase:Item ;\n\trdfs:label \"GRIN Taxonomie der Pflanzen\"@de ;\n\tskos:prefLabel \"GRIN Taxonomie der Pflanzen\"@de ;\n\tschema:name \"GRIN Taxonomie der Pflanzen\"@de ;\n\trdfs:label \"GRIN Taxonomy for Plants\"@en ;\n\tskos:prefLabel \"GRIN Taxonomy for Plants\"@en ;\n\tschema:name \"GRIN Taxonomy for Plants\"@en ;\n\tschema:description \"taxonomische Datenbank des Germplasm Resources Information Network (GRIN)\"@de,\n\t\t\"Germplasm Resources Information Network\"@en .\n\nwd:Q19636200 a wikibase:Item ;\n\trdfs:label \"USDA Plants Database\"@de ;\n\tskos:prefLabel \"USDA Plants Database\"@de ;\n\tschema:name \"USDA Plants Database\"@de ;\n\trdfs:label \"United States Department of Agriculture Plants Database\"@en ;\n\tskos:prefLabel \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:name \"United States Department of Agriculture Plants Database\"@en ;\n\tschema:description \"database of plants found in the USA\"@en .\n\nwd:Q5460442 a wikibase:Item ;\n\trdfs:label \"Flora of China\"@de ;\n\tskos:prefLabel \"Flora of China\"@de ;\n\tschema:name \"Flora of China\"@de ;\n\trdfs:label \"Flora of China\"@en ;\n\tskos:prefLabel \"Flora of China\"@en ;\n\tschema:name \"Flora of China\"@en ;\n\tschema:description \"mehrteilige Publikation über die chinesische Flora\"@de,\n\t\t\"English-language multi-volume book and online database\"@en .\n\nwd:Q20425914 a wikibase:Item ;\n\trdfs:label \"Dyntaxa\"@de ;\n\tskos:prefLabel \"Dyntaxa\"@de ;\n\tschema:name \"Dyntaxa\"@de ;\n\trdfs:label \"Dyntaxa\"@en ;\n\tskos:prefLabel \"Dyntaxa\"@en ;\n\tschema:name \"Dyntaxa\"@en ;\n\tschema:description \"Schwedische Taxonomie-Datenbank\"@de,\n\t\t\"Swedish taxonomy database\"@en .\n\nwd:Q20862705 a wikibase:Item ;\n\trdfs:label \"African Plant Database\"@de ;\n\tskos:prefLabel \"African Plant Database\"@de ;\n\tschema:name \"African Plant Database\"@de ;\n\trdfs:label \"African Plant Database\"@en ;\n\tskos:prefLabel \"African Plant Database\"@en ;\n\tschema:name \"African Plant Database\"@en .\n\nwd:Q1531570 a wikibase:Item ;\n\trdfs:label \"Global Biodiversity Information Facility\"@de ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@de ;\n\tschema:name \"Global Biodiversity Information Facility\"@de ;\n\trdfs:label \"Global Biodiversity Information Facility\"@mul ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@mul ;\n\tschema:name \"Global Biodiversity Information Facility\"@mul ;\n\trdfs:label \"Global Biodiversity Information Facility\"@en ;\n\tskos:prefLabel \"Global Biodiversity Information Facility\"@en ;\n\tschema:name \"Global Biodiversity Information Facility\"@en ;\n\tschema:description \"internationale Organisation\"@de,\n\t\t\"aggregator of scientific data on biodiversity; data portal\"@en .\n\nwd:Q23893915 a wikibase:Item ;\n\trdfs:label \"New Zealand Organisms Register\"@de ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@de ;\n\tschema:name \"New Zealand Organisms Register\"@de ;\n\trdfs:label \"New Zealand Organisms Register\"@en ;\n\tskos:prefLabel \"New Zealand Organisms Register\"@en ;\n\tschema:name \"New Zealand Organisms Register\"@en ;\n\tschema:description \"Datenbank\"@de,\n\t\t\"catalogue of scientific names of New Zealand biota\"@en .\n\nwd:Q2246990 a wikibase:Item ;\n\trdfs:label \"Nederlands Soortenregister\"@de ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@de ;\n\tschema:name \"Nederlands Soortenregister\"@de ;\n\trdfs:label \"Nederlands Soortenregister\"@en ;\n\tskos:prefLabel \"Nederlands Soortenregister\"@en ;\n\tschema:name \"Nederlands Soortenregister\"@en ;\n\tschema:description \"gibt einen Überblick über die Biodiversität der Niederlande\"@de,\n\t\t\"Dutch database of species\"@en .\n\nwd:Q113193719 a wikibase:Item ;\n\trdfs:label \"A new list of threatened woody species in China under future global change scenarios\"@en ;\n\tskos:prefLabel \"A new list of threatened woody species in China under future global change scenarios\"@en ;\n\tschema:name \"A new list of threatened woody species in China under future global change scenarios\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"scientific article published in 2022\"@en .\n\nwd:Q56910515 a wikibase:Item ;\n\trdfs:label \"Families and genera of Chinese angiosperms: a synoptic classification based on APG III\"@en ;\n\tskos:prefLabel \"Families and genera of Chinese angiosperms: a synoptic classification based on APG III\"@en ;\n\tschema:name \"Families and genera of Chinese angiosperms: a synoptic classification based on APG III\"@en ;\n\tschema:description \"im Jahr 2015 veröffentlichter wissenschaftlicher Artikel\"@de,\n\t\t\"journal article from 'Biodiversity Science' published in 2015\"@en .\n\nwd:Q113396612 a wikibase:Item ;\n\trdfs:label \"A dataset on inventory and geographical distributions of vascular plants in Beijing, China\"@en ;\n\tskos:prefLabel \"A dataset on inventory and geographical distributions of vascular plants in Beijing, China\"@en ;\n\tschema:name \"A dataset on inventory and geographical distributions of vascular plants in Beijing, China\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article, dataset\"@en .\n\nwd:Q113417333 a wikibase:Item ;\n\trdfs:label \"Checklist of tracheophyte in Heilongjiang Province\"@en ;\n\tskos:prefLabel \"Checklist of tracheophyte in Heilongjiang Province\"@en ;\n\tschema:name \"Checklist of tracheophyte in Heilongjiang Province\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article\"@en .\n\nwd:Q113427533 a wikibase:Item ;\n\trdfs:label \"Species cataloging of the seed plants in Zhejiang, East China\"@en ;\n\tskos:prefLabel \"Species cataloging of the seed plants in Zhejiang, East China\"@en ;\n\tschema:name \"Species cataloging of the seed plants in Zhejiang, East China\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article\"@en .\n\nwd:Q113432740 a wikibase:Item ;\n\trdfs:label \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tskos:prefLabel \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:name \"A checklist of vascular plants in Shaanxi Province, China (Version 2021)\"@en ;\n\tschema:description \"wissenschaftlicher Artikel\"@de,\n\t\t\"journal article\"@en .\n\nwd:Q19810430 a wikibase:Item ;\n\trdfs:label \"eFloras\"@en ;\n\tskos:prefLabel \"eFloras\"@en ;\n\tschema:name \"eFloras\"@en ;\n\tschema:description \"website and online database of floristic data\"@en .\n\nwd:P854 a wikibase:Property ;\n\trdfs:label \"URL der Fundstelle\"@de ;\n\tskos:prefLabel \"URL der Fundstelle\"@de ;\n\tschema:name \"URL der Fundstelle\"@de ;\n\trdfs:label \"reference URL\"@en ;\n\tskos:prefLabel \"reference URL\"@en ;\n\tschema:name \"reference URL\"@en ;\n\tschema:description \"Internetadresse für Quellenangaben. Benutze P4656 für Interwiki-Links\"@de,\n\t\t\"should be used for Internet URLs as references. Use \\\"Wikimedia import URL\\\" (P4656) for imports from WMF sites\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P854 ;\n\twikibase:claim p:P854 ;\n\twikibase:statementProperty ps:P854 ;\n\twikibase:statementValue psv:P854 ;\n\twikibase:qualifier pq:P854 ;\n\twikibase:qualifierValue pqv:P854 ;\n\twikibase:reference pr:P854 ;\n\twikibase:referenceValue prv:P854 ;\n\twikibase:novalue wdno:P854 .\n\np:P854 a owl:ObjectProperty .\n\npsv:P854 a owl:ObjectProperty .\n\npqv:P854 a owl:ObjectProperty .\n\nprv:P854 a owl:ObjectProperty .\n\nwdt:P854 a owl:ObjectProperty .\n\nps:P854 a owl:ObjectProperty .\n\npq:P854 a owl:ObjectProperty .\n\npr:P854 a owl:ObjectProperty .\n\nwdno:P854 a owl:Class ;\n\towl:complementOf _:7317e7e5a3edc1980ecfe7616bb5fa1d .\n\n_:7317e7e5a3edc1980ecfe7616bb5fa1d a owl:Restriction ;\n\towl:onProperty wdt:P854 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P356 a wikibase:Property ;\n\trdfs:label \"DOI\"@de ;\n\tskos:prefLabel \"DOI\"@de ;\n\tschema:name \"DOI\"@de ;\n\trdfs:label \"DOI\"@mul ;\n\tskos:prefLabel \"DOI\"@mul ;\n\tschema:name \"DOI\"@mul ;\n\trdfs:label \"DOI\"@en ;\n\tskos:prefLabel \"DOI\"@en ;\n\tschema:name \"DOI\"@en ;\n\tschema:description \"digitaler Identifikator für physische, digitale oder abstrakte Objekte\"@de,\n\t\t\"serial code used to uniquely identify digital objects like academic papers (use upper case letters only)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P356 ;\n\twikibase:claim p:P356 ;\n\twikibase:statementProperty ps:P356 ;\n\twikibase:statementValue psv:P356 ;\n\twikibase:qualifier pq:P356 ;\n\twikibase:qualifierValue pqv:P356 ;\n\twikibase:reference pr:P356 ;\n\twikibase:referenceValue prv:P356 ;\n\twikibase:novalue wdno:P356 ;\n\twikibase:directClaimNormalized wdtn:P356 ;\n\twikibase:statementValueNormalized psn:P356 ;\n\twikibase:qualifierValueNormalized pqn:P356 ;\n\twikibase:referenceValueNormalized prn:P356 .\n\np:P356 a owl:ObjectProperty .\n\npsv:P356 a owl:ObjectProperty .\n\npqv:P356 a owl:ObjectProperty .\n\nprv:P356 a owl:ObjectProperty .\n\nwdt:P356 a owl:DatatypeProperty .\n\nps:P356 a owl:DatatypeProperty .\n\npq:P356 a owl:DatatypeProperty .\n\npr:P356 a owl:DatatypeProperty .\n\npsn:P356 a owl:ObjectProperty .\n\npqn:P356 a owl:ObjectProperty .\n\nprn:P356 a owl:ObjectProperty .\n\nwdtn:P356 a owl:ObjectProperty .\n\nwdno:P356 a owl:Class ;\n\towl:complementOf _:7c656241912b24503f517964814479d9 .\n\n_:7c656241912b24503f517964814479d9 a owl:Restriction ;\n\towl:onProperty wdt:P356 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q8447 a wikibase:Item ;\n\trdfs:label \"französischsprachige Wikipedia\"@de ;\n\tskos:prefLabel \"französischsprachige Wikipedia\"@de ;\n\tschema:name \"französischsprachige Wikipedia\"@de ;\n\trdfs:label \"French Wikipedia\"@en ;\n\tskos:prefLabel \"French Wikipedia\"@en ;\n\tschema:name \"French Wikipedia\"@en ;\n\tschema:description \"Ausgabe der freien Online-Enzyklopädie Wikipedia in französischer Sprache\"@de,\n\t\t\"French-language edition of Wikipedia\"@en .\n\nwd:P143 a wikibase:Property ;\n\trdfs:label \"importiert aus Wikimedia-Projekt\"@de ;\n\tskos:prefLabel \"importiert aus Wikimedia-Projekt\"@de ;\n\tschema:name \"importiert aus Wikimedia-Projekt\"@de ;\n\trdfs:label \"imported from Wikimedia project\"@en ;\n\tskos:prefLabel \"imported from Wikimedia project\"@en ;\n\tschema:name \"imported from Wikimedia project\"@en ;\n\tschema:description \"Angaben übernommen aus (nur für Fundstellen)\"@de,\n\t\t\"source of this claim's value; used in references section by bots or humans importing data from Wikimedia projects\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P143 ;\n\twikibase:claim p:P143 ;\n\twikibase:statementProperty ps:P143 ;\n\twikibase:statementValue psv:P143 ;\n\twikibase:qualifier pq:P143 ;\n\twikibase:qualifierValue pqv:P143 ;\n\twikibase:reference pr:P143 ;\n\twikibase:referenceValue prv:P143 ;\n\twikibase:novalue wdno:P143 .\n\np:P143 a owl:ObjectProperty .\n\npsv:P143 a owl:ObjectProperty .\n\npqv:P143 a owl:ObjectProperty .\n\nprv:P143 a owl:ObjectProperty .\n\nwdt:P143 a owl:ObjectProperty .\n\nps:P143 a owl:ObjectProperty .\n\npq:P143 a owl:ObjectProperty .\n\npr:P143 a owl:ObjectProperty .\n\nwdno:P143 a owl:Class ;\n\towl:complementOf _:66a2156e9cbfe8d655274b862fca1b59 .\n\n_:66a2156e9cbfe8d655274b862fca1b59 a owl:Restriction ;\n\towl:onProperty wdt:P143 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q5460267 a wikibase:Item ;\n\trdfs:label \"FloraBase\"@de ;\n\tskos:prefLabel \"FloraBase\"@de ;\n\tschema:name \"FloraBase\"@de ;\n\trdfs:label \"FloraBase\"@en ;\n\tskos:prefLabel \"FloraBase\"@en ;\n\tschema:name \"FloraBase\"@en ;\n\tschema:description \"online database of Western Australian flora\"@en .\n\nwd:Q2578548 a wikibase:Item ;\n\trdfs:label \"Tropicos\"@de ;\n\tskos:prefLabel \"Tropicos\"@de ;\n\tschema:name \"Tropicos\"@de ;\n\trdfs:label \"Tropicos\"@mul ;\n\tskos:prefLabel \"Tropicos\"@mul ;\n\tschema:name \"Tropicos\"@mul ;\n\trdfs:label \"Tropicos\"@en ;\n\tskos:prefLabel \"Tropicos\"@en ;\n\tschema:name \"Tropicos\"@en ;\n\tschema:description \"database on tropical plants, mainly the ecozone Neotropica\"@en .\n\nwd:Q131454 a wikibase:Item ;\n\trdfs:label \"Library of Congress\"@de ;\n\tskos:prefLabel \"Library of Congress\"@de ;\n\tschema:name \"Library of Congress\"@de ;\n\trdfs:label \"Library of Congress\"@mul ;\n\tskos:prefLabel \"Library of Congress\"@mul ;\n\tschema:name \"Library of Congress\"@mul ;\n\trdfs:label \"Library of Congress\"@en ;\n\tskos:prefLabel \"Library of Congress\"@en ;\n\tschema:name \"Library of Congress\"@en ;\n\tschema:description \"Forschungsbibliothek des Kongresses der Vereinigten Staaten\"@de,\n\t\t\"(de facto) national library of the United States of America\"@en .\n\nwd:Q6970988 a wikibase:Item ;\n\trdfs:label \"National Biodiversity Network\"@de ;\n\tskos:prefLabel \"National Biodiversity Network\"@de ;\n\tschema:name \"National Biodiversity Network\"@de ;\n\trdfs:label \"National Biodiversity Network\"@en ;\n\tskos:prefLabel \"National Biodiversity Network\"@en ;\n\tschema:name \"National Biodiversity Network\"@en ;\n\tschema:description \"UK biodiversity database\"@en .\n\nwd:Q16583225 a wikibase:Item ;\n\trdfs:label \"Nuovo soggettario\"@de ;\n\tskos:prefLabel \"Nuovo soggettario\"@de ;\n\tschema:name \"Nuovo soggettario\"@de ;\n\trdfs:label \"Nuovo soggettario\"@en ;\n\tskos:prefLabel \"Nuovo soggettario\"@en ;\n\tschema:name \"Nuovo soggettario\"@en ;\n\tschema:description \"Sacherschließungssystem für italienische Bibliotheken\"@de,\n\t\t\"thesaurus realised and run by National Central Library of Florence\"@en .\n\nwd:P1810 a wikibase:Property ;\n\trdfs:label \"genannt als\"@de ;\n\tskos:prefLabel \"genannt als\"@de ;\n\tschema:name \"genannt als\"@de ;\n\trdfs:label \"subject named as\"@en ;\n\tskos:prefLabel \"subject named as\"@en ;\n\tschema:name \"subject named as\"@en ;\n\tschema:description \"Name, unter dem ein Subjekt in einer Datenbank geführt wird oder als Mitwirkender an einem Werk genannt wird\"@de,\n\t\t\"name by which a subject is recorded in a database, mentioned as a contributor of a work, or is referred to in a particular context\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1810 ;\n\twikibase:claim p:P1810 ;\n\twikibase:statementProperty ps:P1810 ;\n\twikibase:statementValue psv:P1810 ;\n\twikibase:qualifier pq:P1810 ;\n\twikibase:qualifierValue pqv:P1810 ;\n\twikibase:reference pr:P1810 ;\n\twikibase:referenceValue prv:P1810 ;\n\twikibase:novalue wdno:P1810 .\n\np:P1810 a owl:ObjectProperty .\n\npsv:P1810 a owl:ObjectProperty .\n\npqv:P1810 a owl:ObjectProperty .\n\nprv:P1810 a owl:ObjectProperty .\n\nwdt:P1810 a owl:DatatypeProperty .\n\nps:P1810 a owl:DatatypeProperty .\n\npq:P1810 a owl:DatatypeProperty .\n\npr:P1810 a owl:DatatypeProperty .\n\nwdno:P1810 a owl:Class ;\n\towl:complementOf _:1d6e1ecf4f0164f6a3471dd66d38c9d8 .\n\n_:1d6e1ecf4f0164f6a3471dd66d38c9d8 a owl:Restriction ;\n\towl:onProperty wdt:P1810 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q19993801 a wikibase:Item ;\n\trdfs:label \"Birnbaum (Pauly-Wissowa)\"@de ;\n\tskos:prefLabel \"Birnbaum (Pauly-Wissowa)\"@de ;\n\tschema:name \"Birnbaum (Pauly-Wissowa)\"@de ;\n\trdfs:label \"Birnbaum (Pauly-Wissowa)\"@mul ;\n\tskos:prefLabel \"Birnbaum (Pauly-Wissowa)\"@mul ;\n\tschema:name \"Birnbaum (Pauly-Wissowa)\"@mul ;\n\trdfs:label \"Birnbaum (Pauly-Wissowa)\"@en ;\n\tskos:prefLabel \"Birnbaum (Pauly-Wissowa)\"@en ;\n\tschema:name \"Birnbaum (Pauly-Wissowa)\"@en ;\n\tschema:description \"enzyklopädischer Artikel in Paulys Realencyclopädie der classischen Altertumswissenschaft (RE)\"@de,\n\t\t\"encyclopedic article in Paulys Realencyclopädie der classischen Altertumswissenschaft (RE)\"@en .\n\nwd:P805 a wikibase:Property ;\n\trdfs:label \"beschreibendes Datenobjekt\"@de ;\n\tskos:prefLabel \"beschreibendes Datenobjekt\"@de ;\n\tschema:name \"beschreibendes Datenobjekt\"@de ;\n\trdfs:label \"statement is subject of\"@en ;\n\tskos:prefLabel \"statement is subject of\"@en ;\n\tschema:name \"statement is subject of\"@en ;\n\tschema:description \"(nur als Qualifikator) Datenobjekt zum Thema der Aussage\"@de,\n\t\t\"(qualifying) item that describes the relation identified in this statement\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P805 ;\n\twikibase:claim p:P805 ;\n\twikibase:statementProperty ps:P805 ;\n\twikibase:statementValue psv:P805 ;\n\twikibase:qualifier pq:P805 ;\n\twikibase:qualifierValue pqv:P805 ;\n\twikibase:reference pr:P805 ;\n\twikibase:referenceValue prv:P805 ;\n\twikibase:novalue wdno:P805 .\n\np:P805 a owl:ObjectProperty .\n\npsv:P805 a owl:ObjectProperty .\n\npqv:P805 a owl:ObjectProperty .\n\nprv:P805 a owl:ObjectProperty .\n\nwdt:P805 a owl:ObjectProperty .\n\nps:P805 a owl:ObjectProperty .\n\npq:P805 a owl:ObjectProperty .\n\npr:P805 a owl:ObjectProperty .\n\nwdno:P805 a owl:Class ;\n\towl:complementOf _:b0057da68fba9959eba43619c1638733 .\n\n_:b0057da68fba9959eba43619c1638733 a owl:Restriction ;\n\towl:onProperty wdt:P805 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q96599327 a wikibase:Item .\n\nwd:Q107403730 a wikibase:Item .\n\nwd:Q120641649 a wikibase:Item ;\n\tschema:description \"entry in Great Soviet Encyclopedia, 1st edition (1926–1947)\"@en .\n\nwd:Q84692162 a wikibase:Item ;\n\trdfs:label \"1911 Encyclopædia Britannica/Pear\"@en ;\n\tskos:prefLabel \"1911 Encyclopædia Britannica/Pear\"@en ;\n\tschema:name \"1911 Encyclopædia Britannica/Pear\"@en ;\n\tschema:description \"enzyklopädischer Artikel\"@de,\n\t\t\"encyclopedia article\"@en .\n\nwd:Q124013478 a wikibase:Item ;\n\trdfs:label \"The New Student's Reference Work/Pear\"@en ;\n\tskos:prefLabel \"The New Student's Reference Work/Pear\"@en ;\n\tschema:name \"The New Student's Reference Work/Pear\"@en .\n\nwd:Q136511599 a wikibase:Item ;\n\trdfs:label \"The New International Encyclopædia/Pyrus\"@en ;\n\tskos:prefLabel \"The New International Encyclopædia/Pyrus\"@en ;\n\tschema:name \"The New International Encyclopædia/Pyrus\"@en .\n\nwd:Q47542613 a wikibase:Item ;\n\trdfs:label \"Plants of the World Online\"@de ;\n\tskos:prefLabel \"Plants of the World Online\"@de ;\n\tschema:name \"Plants of the World Online\"@de ;\n\trdfs:label \"Plants of the World Online\"@en ;\n\tskos:prefLabel \"Plants of the World Online\"@en ;\n\tschema:name \"Plants of the World Online\"@en ;\n\tschema:description \"online database of the world's plants\"@en .\n\nwd:Q51885189 a wikibase:Item ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@de ;\n\trdfs:label \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tskos:prefLabel \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:name \"Interim Register of Marine and Nonmarine Genera\"@en ;\n\tschema:description \"taxonomic database\"@en .\n\nwd:P2924 a wikibase:Property ;\n\trdfs:label \"Große-Russische-Enzyklopädie-Kennung\"@de ;\n\tskos:prefLabel \"Große-Russische-Enzyklopädie-Kennung\"@de ;\n\tschema:name \"Große-Russische-Enzyklopädie-Kennung\"@de ;\n\trdfs:label \"Great Russian Encyclopedia Online (2017)\"@mul ;\n\tskos:prefLabel \"Great Russian Encyclopedia Online (2017)\"@mul ;\n\tschema:name \"Great Russian Encyclopedia Online (2017)\"@mul ;\n\trdfs:label \"Great Russian Encyclopedia Online ID (2017)\"@en ;\n\tskos:prefLabel \"Great Russian Encyclopedia Online ID (2017)\"@en ;\n\tschema:name \"Great Russian Encyclopedia Online ID (2017)\"@en ;\n\tschema:description \"Identifikator eines Eintrags auf der offiziellen Website der Großen Russischen Enzyklopädie\"@de,\n\t\t\"identifier for an entry on old.bigenc.ru, the official site of the Great Russian Encyclopedia Online 2014–2017 (current version of bigenc.ru is P11514)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2924 ;\n\twikibase:claim p:P2924 ;\n\twikibase:statementProperty ps:P2924 ;\n\twikibase:statementValue psv:P2924 ;\n\twikibase:qualifier pq:P2924 ;\n\twikibase:qualifierValue pqv:P2924 ;\n\twikibase:reference pr:P2924 ;\n\twikibase:referenceValue prv:P2924 ;\n\twikibase:novalue wdno:P2924 ;\n\twikibase:directClaimNormalized wdtn:P2924 ;\n\twikibase:statementValueNormalized psn:P2924 ;\n\twikibase:qualifierValueNormalized pqn:P2924 ;\n\twikibase:referenceValueNormalized prn:P2924 .\n\np:P2924 a owl:ObjectProperty .\n\npsv:P2924 a owl:ObjectProperty .\n\npqv:P2924 a owl:ObjectProperty .\n\nprv:P2924 a owl:ObjectProperty .\n\nwdt:P2924 a owl:DatatypeProperty .\n\nps:P2924 a owl:DatatypeProperty .\n\npq:P2924 a owl:DatatypeProperty .\n\npr:P2924 a owl:DatatypeProperty .\n\npsn:P2924 a owl:ObjectProperty .\n\npqn:P2924 a owl:ObjectProperty .\n\nprn:P2924 a owl:ObjectProperty .\n\nwdtn:P2924 a owl:ObjectProperty .\n\nwdno:P2924 a owl:Class ;\n\towl:complementOf _:6b3043e2d784bcf6151a060f4982b663 .\n\n_:6b3043e2d784bcf6151a060f4982b663 a owl:Restriction ;\n\towl:onProperty wdt:P2924 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q123562959 a wikibase:Item ;\n\trdfs:label \"redirected to GRE portal\"@en ;\n\tskos:prefLabel \"redirected to GRE portal\"@en ;\n\tschema:name \"redirected to GRE portal\"@en ;\n\tschema:description \"article on the old version of the encyclopedia was deactivated and now its ID is a redirect to the Great Russian Encyclopedia portal\"@en .\n\nwd:P2241 a wikibase:Property ;\n\trdfs:label \"Grund für die Zurückweisung\"@de ;\n\tskos:prefLabel \"Grund für die Zurückweisung\"@de ;\n\tschema:name \"Grund für die Zurückweisung\"@de ;\n\trdfs:label \"reason for deprecated rank\"@en ;\n\tskos:prefLabel \"reason for deprecated rank\"@en ;\n\tschema:name \"reason for deprecated rank\"@en ;\n\tschema:description \"Qualifikator zur Anzeige des Grundes, aus dem eine Aussage im Rang herabgesetzt wurde\"@de,\n\t\t\"qualifier to indicate why a particular statement should have deprecated rank\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2241 ;\n\twikibase:claim p:P2241 ;\n\twikibase:statementProperty ps:P2241 ;\n\twikibase:statementValue psv:P2241 ;\n\twikibase:qualifier pq:P2241 ;\n\twikibase:qualifierValue pqv:P2241 ;\n\twikibase:reference pr:P2241 ;\n\twikibase:referenceValue prv:P2241 ;\n\twikibase:novalue wdno:P2241 .\n\np:P2241 a owl:ObjectProperty .\n\npsv:P2241 a owl:ObjectProperty .\n\npqv:P2241 a owl:ObjectProperty .\n\nprv:P2241 a owl:ObjectProperty .\n\nwdt:P2241 a owl:ObjectProperty .\n\nps:P2241 a owl:ObjectProperty .\n\npq:P2241 a owl:ObjectProperty .\n\npr:P2241 a owl:ObjectProperty .\n\nwdno:P2241 a owl:Class ;\n\towl:complementOf _:fcd7b2b5fef47b34b991f1fe543dfcb2 .\n\n_:fcd7b2b5fef47b34b991f1fe543dfcb2 a owl:Restriction ;\n\towl:onProperty wdt:P2241 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q45403344 a wikibase:Item ;\n\trdfs:label \"Weiterleitung\"@de ;\n\tskos:prefLabel \"Weiterleitung\"@de ;\n\tschema:name \"Weiterleitung\"@de ;\n\trdfs:label \"redirect\"@en ;\n\tskos:prefLabel \"redirect\"@en ;\n\tschema:name \"redirect\"@en ;\n\tschema:description \"Zurückweisungsgrund, wenn dieser Identifikator auf einen anderen weiterleitet\"@de,\n\t\t\"deprecation because this identifier redirects to another identifier\"@en .\n\nwd:Q54859980 a wikibase:Item ;\n\trdfs:label \"Portál informačního systému ochrany přírody\"@en ;\n\tskos:prefLabel \"Portál informačního systému ochrany přírody\"@en ;\n\tschema:name \"Portál informačního systému ochrany přírody\"@en .\n\nwd:Q167402 a wikibase:Item ;\n\trdfs:label \"Australian Plant Name Index\"@de ;\n\tskos:prefLabel \"Australian Plant Name Index\"@de ;\n\tschema:name \"Australian Plant Name Index\"@de ;\n\trdfs:label \"Australian Plant Name Index\"@en ;\n\tskos:prefLabel \"Australian Plant Name Index\"@en ;\n\tschema:name \"Australian Plant Name Index\"@en ;\n\tschema:description \"Botanische Online-Datenbank\"@de,\n\t\t\"database of Australian plant names\"@en .\n\nwd:Q58380943 a wikibase:Item ;\n\trdfs:label \"VicFlora\"@de ;\n\tskos:prefLabel \"VicFlora\"@de ;\n\tschema:name \"VicFlora\"@de ;\n\trdfs:label \"VicFlora\"@en ;\n\tskos:prefLabel \"VicFlora\"@en ;\n\tschema:name \"VicFlora\"@en ;\n\tschema:description \"Flora of Victoria, Australia online database\"@en .\n\nwd:Q64007131 a wikibase:Item ;\n\trdfs:label \"Belgian Species List\"@de ;\n\tskos:prefLabel \"Belgian Species List\"@de ;\n\tschema:name \"Belgian Species List\"@de ;\n\trdfs:label \"Belgian Species List\"@en ;\n\tskos:prefLabel \"Belgian Species List\"@en ;\n\tschema:name \"Belgian Species List\"@en ;\n\tschema:description \"taxonomy database\"@en .\n\nwd:P2067 a wikibase:Property ;\n\trdfs:label \"Masse\"@de ;\n\tskos:prefLabel \"Masse\"@de ;\n\tschema:name \"Masse\"@de ;\n\trdfs:label \"mass\"@en ;\n\tskos:prefLabel \"mass\"@en ;\n\tschema:name \"mass\"@en ;\n\tschema:description \"Masse des Objekts\"@de,\n\t\t\"mass (in colloquial usage also known as weight) of the item\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2067 ;\n\twikibase:claim p:P2067 ;\n\twikibase:statementProperty ps:P2067 ;\n\twikibase:statementValue psv:P2067 ;\n\twikibase:qualifier pq:P2067 ;\n\twikibase:qualifierValue pqv:P2067 ;\n\twikibase:reference pr:P2067 ;\n\twikibase:referenceValue prv:P2067 ;\n\twikibase:novalue wdno:P2067 ;\n\twikibase:directClaimNormalized wdtn:P2067 ;\n\twikibase:statementValueNormalized psn:P2067 ;\n\twikibase:qualifierValueNormalized pqn:P2067 ;\n\twikibase:referenceValueNormalized prn:P2067 .\n\np:P2067 a owl:ObjectProperty .\n\npsv:P2067 a owl:ObjectProperty .\n\npqv:P2067 a owl:ObjectProperty .\n\nprv:P2067 a owl:ObjectProperty .\n\nwdt:P2067 a owl:DatatypeProperty .\n\nps:P2067 a owl:DatatypeProperty .\n\npq:P2067 a owl:DatatypeProperty .\n\npr:P2067 a owl:DatatypeProperty .\n\npsn:P2067 a owl:ObjectProperty .\n\npqn:P2067 a owl:ObjectProperty .\n\nprn:P2067 a owl:ObjectProperty .\n\nwdtn:P2067 a owl:DatatypeProperty .\n\nwdno:P2067 a owl:Class ;\n\towl:complementOf _:3d3a130459ca63e754c24766df03efa4 .\n\n_:3d3a130459ca63e754c24766df03efa4 a owl:Restriction ;\n\towl:onProperty wdt:P2067 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q501542 a wikibase:Item ;\n\trdfs:label \"Landwirtschaftsministerium der Vereinigten Staaten\"@de ;\n\tskos:prefLabel \"Landwirtschaftsministerium der Vereinigten Staaten\"@de ;\n\tschema:name \"Landwirtschaftsministerium der Vereinigten Staaten\"@de ;\n\trdfs:label \"United States Department of Agriculture\"@en ;\n\tskos:prefLabel \"United States Department of Agriculture\"@en ;\n\tschema:name \"United States Department of Agriculture\"@en ;\n\tschema:description \"Ministerium der USA\"@de,\n\t\t\"department of the US government\"@en .\n\nwd:P123 a wikibase:Property ;\n\trdfs:label \"Verlag\"@de ;\n\tskos:prefLabel \"Verlag\"@de ;\n\tschema:name \"Verlag\"@de ;\n\trdfs:label \"publisher\"@en ;\n\tskos:prefLabel \"publisher\"@en ;\n\tschema:name \"publisher\"@en ;\n\tschema:description \"Namen des Medienunternehmens, das die Publikation auf den Markt gebracht hat\"@de,\n\t\t\"organization or person responsible for publishing a work, such as a book, periodical, printed music, podcast, game or software\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P123 ;\n\twikibase:claim p:P123 ;\n\twikibase:statementProperty ps:P123 ;\n\twikibase:statementValue psv:P123 ;\n\twikibase:qualifier pq:P123 ;\n\twikibase:qualifierValue pqv:P123 ;\n\twikibase:reference pr:P123 ;\n\twikibase:referenceValue prv:P123 ;\n\twikibase:novalue wdno:P123 .\n\np:P123 a owl:ObjectProperty .\n\npsv:P123 a owl:ObjectProperty .\n\npqv:P123 a owl:ObjectProperty .\n\nprv:P123 a owl:ObjectProperty .\n\nwdt:P123 a owl:ObjectProperty .\n\nps:P123 a owl:ObjectProperty .\n\npq:P123 a owl:ObjectProperty .\n\npr:P123 a owl:ObjectProperty .\n\nwdno:P123 a owl:Class ;\n\towl:complementOf _:920b66a59b0d9c7fcb39820893f26e8a .\n\n_:920b66a59b0d9c7fcb39820893f26e8a a owl:Restriction ;\n\towl:onProperty wdt:P123 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:P1978 a wikibase:Property ;\n\trdfs:label \"NDB-Nummer\"@de ;\n\tskos:prefLabel \"NDB-Nummer\"@de ;\n\tschema:name \"NDB-Nummer\"@de ;\n\trdfs:label \"USDA NDB number\"@en ;\n\tskos:prefLabel \"USDA NDB number\"@en ;\n\tschema:name \"USDA NDB number\"@en ;\n\tschema:description \"Ident eines Lebensmittels gemäß United States Department of Agriculture 'National Nutrient Database'\"@de,\n\t\t\"identifier for a food item in the United States Department of Agriculture National Nutrient Database\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P1978 ;\n\twikibase:claim p:P1978 ;\n\twikibase:statementProperty ps:P1978 ;\n\twikibase:statementValue psv:P1978 ;\n\twikibase:qualifier pq:P1978 ;\n\twikibase:qualifierValue pqv:P1978 ;\n\twikibase:reference pr:P1978 ;\n\twikibase:referenceValue prv:P1978 ;\n\twikibase:novalue wdno:P1978 ;\n\twikibase:directClaimNormalized wdtn:P1978 ;\n\twikibase:statementValueNormalized psn:P1978 ;\n\twikibase:qualifierValueNormalized pqn:P1978 ;\n\twikibase:referenceValueNormalized prn:P1978 .\n\np:P1978 a owl:ObjectProperty .\n\npsv:P1978 a owl:ObjectProperty .\n\npqv:P1978 a owl:ObjectProperty .\n\nprv:P1978 a owl:ObjectProperty .\n\nwdt:P1978 a owl:DatatypeProperty .\n\nps:P1978 a owl:DatatypeProperty .\n\npq:P1978 a owl:DatatypeProperty .\n\npr:P1978 a owl:DatatypeProperty .\n\npsn:P1978 a owl:ObjectProperty .\n\npqn:P1978 a owl:ObjectProperty .\n\nprn:P1978 a owl:ObjectProperty .\n\nwdtn:P1978 a owl:ObjectProperty .\n\nwdno:P1978 a owl:Class ;\n\towl:complementOf _:01ca0e837ce4471788143d8fc4e2864a .\n\n_:01ca0e837ce4471788143d8fc4e2864a a owl:Restriction ;\n\towl:onProperty wdt:P1978 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q30 a wikibase:Item ;\n\trdfs:label \"Vereinigte Staaten\"@de ;\n\tskos:prefLabel \"Vereinigte Staaten\"@de ;\n\tschema:name \"Vereinigte Staaten\"@de ;\n\trdfs:label \"United States\"@en ;\n\tskos:prefLabel \"United States\"@en ;\n\tschema:name \"United States\"@en ;\n\tschema:description \"Staat in Nordamerika\"@de,\n\t\t\"country located primarily in North America\"@en .\n\nwd:Q64139102 a wikibase:Item ;\n\trdfs:label \"KBpedia\"@de ;\n\tskos:prefLabel \"KBpedia\"@de ;\n\tschema:name \"KBpedia\"@de ;\n\trdfs:label \"KBpedia\"@en ;\n\tskos:prefLabel \"KBpedia\"@en ;\n\tschema:name \"KBpedia\"@en ;\n\tschema:description \"Ontologie\"@de,\n\t\t\"free ontology aimed at making data and knowledge interoperable for machine learning\"@en .\n\nwd:Q77076820 a wikibase:Item ;\n\trdfs:label \"World Flora Online\"@de ;\n\tskos:prefLabel \"World Flora Online\"@de ;\n\tschema:name \"World Flora Online\"@de ;\n\trdfs:label \"World Flora Online\"@mul ;\n\tskos:prefLabel \"World Flora Online\"@mul ;\n\tschema:name \"World Flora Online\"@mul ;\n\trdfs:label \"World Flora Online\"@en ;\n\tskos:prefLabel \"World Flora Online\"@en ;\n\tschema:name \"World Flora Online\"@en ;\n\tschema:description \"Online-Florenwerk, Nachfolger der „Plant List“\"@de,\n\t\t\"online flora for plants\"@en .\n\nwd:Q105527638 a wikibase:Item ;\n\trdfs:label \"Open Tree of Life, Version 3.2\"@de ;\n\tskos:prefLabel \"Open Tree of Life, Version 3.2\"@de ;\n\tschema:name \"Open Tree of Life, Version 3.2\"@de ;\n\trdfs:label \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tskos:prefLabel \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:name \"Open Tree of Life reference taxonomy version 3.2\"@en ;\n\tschema:description \"version of Open Tree of Life reference taxonomy\"@en .\n\nwd:Q39893449 a wikibase:Item ;\n\trdfs:label \"exakte Übereinstimmung\"@de ;\n\tskos:prefLabel \"exakte Übereinstimmung\"@de ;\n\tschema:name \"exakte Übereinstimmung\"@de ;\n\trdfs:label \"exact match\"@en ;\n\tskos:prefLabel \"exact match\"@en ;\n\tschema:name \"exact match\"@en ;\n\tschema:description \"SKOS mapping relation (for use with P4390): two concepts have equivalent meaning, and the link can be exploited across a wide range of applications and schemes; the link is meant to be transitive\"@en .\n\nwd:P4390 a wikibase:Property ;\n\trdfs:label \"Mapping-Relation\"@de ;\n\tskos:prefLabel \"Mapping-Relation\"@de ;\n\tschema:name \"Mapping-Relation\"@de ;\n\trdfs:label \"mapping relation type\"@en ;\n\tskos:prefLabel \"mapping relation type\"@en ;\n\tschema:name \"mapping relation type\"@en ;\n\tschema:description \"genauere Qualifizierung der Beziehung zu einem externen Identifikator mit Hilfe von SKOS\"@de,\n\t\t\"qualifier to more precisely define the relation of the item to the external identifier using SKOS\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4390 ;\n\twikibase:claim p:P4390 ;\n\twikibase:statementProperty ps:P4390 ;\n\twikibase:statementValue psv:P4390 ;\n\twikibase:qualifier pq:P4390 ;\n\twikibase:qualifierValue pqv:P4390 ;\n\twikibase:reference pr:P4390 ;\n\twikibase:referenceValue prv:P4390 ;\n\twikibase:novalue wdno:P4390 .\n\np:P4390 a owl:ObjectProperty .\n\npsv:P4390 a owl:ObjectProperty .\n\npqv:P4390 a owl:ObjectProperty .\n\nprv:P4390 a owl:ObjectProperty .\n\nwdt:P4390 a owl:ObjectProperty .\n\nps:P4390 a owl:ObjectProperty .\n\npq:P4390 a owl:ObjectProperty .\n\npr:P4390 a owl:ObjectProperty .\n\nwdno:P4390 a owl:Class ;\n\towl:complementOf _:092592d4ee5d441da18d6563a6010a07 .\n\n_:092592d4ee5d441da18d6563a6010a07 a owl:Restriction ;\n\towl:onProperty wdt:P4390 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q188915 a wikibase:Item ;\n\trdfs:label \"Israelische Nationalbibliothek\"@de ;\n\tskos:prefLabel \"Israelische Nationalbibliothek\"@de ;\n\tschema:name \"Israelische Nationalbibliothek\"@de ;\n\trdfs:label \"National Library of Israel\"@en ;\n\tskos:prefLabel \"National Library of Israel\"@en ;\n\tschema:name \"National Library of Israel\"@en ;\n\tschema:description \"Nationalbibliothek und größte Bücherei Israels\"@de,\n\t\t\"national library in Israel\"@en .\n\nwd:P2347 a wikibase:Property ;\n\trdfs:label \"YSO-Kennung\"@de ;\n\tskos:prefLabel \"YSO-Kennung\"@de ;\n\tschema:name \"YSO-Kennung\"@de ;\n\trdfs:label \"YSO ID\"@en ;\n\tskos:prefLabel \"YSO ID\"@en ;\n\tschema:name \"YSO ID\"@en ;\n\tschema:description \"Identifikator eines Konzepts in der General Finnisch Ontologie YSO\"@de,\n\t\t\"identifier for a concept in the General Finnish Ontology YSO\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P2347 ;\n\twikibase:claim p:P2347 ;\n\twikibase:statementProperty ps:P2347 ;\n\twikibase:statementValue psv:P2347 ;\n\twikibase:qualifier pq:P2347 ;\n\twikibase:qualifierValue pqv:P2347 ;\n\twikibase:reference pr:P2347 ;\n\twikibase:referenceValue prv:P2347 ;\n\twikibase:novalue wdno:P2347 ;\n\twikibase:directClaimNormalized wdtn:P2347 ;\n\twikibase:statementValueNormalized psn:P2347 ;\n\twikibase:qualifierValueNormalized pqn:P2347 ;\n\twikibase:referenceValueNormalized prn:P2347 .\n\np:P2347 a owl:ObjectProperty .\n\npsv:P2347 a owl:ObjectProperty .\n\npqv:P2347 a owl:ObjectProperty .\n\nprv:P2347 a owl:ObjectProperty .\n\nwdt:P2347 a owl:DatatypeProperty .\n\nps:P2347 a owl:DatatypeProperty .\n\npq:P2347 a owl:DatatypeProperty .\n\npr:P2347 a owl:DatatypeProperty .\n\npsn:P2347 a owl:ObjectProperty .\n\npqn:P2347 a owl:ObjectProperty .\n\nprn:P2347 a owl:ObjectProperty .\n\nwdtn:P2347 a owl:ObjectProperty .\n\nwdno:P2347 a owl:Class ;\n\towl:complementOf _:5938edce2b698c44bad94eb14b56af07 .\n\n_:5938edce2b698c44bad94eb14b56af07 a owl:Restriction ;\n\towl:onProperty wdt:P2347 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q14946528 a wikibase:Item ;\n\trdfs:label \"Vermischung\"@de ;\n\tskos:prefLabel \"Vermischung\"@de ;\n\tschema:name \"Vermischung\"@de ;\n\trdfs:label \"conflation\"@en ;\n\tskos:prefLabel \"conflation\"@en ;\n\tschema:name \"conflation\"@en ;\n\tschema:description \"meist fehlerhafte Zusammenführung verschiedener Konzepte oder Entitäten, zum Beispiel Orte, Gebiete, Personen, Gruppen oder Unternehmen\"@de,\n\t\t\"merging of distinct identities or concepts, usually erroneously\"@en .\n\nwd:Q146281 a wikibase:Item ;\n\trdfs:label \"Kultur-Birne\"@de ;\n\tskos:prefLabel \"Kultur-Birne\"@de ;\n\tschema:name \"Kultur-Birne\"@de ;\n\trdfs:label \"Pyrus communis\"@mul ;\n\tskos:prefLabel \"Pyrus communis\"@mul ;\n\tschema:name \"Pyrus communis\"@mul ;\n\trdfs:label \"Pyrus communis\"@en ;\n\tskos:prefLabel \"Pyrus communis\"@en ;\n\tschema:name \"Pyrus communis\"@en ;\n\tschema:description \"Art der Gattung Birnen (Pyrus)\"@de,\n\t\t\"species of plant\"@en .\n\nwd:P8327 a wikibase:Property ;\n\trdfs:label \"Behauptung trifft zu auf\"@de ;\n\tskos:prefLabel \"Behauptung trifft zu auf\"@de ;\n\tschema:name \"Behauptung trifft zu auf\"@de ;\n\trdfs:label \"intended subject of deprecated statement\"@en ;\n\tskos:prefLabel \"intended subject of deprecated statement\"@en ;\n\tschema:name \"intended subject of deprecated statement\"@en ;\n\tschema:description \"(qualifier) this statement is deprecated as it is actually about another subject\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P8327 ;\n\twikibase:claim p:P8327 ;\n\twikibase:statementProperty ps:P8327 ;\n\twikibase:statementValue psv:P8327 ;\n\twikibase:qualifier pq:P8327 ;\n\twikibase:qualifierValue pqv:P8327 ;\n\twikibase:reference pr:P8327 ;\n\twikibase:referenceValue prv:P8327 ;\n\twikibase:novalue wdno:P8327 .\n\np:P8327 a owl:ObjectProperty .\n\npsv:P8327 a owl:ObjectProperty .\n\npqv:P8327 a owl:ObjectProperty .\n\nprv:P8327 a owl:ObjectProperty .\n\nwdt:P8327 a owl:ObjectProperty .\n\nps:P8327 a owl:ObjectProperty .\n\npq:P8327 a owl:ObjectProperty .\n\npr:P8327 a owl:ObjectProperty .\n\nwdno:P8327 a owl:Class ;\n\towl:complementOf _:49a4786883887b65e170406f65af2069 .\n\n_:49a4786883887b65e170406f65af2069 a owl:Restriction ;\n\towl:onProperty wdt:P8327 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q89345680 a wikibase:Item ;\n\trdfs:label \"YSO-Wikidata mapping project\"@en ;\n\tskos:prefLabel \"YSO-Wikidata mapping project\"@en ;\n\tschema:name \"YSO-Wikidata mapping project\"@en ;\n\tschema:description \"project where concepts of the Finnish General Ontology are matched with Wikidata equivalents\"@en .\n\nwd:Q112258758 a wikibase:Item ;\n\trdfs:label \"GF WordNet\"@en ;\n\tskos:prefLabel \"GF WordNet\"@en ;\n\tschema:name \"GF WordNet\"@en ;\n\tschema:description \"a lexical resource which combines WordNet resour\"@en .\n\nwd:P585 a wikibase:Property ;\n\trdfs:label \"Zeitpunkt/Stand\"@de ;\n\tskos:prefLabel \"Zeitpunkt/Stand\"@de ;\n\tschema:name \"Zeitpunkt/Stand\"@de ;\n\trdfs:label \"point in time\"@en ;\n\tskos:prefLabel \"point in time\"@en ;\n\tschema:name \"point in time\"@en ;\n\tschema:description \"Moment, an dem etwas stattfand, existierte oder wahr war\"@de,\n\t\t\"date something took place, existed or a statement was true; for providing time use the \\\"refine date\\\" property (P4241)\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P585 ;\n\twikibase:claim p:P585 ;\n\twikibase:statementProperty ps:P585 ;\n\twikibase:statementValue psv:P585 ;\n\twikibase:qualifier pq:P585 ;\n\twikibase:qualifierValue pqv:P585 ;\n\twikibase:reference pr:P585 ;\n\twikibase:referenceValue prv:P585 ;\n\twikibase:novalue wdno:P585 .\n\np:P585 a owl:ObjectProperty .\n\npsv:P585 a owl:ObjectProperty .\n\npqv:P585 a owl:ObjectProperty .\n\nprv:P585 a owl:ObjectProperty .\n\nwdt:P585 a owl:DatatypeProperty .\n\nps:P585 a owl:DatatypeProperty .\n\npq:P585 a owl:DatatypeProperty .\n\npr:P585 a owl:DatatypeProperty .\n\nwdno:P585 a owl:Class ;\n\towl:complementOf _:dd1c08307a09e1466ce90c482ad42ea9 .\n\n_:dd1c08307a09e1466ce90c482ad42ea9 a owl:Restriction ;\n\towl:onProperty wdt:P585 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q118645058 a wikibase:Item ;\n\trdfs:label \"inferred by common MeSH mappings on source and on Wikidata\"@en ;\n\tskos:prefLabel \"inferred by common MeSH mappings on source and on Wikidata\"@en ;\n\tschema:name \"inferred by common MeSH mappings on source and on Wikidata\"@en ;\n\tschema:description \"heuristic to use with P887 (heuristic) as provenance for assigning an identifier\"@en .\n\nwd:P887 a wikibase:Property ;\n\trdfs:label \"basierend auf Heuristik\"@de ;\n\tskos:prefLabel \"basierend auf Heuristik\"@de ;\n\tschema:name \"basierend auf Heuristik\"@de ;\n\trdfs:label \"based on heuristic\"@en ;\n\tskos:prefLabel \"based on heuristic\"@en ;\n\tschema:name \"based on heuristic\"@en ;\n\tschema:description \"der Eigenschaftswert basiert auf einer Heuristik; als Fundstelle zu benutzen\"@de,\n\t\t\"indicates that the property value is determined based on some heuristic (Q201413); to be used as source\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P887 ;\n\twikibase:claim p:P887 ;\n\twikibase:statementProperty ps:P887 ;\n\twikibase:statementValue psv:P887 ;\n\twikibase:qualifier pq:P887 ;\n\twikibase:qualifierValue pqv:P887 ;\n\twikibase:reference pr:P887 ;\n\twikibase:referenceValue prv:P887 ;\n\twikibase:novalue wdno:P887 .\n\np:P887 a owl:ObjectProperty .\n\npsv:P887 a owl:ObjectProperty .\n\npqv:P887 a owl:ObjectProperty .\n\nprv:P887 a owl:ObjectProperty .\n\nwdt:P887 a owl:ObjectProperty .\n\nps:P887 a owl:ObjectProperty .\n\npq:P887 a owl:ObjectProperty .\n\npr:P887 a owl:ObjectProperty .\n\nwdno:P887 a owl:Class ;\n\towl:complementOf _:e011110d3fc77cb743b2b08b63c4f19a .\n\n_:e011110d3fc77cb743b2b08b63c4f19a a owl:Restriction ;\n\towl:onProperty wdt:P887 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q118645236 a wikibase:Item ;\n\trdfs:label \"UMLS 2023\"@en ;\n\tskos:prefLabel \"UMLS 2023\"@en ;\n\tschema:name \"UMLS 2023\"@en ;\n\tschema:description \"Language System release in 2023\"@en .\n\nwd:Q18336371 a wikibase:Item ;\n\trdfs:label \"BBC Things\"@de ;\n\tskos:prefLabel \"BBC Things\"@de ;\n\tschema:name \"BBC Things\"@de ;\n\trdfs:label \"BBC Things\"@mul ;\n\tskos:prefLabel \"BBC Things\"@mul ;\n\tschema:name \"BBC Things\"@mul ;\n\trdfs:label \"BBC Things\"@en ;\n\tskos:prefLabel \"BBC Things\"@en ;\n\tschema:name \"BBC Things\"@en ;\n\tschema:description \"semantische Datenbank\"@de,\n\t\t\"semantic database\"@en .\n\nwd:Q50658883 a wikibase:Item ;\n\trdfs:label \"India Biodiversity Portal\"@en ;\n\tskos:prefLabel \"India Biodiversity Portal\"@en ;\n\tschema:name \"India Biodiversity Portal\"@en ;\n\tschema:description \"web repository of information on India's biodiversity\"@en .\n\nwd:Q106140471 a wikibase:Item ;\n\trdfs:label \"Washington Flora Checklist\"@de ;\n\tskos:prefLabel \"Washington Flora Checklist\"@de ;\n\tschema:name \"Washington Flora Checklist\"@de ;\n\trdfs:label \"Washington Flora Checklist\"@en ;\n\tskos:prefLabel \"Washington Flora Checklist\"@en ;\n\tschema:name \"Washington Flora Checklist\"@en ;\n\tschema:description \"list of the native and naturalized vascular plants of Washington State, with current classifications, nomenclature and synonymy\"@en .\n\nwd:Q46299 a wikibase:Item ;\n\trdfs:label \"Rosengewächse\"@de ;\n\tskos:prefLabel \"Rosengewächse\"@de ;\n\tschema:name \"Rosengewächse\"@de ;\n\trdfs:label \"Rosaceae\"@mul ;\n\tskos:prefLabel \"Rosaceae\"@mul ;\n\tschema:name \"Rosaceae\"@mul ;\n\trdfs:label \"Rosaceae\"@en ;\n\tskos:prefLabel \"Rosaceae\"@en ;\n\tschema:name \"Rosaceae\"@en ;\n\tschema:description \"Familie der Ordnung Rosenartige (Rosales)\"@de,\n\t\t\"rose family of flowering plants\"@en .\n\nwd:P4900 a wikibase:Property ;\n\trdfs:label \"übergeordneter Begriff\"@de ;\n\tskos:prefLabel \"übergeordneter Begriff\"@de ;\n\tschema:name \"übergeordneter Begriff\"@de ;\n\trdfs:label \"broader concept\"@en ;\n\tskos:prefLabel \"broader concept\"@en ;\n\tschema:name \"broader concept\"@en ;\n\tschema:description \"qualifier to indicate a broader concept that the present item is part of, as mapped by an external source. The statement being qualified should be an exact match.\"@en ;\n\twikibase:propertyType ;\n\twikibase:directClaim wdt:P4900 ;\n\twikibase:claim p:P4900 ;\n\twikibase:statementProperty ps:P4900 ;\n\twikibase:statementValue psv:P4900 ;\n\twikibase:qualifier pq:P4900 ;\n\twikibase:qualifierValue pqv:P4900 ;\n\twikibase:reference pr:P4900 ;\n\twikibase:referenceValue prv:P4900 ;\n\twikibase:novalue wdno:P4900 .\n\np:P4900 a owl:ObjectProperty .\n\npsv:P4900 a owl:ObjectProperty .\n\npqv:P4900 a owl:ObjectProperty .\n\nprv:P4900 a owl:ObjectProperty .\n\nwdt:P4900 a owl:ObjectProperty .\n\nps:P4900 a owl:ObjectProperty .\n\npq:P4900 a owl:ObjectProperty .\n\npr:P4900 a owl:ObjectProperty .\n\nwdno:P4900 a owl:Class ;\n\towl:complementOf _:9ff734505eeea00961dac3432abd243c .\n\n_:9ff734505eeea00961dac3432abd243c a owl:Restriction ;\n\towl:onProperty wdt:P4900 ;\n\towl:someValuesFrom owl:Thing .\n\nwd:Q123473103 a wikibase:Item ;\n\trdfs:label \"Biota of New Zealand\"@en ;\n\tskos:prefLabel \"Biota of New Zealand\"@en ;\n\tschema:name \"Biota of New Zealand\"@en ;\n\tschema:description \"online database of the biota of New Zealand\"@en .\n\nwd:Q16042544 owl:sameAs wd:Q434 .\n\nwd:Q18364335 owl:sameAs wd:Q434 .\n\nwd:Q6475289 owl:sameAs wd:Q434 .\n\nwd:Q13217624 owl:sameAs wd:Q434 .\n\nwd:Q21287352 owl:sameAs wd:Q434 .\n\nwdv:73b409bc009834f8ea0a416f50c6c16e a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+15.23\"^^xsd:decimal ;\n\twikibase:quantityUnit .\n\nwdv:f32dfa91b44c7fed185ef5f8231c5f43 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+0.01523\"^^xsd:decimal ;\n\twikibase:quantityUnit ;\n\twikibase:quantityNormalized wdv:f32dfa91b44c7fed185ef5f8231c5f43 .\n\nwdv:73b409bc009834f8ea0a416f50c6c16e wikibase:quantityNormalized wdv:f32dfa91b44c7fed185ef5f8231c5f43 .\n\nwdv:816fc22590a5382449019a6546e9ac16 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+0.36\"^^xsd:decimal ;\n\twikibase:quantityUnit .\n\nwdv:f97d513c8c0db2729db757babf97fca7 a wikibase:QuantityValue ;\n\twikibase:quantityAmount \"+0.00036\"^^xsd:decimal ;\n\twikibase:quantityUnit ;\n\twikibase:quantityNormalized wdv:f97d513c8c0db2729db757babf97fca7 .\n\nwdv:816fc22590a5382449019a6546e9ac16 wikibase:quantityNormalized wdv:f97d513c8c0db2729db757babf97fca7 .\n\nwdv:4153fee0d70688a29ab9db6b000d1c1f a wikibase:TimeValue ;\n\twikibase:timeValue \"1753-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"9\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:847683d995f07036d973954f15b35c3f a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-11-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:dfeba5f95a1e7420a46095102eac7395 a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-11-05T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f987783e1f9c9fa0cb0b774d330af52d a wikibase:TimeValue ;\n\twikibase:timeValue \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:051b074766fda5954dff86b28306993e a wikibase:TimeValue ;\n\twikibase:timeValue \"2014-10-30T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:06cd1305cece626cfd4e3c4596ee1b6d a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-12T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:1870f45b4cc5c27c14631cb4bf1d91ab a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-03-22T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:074236a6c333d3d91a7e669ed4c87f2a a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-04-30T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:2b0b15aaa3929e3c9642633ea6dd5c4e a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-07-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:29c613aa437615e3871f0414f5000785 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-08-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:10d041d73a12ce2598860fde06cba332 a wikibase:TimeValue ;\n\twikibase:timeValue \"2015-12-11T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:58f1ae1c0c2985970e3dd7c6dd87501b a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:d0f25a2420df81f2d393521305e46bb5 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:a87ed9063c6b1aee5ccbb07b847c8dba a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5ae331b3c00a0e990af0b537b6c36759 a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-11-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:33365613a4bcd69e30ca7552d8906883 a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-09-09T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:5a152a5904b586c064410033df37c9fd a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:f942ec337ea8b58c4c730013ff8656cd a wikibase:TimeValue ;\n\twikibase:timeValue \"2016-12-24T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:db3a67bd71f958975c28b20fe1cf8b00 a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-01-14T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:fd472e17c20cb64110515ffe8e11da08 a wikibase:TimeValue ;\n\twikibase:timeValue \"2017-02-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:4b524db169b2deb4725b1f157108b691 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-04-12T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:05ed6c03c53dd41a6e60e1df9e5a51d3 a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-04-28T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ff7533549e53d0091ac78287d30e5cbb a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:51f80fa62dc38000550e1fc0fda2b59b a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:e845f80d8a78f4d2337e9a316a5e42ba a wikibase:TimeValue ;\n\twikibase:timeValue \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:0e2531a07e9448df72a642e89d49fb69 a wikibase:TimeValue ;\n\twikibase:timeValue \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:664bae4effccc18fd4ad1ae188fab025 a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:6e5a62008527298793ca0ff86d646e3c a wikibase:TimeValue ;\n\twikibase:timeValue \"2020-07-26T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:22d4f832fdefcef9ac387c783743479a a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:ee7f6aa71f912a817656f0af82e9f1a1 a wikibase:TimeValue ;\n\twikibase:timeValue \"2021-12-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:70f06890e5b9388fda5e8da1c1fcd26a a wikibase:TimeValue ;\n\twikibase:timeValue \"2022-10-31T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:7ce76a67ed20fa3a49d4de17a2dabd8f a wikibase:TimeValue ;\n\twikibase:timeValue \"2023-05-25T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"11\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdv:c102b4d769af86c0f96c9a84f3d5463c a wikibase:TimeValue ;\n\twikibase:timeValue \"2026-01-01T00:00:00Z\"^^xsd:dateTime ;\n\twikibase:timePrecision \"10\"^^xsd:integer ;\n\twikibase:timeTimezone \"0\"^^xsd:integer ;\n\twikibase:timeCalendarModel .\n\nwdref:69635d3baf5ffa819690813ceb5c81c458c7ec89 a wikibase:Reference ;\n\tpr:P248 wd:Q40975586 ;\n\tpr:P304 \"214\" ;\n\tpr:P687 \"651222\" .\n\nwdref:d3ef5fc324ca908f24ea9b7ec3f82a60b1b5d1a5 a wikibase:Reference ;\n\tpr:P248 wd:Q21856106 ;\n\tpr:P304 \"479\" ;\n\tpr:P687 \"358498\" ;\n\tpr:P6184 wd:Q1361864 .\n\nwdref:731c2c96b44f2bba4b1e6d92dc8c6b3e0b0d96da a wikibase:Reference ;\n\tpr:P248 wd:Q12159796 ;\n\tpr:P813 \"2015-11-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:847683d995f07036d973954f15b35c3f .\n\nwdref:84b0bc804cd5367055bc5aac1e339b807ff3ad3f a wikibase:Reference ;\n\tpr:P248 wd:Q82575 ;\n\tpr:P813 \"2014-11-05T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:dfeba5f95a1e7420a46095102eac7395 .\n\nwdref:2b00cb481cddcac7623114367489b5c194901c4a a wikibase:Reference ;\n\tpr:P248 wd:Q15241312 ;\n\tpr:P577 \"2013-10-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P577 wdv:f987783e1f9c9fa0cb0b774d330af52d .\n\nwdref:7e71b7ede7931e7e2ee9ce54e832816fe948b402 a wikibase:Reference ;\n\tpr:P248 wd:Q82486 ;\n\tpr:P813 \"2014-10-30T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:051b074766fda5954dff86b28306993e .\n\nwdref:8a182a7b73d40ae0b1c199afd13549991cd2b970 a wikibase:Reference ;\n\tpr:P248 wd:Q19544711 ;\n\tpr:P813 \"2015-03-12T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:06cd1305cece626cfd4e3c4596ee1b6d .\n\nwdref:03c393dfd5047ef16b8ccfec290d16e4fda8e2ec a wikibase:Reference ;\n\tpr:P248 wd:Q19576476 ;\n\tpr:P813 \"2015-03-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2d4749c9f0f8ab0d8b51fe0e33d47db6 .\n\nwdref:40839070c4f4bcf09e6b4c9fd6ab0657fc7979fb a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2015-03-22T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:1870f45b4cc5c27c14631cb4bf1d91ab .\n\nwdref:a83f6aef456a6b18761b8db5e165ebc2f9d1fc87 a wikibase:Reference ;\n\tpr:P248 wd:Q5460442 ;\n\tpr:P813 \"2015-04-30T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:074236a6c333d3d91a7e669ed4c87f2a .\n\nwdref:2847aa108f4028011a46974f874835af54401c1e a wikibase:Reference ;\n\tpr:P248 wd:Q20425914 ;\n\tpr:P813 \"2015-07-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:2b0b15aaa3929e3c9642633ea6dd5c4e .\n\nwdref:fa91f1c071001ae40458d3166f94962be960f313 a wikibase:Reference ;\n\tpr:P248 wd:Q20862705 ;\n\tpr:P813 \"2015-08-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:29c613aa437615e3871f0414f5000785 .\n\nwdref:1203b041be4d35d68e612524c65512a7933a4fb1 a wikibase:Reference ;\n\tpr:P248 wd:Q1531570 ;\n\tpr:P813 \"2015-12-11T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:10d041d73a12ce2598860fde06cba332 .\n\nwdref:d8bb88e17b5b66fe9c3a09b7543cc6fe7c4cbc62 a wikibase:Reference ;\n\tpr:P248 wd:Q23893915 ;\n\tpr:P813 \"2016-04-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:58f1ae1c0c2985970e3dd7c6dd87501b .\n\nwdref:4a9b7589786948d52b86be8f72188bae741e4a0c a wikibase:Reference ;\n\tpr:P248 wd:Q19636200 ;\n\tpr:P813 \"2016-06-07T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:d0f25a2420df81f2d393521305e46bb5 .\n\nwdref:c0a11c33e1269de68db514169e1aa70667fa8666 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2017-01-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:a87ed9063c6b1aee5ccbb07b847c8dba .\n\nwdref:68c8b1cdd11af88f72ef5e28531c3f32c6d39e0f a wikibase:Reference ;\n\tpr:P248 wd:Q112869417 ;\n\tpr:P304 \"354\" .\n\nwdref:89cd55a27fadb0c2a07ef70bc2369b8f145e045d a wikibase:Reference ;\n\tpr:P248 wd:Q113193719 .\n\nwdref:e6289b059510246fa5e5b8a69bbfe87bd72f3909 a wikibase:Reference ;\n\tpr:P248 wd:Q56910515 .\n\nwdref:289c05080b160431bb93996ae6319710d1585139 a wikibase:Reference ;\n\tpr:P248 wd:Q113396612 .\n\nwdref:6428b6c59366d63c9281d028d59ab9d4a2ec36a5 a wikibase:Reference ;\n\tpr:P248 wd:Q113417333 .\n\nwdref:976ccd772da7b3c8def5011ced893cf7339eac4b a wikibase:Reference ;\n\tpr:P248 wd:Q113427533 .\n\nwdref:bb90a60abbae7b57b5b6dc64ad0b7856ac7c23a5 a wikibase:Reference ;\n\tpr:P248 wd:Q113432740 .\n\nwdref:0ea5e6cd63161b59a45123db1702f5daa4468603 a wikibase:Reference ;\n\tpr:P248 wd:Q19810430 ;\n\tpr:P813 \"2023-11-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5ae331b3c00a0e990af0b537b6c36759 ;\n\tpr:P854 .\n\nwdref:1fb582aac1c620902d8c85932d8f5a168fdced58 a wikibase:Reference ;\n\tpr:P356 \"10.17520/BIODS.2022515\" ;\n\tprn:P356 .\n\nwdref:5e40bce415e51d13178bb2013b8c823d2fecd247 a wikibase:Reference ;\n\tpr:P356 \"10.17520/BIODS.2023124\" ;\n\tprn:P356 .\n\nwdref:d4bd87b862b12d99d26e86472d44f26858dee639 a wikibase:Reference ;\n\tpr:P143 wd:Q8447 .\n\nwdref:bed3872ed426ee90c9beee63b5169ce4811e85c4 a wikibase:Reference ;\n\tpr:P248 wd:Q5460267 ;\n\tpr:P813 \"2016-09-09T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:33365613a4bcd69e30ca7552d8906883 .\n\nwdref:03ff8d3af648f80770f982403a704a607fdb1794 a wikibase:Reference ;\n\tpr:P248 wd:Q2578548 ;\n\tpr:P813 \"2016-10-20T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:5a152a5904b586c064410033df37c9fd .\n\nwdref:b36c27460e708e7a8fd8b6f5af1a20d535c53d57 a wikibase:Reference ;\n\tpr:P248 wd:Q131454 ;\n\tpr:P813 \"2016-12-24T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:f942ec337ea8b58c4c730013ff8656cd .\n\nwdref:2e164bfe7be311f804fcf231ac588871f5dbb532 a wikibase:Reference ;\n\tpr:P248 wd:Q2246990 ;\n\tpr:P813 \"2017-01-14T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:db3a67bd71f958975c28b20fe1cf8b00 .\n\nwdref:7483c54280ce0f876fc05446fae874ea9d29318e a wikibase:Reference ;\n\tpr:P248 wd:Q6970988 ;\n\tpr:P813 \"2017-02-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:fd472e17c20cb64110515ffe8e11da08 .\n\nwdref:ff65511d37e885bcf005b99c2241192548c3f03a a wikibase:Reference ;\n\tpr:P248 wd:Q16583225 .\n\nwdref:f8f2c50b3b360d24ac8f9512e371dbd2555b16cd a wikibase:Reference ;\n\tpr:P248 wd:Q47542613 ;\n\tpr:P813 \"2018-04-12T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:4b524db169b2deb4725b1f157108b691 .\n\nwdref:4e7d750bb4aef749817bba80ace910b07b40db24 a wikibase:Reference ;\n\tpr:P248 wd:Q51885189 ;\n\tpr:P813 \"2018-04-28T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:05ed6c03c53dd41a6e60e1df9e5a51d3 .\n\nwdref:af0b4a3c41ef0249d8d6e03c1ecc7c6a8f948acf a wikibase:Reference ;\n\tpr:P248 wd:Q54859980 ;\n\tpr:P813 \"2018-09-19T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ff7533549e53d0091ac78287d30e5cbb ;\n\tpr:P854 .\n\nwdref:d3cf3b3fa6cb20aade61420ef0822e1fea6d9daa a wikibase:Reference ;\n\tpr:P248 wd:Q167402 ;\n\tpr:P813 \"2018-10-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:51f80fa62dc38000550e1fc0fda2b59b .\n\nwdref:54789eea3d4e49d86ad44d55ad8e82bb691826b8 a wikibase:Reference ;\n\tpr:P248 wd:Q58380943 ;\n\tpr:P813 \"2018-11-10T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:e845f80d8a78f4d2337e9a316a5e42ba .\n\nwdref:1d3b14364cabecbdb80f4cca466d63b80a938fde a wikibase:Reference ;\n\tpr:P248 wd:Q64007131 ;\n\tpr:P813 \"2019-08-23T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:0e2531a07e9448df72a642e89d49fb69 .\n\nwdref:5d07ed25ea85b0247469ce4e84dec9b86cb4e53d a wikibase:Reference ;\n\tpr:P123 wd:Q501542 ;\n\tpr:P1978 \"9252\" .\n\nwdref:c17932f465689aac378677d9774c28fd36645c45 a wikibase:Reference ;\n\tpr:P123 wd:Q30 ;\n\tpr:P1978 \"9252\" .\n\nwdref:9a681f9dd95c90224547c404e11295f4f7dcf54e a wikibase:Reference ;\n\tpr:P248 wd:Q64139102 ;\n\tpr:P813 \"2020-07-09T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:664bae4effccc18fd4ad1ae188fab025 .\n\nwdref:57527789703c566ce1f69966deea902f4b52db21 a wikibase:Reference ;\n\tpr:P248 wd:Q77076820 ;\n\tpr:P813 \"2020-07-26T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:6e5a62008527298793ca0ff86d646e3c .\n\nwdref:62990530a319358633159fa90952b2c8ed25f57e a wikibase:Reference ;\n\tpr:P248 wd:Q105527638 ;\n\tpr:P813 \"2021-03-06T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:22d4f832fdefcef9ac387c783743479a .\n\nwdref:c8a47202c92936005b390eb36ddd267921b51f43 a wikibase:Reference ;\n\tpr:P248 wd:Q188915 .\n\nwdref:1585ea2762c84b5b67c8121bbfbd7be6b571c3db a wikibase:Reference ;\n\tpr:P248 wd:Q89345680 ;\n\tpr:P813 \"2021-12-31T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:ee7f6aa71f912a817656f0af82e9f1a1 .\n\nwdref:3f8c4934cc38de77b597e01bd5028acb514abd2d a wikibase:Reference ;\n\tpr:P248 wd:Q112258758 .\n\nwdref:84a86b2096ce3b54ac349f67a0f238e8ed0be477 a wikibase:Reference ;\n\tpr:P887 wd:Q118645058 ;\n\tpr:P248 wd:Q118645236 ;\n\tpr:P813 \"2023-05-25T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:7ce76a67ed20fa3a49d4de17a2dabd8f .\n\nwdref:8582d8416671f1f2567247201bac753552435ca5 a wikibase:Reference ;\n\tpr:P248 wd:Q18336371 .\n\nwdref:ef6dade85f49421e7db939f985e8ae99cc59823f a wikibase:Reference ;\n\tpr:P248 wd:Q50658883 .\n\nwdref:2f7c729d9a31ad15d727154e099f70e505f0c904 a wikibase:Reference ;\n\tpr:P248 wd:Q106140471 .\n\nwdref:59198ca54ab209108dad0259a7906e9f992049fc a wikibase:Reference ;\n\tpr:P248 wd:Q123473103 ;\n\tpr:P813 \"2026-01-01T00:00:00Z\"^^xsd:dateTime ;\n\tprv:P813 wdv:c102b4d769af86c0f96c9a84f3d5463c .\n", + "body_type": "text", + "headers": { + "accept-ch": [ + "" + ], + "access-control-allow-origin": [ + "*" + ], + "age": [ + "2" + ], + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-transform" + ], + "content-type": [ + "text/turtle; charset=UTF-8" + ], + "date": [ + "Thu, 19 Feb 2026 20:31:45 GMT" + ], + "last-modified": [ + "Tue, 10 Feb 2026 23:28:11 GMT" + ], + "nel": [ + "{ \"report_to\": \"wm_nel\", \"max_age\": 604800, \"failure_fraction\": 0.05, \"success_fraction\": 0.0}" + ], + "report-to": [ + "{ \"group\": \"wm_nel\", \"max_age\": 604800, \"endpoints\": [{ \"url\": \"https://intake-logging.wikimedia.org/v1/events?stream=w3c.reportingapi.network_error&schema_uri=/w3c/reportingapi/network_error/1.0.0\" }] }" + ], + "server": [ + "mw-web.eqiad.main-7b5496b6b9-wccf8" + ], + "server-timing": [ + "cache;desc=\"pass\", host;desc=\"cp3070\"" + ], + "set-cookie": [ + "WMF-Last-Access=19-Feb-2026;Path=/;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "WMF-Last-Access-Global=19-Feb-2026;Path=/;Domain=.wikidata.org;HttpOnly;secure;Expires=Mon, 23 Mar 2026 12:00:00 GMT", + "GeoIP=DE:NW:D__sseldorf:51.26:6.82:v4; Path=/; secure; Domain=.wikidata.org", + "NetworkProbeLimit=0.001;Path=/;Secure;SameSite=None;Max-Age=3600", + "WMF-Uniq=0O_MUT_GQtHCNRVDGVumaQMMAAAAAFvd3CXzS6_eIY89tkoil7x4omwNqiZs0HSf;Domain=.wikidata.org;Path=/;HttpOnly;secure;SameSite=None;Expires=Fri, 19 Feb 2027 00:00:00 GMT" + ], + "strict-transport-security": [ + "max-age=106384710; includeSubDomains; preload" + ], + "transfer-encoding": [ + "chunked" + ], + "vary": [ + "Accept-Encoding,User-Agent" + ], + "x-analytics": [ + "" + ], + "x-cache": [ + "cp3070 miss, cp3070 pass" + ], + "x-cache-status": [ + "pass" + ], + "x-client-ip": [ + "92.208.183.237" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-frame-options": [ + "DENY" + ], + "x-request-id": [ + "132dd23d-b15f-4b67-8975-04c24fa4585b" + ] + }, + "status": 200 + } + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/preparation/xylem/test/fixtures/test_properties.csv b/preparation/xylem/test/fixtures/test_properties.csv new file mode 100644 index 0000000..3fbe9c9 --- /dev/null +++ b/preparation/xylem/test/fixtures/test_properties.csv @@ -0,0 +1,7 @@ +property_id;action;config;description +P18;ignore;;Bild +P41;ignore;;Flaggenbild +P105;inline;{"target": "taxonomischer_rang"};taxonomischer Rang +P171;inline;{"target": "uebergeordnetes_taxon", "keep_source": true};übergeordnetes Taxon +P225;;;wissenschaftlicher Name +P685;;;ITIS TSN \ No newline at end of file diff --git a/preparation/xylem/test/fixtures/test_species.csv b/preparation/xylem/test/fixtures/test_species.csv new file mode 100644 index 0000000..21dfb95 --- /dev/null +++ b/preparation/xylem/test/fixtures/test_species.csv @@ -0,0 +1,3 @@ +baumart_bo,baumart_de,wikidata_id +Quercus robur,Stiel-Eiche,Q165145 +Carpinus betulus,Gemeine Hainbuche,Q158776 \ No newline at end of file diff --git a/preparation/xylem/test/fixtures/vcr_cassettes/pipeline_integration.json b/preparation/xylem/test/fixtures/vcr_cassettes/pipeline_integration.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/preparation/xylem/test/fixtures/vcr_cassettes/pipeline_integration.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/preparation/xylem/test/test_helper.exs b/preparation/xylem/test/test_helper.exs new file mode 100644 index 0000000..869559e --- /dev/null +++ b/preparation/xylem/test/test_helper.exs @@ -0,0 +1 @@ +ExUnit.start() diff --git a/preparation/xylem/test/xylem/import/csv_reader_test.exs b/preparation/xylem/test/xylem/import/csv_reader_test.exs new file mode 100644 index 0000000..20c01d5 --- /dev/null +++ b/preparation/xylem/test/xylem/import/csv_reader_test.exs @@ -0,0 +1,36 @@ +defmodule Xylem.Import.CSVReaderTest do + use ExUnit.Case + + alias Xylem.Import.CSVReader + + @fixtures_path "test/fixtures" + + describe "run/2" do + test "parses valid CSV file" do + {:ok, species} = CSVReader.run(Path.join(@fixtures_path, "test_species.csv")) + + assert length(species) == 2 + + assert hd(species) == %{ + baumart_bo: "Quercus robur", + baumart_de: "Stiel-Eiche", + wikidata_id: "Q165145" + } + end + + test "returns error for missing file" do + assert {:error, :enoent} = CSVReader.run("nonexistent.csv") + end + + @tag :tmp_dir + test "returns error for missing columns", %{tmp_dir: tmp_dir} do + csv_content = "name,baumart_de,wikidata_id\nvalue1,value2,Q123\n" + path = Path.join(tmp_dir, "invalid.csv") + File.write!(path, csv_content) + + assert {:error, {:missing_column, "baumart_bo"}} = CSVReader.run(path) + after + File.rm_rf!(tmp_dir) + end + end +end diff --git a/preparation/xylem/test/xylem/wikidata/fetcher_test.exs b/preparation/xylem/test/xylem/wikidata/fetcher_test.exs new file mode 100644 index 0000000..38041db --- /dev/null +++ b/preparation/xylem/test/xylem/wikidata/fetcher_test.exs @@ -0,0 +1,156 @@ +defmodule Xylem.Wikidata.FetcherTest do + use ExUnit.Case + + import ReqCassette + import ExUnit.CaptureLog + + alias Xylem.Wikidata.Fetcher + + @test_raw_dir "test/fixtures/wikidata_raw" + @valid_ttl """ + @prefix wd: . + @prefix wdt: . + wd:Q165145 wdt:P31 wd:Q16521 . + """ + + setup do + File.mkdir_p!(@test_raw_dir) + on_exit(fn -> File.rm_rf!(@test_raw_dir) end) + :ok + end + + @test_species [ + %{baumart_bo: "Quercus robur", baumart_de: "Stiel-Eiche", wikidata_id: "Q165145"} + ] + + describe "run/2" do + test "fetches and parses Wikidata entity" do + with_cassette("wikidata_fetch_q165145", fn plug -> + {:ok, result} = + Fetcher.run(@test_species, raw_dir: @test_raw_dir, delay_ms: 0, plug: plug) + + assert length(result.successful) == 1 + assert result.failed == [] + + [fetched] = result.successful + assert fetched.wikidata_id == "Q165145" + assert %RDF.Graph{} = fetched.graph + assert File.exists?(fetched.raw_path) + end) + end + + test "rejects invalid Wikidata IDs" do + species = [ + %{baumart_bo: "Invalid", baumart_de: "Invalid", wikidata_id: "INVALID123"} + ] + + assert {{:ok, result}, log} = + with_log(fn -> + Fetcher.run(species, raw_dir: @test_raw_dir, delay_ms: 0) + end) + + assert log =~ "Failed to fetch INVALID123: {:invalid_wikidata_id, \"INVALID123\"}" + + assert result.successful == [] + assert length(result.failed) == 1 + assert hd(result.failed).error == {:invalid_wikidata_id, "INVALID123"} + end + end + + describe "run/2 fetch modes" do + test "skip loads existing .ttl files from disk" do + File.write!(Path.join(@test_raw_dir, "Q165145.ttl"), @valid_ttl) + + {:ok, result} = + Fetcher.run(@test_species, raw_dir: @test_raw_dir, fetch: :skip, delay_ms: 0) + + assert length(result.successful) == 1 + assert [loaded] = result.successful + assert loaded.wikidata_id == "Q165145" + assert %RDF.Graph{} = loaded.graph + assert result.failed == [] + end + + test "skip reports missing .ttl files as failed" do + {:ok, result} = + Fetcher.run(@test_species, raw_dir: @test_raw_dir, fetch: :skip, delay_ms: 0) + + assert result.successful == [] + assert length(result.failed) == 1 + assert hd(result.failed).wikidata_id == "Q165145" + end + + test "auto loads existing data when raw directory has .ttl files" do + File.write!(Path.join(@test_raw_dir, "Q165145.ttl"), @valid_ttl) + + {:ok, result} = + Fetcher.run(@test_species, raw_dir: @test_raw_dir, fetch: :auto, delay_ms: 0) + + assert length(result.successful) == 1 + assert hd(result.successful).wikidata_id == "Q165145" + end + + test "auto fetches when raw directory is empty" do + with_cassette("wikidata_fetch_q165145", fn plug -> + {:ok, result} = + Fetcher.run(@test_species, + raw_dir: @test_raw_dir, + fetch: :auto, + delay_ms: 0, + plug: plug + ) + + assert length(result.successful) == 1 + end) + end + + test "force fetches even when raw directory has .ttl files" do + File.mkdir_p!(@test_raw_dir) + File.write!(Path.join(@test_raw_dir, "Q165145.ttl"), "dummy") + + with_cassette("wikidata_fetch_q165145", fn plug -> + {:ok, result} = + Fetcher.run(@test_species, + raw_dir: @test_raw_dir, + fetch: :force, + delay_ms: 0, + plug: plug + ) + + assert length(result.successful) == 1 + end) + end + + test "clear deletes existing .ttl files and re-fetches" do + File.mkdir_p!(@test_raw_dir) + extra_file = Path.join(@test_raw_dir, "Q999.ttl") + File.write!(extra_file, "dummy") + + with_cassette("wikidata_fetch_q165145", fn plug -> + {:ok, result} = + Fetcher.run(@test_species, + raw_dir: @test_raw_dir, + fetch: :clear, + delay_ms: 0, + plug: plug + ) + + assert length(result.successful) == 1 + refute File.exists?(extra_file) + end) + end + end + + describe "fetch_species/2" do + test "fetches single entity successfully" do + species = %{baumart_bo: "Pyrus", baumart_de: "Birne", wikidata_id: "Q434"} + + with_cassette("wikidata_fetch_q434", fn plug -> + {:ok, result} = Fetcher.fetch_species(species, @test_raw_dir, plug: plug) + + assert result.wikidata_id == "Q434" + assert %RDF.Graph{} = result.graph + end) + end + end +end diff --git a/preparation/xylem/test/xylem/wikidata/processor_test.exs b/preparation/xylem/test/xylem/wikidata/processor_test.exs new file mode 100644 index 0000000..ce15c1f --- /dev/null +++ b/preparation/xylem/test/xylem/wikidata/processor_test.exs @@ -0,0 +1,347 @@ +defmodule Xylem.Wikidata.ProcessorTest do + use ExUnit.Case + + alias Xylem.Wikidata.Processor + alias Xylem.Wikidata.PropertyConfig + alias RDF.NS.RDFS + alias RDF.{Graph, Turtle} + + import RDF.Sigils + + @wdt_prefix "http://www.wikidata.org/prop/direct/" + @wd_prefix "http://www.wikidata.org/entity/" + @test_processed_dir "test/fixtures/processed" + + setup do + {:ok, config} = PropertyConfig.load(path: "test/fixtures/test_properties.csv") + File.mkdir_p!(@test_processed_dir) + on_exit(fn -> File.rm_rf!(@test_processed_dir) end) + %{config: config} + end + + defp subject, do: RDF.iri("#{@wd_prefix}Q12345") + + defp build_species(graph) do + %{ + baumart_bo: "Quercus robur", + baumart_de: "Stiel-Eiche", + wikidata_id: "Q12345", + graph: graph, + raw_path: "/tmp/Q12345.ttl" + } + end + + defp run_processor(species, config) do + Processor.run( + [species], + property_config: config, + processed_dir: @test_processed_dir + ) + end + + describe "run/2" do + test "produces a processed Turtle file", %{config: config} do + graph = Graph.new({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + + {:ok, [result]} = run_processor(build_species(graph), config) + + assert result.wikidata_id == "Q12345" + assert result.processed_path == "#{@test_processed_dir}/Q12345.ttl" + assert File.exists?(result.processed_path) + end + + test "keeps wdt: properties", %{config: config} do + graph = + Graph.new([ + {subject(), wdt("P225"), RDF.literal("Quercus robur")}, + {subject(), wdt("P685"), RDF.literal("38942")} + ]) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P225"), RDF.literal("Quercus robur")) + assert has_triple?(processed, subject(), wdt("P685"), RDF.literal("38942")) + end + + test "removes blacklisted properties", %{config: config} do + graph = + Graph.new([ + {subject(), wdt("P225"), RDF.literal("Quercus robur")}, + {subject(), wdt("P18"), + RDF.iri("http://commons.wikimedia.org/wiki/Special:FilePath/Image.jpg")} + ]) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P225"), RDF.literal("Quercus robur")) + refute has_predicate?(processed, subject(), wdt("P18")) + end + + test "removes non-wdt properties (p:, ps:, pq:, etc.)", %{config: config} do + graph = + Graph.new() + |> Graph.add({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + |> Graph.add( + {subject(), RDF.iri("http://www.wikidata.org/prop/P225"), + RDF.iri("http://www.wikidata.org/entity/statement/q12345-abc")} + ) + |> Graph.add({subject(), RDF.type(), RDF.iri("http://wikiba.se/ontology#Item")}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P225"), RDF.literal("Quercus robur")) + refute has_predicate?(processed, subject(), RDF.iri("http://www.wikidata.org/prop/P225")) + refute has_predicate?(processed, subject(), RDF.type()) + end + + test "removes triples from other subjects (schema:Article, etc.)", %{config: config} do + article = RDF.iri("https://de.wikipedia.org/wiki/Stieleiche") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + |> Graph.add({article, RDF.type(), RDF.iri("http://schema.org/Article")}) + |> Graph.add({article, RDF.iri("http://schema.org/about"), subject()}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P225"), RDF.literal("Quercus robur")) + assert Graph.get(processed, article) == nil + end + + test "keeps rdfs:label in de and en", %{config: config} do + graph = + Graph.new() + |> Graph.add({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + |> Graph.add({subject(), RDFS.label(), ~L"Stieleiche"de}) + |> Graph.add({subject(), RDFS.label(), ~L"Pedunculate oak"en}) + |> Graph.add({subject(), RDFS.label(), ~L"Chêne pédonculé"fr}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), RDFS.label(), ~L"Stieleiche"de) + assert has_triple?(processed, subject(), RDFS.label(), ~L"Pedunculate oak"en) + refute has_triple?(processed, subject(), RDFS.label(), ~L"Chêne pédonculé"fr) + end + + test "filters language-tagged literals on wdt: properties to de and en", %{config: config} do + graph = + Graph.new() + |> Graph.add({subject(), wdt("P1843"), ~L"Stieleiche"de}) + |> Graph.add({subject(), wdt("P1843"), ~L"Pedunculate oak"en}) + |> Graph.add({subject(), wdt("P1843"), ~L"Дуб черешчатый"ru}) + |> Graph.add({subject(), wdt("P1843"), ~L"夏櫟"zh}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + labels = Graph.get(processed, subject()) |> RDF.Description.get(wdt("P1843")) + assert length(labels) == 2 + assert ~L"Stieleiche"de in labels + assert ~L"Pedunculate oak"en in labels + end + + test "keeps non-language-tagged literals unchanged", %{config: config} do + graph = + Graph.new() + |> Graph.add({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + |> Graph.add({subject(), wdt("P685"), RDF.literal("38942")}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P225"), RDF.literal("Quercus robur")) + assert has_triple?(processed, subject(), wdt("P685"), RDF.literal("38942")) + end + + test "keeps entity IRI values on wdt: properties", %{config: config} do + # P141 is not in test config, so kept by default + entity = RDF.iri("#{@wd_prefix}Q211005") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P141"), entity}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, subject(), wdt("P141"), entity) + end + + test "keeps descriptions of secondary wd:* entities referenced by kept properties", %{ + config: config + } do + # P141 is not in test config, so kept by default + entity = RDF.iri("#{@wd_prefix}Q211005") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P141"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"nicht gefährdet"de}) + |> Graph.add({entity, RDFS.label(), ~L"Least Concern"en}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, entity, RDFS.label(), ~L"nicht gefährdet"de) + assert has_triple?(processed, entity, RDFS.label(), ~L"Least Concern"en) + end + + test "does not keep descriptions of secondary entities only referenced via ignored properties", + %{config: config} do + # P18 is ignored in test config + image_entity = RDF.iri("http://commons.wikimedia.org/wiki/Special:FilePath/Image.jpg") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + |> Graph.add({subject(), wdt("P18"), image_entity}) + |> Graph.add({image_entity, RDF.iri("http://schema.org/name"), RDF.literal("Some image")}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert Graph.get(processed, image_entity) == nil + end + + test "applies language filter to secondary resource descriptions too", %{config: config} do + # P141 is not in test config, so kept by default + entity = RDF.iri("#{@wd_prefix}Q211005") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P141"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"nicht gefährdet"de}) + |> Graph.add({entity, RDFS.label(), ~L"Préoccupation mineure"fr}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + assert has_triple?(processed, entity, RDFS.label(), ~L"nicht gefährdet"de) + refute has_triple?(processed, entity, RDFS.label(), ~L"Préoccupation mineure"fr) + end + + test "inlines entity link as baumbie: property with resolved label", %{config: config} do + # P105 is configured as inline with target: "taxonomischer_rang" in test CSV + entity = RDF.iri("#{@wd_prefix}Q7432") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P105"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"Art"de}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + baumbie_prop = RDF.iri("https://www.baumbie.org/xylem/vocab/taxonomischer_rang") + + assert has_triple?(processed, subject(), baumbie_prop, ~L"Art"de) + # Original link removed (keep_source defaults to false) + refute has_triple?(processed, subject(), wdt("P105"), entity) + end + + test "inlining prefers German label, falls back to English", %{config: config} do + entity = RDF.iri("#{@wd_prefix}Q7432") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P105"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"Species"en}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + baumbie_prop = RDF.iri("https://www.baumbie.org/xylem/vocab/taxonomischer_rang") + + assert has_triple?(processed, subject(), baumbie_prop, ~L"Species"en) + end + + test "inlining with keep_source: true keeps original link", %{config: config} do + # P171 is configured as inline with keep_source: true in test CSV + entity = RDF.iri("#{@wd_prefix}Q12004") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P171"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"Eichen"de}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + baumbie_prop = RDF.iri("https://www.baumbie.org/xylem/vocab/uebergeordnetes_taxon") + + assert has_triple?(processed, subject(), baumbie_prop, ~L"Eichen"de) + # Original link kept + assert has_triple?(processed, subject(), wdt("P171"), entity) + end + + test "inlining skips entities without labels in raw graph", %{config: config} do + entity = RDF.iri("#{@wd_prefix}Q7432") + + # No rdfs:label for Q7432 in the graph + graph = + Graph.new() + |> Graph.add({subject(), wdt("P105"), entity}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + baumbie_prop = RDF.iri("https://www.baumbie.org/xylem/vocab/taxonomischer_rang") + + refute has_predicate?(processed, subject(), baumbie_prop) + # Original link still there since inlining was skipped + assert has_triple?(processed, subject(), wdt("P105"), entity) + end + + test "inlining removes secondary resource only referenced via inlined property", %{ + config: config + } do + entity = RDF.iri("#{@wd_prefix}Q7432") + + graph = + Graph.new() + |> Graph.add({subject(), wdt("P105"), entity}) + |> Graph.add({entity, RDFS.label(), ~L"Art"de}) + + {:ok, [result]} = run_processor(build_species(graph), config) + processed = Turtle.read_file!(result.processed_path) + + # Secondary resource removed since it was only referenced via inlined P105 + assert Graph.get(processed, entity) == nil + end + + test "returns result map without graph and raw_path", %{config: config} do + graph = Graph.new({subject(), wdt("P225"), RDF.literal("Quercus robur")}) + + {:ok, [result]} = run_processor(build_species(graph), config) + + assert result.baumart_bo == "Quercus robur" + assert result.baumart_de == "Stiel-Eiche" + assert result.wikidata_id == "Q12345" + assert result.processed_path + refute Map.has_key?(result, :graph) + refute Map.has_key?(result, :raw_path) + end + end + + # Helpers + + defp wdt(property_id), do: RDF.iri("#{@wdt_prefix}#{property_id}") + + defp has_triple?(graph, subject, predicate, object) do + Graph.include?(graph, {subject, predicate, object}) + end + + defp has_predicate?(graph, subject, predicate) do + if desc = Graph.get(graph, subject) do + predicate in RDF.Description.predicates(desc) + else + false + end + end +end diff --git a/preparation/xylem/test/xylem/wikidata/property_config_test.exs b/preparation/xylem/test/xylem/wikidata/property_config_test.exs new file mode 100644 index 0000000..db4f083 --- /dev/null +++ b/preparation/xylem/test/xylem/wikidata/property_config_test.exs @@ -0,0 +1,189 @@ +defmodule Xylem.Wikidata.PropertyConfigTest do + use ExUnit.Case + + alias Xylem.Wikidata.PropertyConfig + + @test_csv_path "test/fixtures/test_properties.csv" + + describe "load/1" do + test "loads and parses semicolon-separated CSV" do + assert {:ok, %PropertyConfig{}} = PropertyConfig.load(path: @test_csv_path) + end + + test "returns error for missing file" do + assert {:error, :enoent} = PropertyConfig.load(path: "nonexistent.csv") + end + + test "parses all entries" do + assert {:ok, config} = PropertyConfig.load(path: @test_csv_path) + + assert PropertyConfig.all_property_ids(config) |> Enum.sort() == + ~w[ + P105 + P171 + P18 + P225 + P41 + P685 + ] + end + end + + test "ignored?/2" do + {:ok, config} = PropertyConfig.load(path: @test_csv_path) + + assert PropertyConfig.ignored?(config, "P18") + assert PropertyConfig.ignored?(config, "P41") + refute PropertyConfig.ignored?(config, "P105") + refute PropertyConfig.ignored?(config, "P225") + # returns false for unknown properties + refute PropertyConfig.ignored?(config, "P99999") + end + + test "known?/2" do + {:ok, config} = PropertyConfig.load(path: @test_csv_path) + assert PropertyConfig.known?(config, "P18") + assert PropertyConfig.known?(config, "P225") + refute PropertyConfig.known?(config, "P99999") + end + + describe "inline_config/2" do + setup do + {:ok, config} = PropertyConfig.load(path: @test_csv_path) + %{config: config} + end + + test "returns inline config with defaults", %{config: config} do + assert %{target: "taxonomischer_rang", source: "rdfs:label", keep_source: false} = + PropertyConfig.inline_config(config, "P105") + end + + test "returns inline config with explicit keep_source", %{config: config} do + assert %{target: "uebergeordnetes_taxon", source: "rdfs:label", keep_source: true} = + PropertyConfig.inline_config(config, "P171") + end + + test "returns nil for non-inline properties", %{config: config} do + assert PropertyConfig.inline_config(config, "P18") == nil + assert PropertyConfig.inline_config(config, "P225") == nil + end + + test "returns nil for unknown properties", %{config: config} do + assert PropertyConfig.inline_config(config, "P99999") == nil + end + end + + describe "properties without action" do + setup do + {:ok, config} = PropertyConfig.load(path: @test_csv_path) + %{config: config} + end + + test "properties with empty action are treated as keep", %{config: config} do + refute PropertyConfig.ignored?(config, "P225") + assert PropertyConfig.inline_config(config, "P225") == nil + assert PropertyConfig.known?(config, "P225") + end + end + + describe "append_unknown/4" do + @append_csv_path "test/fixtures/test_append.csv" + + setup do + # Create a copy of the test CSV to append to + File.cp!(@test_csv_path, @append_csv_path) + {:ok, config} = PropertyConfig.load(path: @append_csv_path) + on_exit(fn -> File.rm(@append_csv_path) end) + %{config: config} + end + + test "appends unknown properties to CSV", %{config: config} do + :ok = PropertyConfig.append_unknown(config, @append_csv_path, ["P999", "P888"]) + + {:ok, updated} = PropertyConfig.load(path: @append_csv_path) + assert PropertyConfig.known?(updated, "P999") + assert PropertyConfig.known?(updated, "P888") + end + + test "uses labels for descriptions", %{config: config} do + :ok = + PropertyConfig.append_unknown(config, @append_csv_path, ["P999"], + labels: %{"P999" => "Testbeschreibung"} + ) + + {:ok, updated} = PropertyConfig.load(path: @append_csv_path) + assert updated.entries["P999"].description == "Testbeschreibung" + end + + test "skips already known properties", %{config: config} do + :ok = PropertyConfig.append_unknown(config, @append_csv_path, ["P18", "P225", "P999"]) + + {:ok, updated} = PropertyConfig.load(path: @append_csv_path) + # P18 and P225 already exist, only P999 is new + assert PropertyConfig.known?(updated, "P999") + # Total: 6 original + 1 new + assert length(PropertyConfig.all_property_ids(updated)) == 7 + end + + test "does nothing for empty list", %{config: config} do + original_content = File.read!(@append_csv_path) + :ok = PropertyConfig.append_unknown(config, @append_csv_path, []) + assert File.read!(@append_csv_path) == original_content + end + + test "does nothing when all properties are known", %{config: config} do + original_content = File.read!(@append_csv_path) + :ok = PropertyConfig.append_unknown(config, @append_csv_path, ["P18", "P225"]) + assert File.read!(@append_csv_path) == original_content + end + + test "deduplicates property IDs", %{config: config} do + :ok = PropertyConfig.append_unknown(config, @append_csv_path, ["P999", "P999", "P999"]) + + {:ok, updated} = PropertyConfig.load(path: @append_csv_path) + assert length(PropertyConfig.all_property_ids(updated)) == 7 + end + + test "new properties default to keep action", %{config: config} do + :ok = PropertyConfig.append_unknown(config, @append_csv_path, ["P999"]) + + {:ok, updated} = PropertyConfig.load(path: @append_csv_path) + refute PropertyConfig.ignored?(updated, "P999") + assert PropertyConfig.inline_config(updated, "P999") == nil + end + + test "sorts appended properties by ID", %{config: config} do + :ok = + PropertyConfig.append_unknown(config, @append_csv_path, ["P999", "P100", "P500"], + labels: %{"P100" => "first", "P500" => "second", "P999" => "third"} + ) + + content = File.read!(@append_csv_path) + p100_pos = :binary.match(content, "P100") |> elem(0) + p500_pos = :binary.match(content, "P500") |> elem(0) + p999_pos = :binary.match(content, "P999") |> elem(0) + + assert p100_pos < p500_pos + assert p500_pos < p999_pos + end + end + + describe "inline config with custom source" do + test "parses custom source property" do + csv = """ + property_id;action;config;description + P999;inline;{"target": "test_prop", "source": "schema:description"};Test + """ + + path = "test/fixtures/test_custom_source.csv" + File.write!(path, csv) + + on_exit(fn -> File.rm(path) end) + + {:ok, config} = PropertyConfig.load(path: path) + + assert %{target: "test_prop", source: "schema:description", keep_source: false} = + PropertyConfig.inline_config(config, "P999") + end + end +end diff --git a/preparation/xylem/test/xylem/wikidata/vocab_generator_test.exs b/preparation/xylem/test/xylem/wikidata/vocab_generator_test.exs new file mode 100644 index 0000000..38be7c8 --- /dev/null +++ b/preparation/xylem/test/xylem/wikidata/vocab_generator_test.exs @@ -0,0 +1,345 @@ +defmodule Xylem.Wikidata.VocabGeneratorTest do + use ExUnit.Case + + alias Xylem.Wikidata.VocabGenerator + alias Xylem.Wikidata.PropertyConfig + + @wd_prefix "http://www.wikidata.org/entity/" + @wdt_prefix "http://www.wikidata.org/prop/direct/" + @baumbie_prefix "https://www.baumbie.org/xylem/vocab/" + @rdfs_label RDF.iri("http://www.w3.org/2000/01/rdf-schema#label") + @schema_description RDF.iri("http://schema.org/description") + + @test_meta_dir "test/fixtures/meta" + @test_processed_dir "test/fixtures/vocab_processed" + + setup do + {:ok, config} = PropertyConfig.load(path: "test/fixtures/test_properties.csv") + File.mkdir_p!(@test_processed_dir) + + on_exit(fn -> + File.rm_rf!(@test_processed_dir) + File.rm_rf!(@test_meta_dir) + end) + + %{config: config} + end + + defp write_processed(wikidata_id, graph) do + path = Path.join(@test_processed_dir, "#{wikidata_id}.ttl") + content = RDF.Turtle.write_string!(graph) + File.write!(path, content) + %{wikidata_id: wikidata_id, processed_path: path} + end + + defp run_generator(species_results, config, opts \\ []) do + VocabGenerator.run( + species_results, + [ + property_config: config, + meta_dir: @test_meta_dir, + descriptions: Keyword.get(opts, :descriptions, RDF.Graph.new()) + ] ++ opts + ) + end + + describe "run/2" do + test "includes wdt: property descriptions from SPARQL results", %{config: config} do + subject = RDF.iri("#{@wd_prefix}Q12345") + + graph = + RDF.Graph.new() + |> RDF.Graph.add({subject, wdt("P225"), RDF.literal("Quercus robur")}) + |> RDF.Graph.add({subject, wdt("P685"), RDF.literal("38942")}) + + result = write_processed("Q12345", graph) + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add( + {wd("P225"), @rdfs_label, RDF.lang_string("wissenschaftlicher Name", "de")} + ) + |> RDF.Graph.add({wd("P225"), @rdfs_label, RDF.lang_string("taxon name", "en")}) + |> RDF.Graph.add( + {wd("P225"), @schema_description, RDF.lang_string("Name der Taxonomie-Einheit", "de")} + ) + |> RDF.Graph.add({wd("P685"), @rdfs_label, RDF.lang_string("NCBI-Taxonomy-ID", "de")}) + + {:ok, path} = run_generator([result], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + assert has_triple?( + vocab, + wd("P225"), + @rdfs_label, + RDF.lang_string("wissenschaftlicher Name", "de") + ) + + assert has_triple?( + vocab, + wd("P225"), + @rdfs_label, + RDF.lang_string("taxon name", "en") + ) + + assert has_triple?( + vocab, + wd("P225"), + @schema_description, + RDF.lang_string("Name der Taxonomie-Einheit", "de") + ) + + assert has_triple?( + vocab, + wd("P685"), + @rdfs_label, + RDF.lang_string("NCBI-Taxonomy-ID", "de") + ) + end + + test "includes inlined property descriptions even when removed from processed graph", %{ + config: config + } do + subject = RDF.iri("#{@wd_prefix}Q12345") + + # P105 is inlined with keep_source: false, so wdt:P105 won't be in the processed graph. + # Instead, baumbie:taxonomischer_rang is added. + graph = + RDF.Graph.new() + |> RDF.Graph.add( + {subject, RDF.iri("#{@baumbie_prefix}taxonomischer_rang"), RDF.lang_string("Art", "de")} + ) + + result = write_processed("Q12345", graph) + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add({wd("P105"), @rdfs_label, RDF.lang_string("taxonomischer Rang", "de")}) + + {:ok, path} = run_generator([result], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + # wd:P105 description included (from inline config, not from processed graph) + assert has_triple?( + vocab, + wd("P105"), + @rdfs_label, + RDF.lang_string("taxonomischer Rang", "de") + ) + end + + test "adds baumbie: property labels from config descriptions", %{config: config} do + subject = RDF.iri("#{@wd_prefix}Q12345") + + graph = + RDF.Graph.new() + |> RDF.Graph.add( + {subject, RDF.iri("#{@baumbie_prefix}taxonomischer_rang"), RDF.lang_string("Art", "de")} + ) + + result = write_processed("Q12345", graph) + {:ok, path} = run_generator([result], config) + vocab = RDF.Turtle.read_file!(path) + + assert has_triple?( + vocab, + RDF.iri("#{@baumbie_prefix}taxonomischer_rang"), + @rdfs_label, + RDF.lang_string("taxonomischer Rang", "de") + ) + end + + test "does not add baumbie: labels for inline properties not used in processed graphs", %{ + config: config + } do + subject = RDF.iri("#{@wd_prefix}Q12345") + + # Only baumbie:taxonomischer_rang used, not baumbie:uebergeordnetes_taxon + graph = + RDF.Graph.new() + |> RDF.Graph.add( + {subject, RDF.iri("#{@baumbie_prefix}taxonomischer_rang"), RDF.lang_string("Art", "de")} + ) + + result = write_processed("Q12345", graph) + {:ok, path} = run_generator([result], config) + vocab = RDF.Turtle.read_file!(path) + + assert has_predicate?( + vocab, + RDF.iri("#{@baumbie_prefix}taxonomischer_rang"), + @rdfs_label + ) + + refute has_predicate?( + vocab, + RDF.iri("#{@baumbie_prefix}uebergeordnetes_taxon"), + @rdfs_label + ) + end + + test "combines properties from multiple species", %{config: config} do + subject1 = RDF.iri("#{@wd_prefix}Q12345") + subject2 = RDF.iri("#{@wd_prefix}Q67890") + + graph1 = + RDF.Graph.new() + |> RDF.Graph.add({subject1, wdt("P225"), RDF.literal("Quercus robur")}) + + graph2 = + RDF.Graph.new() + |> RDF.Graph.add({subject2, wdt("P685"), RDF.literal("38942")}) + + result1 = write_processed("Q12345", graph1) + result2 = write_processed("Q67890", graph2) + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add( + {wd("P225"), @rdfs_label, RDF.lang_string("wissenschaftlicher Name", "de")} + ) + |> RDF.Graph.add({wd("P685"), @rdfs_label, RDF.lang_string("NCBI-Taxonomy-ID", "de")}) + + {:ok, path} = run_generator([result1, result2], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + assert has_predicate?(vocab, wd("P225"), @rdfs_label) + assert has_predicate?(vocab, wd("P685"), @rdfs_label) + end + + test "deduplicates properties across species", %{config: config} do + subject1 = RDF.iri("#{@wd_prefix}Q12345") + subject2 = RDF.iri("#{@wd_prefix}Q67890") + + graph1 = + RDF.Graph.new() + |> RDF.Graph.add({subject1, wdt("P225"), RDF.literal("Quercus robur")}) + + graph2 = + RDF.Graph.new() + |> RDF.Graph.add({subject2, wdt("P225"), RDF.literal("Fagus sylvatica")}) + + result1 = write_processed("Q12345", graph1) + result2 = write_processed("Q67890", graph2) + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add( + {wd("P225"), @rdfs_label, RDF.lang_string("wissenschaftlicher Name", "de")} + ) + + {:ok, path} = run_generator([result1, result2], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + labels = + vocab + |> RDF.Graph.get(wd("P225")) + |> RDF.Description.get(@rdfs_label) + + assert length(labels) == 1 + end + + test "filters language-tagged literals to de and en", %{config: config} do + subject = RDF.iri("#{@wd_prefix}Q12345") + + graph = + RDF.Graph.new() + |> RDF.Graph.add({subject, wdt("P225"), RDF.literal("Quercus robur")}) + + result = write_processed("Q12345", graph) + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add( + {wd("P225"), @rdfs_label, RDF.lang_string("wissenschaftlicher Name", "de")} + ) + |> RDF.Graph.add({wd("P225"), @rdfs_label, RDF.lang_string("taxon name", "en")}) + |> RDF.Graph.add({wd("P225"), @rdfs_label, RDF.lang_string("nom scientifique", "fr")}) + + {:ok, path} = run_generator([result], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + assert has_triple?( + vocab, + wd("P225"), + @rdfs_label, + RDF.lang_string("wissenschaftlicher Name", "de") + ) + + assert has_triple?( + vocab, + wd("P225"), + @rdfs_label, + RDF.lang_string("taxon name", "en") + ) + + refute has_triple?( + vocab, + wd("P225"), + @rdfs_label, + RDF.lang_string("nom scientifique", "fr") + ) + end + + test "keeps non-language-tagged values unchanged", %{config: config} do + subject = RDF.iri("#{@wd_prefix}Q12345") + + graph = + RDF.Graph.new() + |> RDF.Graph.add({subject, wdt("P225"), RDF.literal("Quercus robur")}) + + result = write_processed("Q12345", graph) + + wikibase_type = RDF.iri("http://wikiba.se/ontology#propertyType") + wikibase_string = RDF.iri("http://wikiba.se/ontology#String") + + descriptions = + RDF.Graph.new() + |> RDF.Graph.add({wd("P225"), wikibase_type, wikibase_string}) + + {:ok, path} = run_generator([result], config, descriptions: descriptions) + vocab = RDF.Turtle.read_file!(path) + + assert has_triple?(vocab, wd("P225"), wikibase_type, wikibase_string) + end + + test "produces empty vocab for empty input", %{config: config} do + {:ok, path} = run_generator([], config) + + vocab = RDF.Turtle.read_file!(path) + assert RDF.Graph.triple_count(vocab) == 0 + end + + test "writes vocab.ttl file to meta_dir", %{config: config} do + subject = RDF.iri("#{@wd_prefix}Q12345") + + graph = + RDF.Graph.new() + |> RDF.Graph.add({subject, wdt("P225"), RDF.literal("Quercus robur")}) + + result = write_processed("Q12345", graph) + {:ok, path} = run_generator([result], config) + + assert path == "#{@test_meta_dir}/vocab.ttl" + assert File.exists?(path) + end + end + + # Helpers + + defp wdt(property_id), do: RDF.iri("#{@wdt_prefix}#{property_id}") + defp wd(property_id), do: RDF.iri("#{@wd_prefix}#{property_id}") + + defp has_triple?(graph, subject, predicate, object) do + graph + |> RDF.Graph.triples() + |> Enum.any?(fn {s, p, o} -> s == subject and p == predicate and o == object end) + end + + defp has_predicate?(graph, subject, predicate) do + case RDF.Graph.get(graph, subject) do + nil -> false + desc -> predicate in RDF.Description.predicates(desc) + end + end +end diff --git a/preparation/xylem/test/xylem_test.exs b/preparation/xylem/test/xylem_test.exs new file mode 100644 index 0000000..5bbd9e7 --- /dev/null +++ b/preparation/xylem/test/xylem_test.exs @@ -0,0 +1,69 @@ +defmodule XylemTest do + use ExUnit.Case + use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney + + import ReqCassette + + @test_raw_dir "test/fixtures/wikidata_raw" + @test_processed_dir "test/fixtures/wikidata_processed" + @test_meta_dir "test/fixtures/wikidata_meta" + @test_config_path "test/fixtures/test_properties_integration.csv" + + setup do + File.mkdir_p!(@test_raw_dir) + File.mkdir_p!(@test_processed_dir) + File.mkdir_p!(@test_meta_dir) + + # Copy test properties CSV so auto-append doesn't modify the original + File.cp!("test/fixtures/test_properties.csv", @test_config_path) + + on_exit(fn -> + File.rm_rf!(@test_raw_dir) + File.rm_rf!(@test_processed_dir) + File.rm_rf!(@test_meta_dir) + File.rm(@test_config_path) + end) + + :ok + end + + describe "run/1" do + test "runs complete pipeline" do + use_cassette "pipeline_integration" do + with_cassette("pipeline_wikidata", fn plug -> + {:ok, result} = + Xylem.run( + csv_path: "test/fixtures/test_species.csv", + property_config_path: @test_config_path, + raw_dir: @test_raw_dir, + processed_dir: @test_processed_dir, + meta_dir: @test_meta_dir, + limit: 1, + delay_ms: 0, + plug: plug, + descriptions: RDF.Graph.new() + ) + + assert length(result.successful) == 1 + assert result.failed_fetches == [] + assert result.vocab_path == "#{@test_meta_dir}/vocab.ttl" + + # Processed TTL file exists + processed = hd(result.successful) + assert File.exists?(processed.processed_path) + + # Vocab file exists + assert File.exists?(result.vocab_path) + end) + end + end + + test "returns error for missing CSV" do + assert {:error, :enoent} = Xylem.run(csv_path: "nonexistent.csv") + end + + test "returns error for missing property config" do + assert {:error, :enoent} = Xylem.run(property_config_path: "nonexistent.csv") + end + end +end