You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2.3 MiB

Que(e)rying WikiData

Example of the wikipedia haiku bot...

https://botsin.space/@wikipediahaiku

which includes (as of this moment -- Oct 27 10:59)

He is married to
Amy McLawhorn, and has
a son named Michael

But tragically (I think), the bot doesn't link to its sources (which would make it so much more interesting as an interface INTO wikipedia / permit reading the isolated phrases in context.

Consider the case of House of Dust, an early computer assisted art project by Alison Knowles, a New York based artist associated with the Fluxus movement.

https://hub.xpub.nl/bootleglibrary/search?query=house+of+dust

In [10]:
from random import choice

material = ['SAND', 'DUST', 'LEAVES', 'PAPER', 'TIN', 'ROOTS', 'BRICK', 'STONE', 'DISCARDED CLOTHING', 'GLASS', 'STEEL', 'PLASTIC', 'MUD', 'BROKEN DISHES', 'WOOD', 'STRAW', 'WEEDS']

location = ['IN A GREEN, MOSSY TERRAIN', 'IN AN OVERPOPULATED AREA', 'BY THE SEA', 'BY AN ABANDONED LAKE', 'IN A DESERTED FACTORY', 'IN DENSE WOODS', 'IN JAPAN', 'AMONG SMALL HILLS', 'IN SOUTHERN FRANCE', 'AMONG HIGH MOUNTAINS', 'ON AN ISLAND', 'IN A COLD, WINDY CLIMATE', 'IN A PLACE WITH BOTH HEAVY RAIN AND BRIGHT SUN', 'IN A DESERTED AIRPORT', 'IN A HOT CLIMATE', 'INSIDE A MOUNTAIN', 'ON THE SEA', 'IN MICHIGAN', 'IN HEAVY JUNGLE UNDERGROWTH', 'BY A RIVER', 'AMONG OTHER HOUSES', 'IN A DESERTED CHURCH', 'IN A METROPOLIS', 'UNDERWATER']

light_source = ['CANDLES', 'ALL AVAILABLE LIGHTING', 'ELECTRICITY', 'NATURAL LIGHT']

inhabitants = ['PEOPLE WHO SLEEP VERY LITTLE', 'VEGETARIANS', 'HORSES AND BIRDS', 'PEOPLE SPEAKING MANY LANGUAGES WEARING LITTLE OR NO CLOTHING', 'ALL RACES OF MEN REPRESENTED WEARING PREDOMINANTLY RED CLOTHING', 'CHILDREN AND OLD PEOPLE', 'VARIOUS BIRDS AND FISH', 'LOVERS', 'PEOPLE WHO ENJOY EATING TOGETHER', 'PEOPLE WHO EAT A GREAT DEAL', 'COLLECTORS OF ALL TYPES', 'FRIENDS AND ENEMIES', 'PEOPLE WHO SLEEP ALMOST ALL THE TIME', 'VERY TALL PEOPLE', 'AMERICAN INDIANS', 'LITTLE BOYS', 'PEOPLE FROM MANY WALKS OF LIFE', 'NEGROS WEARING ALL COLORS', 'FRIENDS', 'FRENCH AND GERMAN SPEAKING PEOPLE', 'FISHERMEN AND FAMILIES', 'PEOPLE WHO LOVE TO READ']

print('')
print('A HOUSE OF ' + choice(material))
print('      ' + choice(location))
print('            USING ' + choice(light_source))
print('                  INHABITED BY ' + choice(inhabitants))
print('')
A HOUSE OF WOOD
      ON THE SEA
            USING ALL AVAILABLE LIGHTING
                  INHABITED BY CHILDREN AND OLD PEOPLE

Querying wikidata for materials...

Go to querybuilder and search in the property box for Material... regardless of value, with references... And ... super slow... in fact it times out...

Show the query in Query Service reveals the text version of the query in the SPARQL language...

SELECT DISTINCT ?item ?itemLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  {
    SELECT DISTINCT ?item WHERE {
      {
        ?item p:P186 ?statement0.
        ?statement0 (ps:P186/(wdt:P279*)) _:anyValueP186.
        FILTER(EXISTS { ?statement0 prov:wasDerivedFrom ?reference. })
      }
    }
    LIMIT 100
  }
}

Indeed, as indicated clicking the checkbox to show IDs instead of labels makes the query actually return results, but the results then need to be clicked on to understand them...

SELECT DISTINCT ?item WHERE {
  {
    ?item p:P186 ?statement0.
    ?statement0 (ps:P186/(wdt:P279*)) _:anyValueP186.
    FILTER(EXISTS { ?statement0 prov:wasDerivedFrom ?reference. })
  }
}
LIMIT 100

ok so I did this query...

SELECT DISTINCT ?statement0 ?p ?o WHERE {
  {
    ?item p:P186 ?statement0.
    ?statement0 ?p ?o.
  }
}
LIMIT 100

And I see in the result that the statement is then the thing that contains the P186 (ps:P186?) to the actual material, for instance:

</tr></table>
s p o
wds:Q181008-966f70cd-49ff-d4eb-5036-c45c1dabbbda ps:P186 wd:Q287</td>[wds:Q181008-966f70cd-49ff-d4eb-5036-c45c1dabbbda ps:P186 wd:Q287](http://www.wikidata.org/prop/statement/P186)[wds:Q181008-966f70cd-49ff-d4eb-5036-c45c1dabbbda ps:P186 wd:Q287](http://www.wikidata.org/entity/Q287)
In [ ]:
 
In [ ]:
 
SELECT DISTINCT ?material WHERE {
  {
    ?item p:P186 ?statement0.
    ?statement0 ps:P186 ?material.
  }
}
LIMIT 100

MAGIC LINE TO ADD

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }

Putting the pieces together...

SELECT DISTINCT ?item ?itemLabel ?statement0 ?material ?materialLabel WHERE {
  {
    ?item p:P186 ?statement0.
    ?statement0 ps:P186 ?material.
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
  }
}
LIMIT 10

LINK TO THIS QUERY

Quite beautiful in a way, the query showed ethanol, clicking on the statement takes me to the page of the object in question, a thermometer indeed described as being made of glass + ethanol:

https://www.wikidata.org/wiki/Q53866756#Q53866756$d48d012a-4cf5-6f1c-c4c0-0b314d444026

Linked Data

Special:EntityData

In a browser, this reveals the readable page:

But from code...

In [6]:
from urllib.request import urlopen

# f = urlopen("https://www.wikidata.org/wiki/Special:EntityData/Q42")
# print (f.read().decode("utf-8"))

import json

data = json.load(urlopen("https://www.wikidata.org/wiki/Special:EntityData/Q42"))
In [7]:
print (json.dumps(data, indent=2))
{
  "entities": {
    "Q42": {
      "pageid": 138,
      "ns": 0,
      "title": "Q42",
      "lastrevid": 1757862527,
      "modified": "2022-10-25T12:03:35Z",
      "type": "item",
      "id": "Q42",
      "labels": {
        "en": {
          "language": "en",
          "value": "Douglas Adams"
        },
        "fr": {
          "language": "fr",
          "value": "Douglas Adams"
        },
        "ru": {
          "language": "ru",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "pl": {
          "language": "pl",
          "value": "Douglas Adams"
        },
        "it": {
          "language": "it",
          "value": "Douglas Adams"
        },
        "en-gb": {
          "language": "en-gb",
          "value": "Douglas Adams"
        },
        "nb": {
          "language": "nb",
          "value": "Douglas Adams"
        },
        "es": {
          "language": "es",
          "value": "Douglas Adams"
        },
        "en-ca": {
          "language": "en-ca",
          "value": "Douglas Adams"
        },
        "hr": {
          "language": "hr",
          "value": "Douglas Adams"
        },
        "pt": {
          "language": "pt",
          "value": "Douglas Adams"
        },
        "ko": {
          "language": "ko",
          "value": "\ub354\uae00\ub7ec\uc2a4 \uc560\ub364\uc2a4"
        },
        "nl": {
          "language": "nl",
          "value": "Douglas Adams"
        },
        "el": {
          "language": "el",
          "value": "\u039d\u03c4\u03ac\u03b3\u03ba\u03bb\u03b1\u03c2 \u0386\u03bd\u03c4\u03b1\u03bc\u03c2"
        },
        "ar": {
          "language": "ar",
          "value": "\u062f\u0648\u063a\u0644\u0627\u0633 \u0622\u062f\u0645\u0632"
        },
        "arz": {
          "language": "arz",
          "value": "\u062f\u0648\u062c\u0644\u0627\u0633 \u0627\u062f\u0627\u0645\u0632"
        },
        "bar": {
          "language": "bar",
          "value": "Douglas Adams"
        },
        "be": {
          "language": "be",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "bg": {
          "language": "bg",
          "value": "\u0414\u044a\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "bs": {
          "language": "bs",
          "value": "Douglas Adams"
        },
        "ca": {
          "language": "ca",
          "value": "Douglas Adams"
        },
        "cs": {
          "language": "cs",
          "value": "Douglas Adams"
        },
        "cy": {
          "language": "cy",
          "value": "Douglas Adams"
        },
        "da": {
          "language": "da",
          "value": "Douglas Adams"
        },
        "eo": {
          "language": "eo",
          "value": "Douglas Adams"
        },
        "et": {
          "language": "et",
          "value": "Douglas Adams"
        },
        "fa": {
          "language": "fa",
          "value": "\u062f\u0627\u06af\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632"
        },
        "fi": {
          "language": "fi",
          "value": "Douglas Adams"
        },
        "ga": {
          "language": "ga",
          "value": "Douglas Adams"
        },
        "gl": {
          "language": "gl",
          "value": "Douglas Adams"
        },
        "he": {
          "language": "he",
          "value": "\u05d3\u05d0\u05d2\u05dc\u05e1 \u05d0\u05d3\u05de\u05e1"
        },
        "hu": {
          "language": "hu",
          "value": "Douglas Adams"
        },
        "id": {
          "language": "id",
          "value": "Douglas Adams"
        },
        "io": {
          "language": "io",
          "value": "Douglas Adams"
        },
        "is": {
          "language": "is",
          "value": "Douglas Adams"
        },
        "ja": {
          "language": "ja",
          "value": "\u30c0\u30b0\u30e9\u30b9\u30fb\u30a2\u30c0\u30e0\u30ba"
        },
        "jv": {
          "language": "jv",
          "value": "Douglas Adams"
        },
        "ka": {
          "language": "ka",
          "value": "\u10d3\u10d0\u10d2\u10da\u10d0\u10e1 \u10d0\u10d3\u10d0\u10db\u10e1\u10d8"
        },
        "la": {
          "language": "la",
          "value": "Duglassius Adams"
        },
        "lv": {
          "language": "lv",
          "value": "Duglass Adamss"
        },
        "mk": {
          "language": "mk",
          "value": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "mr": {
          "language": "mr",
          "value": "\u0921\u0917\u094d\u0932\u0938 \u0905\u0945\u0921\u092e\u094d\u0938"
        },
        "nn": {
          "language": "nn",
          "value": "Douglas Adams"
        },
        "ro": {
          "language": "ro",
          "value": "Douglas Adams"
        },
        "sco": {
          "language": "sco",
          "value": "Douglas Adams"
        },
        "sh": {
          "language": "sh",
          "value": "Douglas Adams"
        },
        "sk": {
          "language": "sk",
          "value": "Douglas Adams"
        },
        "sl": {
          "language": "sl",
          "value": "Douglas Adams"
        },
        "sq": {
          "language": "sq",
          "value": "Douglas Adams"
        },
        "sr": {
          "language": "sr",
          "value": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "sv": {
          "language": "sv",
          "value": "Douglas Adams"
        },
        "ta": {
          "language": "ta",
          "value": "\u0b9f\u0b95\u0bcd\u0bb3\u0bb8\u0bcd \u0b86\u0b9f\u0bae\u0bcd\u0bb8\u0bcd"
        },
        "tr": {
          "language": "tr",
          "value": "Douglas Adams"
        },
        "uk": {
          "language": "uk",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "vi": {
          "language": "vi",
          "value": "Douglas Adams"
        },
        "zh": {
          "language": "zh",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af"
        },
        "zh-cn": {
          "language": "zh-cn",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af"
        },
        "zh-hans": {
          "language": "zh-hans",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af"
        },
        "zh-hant": {
          "language": "zh-hant",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af"
        },
        "de-ch": {
          "language": "de-ch",
          "value": "Douglas Adams"
        },
        "pt-br": {
          "language": "pt-br",
          "value": "Douglas Adams"
        },
        "zh-sg": {
          "language": "zh-sg",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af"
        },
        "zh-my": {
          "language": "zh-my",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af"
        },
        "zh-hk": {
          "language": "zh-hk",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af"
        },
        "zh-tw": {
          "language": "zh-tw",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af"
        },
        "zh-mo": {
          "language": "zh-mo",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af"
        },
        "war": {
          "language": "war",
          "value": "Douglas Adams"
        },
        "be-tarask": {
          "language": "be-tarask",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0437"
        },
        "vep": {
          "language": "vep",
          "value": "Adams Duglas"
        },
        "ur": {
          "language": "ur",
          "value": "\u0688\u06af\u0644\u0633 \u0627\u06cc\u0688\u0645"
        },
        "oc": {
          "language": "oc",
          "value": "Douglas Adams"
        },
        "af": {
          "language": "af",
          "value": "Douglas Adams"
        },
        "an": {
          "language": "an",
          "value": "Douglas Adams"
        },
        "br": {
          "language": "br",
          "value": "Douglas Adams"
        },
        "eu": {
          "language": "eu",
          "value": "Douglas Adams"
        },
        "lb": {
          "language": "lb",
          "value": "Douglas Adams"
        },
        "lmo": {
          "language": "lmo",
          "value": "Douglas Adams"
        },
        "lt": {
          "language": "lt",
          "value": "Douglas Adams"
        },
        "nds": {
          "language": "nds",
          "value": "Douglas Adams"
        },
        "nds-nl": {
          "language": "nds-nl",
          "value": "Douglas Adams"
        },
        "pms": {
          "language": "pms",
          "value": "Douglas Adams"
        },
        "vec": {
          "language": "vec",
          "value": "Douglas Adams"
        },
        "wa": {
          "language": "wa",
          "value": "Douglas Adams"
        },
        "sr-ec": {
          "language": "sr-ec",
          "value": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "sr-el": {
          "language": "sr-el",
          "value": "Daglas Adams"
        },
        "de": {
          "language": "de",
          "value": "Douglas Adams"
        },
        "ckb": {
          "language": "ckb",
          "value": "\u062f\u06d5\u06af\u0644\u0627\u0633 \u0626\u0627\u062f\u0645\u0632"
        },
        "fo": {
          "language": "fo",
          "value": "Douglas Adams"
        },
        "kl": {
          "language": "kl",
          "value": "Douglas Adams"
        },
        "gsw": {
          "language": "gsw",
          "value": "Douglas Adams"
        },
        "te": {
          "language": "te",
          "value": "\u0c21\u0c17\u0c4d\u0c32\u0c38\u0c4d \u0c06\u0c21\u0c2e\u0c4d\u0c38\u0c4d"
        },
        "si": {
          "language": "si",
          "value": "\u0da9\u0d9c\u0dca\u0dbd\u0dc3\u0dca \u0d87\u0da9\u0db8\u0dca\u0dc3\u0dca"
        },
        "bn": {
          "language": "bn",
          "value": "\u09a1\u0997\u09b2\u09be\u09b8 \u0985\u09cd\u09af\u09be\u09a1\u09be\u09ae\u09b8"
        },
        "hi": {
          "language": "hi",
          "value": "\u0921\u0917\u094d\u0932\u0938 \u0905\u200d\u0921\u092e\u094d\u0938"
        },
        "rwr": {
          "language": "rwr",
          "value": "\u0921\u0917\u094d\u0932\u0938 \u0905\u200d\u0921\u092e\u094d\u0938"
        },
        "mg": {
          "language": "mg",
          "value": "Douglas Adams"
        },
        "ml": {
          "language": "ml",
          "value": "\u0d21\u0d17\u0d4d\u0d32\u0d38\u0d4d \u0d06\u0d21\u0d02\u0d38\u0d4d"
        },
        "gu": {
          "language": "gu",
          "value": "\u0aa1\u0a97\u0acd\u0ab2\u0abe\u0ab8 \u0a8f\u0aa1\u0aae\u0acd\u0ab8"
        },
        "hy": {
          "language": "hy",
          "value": "\u0534\u0578\u0582\u0563\u056c\u0561\u057d \u0531\u0564\u0561\u0574\u057d"
        },
        "ast": {
          "language": "ast",
          "value": "Douglas Adams"
        },
        "co": {
          "language": "co",
          "value": "Douglas Adams"
        },
        "de-at": {
          "language": "de-at",
          "value": "Douglas Adams"
        },
        "frp": {
          "language": "frp",
          "value": "Douglas Adams"
        },
        "fur": {
          "language": "fur",
          "value": "Douglas Adams"
        },
        "gd": {
          "language": "gd",
          "value": "Douglas Adams"
        },
        "ia": {
          "language": "ia",
          "value": "Douglas Adams"
        },
        "ie": {
          "language": "ie",
          "value": "Douglas Adams"
        },
        "kg": {
          "language": "kg",
          "value": "Douglas Adams"
        },
        "li": {
          "language": "li",
          "value": "Douglas Adams"
        },
        "lij": {
          "language": "lij",
          "value": "Douglas Adams"
        },
        "min": {
          "language": "min",
          "value": "Douglas Adams"
        },
        "ms": {
          "language": "ms",
          "value": "Douglas Adams"
        },
        "nap": {
          "language": "nap",
          "value": "Douglas Adams"
        },
        "nrm": {
          "language": "nrm",
          "value": "Douglas Adams"
        },
        "pcd": {
          "language": "pcd",
          "value": "Douglas Adams"
        },
        "rm": {
          "language": "rm",
          "value": "Douglas Adams"
        },
        "sc": {
          "language": "sc",
          "value": "Douglas Adams"
        },
        "scn": {
          "language": "scn",
          "value": "Douglas Adams"
        },
        "sw": {
          "language": "sw",
          "value": "Douglas Adams"
        },
        "vls": {
          "language": "vls",
          "value": "Douglas Adams"
        },
        "vo": {
          "language": "vo",
          "value": "Douglas Adams"
        },
        "wo": {
          "language": "wo",
          "value": "Douglas Adams"
        },
        "zu": {
          "language": "zu",
          "value": "Douglas Adams"
        },
        "az": {
          "language": "az",
          "value": "Duqlas Noel Adams"
        },
        "ak": {
          "language": "ak",
          "value": "Doglas Adams"
        },
        "or": {
          "language": "or",
          "value": "\u0b21\u0b17\u0b4d\u200c\u0b32\u0b3e\u0b38\u0b4d\u200c \u0b06\u0b26\u0b3e\u0b2e\u0b4d\u200c\u0b38"
        },
        "kn": {
          "language": "kn",
          "value": "\u0ca1\u0c97\u0ccd\u0cb2\u0cb8\u0ccd \u0c86\u0ca1\u0cae\u0ccd\u0cb8\u0ccd"
        },
        "ne": {
          "language": "ne",
          "value": "\u0921\u0917\u0932\u0938 \u090f\u0921\u092e\u094d\u0938"
        },
        "mrj": {
          "language": "mrj",
          "value": "\u0410\u0434\u0430\u043c\u0441"
        },
        "th": {
          "language": "th",
          "value": "\u0e14\u0e31\u0e01\u0e25\u0e31\u0e2a \u0e41\u0e2d\u0e14\u0e31\u0e21\u0e2a\u0e4c"
        },
        "pa": {
          "language": "pa",
          "value": "\u0a21\u0a17\u0a32\u0a38 \u0a10\u0a21\u0a2e\u0a1c\u0a3c"
        },
        "tcy": {
          "language": "tcy",
          "value": "\u0ca1\u0cbe\u0c97\u0ccd\u0cb2\u0cb8\u0ccd \u0c86\u0ca1\u0cae\u0ccd\u0cb8\u0ccd"
        },
        "tl": {
          "language": "tl",
          "value": "Douglas Adams"
        },
        "ext": {
          "language": "ext",
          "value": "Douglas Adams"
        },
        "azb": {
          "language": "azb",
          "value": "\u062f\u0627\u0642\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632"
        },
        "lfn": {
          "language": "lfn",
          "value": "Douglas Adams"
        },
        "nan": {
          "language": "nan",
          "value": "Douglas Adams"
        },
        "ky": {
          "language": "ky",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "bho": {
          "language": "bho",
          "value": "\u0921\u0917\u0932\u0938 \u090f\u0921\u092e\u094d\u0938"
        },
        "wuu": {
          "language": "wuu",
          "value": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af"
        },
        "yue": {
          "language": "yue",
          "value": "\u9053\u683c\u62c9\u65af\u4e9e\u7576\u65af"
        },
        "pnb": {
          "language": "pnb",
          "value": "\u0688\u06af\u0644\u0633 \u0627\u06cc\u0688\u0645\u0633"
        },
        "sje": {
          "language": "sje",
          "value": "Douglas Adams"
        },
        "se": {
          "language": "se",
          "value": "Douglas Adams"
        },
        "smn": {
          "language": "smn",
          "value": "Douglas Adams"
        },
        "sms": {
          "language": "sms",
          "value": "Douglas Adams"
        },
        "sma": {
          "language": "sma",
          "value": "Douglas Adams"
        },
        "smj": {
          "language": "smj",
          "value": "Douglas Adams"
        },
        "bm": {
          "language": "bm",
          "value": "Douglas Adams"
        },
        "frc": {
          "language": "frc",
          "value": "Douglas Adams"
        },
        "jam": {
          "language": "jam",
          "value": "Douglas Adams"
        },
        "kab": {
          "language": "kab",
          "value": "Douglas Adams"
        },
        "pap": {
          "language": "pap",
          "value": "Douglas Adams"
        },
        "prg": {
          "language": "prg",
          "value": "Douglas Adams"
        },
        "rgn": {
          "language": "rgn",
          "value": "Douglas Adams"
        },
        "vmf": {
          "language": "vmf",
          "value": "Douglas Adams"
        },
        "nqo": {
          "language": "nqo",
          "value": "\u07d8\u07ce\u07dc\u07ed\u07d1\u07df\u07ca\u07db \u07ca\u07d8\u07ca\u07e1\u07db"
        },
        "fy": {
          "language": "fy",
          "value": "Douglas Adams"
        },
        "hsb": {
          "language": "hsb",
          "value": "Douglas Adams"
        },
        "yi": {
          "language": "yi",
          "value": "\u05d3\u05d0\u05b7\u05d2\u05dc\u05d0\u05b7\u05e1 \u05d0\u05b7\u05d3\u05d0\u05b7\u05de\u05e1"
        },
        "kw": {
          "language": "kw",
          "value": "Douglas Adams"
        },
        "ms-arab": {
          "language": "ms-arab",
          "value": "\u062f\u0762\u0644\u0633 \u0627\u064a\u062f\u0645\ufeaf"
        },
        "jut": {
          "language": "jut",
          "value": "Douglas Adams"
        },
        "ba": {
          "language": "ba",
          "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
        },
        "ig": {
          "language": "ig",
          "value": "Douglas Adams"
        },
        "ary": {
          "language": "ary",
          "value": "\u062f\u0648\u06ad\u0644\u0627\u0633 \u0623\u062f\u0627\u0645\u0632"
        }
      },
      "descriptions": {
        "en": {
          "language": "en",
          "value": "English science fiction writer and humourist (1952\u20132001)"
        },
        "fr": {
          "language": "fr",
          "value": "\u00e9crivain de science-fiction et humoriste anglais (1952\u20132001)"
        },
        "en-gb": {
          "language": "en-gb",
          "value": "English writer and humourist"
        },
        "nb": {
          "language": "nb",
          "value": "engelsk science fiction-forfatter og humorist"
        },
        "it": {
          "language": "it",
          "value": "scrittore e umorista britannico"
        },
        "de": {
          "language": "de",
          "value": "britischer Science-Fiction-Autor und Humorist (1952\u20132001)"
        },
        "es": {
          "language": "es",
          "value": "escritor y humorista brit\u00e1nico"
        },
        "ru": {
          "language": "ru",
          "value": "\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439 \u043f\u0438\u0441\u0430\u0442\u0435\u043b\u044c, \u0434\u0440\u0430\u043c\u0430\u0442\u0443\u0440\u0433 \u0438 \u0441\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442, \u0430\u0432\u0442\u043e\u0440 \u0441\u0435\u0440\u0438\u0438 \u043a\u043d\u0438\u0433 \u00ab\u0410\u0432\u0442\u043e\u0441\u0442\u043e\u043f\u043e\u043c \u043f\u043e \u0433\u0430\u043b\u0430\u043a\u0442\u0438\u043a\u0435\u00bb"
        },
        "zh-hans": {
          "language": "zh-hans",
          "value": "\u82f1\u56fd\u4f5c\u5bb6"
        },
        "zh-hant": {
          "language": "zh-hant",
          "value": "\u82f1\u570b\u4f5c\u5bb6"
        },
        "zh-cn": {
          "language": "zh-cn",
          "value": "\u82f1\u56fd\u4f5c\u5bb6"
        },
        "zh-sg": {
          "language": "zh-sg",
          "value": "\u82f1\u56fd\u4f5c\u5bb6"
        },
        "zh-my": {
          "language": "zh-my",
          "value": "\u82f1\u56fd\u4f5c\u5bb6"
        },
        "zh": {
          "language": "zh",
          "value": "\u82f1\u570b\u4f5c\u5bb6"
        },
        "zh-hk": {
          "language": "zh-hk",
          "value": "\u82f1\u570b\u4f5c\u5bb6"
        },
        "zh-tw": {
          "language": "zh-tw",
          "value": "\u82f1\u570b\u6587\u5b78\u5bb6\u3001\u5e7d\u9ed8\u4f5c\u5bb6"
        },
        "zh-mo": {
          "language": "zh-mo",
          "value": "\u82f1\u570b\u4f5c\u5bb6"
        },
        "ca": {
          "language": "ca",
          "value": "escriptor angl\u00e8s"
        },
        "fi": {
          "language": "fi",
          "value": "englantilainen kirjailija ja humoristi"
        },
        "cs": {
          "language": "cs",
          "value": "anglick\u00fd spisovatel, humorista a dramatik"
        },
        "sv": {
          "language": "sv",
          "value": "brittisk f\u00f6rfattare (1952\u20132001)"
        },
        "pt-br": {
          "language": "pt-br",
          "value": "escritor e comediante brit\u00e2nico"
        },
        "ta": {
          "language": "ta",
          "value": "\u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bbe\u0bb3\u0bb0\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba8\u0b95\u0bc8\u0b9a\u0bcd\u0b9a\u0bc1\u0bb5\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd"
        },
        "sl": {
          "language": "sl",
          "value": "angle\u0161ki pisatelj, humorist in dramatik"
        },
        "da": {
          "language": "da",
          "value": "engelsk forfatter"
        },
        "nl": {
          "language": "nl",
          "value": "Engelse schrijver (1952-2001)"
        },
        "pt": {
          "language": "pt",
          "value": "escritor e comediante brit\u00e2nico"
        },
        "pl": {
          "language": "pl",
          "value": "brytyjski pisarz"
        },
        "lv": {
          "language": "lv",
          "value": "ang\u013cu zin\u0101tnisk\u0101s fantastikas rakstnieks un humorists"
        },
        "sr": {
          "language": "sr",
          "value": "\u0435\u043d\u0433\u043b\u0435\u0441\u043a\u0438 \u043f\u0438\u0441\u0430\u0446 \u0438 \u0445\u0443\u043c\u043e\u0440\u0438\u0441\u0442\u0430"
        },
        "sr-ec": {
          "language": "sr-ec",
          "value": "\u0435\u043d\u0433\u043b\u0435\u0441\u043a\u0438 \u043f\u0438\u0441\u0430\u0446 \u043d\u0430\u0443\u0447\u043d\u0435 \u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u043a\u0435 \u0438 \u0445\u0443\u043c\u043e\u0440\u0438\u0441\u0442\u0430"
        },
        "sr-el": {
          "language": "sr-el",
          "value": "engleski pisac nau\u010dne fantastike i humorista"
        },
        "eo": {
          "language": "eo",
          "value": "angla a\u016dtoro de sciencfikcio-romanoj kaj humoristo"
        },
        "bar": {
          "language": "bar",
          "value": "a englischer Science-Fiction-Schriftsteller"
        },
        "br": {
          "language": "br",
          "value": "skrivagner saoznek"
        },
        "ja": {
          "language": "ja",
          "value": "\u30a4\u30f3\u30b0\u30e9\u30f3\u30c9\u306e\u4f5c\u5bb6"
        },
        "nn": {
          "language": "nn",
          "value": "forfattar"
        },
        "tr": {
          "language": "tr",
          "value": "\u0130ngiliz yazar"
        },
        "si": {
          "language": "si",
          "value": "\u0d89\u0d82\u0d9c\u0dca\u200d\u0dbb\u0dd3\u0dc3\u0dd2 \u0d9a\u0dc0\u0dd2\u0dba\u0dd9\u0d9a\u0dca"
        },
        "vi": {
          "language": "vi",
          "value": "nh\u00e0 v\u0103n v\u00e0 nh\u00e0 so\u1ea1n h\u00e0i k\u1ecbch ng\u01b0\u1eddi Anh (1952-2001)"
        },
        "cy": {
          "language": "cy",
          "value": "awdur a dychanwr Seisnig"
        },
        "gu": {
          "language": "gu",
          "value": "\u0a85\u0a82\u0a97\u0acd\u0ab0\u0ac7\u0a9c\u0ac0 \u0ab2\u0ac7\u0a96\u0a95 \u0a85\u0aa8\u0ac7 \u0ab9\u0abe\u0ab8\u0acd\u0aaf\u0a95\u0abe\u0ab0"
        },
        "uk": {
          "language": "uk",
          "value": "\u0431\u0440\u0438\u0442\u0430\u043d\u0441\u044c\u043a\u0438\u0439 \u043a\u043e\u043c\u0456\u0447\u043d\u0438\u0439 \u0440\u0430\u0434\u0456\u043e\u0434\u0440\u0430\u043c\u0430\u0442\u0443\u0440\u0433, \u043f\u0438\u0441\u044c\u043c\u0435\u043d\u043d\u0438\u043a"
        },
        "ro": {
          "language": "ro",
          "value": "scriitor, dramaturg englez"
        },
        "hu": {
          "language": "hu",
          "value": "angol \u00edr\u00f3 \u00e9s humorista (1952\u20132001)"
        },
        "fa": {
          "language": "fa",
          "value": "\u0641\u06cc\u0644\u0645\u0646\u0627\u0645\u0647\u200c\u0646\u0648\u06cc\u0633 \u0648 \u0646\u0648\u06cc\u0633\u0646\u062f\u0647 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627\u06cc\u06cc"
        },
        "af": {
          "language": "af",
          "value": "Engelse skrywer en humoris"
        },
        "mk": {
          "language": "mk",
          "value": "\u0430\u043d\u0433\u043b\u0438\u0441\u043a\u0438 \u043f\u0438\u0441\u0430\u0442\u0435\u043b \u0438 \u0445\u0443\u043c\u043e\u0440\u0438\u0441\u0442"
        },
        "el": {
          "language": "el",
          "value": "\u0386\u03b3\u03b3\u03bb\u03bf\u03c2 \u03c3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03b1\u03c2 (1952\u20132001)"
        },
        "hy": {
          "language": "hy",
          "value": "\u0561\u0576\u0563\u056c\u056b\u0561\u0581\u056b \u0563\u0580\u0578\u0572, \u0564\u0580\u0561\u0574\u0561\u057f\u0578\u0582\u0580\u0563, \u057d\u0581\u0565\u0576\u0561\u0580\u056b\u057d\u057f, \u00ab\u0531\u057e\u057f\u0578\u057d\u057f\u0578\u057a\u0578\u057e \u0566\u0562\u0578\u057d\u0561\u0577\u0580\u057b\u056b\u056f\u056b \u0574\u056b\u057b\u0563\u0561\u056c\u0561\u056f\u057f\u056b\u056f\u0561\u056f\u0561\u0576 \u0578\u0582\u0572\u0565\u0581\u0578\u0582\u0575\u0581\u00bb \u057e\u0565\u057a\u0565\u0580\u056b \u0577\u0561\u0580\u0584"
        },
        "bg": {
          "language": "bg",
          "value": "\u0430\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438 \u043f\u0438\u0441\u0430\u0442\u0435\u043b \u0438 \u0445\u0443\u043c\u043e\u0440\u0438\u0441\u0442"
        },
        "ne": {
          "language": "ne",
          "value": "\u0905\u0919\u094d\u0917\u094d\u0930\u0947\u091c\u0940 \u0932\u0947\u0916\u0915 \u0930 \u0935\u094d\u092f\u0919\u094d\u0917\u094d\u092f\u0915\u093e\u0930"
        },
        "he": {
          "language": "he",
          "value": "\u05e1\u05d5\u05e4\u05e8 \u05d5\u05d4\u05d5\u05de\u05d5\u05e8\u05d9\u05e1\u05d8\u05df \u05d1\u05e8\u05d9\u05d8\u05d9"
        },
        "de-at": {
          "language": "de-at",
          "value": "britischer Schriftsteller"
        },
        "de-ch": {
          "language": "de-ch",
          "value": "britischer Schriftsteller"
        },
        "gsw": {
          "language": "gsw",
          "value": "britischer Schriftsteller"
        },
        "nds": {
          "language": "nds",
          "value": "englischer Schriftsteller"
        },
        "kn": {
          "language": "kn",
          "value": "\u0c87\u0c82\u0c97\u0ccd\u0cb2\u0cbf\u0cb7\u0ccd \u0cad\u0cbe\u0cb7\u0cc6\u0caf \u0cac\u0cb0\u0cb9\u0c97\u0cbe\u0cb0 \u0cb9\u0cbe\u0c97\u0cc2 \u0cb9\u0cbe\u0cb8\u0ccd\u0caf \u0cb2\u0cc7\u0c96\u0c95"
        },
        "pa": {
          "language": "pa",
          "value": "\u0a05\u0a70\u0a17\u0a30\u0a47\u0a1c\u0a3c\u0a40 \u0a32\u0a47\u0a16\u0a15"
        },
        "ar": {
          "language": "ar",
          "value": "\u0643\u0627\u062a\u0628 \u0625\u0646\u062c\u0644\u064a\u0632\u064a \u0641\u0643\u0627\u0647\u064a"
        },
        "tl": {
          "language": "tl",
          "value": "taga-Inglatera na manunulat at tagapagpatawa"
        },
        "eu": {
          "language": "eu",
          "value": "idazle eta umorista britaniarra"
        },
        "hr": {
          "language": "hr",
          "value": "britanski radijski dramaturg i pisac znanstvene fantastike"
        },
        "ko": {
          "language": "ko",
          "value": "\uc601\uad6d\uc758 \uc791\uac00"
        },
        "sw": {
          "language": "sw",
          "value": "mwandishi Mwingereza"
        },
        "th": {
          "language": "th",
          "value": "\u0e19\u0e31\u0e01\u0e40\u0e02\u0e35\u0e22\u0e19\u0e41\u0e25\u0e30\u0e1c\u0e39\u0e49\u0e40\u0e25\u0e48\u0e32\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c\u0e02\u0e31\u0e19\u0e0a\u0e32\u0e27\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29"
        },
        "en-ca": {
          "language": "en-ca",
          "value": "English writer"
        },
        "gd": {
          "language": "gd",
          "value": "sgr\u00ecobhadair Sasannach"
        },
        "ka": {
          "language": "ka",
          "value": "\u10d8\u10dc\u10d2\u10da\u10d8\u10e1\u10d4\u10da\u10d8 \u10db\u10ec\u10d4\u10e0\u10d0\u10da\u10d8 \u10d3\u10d0 \u10d8\u10e3\u10db\u10dd\u10e0\u10d8\u10e1\u10e2\u10d8"
        },
        "et": {
          "language": "et",
          "value": "inglise ulmekirjanik"
        },
        "te": {
          "language": "te",
          "value": "\u0c07\u0c02\u0c17\u0c4d\u0c32\u0c40\u0c37\u0c41 \u0c30\u0c1a\u0c2f\u0c3f\u0c24, \u0c39\u0c3e\u0c38\u0c4d\u0c2f\u0c15\u0c3e\u0c30\u0c41\u0c21\u0c41"
        },
        "ast": {
          "language": "ast",
          "value": "escritor y humorista ingl\u00e9s"
        },
        "sq": {
          "language": "sq",
          "value": "autor dhe humorist anglez"
        },
        "gl": {
          "language": "gl",
          "value": "escritor e guionista brit\u00e1nico"
        },
        "bho": {
          "language": "bho",
          "value": "\u0905\u0902\u0917\u094d\u0930\u0947\u091c\u0940 \u092d\u093e\u0937\u093e \u0915\u0947 \u092c\u094d\u0930\u093f\u091f\u093f\u0936 \u0932\u0947\u0916\u0915"
        },
        "sk": {
          "language": "sk",
          "value": "anglick\u00fd spisovate\u013e"
        },
        "la": {
          "language": "la",
          "value": "scriptor, scriptor scaenicus, et mythistoricus (1952\u20132001)"
        },
        "ml": {
          "language": "ml",
          "value": "\u0d2c\u0d4d\u0d30\u0d3f\u0d1f\u0d4d\u0d1f\u0d40\u0d37\u0d4d \u0d0e\u0d34\u0d41\u0d24\u0d4d\u0d24\u0d41\u0d15\u0d3e\u0d30\u0d28\u0d41\u0d02 \u0d39\u0d3e\u0d38\u0d4d\u0d2f\u0d38\u0d3e\u0d39\u0d3f\u0d24\u0d4d\u0d2f\u0d3e\u0d15\u0d3e\u0d30\u0d28\u0d41\u0d02"
        },
        "ga": {
          "language": "ga",
          "value": "scr\u00edbhneoir Sasanach"
        },
        "ku-latn": {
          "language": "ku-latn",
          "value": "niv\u00eeskar\u00ea br\u00eetan\u00ee"
        },
        "min": {
          "language": "min",
          "value": "Panulih jo palawak dari Inggirih"
        },
        "hi": {
          "language": "hi",
          "value": "\u0905\u0902\u0917\u094d\u0930\u0947\u091c\u0940 \u0932\u0947\u0916\u0915"
        },
        "nqo": {
          "language": "nqo",
          "value": "\u07ca\u07f2\u07ec\u07dc\u07ed\u07cc\u07ec\u07df\u07cb\u07ec \u07db\u07d3\u07cd\u07e6\u07df\u07ca \u07de\u07ce\u07f2\u07ec\u07d8\u07d0\u07ec\u07d5\u07cd\u07f0 \u07df\u07d0\u07f2\u07de\u07cf \u07de\u07ca\u07f2\u07ec"
        },
        "be": {
          "language": "be",
          "value": "\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u043a\u0456 \u043f\u0456\u0441\u044c\u043c\u0435\u043d\u043d\u0456\u043a"
        },
        "id": {
          "language": "id",
          "value": "penulis dan humoris asal Britania Raya (1952-2001)"
        },
        "bs": {
          "language": "bs",
          "value": "engleski pisac i humorist"
        },
        "ms": {
          "language": "ms",
          "value": "penulis dan pelawak Inggeris"
        },
        "mr": {
          "language": "mr",
          "value": "\u092c\u094d\u0930\u093f\u091f\u093f\u0936 \u0932\u0947\u0916\u0915 \u0935 \u0928\u093e\u091f\u0915\u0915\u093e\u0930"
        },
        "bn": {
          "language": "bn",
          "value": "\u0987\u0982\u09b0\u09c7\u099c \u0995\u09b2\u09cd\u09aa\u09ac\u09bf\u099c\u09cd\u099e\u09be\u09a8 \u09b2\u09c7\u0996\u0995 \u0993 \u0995\u09cc\u09a4\u09c1\u0995\u09ac\u09bf\u09a6"
        },
        "dv": {
          "language": "dv",
          "value": "\u078d\u07a8\u0794\u07aa\u0782\u07b0\u078c\u07ac\u0783\u07a8\u0787\u07ac\u0787\u07b0"
        },
        "is": {
          "language": "is",
          "value": "Enskur h\u00f6fundur"
        },
        "ary": {
          "language": "ary",
          "value": "\u0643\u0627\u062a\u0628 \u0646\u06ad\u0644\u064a\u0632\u064a \u062f\u064a\u0627\u0644 \u0644\u062e\u064a\u0627\u0644 \u0644\u0639\u0644\u0645\u064a \u0648 \u0644\u0641\u0643\u0627\u0647\u0629"
        }
      },
      "aliases": {
        "en": [
          {
            "language": "en",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "en",
            "value": "DNA"
          }
        ],
        "ru": [
          {
            "language": "ru",
            "value": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441"
          },
          {
            "language": "ru",
            "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u041d\u043e\u044d\u043b\u044c \u0410\u0434\u0430\u043c\u0441"
          },
          {
            "language": "ru",
            "value": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441 \u041d\u043e\u044d\u043b\u044c"
          }
        ],
        "nb": [
          {
            "language": "nb",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "nb",
            "value": "Douglas N. Adams"
          }
        ],
        "fr": [
          {
            "language": "fr",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "de": [
          {
            "language": "de",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "pt-br": [
          {
            "language": "pt-br",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "pt-br",
            "value": "Douglas Noel Adams"
          }
        ],
        "be-tarask": [
          {
            "language": "be-tarask",
            "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441"
          }
        ],
        "zh": [
          {
            "language": "zh",
            "value": "\u4e9e\u7576\u65af"
          }
        ],
        "es": [
          {
            "language": "es",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "es",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "it": [
          {
            "language": "it",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "it",
            "value": "Douglas N. Adams"
          }
        ],
        "cs": [
          {
            "language": "cs",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "cs",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "cs",
            "value": "Douglas N. Adams"
          }
        ],
        "hy": [
          {
            "language": "hy",
            "value": "\u0531\u0564\u0561\u0574\u057d, \u0534\u0578\u0582\u0563\u056c\u0561\u057d"
          }
        ],
        "el": [
          {
            "language": "el",
            "value": "\u039d\u03c4\u03ac\u03b3\u03ba\u03bb\u03b1\u03c2 \u039d\u03cc\u03b5\u03bb \u0386\u03bd\u03c4\u03b1\u03bc\u03c2"
          }
        ],
        "nl": [
          {
            "language": "nl",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "nl",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "pt": [
          {
            "language": "pt",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "pt",
            "value": "Douglas Noel Adams"
          }
        ],
        "ja": [
          {
            "language": "ja",
            "value": "\u30c0\u30b0\u30e9\u30b9\u30fb\u30a2\u30c0\u30e0\u30b9"
          }
        ],
        "pa": [
          {
            "language": "pa",
            "value": "\u0a21\u0a17\u0a32\u0a38 \u0a28\u0a4b\u0a0f\u0a32 \u0a10\u0a21\u0a2e\u0a1c\u0a3c"
          },
          {
            "language": "pa",
            "value": "\u0a21\u0a17\u0a32\u0a38 \u0a10\u0a21\u0a2e\u0a38"
          }
        ],
        "tl": [
          {
            "language": "tl",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "tl",
            "value": "Douglas Noel Adams"
          }
        ],
        "eu": [
          {
            "language": "eu",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "eu",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "uk": [
          {
            "language": "uk",
            "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u041d\u043e\u0435\u043b \u0410\u0434\u0430\u043c\u0441"
          },
          {
            "language": "uk",
            "value": "\u0410\u0434\u0430\u043c\u0441 \u0414\u0443\u0433\u043b\u0430\u0441"
          }
        ],
        "hr": [
          {
            "language": "hr",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "hr",
            "value": "Douglas N. Adams"
          },
          {
            "language": "hr",
            "value": "Douglas Noel Adams"
          }
        ],
        "he": [
          {
            "language": "he",
            "value": "\u05d3\u05d2\u05dc\u05e1 \u05d0\u05d3\u05de\u05e1"
          },
          {
            "language": "he",
            "value": "\u05d3\u05d0\u05d2\u05dc\u05e1 \u05e0\u05d5\u05d0\u05dc \u05d0\u05d3\u05de\u05e1"
          }
        ],
        "ko": [
          {
            "language": "ko",
            "value": "\ub354\uae00\ub77c\uc2a4 \uc560\ub364\uc2a4"
          },
          {
            "language": "ko",
            "value": "\ub354\uae00\ub7ec\uc2a4 \ub178\uc5d8 \uc560\ub364\uc2a4"
          }
        ],
        "sw": [
          {
            "language": "sw",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "sw",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "tr": [
          {
            "language": "tr",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "tr",
            "value": "Douglas N. Adams"
          },
          {
            "language": "tr",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "et": [
          {
            "language": "et",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "ar": [
          {
            "language": "ar",
            "value": "\u062f\u0648\u063a\u0644\u0627\u0633 \u0646\u0648\u064a\u0644 \u0622\u062f\u0645\u0632"
          },
          {
            "language": "ar",
            "value": "\u062f\u0648\u063a\u0644\u0627\u0633 \u0646. \u0622\u062f\u0645\u0632"
          },
          {
            "language": "ar",
            "value": "\u062f\u0648\u063a\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632"
          },
          {
            "language": "ar",
            "value": "\u062f\u0648\u062c\u0644\u0627\u0633 \u0622\u062f\u0645\u0632"
          },
          {
            "language": "ar",
            "value": "\u062f\u0648\u062c\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632"
          }
        ],
        "la": [
          {
            "language": "la",
            "value": "Duglassius No\u00eblus Adams"
          },
          {
            "language": "la",
            "value": "Douglas Adams"
          },
          {
            "language": "la",
            "value": "Duglassius Natalis Adams"
          }
        ],
        "gl": [
          {
            "language": "gl",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "bho": [
          {
            "language": "bho",
            "value": "\u0921\u0917\u094d\u0932\u0938 \u0905\u0921\u092e\u094d\u0938"
          },
          {
            "language": "bho",
            "value": "\u0921\u0917\u094d\u0932\u0938 \u090f\u0921\u092e\u094d\u0938"
          }
        ],
        "sv": [
          {
            "language": "sv",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "sv",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "ml": [
          {
            "language": "ml",
            "value": "\u0d21\u0d17\u0d4d\u0d32\u0d38\u0d4d \u0d28\u0d4b\u0d2f\u0d7d \u0d06\u0d21\u0d02\u0d38\u0d4d"
          },
          {
            "language": "ml",
            "value": "\u0d21\u0d17\u0d4d\u0d32\u0d38\u0d4d \u0d0e\u0d28\u0d4d\u200d \u0d06\u0d21\u0d02\u0d38\u0d4d"
          }
        ],
        "nn": [
          {
            "language": "nn",
            "value": "Douglas Noel Adams"
          }
        ],
        "ga": [
          {
            "language": "ga",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "ga",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "ga",
            "value": "Douglas N. Adams"
          }
        ],
        "zh-tw": [
          {
            "language": "zh-tw",
            "value": "\u9053\u683c\u62c9\u65af\u00b7\u8afe\u8036\u723e\u00b7\u4e9e\u7576\u65af"
          }
        ],
        "ro": [
          {
            "language": "ro",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "eo": [
          {
            "language": "eo",
            "value": "Douglas ADAMS"
          },
          {
            "language": "eo",
            "value": "Douglas No\u00ebl ADAMS"
          }
        ],
        "ca": [
          {
            "language": "ca",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "ca",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "nqo": [
          {
            "language": "nqo",
            "value": "\u07d8\u07ce\u07dc\u07ed\u07d1\u07df\u07ca\u07db \u07e3\u07cf\u07e5\u07cd\u07df \u07ca\u07d8\u07ca\u07e1\u07db"
          },
          {
            "language": "nqo",
            "value": "\u07d8\u07ce\u07dc\u07ed\u07d1\u07df\u07ca\u07db \u07e3. \u07ca\u07d8\u07ca\u07e1\u07db"
          }
        ],
        "pl": [
          {
            "language": "pl",
            "value": "Douglas Noel Adams"
          }
        ],
        "ms": [
          {
            "language": "ms",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "ms",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "ms",
            "value": "Douglas N. Adams"
          }
        ],
        "da": [
          {
            "language": "da",
            "value": "Douglas Noel Adams"
          }
        ],
        "fi": [
          {
            "language": "fi",
            "value": "Douglas Noel Adams"
          }
        ],
        "az": [
          {
            "language": "az",
            "value": "Duqlas Adams"
          },
          {
            "language": "az",
            "value": "Douglas Adams"
          }
        ],
        "mrj": [
          {
            "language": "mrj",
            "value": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441"
          }
        ],
        "ur": [
          {
            "language": "ur",
            "value": "\u0688\u06af\u0644\u0633 \u0627\u06cc\u0688\u0645\u0633"
          }
        ],
        "lv": [
          {
            "language": "lv",
            "value": "Douglas Adams"
          }
        ],
        "sr-el": [
          {
            "language": "sr-el",
            "value": "Douglas Adams"
          }
        ],
        "ak": [
          {
            "language": "ak",
            "value": "Douglas Adams"
          }
        ],
        "hu": [
          {
            "language": "hu",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "hu",
            "value": "Douglas No\u00ebl Adams"
          }
        ],
        "ia": [
          {
            "language": "ia",
            "value": "Douglas Noel Adams"
          }
        ],
        "id": [
          {
            "language": "id",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "id",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "id",
            "value": "Douglas N. Adams"
          }
        ],
        "sk": [
          {
            "language": "sk",
            "value": "Douglas Noel Adams"
          },
          {
            "language": "sk",
            "value": "Douglas No\u00ebl Adams"
          },
          {
            "language": "sk",
            "value": "Douglas N. Adams"
          }
        ],
        "af": [
          {
            "language": "af",
            "value": "Douglas Noel Adams"
          }
        ],
        "bar": [
          {
            "language": "bar",
            "value": "Douglas No\u00ebl Adams"
          }
        ]
      },
      "claims": {
        "P31": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P31",
              "hash": "ad7d38a03cdd40cdc373de0dc4e7b7fcbccb31d9",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 5,
                  "id": "Q5"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$F078E5B3-F9A8-480E-B7AC-D97778CBBEF9",
            "rank": "normal",
            "references": [
              {
                "hash": "a4d108601216cffd2ff1819ccf12b483486b62e7",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "def9f19d84b65167a2a17ce38364d264c16127fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 19938912,
                          "id": "Q19938912"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 150,
                          "id": "Q150"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P407",
                  "P813"
                ]
              },
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P21": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P21",
              "hash": "85ad4b1c7348f7a5aac521135040d74e91fb5939",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 6581097,
                  "id": "Q6581097"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$39F4DE4F-C277-449C-9F99-512350971B5B",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              },
              {
                "hash": "a4d108601216cffd2ff1819ccf12b483486b62e7",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "def9f19d84b65167a2a17ce38364d264c16127fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 19938912,
                          "id": "Q19938912"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 150,
                          "id": "Q150"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P407",
                  "P813"
                ]
              },
              {
                "hash": "6f60c456c95ba618e266011ead6d50a81cfb3e76",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "e5f853298b310a45c2ee3b01a2a4940640f7985a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 47757534,
                          "id": "Q47757534"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P269": [
                    {
                      "snaktype": "value",
                      "property": "P269",
                      "hash": "adb558674eda6bfe9b17c3fed9be99c3d55f0cc3",
                      "datavalue": {
                        "value": "026677636",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 150,
                          "id": "Q150"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P269",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P106": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "1ecddfdb184ec1e8540abf98fb07f825697cfab5",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 214917,
                  "id": "Q214917"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$e0f736bd-4711-c43b-9277-af1e9b2fb85f",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "8c403faaa2be823ac66d54a4e5e1c37ddbf96da0",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 28389,
                  "id": "Q28389"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$E13E619F-63EF-4B72-99D9-7A45C7C6AD34",
            "rank": "normal",
            "references": [
              {
                "hash": "f67142030dd221e1441a10a7438323ad44f35be8",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "52af760ff9ceb914251924abe88e53af182b0f92",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 193563,
                          "id": "Q193563"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P813"
                ]
              },
              {
                "hash": "0fed87b3320338e0ed0587df9b43e47cfcf5b69f",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d679e707f58412628d39fb85af3e5393e7935e69",
                      "datavalue": {
                        "value": "http://www.jinni.com/tv/the-hitchhikers-guide-to-the-galaxy/cast-crew/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "7992d2aec094f84d664106049d9a4955d096082f",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 6625963,
                  "id": "Q6625963"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "68d492daaeed01d65e875ac221c09b26399b8ba6",
                  "datavalue": {
                    "value": {
                      "time": "+1979-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P580"
            ],
            "id": "Q42$D6E21D67-05D6-4A0B-8458-0744FCEED13D",
            "rank": "normal",
            "references": [
              {
                "hash": "ebf92afc2ec3ffcf1aec1d55f0b066d190281576",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "ce45c622a9170b7f462f34f0f08f543843add2a9",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2567271,
                          "id": "Q2567271"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P4789": [
                    {
                      "snaktype": "value",
                      "property": "P4789",
                      "hash": "bb5a76d21ce7a9507293d4e26847bd068e04be27",
                      "datavalue": {
                        "value": "U4994",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P4789"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "05de1894dc52a056fa732acf7078c4f194b036d5",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 4853732,
                  "id": "Q4853732"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$7eb8aaef-4ddf-8b87-bd02-406f91a296bd",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "468425a7d5990169ca1caa25413280f78cb985f8",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 18844224,
                  "id": "Q18844224"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$CBDC4890-D5A2-469C-AEBB-EFB682B891E7",
            "rank": "normal",
            "references": [
              {
                "hash": "2f26d70b1e8b8cb53882b83197d1859e226da12d",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d257e42604861810e838f211e8259afd949dd449",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 15222191,
                          "id": "Q15222191"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P813"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "cb6956acd8af4f54927985ab67fb99c443340c03",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 245068,
                  "id": "Q245068"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$58F0D772-9CE4-46AC-BF0D-FBBBAFA09603",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P106",
              "hash": "70541c2eb72d85fa5f74008b4ee33b004a1ff7eb",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 36180,
                  "id": "Q36180"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$663C6872-388F-4024-995A-BC3C1C0E57C6",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P800": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P800",
              "hash": "12e1c410170de1e9247f6517a0da31885e9d1d62",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 25169,
                  "id": "Q25169"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$FA73986E-3D1D-4CAB-B358-424B58544620",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P800",
              "hash": "d4d95f64e9b01211698438ce2fce587657513a4a",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 20736364,
                  "id": "Q20736364"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$61ce65a9-454a-5b97-e014-496299c1c03a",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P800",
              "hash": "2f2742d0598fbc9673d3ef91ff5dbe88188276c2",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 7758404,
                  "id": "Q7758404"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$1c92fbe2-4743-0b27-e4ac-16320efe7864",
            "rank": "normal"
          }
        ],
        "P569": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P569",
              "hash": "27f538a50ad110d1e6716c972f5f0ac24ca17430",
              "datavalue": {
                "value": {
                  "time": "+1952-03-11T00:00:00Z",
                  "timezone": 0,
                  "before": 0,
                  "after": 0,
                  "precision": 11,
                  "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                },
                "type": "time"
              },
              "datatype": "time"
            },
            "type": "statement",
            "id": "q42$D8404CDA-25E4-4334-AF13-A3290BCD9C0F",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              },
              {
                "hash": "a02f3a77ddd343e6b88be25696b055f5131c3d64",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c1b3a8484d531e0eac6b9835b63e74b1412ccdb0",
                      "datavalue": {
                        "value": {
                          "time": "+2015-07-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P813"
                ]
              },
              {
                "hash": "87dfb64c99ab2c706c135e0110f57d1ba58d67eb",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "def9f19d84b65167a2a17ce38364d264c16127fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 19938912,
                          "id": "Q19938912"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e8d57e647c5bed000c86c300ee914ccd5d948b3f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-26T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P813"
                ]
              },
              {
                "hash": "3bc90af5225a0b1248b3362e911577073e904e20",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "dbd2f3b8b11eb0da5209a6ea4a74ce0df88c749b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1139587,
                          "id": "Q1139587"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P2168": [
                    {
                      "snaktype": "value",
                      "property": "P2168",
                      "hash": "5b535a453c0f88c11cb592ae35510abe93d2eec5",
                      "datavalue": {
                        "value": "271209",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "b468ee5535c44e76e52a8ad71217a0f5c5077d19",
                      "datavalue": {
                        "value": {
                          "time": "+2016-01-11T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P2168",
                  "P813"
                ]
              },
              {
                "hash": "b460d7e5cae668698a5dfe74198df6632fe7231d",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "f98ec89708e8eab9511c049702ef59df0721d652",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 29861311,
                          "id": "Q29861311"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P3430": [
                    {
                      "snaktype": "value",
                      "property": "P3430",
                      "hash": "1e9a0d6461bed3d3b3f7ed1956b151058982cd6e",
                      "datavalue": {
                        "value": "w65h7md1",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P3430",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "28af4e1131157dbbb2a5bbae189519a22e7d2b79",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "21e8e2c39cd74b26201557fb152f6a894b180241",
                      "datavalue": {
                        "value": "https://www.wired.com/2012/03/i-miss-douglas-adams/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "fcdddce2cc4540a613b0b8c0e5d2bbd2cc5704a9",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "7278d120725f30a1e40e337049583011d3578bd3",
                      "datavalue": {
                        "value": "http://www.independent.co.uk/arts-entertainment/books/news/google-doodle-celebrates-life-of-hitchhikers-guide-to-the-galaxy-author-douglas-adams-8528856.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "162d5556b3c48733c6c27b4cddcb99bc86f4bf70",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "871891c242389d06b23bf809fdc0301df1ed9c77",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2629164,
                          "id": "Q2629164"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1233": [
                    {
                      "snaktype": "value",
                      "property": "P1233",
                      "hash": "b601606b4bce3131ed7b591bb3acbcaeaa8f7a6e",
                      "datavalue": {
                        "value": "122",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P1233",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "bab32d323b6c92d91ff7d0c4707346012900761b",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d74ce84c9bceb1f94564bc8d53ad074739e46eb3",
                      "datavalue": {
                        "value": "http://www.screenonline.org.uk/people/id/1233876/index.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "0d9f07c561f61776c61a026473508c535af28267",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "b62f3fa8bab7eb5e1bfe16d03cda082d25315c85",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 63056,
                          "id": "Q63056"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P535": [
                    {
                      "snaktype": "value",
                      "property": "P535",
                      "hash": "ce3fb403e96b3b004b1b480734c941819c442c01",
                      "datavalue": {
                        "value": "22814",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "d34dcfad6c25d9dfabf330ae1c0c8159e36f1fa6",
                      "datavalue": {
                        "value": "Douglas Noel Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P535",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "dc42b8fb4c89807fe07a74ee933d45e4ba6353a1",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "9d66409d3d04632fc69413ea86abf094f92fae88",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 3343389,
                          "id": "Q3343389"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P5570": [
                    {
                      "snaktype": "value",
                      "property": "P5570",
                      "hash": "0a407feec4ece2cd71d650ad10574fb91b9f5b18",
                      "datavalue": {
                        "value": "143",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "2956a68705d15418b9490fb5feb13d1c1c2801fc",
                      "datavalue": {
                        "value": "Douglas ADAMS",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P5570",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "7571c014841534580d357bfbc652e23c8dfe6f76",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "e2a81dbf2f7dd02b332d6358ef65f622f82e8cc3",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 237227,
                          "id": "Q237227"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P5019": [
                    {
                      "snaktype": "value",
                      "property": "P5019",
                      "hash": "43ed67a7e85525f6e09d5b1c7d8cf48a13b0249d",
                      "datavalue": {
                        "value": "adams-douglas-noel",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "c4476ecceaffe79708600de5842ba5b400aa7065",
                      "datavalue": {
                        "value": "Douglas No\u00ebl Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P5019",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "a3feaf25fa95c4893bc1dc74ca6d884bc37c2723",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "155e1a7322c5a7febad55feba5ba4c3a2656b1c4",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2877812,
                          "id": "Q2877812"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P3630": [
                    {
                      "snaktype": "value",
                      "property": "P3630",
                      "hash": "c943a67cefbf6c5f52cd624308b923cddb344024",
                      "datavalue": {
                        "value": "2627",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P3630",
                  "P1810"
                ]
              },
              {
                "hash": "3780b8d878be9297899f30beb767bf408acbbd4a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "055f82ef73ce123450780d681359ac6e9077e315",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 107343683,
                          "id": "Q107343683"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1284": [
                    {
                      "snaktype": "value",
                      "property": "P1284",
                      "hash": "2f5c2e65a1d9fca309615b885bf62f3e5260874e",
                      "datavalue": {
                        "value": "00000020676",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P1284",
                  "P813",
                  "P1810"
                ]
              }
            ]
          }
        ],
        "P19": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P19",
              "hash": "779e8852aac9ba2014a9434016cba24b1890a9da",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 350,
                  "id": "Q350"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$3D284234-52BC-4DA3-83A3-7C39F84BA518",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              },
              {
                "hash": "3f4d26cf841e20630c969afc0e48e5e3ef0c5a49",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "a99756c83f320398a58edbbdccd46eb682e68267",
                      "datavalue": {
                        "value": "http://www.theguardian.com/news/2001/may/15/guardianobituaries.books",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "27c7402a696628d2a0e5abbf443995be8b895503",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-15T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1433": [
                    {
                      "snaktype": "value",
                      "property": "P1433",
                      "hash": "5c3e5ddc26dbc4ebdea58b53cc7f40811ef9e2ec",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 11148,
                          "id": "Q11148"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P50": [
                    {
                      "snaktype": "value",
                      "property": "P50",
                      "hash": "0c09ca36156b084dd45e1b836575dc7382d4a16e",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 18145749,
                          "id": "Q18145749"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "0730f27f8dcabe7b3d74ea981c7a9c15ea162685",
                      "datavalue": {
                        "value": {
                          "text": "Obituary: Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P577",
                  "P813",
                  "P1433",
                  "P50",
                  "P1476",
                  "P407"
                ]
              },
              {
                "hash": "1e351ee9aaac2b04ed1af6c6adcfd211f380c072",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "608a4db5259bcc914081457a65a62291c0d60fba",
                      "datavalue": {
                        "value": {
                          "text": "Hitch Hiker's Guide author Douglas Adams dies aged 49",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "9a430275f318d708678f048d2fcc2f4e1336fccf",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-13T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "f58a3ab6374660155a7a316dc8e0fb3e2a30263b",
                      "datavalue": {
                        "value": "http://www.telegraph.co.uk/news/uknews/1330072/Hitch-Hikers-Guide-author-Douglas-Adams-dies-aged-49.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "0af3fa4e868fcf34f10f64051305ed69118d9254",
                      "datavalue": {
                        "value": {
                          "time": "+2015-01-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P2093": [
                    {
                      "snaktype": "value",
                      "property": "P2093",
                      "hash": "cd28b3b7e15f568ddd9d9819994cb94b37947611",
                      "datavalue": {
                        "value": "Andrew Alderson",
                        "type": "string"
                      },
                      "datatype": "string"
                    },
                    {
                      "snaktype": "value",
                      "property": "P2093",
                      "hash": "de8ede1bb270fbebffa870f31441682ce0282a83",
                      "datavalue": {
                        "value": "Daniel Foggo",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P1433": [
                    {
                      "snaktype": "value",
                      "property": "P1433",
                      "hash": "355e72568d6b11855e43a80b5024c7caf60b5c79",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 192621,
                          "id": "Q192621"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P577",
                  "P407",
                  "P854",
                  "P813",
                  "P2093",
                  "P1433"
                ]
              },
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P570": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P570",
              "hash": "ccf97856f19fb921cadad798dea5abfcbfc0e6b8",
              "datavalue": {
                "value": {
                  "time": "+2001-05-11T00:00:00Z",
                  "timezone": 0,
                  "before": 0,
                  "after": 0,
                  "precision": 11,
                  "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                },
                "type": "time"
              },
              "datatype": "time"
            },
            "type": "statement",
            "id": "q42$65EA9C32-B26C-469B-84FE-FC612B71D159",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              },
              {
                "hash": "a02f3a77ddd343e6b88be25696b055f5131c3d64",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c1b3a8484d531e0eac6b9835b63e74b1412ccdb0",
                      "datavalue": {
                        "value": {
                          "time": "+2015-07-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P813"
                ]
              },
              {
                "hash": "87dfb64c99ab2c706c135e0110f57d1ba58d67eb",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "def9f19d84b65167a2a17ce38364d264c16127fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 19938912,
                          "id": "Q19938912"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e8d57e647c5bed000c86c300ee914ccd5d948b3f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-26T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P813"
                ]
              },
              {
                "hash": "3bc90af5225a0b1248b3362e911577073e904e20",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "dbd2f3b8b11eb0da5209a6ea4a74ce0df88c749b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1139587,
                          "id": "Q1139587"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P2168": [
                    {
                      "snaktype": "value",
                      "property": "P2168",
                      "hash": "5b535a453c0f88c11cb592ae35510abe93d2eec5",
                      "datavalue": {
                        "value": "271209",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "b468ee5535c44e76e52a8ad71217a0f5c5077d19",
                      "datavalue": {
                        "value": {
                          "time": "+2016-01-11T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P2168",
                  "P813"
                ]
              },
              {
                "hash": "b460d7e5cae668698a5dfe74198df6632fe7231d",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "f98ec89708e8eab9511c049702ef59df0721d652",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 29861311,
                          "id": "Q29861311"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P3430": [
                    {
                      "snaktype": "value",
                      "property": "P3430",
                      "hash": "1e9a0d6461bed3d3b3f7ed1956b151058982cd6e",
                      "datavalue": {
                        "value": "w65h7md1",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P3430",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "e9a6c72ac1c0c2bc336ff672ddaf89ecd17fff68",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "473ac6b52f2c348ee11cff8601894a2e9a3cf838",
                      "datavalue": {
                        "value": "https://www.theguardian.com/uk/2001/may/13/books.booksnews",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "53b72c0a5e7ac57b3d64967a96bf920db6313b87",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-28T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P813"
                ]
              },
              {
                "hash": "28af4e1131157dbbb2a5bbae189519a22e7d2b79",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "21e8e2c39cd74b26201557fb152f6a894b180241",
                      "datavalue": {
                        "value": "https://www.wired.com/2012/03/i-miss-douglas-adams/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "268aeb992f54257af5a86d9d7f0d9627214b628f",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "6172a0cb0d358ba70297f9f43fb3e4d436f81181",
                      "datavalue": {
                        "value": "https://www.locusmag.com/2001/News/News05a.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "5f3599922f5bee23969e91300f9eb461c7903a4b",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "753f4de4abfc5bbb20c7e5d13605cf0fff82f3ca",
                      "datavalue": {
                        "value": "http://www.nytimes.com/2001/05/15/arts/douglas-adams-49-author-of-hitchhiker-s-guide-spoofs.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "162d5556b3c48733c6c27b4cddcb99bc86f4bf70",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "871891c242389d06b23bf809fdc0301df1ed9c77",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2629164,
                          "id": "Q2629164"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1233": [
                    {
                      "snaktype": "value",
                      "property": "P1233",
                      "hash": "b601606b4bce3131ed7b591bb3acbcaeaa8f7a6e",
                      "datavalue": {
                        "value": "122",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P1233",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "bab32d323b6c92d91ff7d0c4707346012900761b",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d74ce84c9bceb1f94564bc8d53ad074739e46eb3",
                      "datavalue": {
                        "value": "http://www.screenonline.org.uk/people/id/1233876/index.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "0d9f07c561f61776c61a026473508c535af28267",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "b62f3fa8bab7eb5e1bfe16d03cda082d25315c85",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 63056,
                          "id": "Q63056"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P535": [
                    {
                      "snaktype": "value",
                      "property": "P535",
                      "hash": "ce3fb403e96b3b004b1b480734c941819c442c01",
                      "datavalue": {
                        "value": "22814",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "d34dcfad6c25d9dfabf330ae1c0c8159e36f1fa6",
                      "datavalue": {
                        "value": "Douglas Noel Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P535",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "dc42b8fb4c89807fe07a74ee933d45e4ba6353a1",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "9d66409d3d04632fc69413ea86abf094f92fae88",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 3343389,
                          "id": "Q3343389"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P5570": [
                    {
                      "snaktype": "value",
                      "property": "P5570",
                      "hash": "0a407feec4ece2cd71d650ad10574fb91b9f5b18",
                      "datavalue": {
                        "value": "143",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "2956a68705d15418b9490fb5feb13d1c1c2801fc",
                      "datavalue": {
                        "value": "Douglas ADAMS",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P5570",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "7571c014841534580d357bfbc652e23c8dfe6f76",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "e2a81dbf2f7dd02b332d6358ef65f622f82e8cc3",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 237227,
                          "id": "Q237227"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P5019": [
                    {
                      "snaktype": "value",
                      "property": "P5019",
                      "hash": "43ed67a7e85525f6e09d5b1c7d8cf48a13b0249d",
                      "datavalue": {
                        "value": "adams-douglas-noel",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "c4476ecceaffe79708600de5842ba5b400aa7065",
                      "datavalue": {
                        "value": "Douglas No\u00ebl Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P5019",
                  "P1810",
                  "P813"
                ]
              },
              {
                "hash": "8da4cf44f0a93c09c81d3b38ef8e68f8a4c4a6dc",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "1276fef541b741cec556020ad14ea6b2287a1aae",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 23023088,
                          "id": "Q23023088"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P2191": [
                    {
                      "snaktype": "value",
                      "property": "P2191",
                      "hash": "f30cf12ee4be16978a4a76b17518ea1b80db8b89",
                      "datavalue": {
                        "value": "10014",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P2191",
                  "P1810"
                ]
              },
              {
                "hash": "a3feaf25fa95c4893bc1dc74ca6d884bc37c2723",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "155e1a7322c5a7febad55feba5ba4c3a2656b1c4",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2877812,
                          "id": "Q2877812"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P3630": [
                    {
                      "snaktype": "value",
                      "property": "P3630",
                      "hash": "c943a67cefbf6c5f52cd624308b923cddb344024",
                      "datavalue": {
                        "value": "2627",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P3630",
                  "P1810"
                ]
              },
              {
                "hash": "3780b8d878be9297899f30beb767bf408acbbd4a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "055f82ef73ce123450780d681359ac6e9077e315",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 107343683,
                          "id": "Q107343683"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1284": [
                    {
                      "snaktype": "value",
                      "property": "P1284",
                      "hash": "2f5c2e65a1d9fca309615b885bf62f3e5260874e",
                      "datavalue": {
                        "value": "00000020676",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "e5f60ab0b03700bb883efce38f8022d023bc49fb",
                      "datavalue": {
                        "value": {
                          "time": "+2017-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P1284",
                  "P813",
                  "P1810"
                ]
              }
            ]
          }
        ],
        "P1196": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1196",
              "hash": "95c96aff195f7cfc9cd0c684f46ebed97ae1c5f4",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 3739104,
                  "id": "Q3739104"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$2CF6704F-527F-46F7-9A89-41FC0C9DF492",
            "rank": "normal",
            "references": [
              {
                "hash": "792c357be1391569a970da13099242a6ad44af96",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "89c35e15158c76b5bcd87f9e1d7c1d1f3495af93",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20111010233102/http://www.laweekly.com/2001-05-24/news/lots-of-screamingly-funny-sentences-no-fish/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              }
            ]
          }
        ],
        "P509": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P509",
              "hash": "7c9686796c28e0d6dbb7a35cf2975c1bba3f2291",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 12152,
                  "id": "Q12152"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$E651BD8A-EA3E-478A-8558-C956EE60B29F",
            "rank": "normal",
            "references": [
              {
                "hash": "f7d13e8497267ca24630766d281da71ad49e6cf1",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "29658ead4a7640c28bb3c1176b16bc05c1165352",
                      "datavalue": {
                        "value": "http://www.historyorb.com/people/douglas-adams",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "1e70ab6477d30a1f61497e41162394447f226c6b",
                      "datavalue": {
                        "value": {
                          "text": "Famous People - Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "0ed231c0e3c0ebe175b9e5328195c50d64e49f7e",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 15290366,
                          "id": "Q15290366"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "c5910588b271379fd0238e8e360d66105e23c198",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20131203010221/http://www.historyorb.com/people/douglas-adams",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "9e7e24c898cf24563768e4aecf8030268d7622b1",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P813",
                  "P1476",
                  "P248",
                  "P1065",
                  "P2960"
                ]
              },
              {
                "hash": "94f550fd58f53396915a7910e0bea7fac646924f",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "0730f27f8dcabe7b3d74ea981c7a9c15ea162685",
                      "datavalue": {
                        "value": {
                          "text": "Obituary: Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "27c7402a696628d2a0e5abbf443995be8b895503",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-15T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "a99756c83f320398a58edbbdccd46eb682e68267",
                      "datavalue": {
                        "value": "http://www.theguardian.com/news/2001/may/15/guardianobituaries.books",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "d81043f19518b0726f361bea2dd5eb2caa8cb454",
                      "datavalue": {
                        "value": {
                          "time": "+2014-01-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P50": [
                    {
                      "snaktype": "value",
                      "property": "P50",
                      "hash": "0c09ca36156b084dd45e1b836575dc7382d4a16e",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 18145749,
                          "id": "Q18145749"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "5eb5f0ed5b2c86115f3003ddf19524e65e45340a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 11148,
                          "id": "Q11148"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P577",
                  "P407",
                  "P854",
                  "P813",
                  "P50",
                  "P248"
                ]
              },
              {
                "hash": "8a954fb86baef5ac9f138ca641aea07b80570447",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "608a4db5259bcc914081457a65a62291c0d60fba",
                      "datavalue": {
                        "value": {
                          "text": "Hitch Hiker's Guide author Douglas Adams dies aged 49",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "9a430275f318d708678f048d2fcc2f4e1336fccf",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-13T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "f58a3ab6374660155a7a316dc8e0fb3e2a30263b",
                      "datavalue": {
                        "value": "http://www.telegraph.co.uk/news/uknews/1330072/Hitch-Hikers-Guide-author-Douglas-Adams-dies-aged-49.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "d81043f19518b0726f361bea2dd5eb2caa8cb454",
                      "datavalue": {
                        "value": {
                          "time": "+2014-01-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "eebb17bd40383600a49dee25c2177c288975a83f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 192621,
                          "id": "Q192621"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P577",
                  "P407",
                  "P854",
                  "P813",
                  "P248"
                ]
              }
            ]
          }
        ],
        "P20": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P20",
              "hash": "83bea4973abdd248ba04a3149ce7ce6952b4c9b0",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 159288,
                  "id": "Q159288"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$C0DE2013-54C0-48F9-AD90-8A235248D8C7",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              },
              {
                "hash": "7ee048b166930e319a10ef56bc8bfa7202a31997",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "f11da58783cfeb447930ec66140c9c809464411f",
                      "datavalue": {
                        "value": "http://www.nytimes.com/books/01/05/13/daily/adams-obit.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "9e597a1ff0ca651f1af353078d5399eed329d6ce",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-12T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P50": [
                    {
                      "snaktype": "value",
                      "property": "P50",
                      "hash": "419ce2e3b0574f6aa77d16d971681078a27337c6",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 26724169,
                          "id": "Q26724169"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "f7562124f8f0eedb06fd945242d8c7789ad10e74",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams, Author of 'Hitchhiker's Guide to the Galaxy,' Dies at 49",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "475d735fbc5aaf9a3cc1d7ac725da0c204ae55c5",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 9684,
                          "id": "Q9684"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P577",
                  "P50",
                  "P407",
                  "P1476",
                  "P248"
                ]
              },
              {
                "hash": "de76f366926e923ef61d60535280c65570d26cc2",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "effd2a5d8045dbb30aa66c3be3755e84165f5369",
                      "datavalue": {
                        "value": "http://www.eskimo.com/~rkj/weekly/aa051701a.htm",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "027c2e3272694f0292b8ed6efa7d26e4b27fa458",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "4ff990b07c7dab21f6354e0022ce8240d74220ea",
                      "datavalue": {
                        "value": "http://www.waymarking.com/waymarks/WMH912_Douglas_Adams_Highgate_East_Cemetery_London_UK",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              },
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P119": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P119",
              "hash": "f22d367759fe126d0723a18e59399e4206b8f37d",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 533697,
                  "id": "Q533697"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P625": [
                {
                  "snaktype": "value",
                  "property": "P625",
                  "hash": "84f23a18c6c1b7bba4b68376b531cf47a0083517",
                  "datavalue": {
                    "value": {
                      "latitude": 51.56652777777778,
                      "longitude": -0.14544444444444443,
                      "altitude": null,
                      "precision": 2.777777777777778e-05,
                      "globe": "http://www.wikidata.org/entity/Q2"
                    },
                    "type": "globecoordinate"
                  },
                  "datatype": "globe-coordinate"
                }
              ]
            },
            "qualifiers-order": [
              "P625"
            ],
            "id": "q42$881F40DC-0AFE-4FEB-B882-79600D234273",
            "rank": "normal",
            "references": [
              {
                "hash": "e4f9e55d169fadcbf86b00425f1cce94ce788679",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "e9255857dc130ffd8c712ebbe7ab0f6981ebe238",
                      "datavalue": {
                        "value": "http://highgatecemetery.org/visit/who",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "ff1f7fd05dc971bfb5e56d485c37d091bcc3d06f",
                      "datavalue": {
                        "value": {
                          "text": "Who\u2019s here",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6e7a635736e0c94ea66c6e56955b54c6b5742cd1",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 533697,
                          "id": "Q533697"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "78fd39b044425501305f1156c7ccc2a79df8b041",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20131203025040/http://highgatecemetery.org/visit/who",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "9e7e24c898cf24563768e4aecf8030268d7622b1",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P813",
                  "P1476",
                  "P248",
                  "P1065",
                  "P2960"
                ]
              },
              {
                "hash": "e71a7903858496c67eea189a7084d5559f788edb",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "5d3b16d350189b0a81818758208505444c86c127",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 565,
                          "id": "Q565"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          }
        ],
        "P1442": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1442",
              "hash": "fb7cd07a669a425f896132e0b8cfdb97254b1650",
              "datavalue": {
                "value": "Douglas Adams' gravestone.jpg",
                "type": "string"
              },
              "datatype": "commonsMedia"
            },
            "type": "statement",
            "qualifiers": {
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "b0796a50c4126c95d3787856a9765dee1a802ea2",
                  "datavalue": {
                    "value": {
                      "time": "+2008-10-24T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P2096": [
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "a6c9827df7e5fda60f05af58ebd1951305789552",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adams' gravestone",
                      "language": "en"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "55dbb9493d4baf3334911fdc2c49da9a2cabfd5a",
                  "datavalue": {
                    "value": {
                      "text": "Grabstein von Douglas Adams",
                      "language": "de"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "5a8fb865177d8b211fe5d0303c8b2cabd6b9b6ab",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adams'\u0131n mezar ta\u015f\u0131",
                      "language": "tr"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "53953a9ded74d3ddb8feff393c1c256b34ed5505",
                  "datavalue": {
                    "value": {
                      "text": "Batu nisan Douglas Adams",
                      "language": "ms"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "bdd738a764ed352a83cf37ed9ff0d73ac1bbdd54",
                  "datavalue": {
                    "value": {
                      "text": "\u0628\u0627\u062a\u0648 \u0646\u064a\u0633\u0646 \u062f\u0762\u0644\u0633 \u0627\u064a\u062f\u0645\ufeaf",
                      "language": "ms-arab"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "af4f9a2ac41314fd2530f8869141f6d65d0be15f",
                  "datavalue": {
                    "value": {
                      "text": "n\u00e1hrobek Douglase Adamse",
                      "language": "cs"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "6dd1c99c583b04f2047fcc98659a0f831e5ca3c8",
                  "datavalue": {
                    "value": {
                      "text": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af\u7684\u5893\u7891",
                      "language": "zh-hant"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "22641c1d2a39820f0dd0a5f4c54dc784d7f2788e",
                  "datavalue": {
                    "value": {
                      "text": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af\u7684\u5893\u7891",
                      "language": "zh-hans"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                }
              ]
            },
            "qualifiers-order": [
              "P585",
              "P2096"
            ],
            "id": "Q42$db1ba2ba-47b9-3650-e6c4-db683abf788c",
            "rank": "preferred"
          }
        ],
        "P1015": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1015",
              "hash": "33cb2c4a2227c950c19177a4c85fc4e38cacf526",
              "datavalue": {
                "value": "90196888",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6583fdb7-4ffa-9fe1-4288-1a1cbb2950d0",
            "rank": "normal"
          }
        ],
        "P735": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P735",
              "hash": "bc69fedf2b7ca78a342409c262e30f07008590cd",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 463035,
                  "id": "Q463035"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P1545": [
                {
                  "snaktype": "value",
                  "property": "P1545",
                  "hash": "2a1ced1dca90648ea7e306acbadd74fc81a10722",
                  "datavalue": {
                    "value": "1",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P3831": [
                {
                  "snaktype": "value",
                  "property": "P3831",
                  "hash": "dbd40245cfc74fad93188d2f44e7b227d46047a2",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 3409033,
                      "id": "Q3409033"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P1545",
              "P3831"
            ],
            "id": "Q42$1d7d0ea9-412f-8b5b-ba8d-405ab9ecf026",
            "rank": "preferred",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P735",
              "hash": "d5521b1edbeae4d9c264dda7f7c783b287125768",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 19688263,
                  "id": "Q19688263"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P1545": [
                {
                  "snaktype": "value",
                  "property": "P1545",
                  "hash": "7241753c62a310cf84895620ea82250dcea65835",
                  "datavalue": {
                    "value": "2",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1545"
            ],
            "id": "Q42$1e106952-4b58-6067-c831-8593ce3d70f5",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P734": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P734",
              "hash": "b421edc57d660e9be8eb719ee6f927f848281fcc",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 351735,
                  "id": "Q351735"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$24df999a-4629-c679-e1f0-199bcefabbf3",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P27": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P27",
              "hash": "2de1ec1c14395359e1936021bcfb525b4daa9a76",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 145,
                  "id": "Q145"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$DE2A0C89-6199-44D0-B727-D7A4BE031A2B",
            "rank": "normal",
            "references": [
              {
                "hash": "a4d108601216cffd2ff1819ccf12b483486b62e7",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "def9f19d84b65167a2a17ce38364d264c16127fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 19938912,
                          "id": "Q19938912"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P268": [
                    {
                      "snaktype": "value",
                      "property": "P268",
                      "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
                      "datavalue": {
                        "value": "11888092r",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 150,
                          "id": "Q150"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P268",
                  "P407",
                  "P813"
                ]
              },
              {
                "hash": "6f60c456c95ba618e266011ead6d50a81cfb3e76",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "e5f853298b310a45c2ee3b01a2a4940640f7985a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 47757534,
                          "id": "Q47757534"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P269": [
                    {
                      "snaktype": "value",
                      "property": "P269",
                      "hash": "adb558674eda6bfe9b17c3fed9be99c3d55f0cc3",
                      "datavalue": {
                        "value": "026677636",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 150,
                          "id": "Q150"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P269",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P551": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P551",
              "hash": "13883b9303b6163e00106585ddebcdfe487b8e83",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 159288,
                  "id": "Q159288"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P582": [
                {
                  "snaktype": "value",
                  "property": "P582",
                  "hash": "8798597f326000b4ffd9948d42771308bdb23133",
                  "datavalue": {
                    "value": {
                      "time": "+2001-05-11T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P582"
            ],
            "id": "Q42$E88EA363-419C-4FEA-BC63-F32669255382",
            "rank": "normal",
            "references": [
              {
                "hash": "fa278ebfc458360e5aed63d5058cca83c46134f1",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "e4f6d9441d0600513c4533c672b5ab472dc73694",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 328,
                          "id": "Q328"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P551",
              "hash": "4f1ebc8d1eeffa38fca7d811242ed71f4c5bed0f",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 84,
                  "id": "Q84"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$9D3B2F23-36F4-4212-983B-DC15D47FC01E",
            "rank": "preferred"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P551",
              "hash": "9603fd343c189883b34772a21404dc1f8fb021f8",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 909993,
                  "id": "Q909993"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "c786a8b39f62b37eb45745acf99302b5409f2e26",
                  "datavalue": {
                    "value": {
                      "time": "+1957-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P580"
            ],
            "id": "Q42$21492F88-0043-439D-B733-C7211D2283F7",
            "rank": "preferred"
          }
        ],
        "P103": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P103",
              "hash": "94131f8f22ef0e6c2fe4b312ea8927de20e28296",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 1860,
                  "id": "Q1860"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$b7526300-4ac5-a529-3a91-c8a0120673be",
            "rank": "normal"
          }
        ],
        "P1368": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1368",
              "hash": "a724070c64f13db757c53d1f769083a74d47ac67",
              "datavalue": {
                "value": "000057405",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$11725e9f-4f81-e0fd-b00a-b885fe7a75ac",
            "rank": "normal"
          }
        ],
        "P244": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P244",
              "hash": "5308b152b94274513309d2ad5cee9b9286fff0bd",
              "datavalue": {
                "value": "n80076765",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "253cf03e36ed11b8ff89dd9cbd98b687331ddf6c",
                  "datavalue": {
                    "value": "Adams, Douglas, 1952-2001",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P4970": [
                {
                  "snaktype": "value",
                  "property": "P4970",
                  "hash": "05003a848729ce3d6ab9dc35105c09baa7cdeacf",
                  "datavalue": {
                    "value": "\u05d0\u05d3\u05d0\u05de\u05e1, \u05d3\u05d0\u05d2\u05dc\u05d0\u05e1, 1952-2001-",
                    "type": "string"
                  },
                  "datatype": "string"
                },
                {
                  "snaktype": "value",
                  "property": "P4970",
                  "hash": "c8f2e1e8eb74b298c9621afd41740b9252098387",
                  "datavalue": {
                    "value": "\u4e9e\u7576\u65af, 1952-2001",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810",
              "P4970"
            ],
            "id": "q42$2D472379-EC67-4C71-9700-0F9D551BF5E6",
            "rank": "normal"
          }
        ],
        "P947": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P947",
              "hash": "b4a90e2f8841117a6add1d92098d457a0b615831",
              "datavalue": {
                "value": "000002833",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$cf5f61ec-440d-60d4-7847-e95f75171f2f",
            "rank": "normal"
          }
        ],
        "P214": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P214",
              "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
              "datavalue": {
                "value": "113230702",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$488251B2-6732-4D49-85B0-6101803C97AB",
            "rank": "normal",
            "references": [
              {
                "hash": "14d2400e3b1d36332748dc330276f099eeaa8800",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "39224a9c2e8ce5424defbd16603d25771956c7fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1551807,
                          "id": "Q1551807"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          }
        ],
        "P345": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P345",
              "hash": "c5e0f8f8e24ac2a6721b316e2a3a73820e61bc11",
              "datavalue": {
                "value": "nm0010930",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$231549F5-0296-4D87-993D-6CBE3F24C0D2",
            "rank": "normal"
          }
        ],
        "P373": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P373",
              "hash": "cd5ccca2ccdf15c9c1894d1ce7f01df9a1c17fbd",
              "datavalue": {
                "value": "Douglas Adams",
                "type": "string"
              },
              "datatype": "string"
            },
            "type": "statement",
            "id": "q42$7EC4631F-FB22-4768-9B75-61875CD6C854",
            "rank": "normal"
          }
        ],
        "P349": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P349",
              "hash": "a544d8f45670d2b702abc65104e158b700efa63f",
              "datavalue": {
                "value": "00430962",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$31B1BC2A-D09F-4151-AD2B-5CEA229B9058",
            "rank": "normal"
          }
        ],
        "P434": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P434",
              "hash": "8d03e96243cf77d4c123e929081cc16940e25412",
              "datavalue": {
                "value": "e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$fc61f952-4071-7cc1-c20a-dc7a90ad6515",
            "rank": "normal"
          }
        ],
        "P268": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P268",
              "hash": "8721e8944f95e9ce185c270dd1e12b81d13f7e9b",
              "datavalue": {
                "value": "11888092r",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$BB4B67FE-FECA-4469-9DEE-3E8F03AC9F1D",
            "rank": "normal",
            "references": [
              {
                "hash": "d4bd87b862b12d99d26e86472d44f26858dee639",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "f30cbd35620c4ea6d0633aaf0210a8916130469b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 8447,
                          "id": "Q8447"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          }
        ],
        "P227": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P227",
              "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
              "datavalue": {
                "value": "119033364",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$8AA8CCC1-86CE-4C66-88FC-267621A81EA0",
            "rank": "normal",
            "references": [
              {
                "hash": "14d2400e3b1d36332748dc330276f099eeaa8800",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "39224a9c2e8ce5424defbd16603d25771956c7fc",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1551807,
                          "id": "Q1551807"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          }
        ],
        "P535": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P535",
              "hash": "ce3fb403e96b3b004b1b480734c941819c442c01",
              "datavalue": {
                "value": "22814",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$0DD4F039-6CDC-40C9-871B-63CDE4A47032",
            "rank": "normal",
            "references": [
              {
                "hash": "8d3f0e4d193c2c8dd2b81d935dec6d736099af35",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "4e8717be05f94ef9d94844fa9ac448eb1b6fd56d",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Noel Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d9b949b67c334103af825045cc198dec267df1eb",
                      "datavalue": {
                        "value": "http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=22814",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "ee18a449a5b0b58a2ac2a1eb537367b5f78ff139",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 63056,
                          "id": "Q63056"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "7b4e3b6251283293572bb344027f6108800ce722",
                      "datavalue": {
                        "value": {
                          "time": "+2001-06-25T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "0777820d0fa78c3462decfe5499806447f7314f0",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20131203002612/http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=22814",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "9e7e24c898cf24563768e4aecf8030268d7622b1",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P854",
                  "P123",
                  "P577",
                  "P813",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P22": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P22",
              "hash": "f4768d2f7e81044a59e2a6b793ae305a85fe9337",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 14623675,
                  "id": "Q14623675"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$9ac7fb72-4402-8d72-f588-a170ca5e715c",
            "rank": "normal",
            "references": [
              {
                "hash": "6a3634133c828f5c3cba3f33d033c4d2ae67f5ec",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "b8a91b86a8de832f31541ef3e7ddbbe3b5a1e36e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "a10f1c6654340b4ac13cc7137d4fb1830c4aecb6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-09-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P25": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P25",
              "hash": "890caf7af7d2bd93029730fcbf981c4389c867bb",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 14623678,
                  "id": "Q14623678"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$cf4cccbe-470e-e627-86a3-70ef115f601c",
            "rank": "normal",
            "references": [
              {
                "hash": "6a3634133c828f5c3cba3f33d033c4d2ae67f5ec",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "b8a91b86a8de832f31541ef3e7ddbbe3b5a1e36e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "a10f1c6654340b4ac13cc7137d4fb1830c4aecb6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-09-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P40": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P40",
              "hash": "3f5ef5e39468c6f0459f5039c92c5840004eba83",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 14623683,
                  "id": "Q14623683"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "q42$70b600fa-4c0a-b3e6-9e19-1486e71c99fb",
            "rank": "normal",
            "references": [
              {
                "hash": "6a3634133c828f5c3cba3f33d033c4d2ae67f5ec",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "b8a91b86a8de832f31541ef3e7ddbbe3b5a1e36e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "a10f1c6654340b4ac13cc7137d4fb1830c4aecb6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-09-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P906": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P906",
              "hash": "0fe37e1d5b93dd5c01d2b265272f541ae3dbe467",
              "datavalue": {
                "value": "230807",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$D92DF8AE-786C-4C3E-8A33-BABD8CB06D31",
            "rank": "normal"
          }
        ],
        "P1006": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1006",
              "hash": "3e97ad82f26830173fb5c332b6ccd2db3df6624e",
              "datavalue": {
                "value": "068744307",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "c0f66ac9dc069ba27f91832e34e6e1782116f8cc",
                  "datavalue": {
                    "value": "Adams, Douglas (1952-2001)",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$B7643D02-6EF0-4932-A36A-3A2D4DA3F578",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1006",
              "hash": "e279211298821267eae101a5d7c280dfc88b3e00",
              "datavalue": {
                "value": "339433876",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "c0f66ac9dc069ba27f91832e34e6e1782116f8cc",
                  "datavalue": {
                    "value": "Adams, Douglas (1952-2001)",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$8FDFE037-E24A-4D8B-AA78-37AC69650FD9",
            "rank": "normal",
            "references": [
              {
                "hash": "63309730314f4c20bf6b1008fe8ffd2b155272b3",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              }
            ]
          }
        ],
        "P949": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P949",
              "hash": "e6c5d85d4dbc36b3a63a7f0042a25506b667609e",
              "datavalue": {
                "value": "000163846",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2D50AE02-2BD8-4F82-9DFD-B3166DEFDEC1",
            "rank": "normal"
          }
        ],
        "P646": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P646",
              "hash": "119ce5ea11d825b41f7a763700a530f1fd602531",
              "datavalue": {
                "value": "/m/0282x",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$48D9C731-BDA8-45D6-B593-437CD10A51B4",
            "rank": "normal",
            "references": [
              {
                "hash": "2b00cb481cddcac7623114367489b5c194901c4a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "a94b740202b097dd33355e0e6c00e54b9395e5e0",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 15241312,
                          "id": "Q15241312"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "fde79ecb015112d2f29229ccc1ec514ed3e71fa2",
                      "datavalue": {
                        "value": {
                          "time": "+2013-10-28T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P577"
                ]
              }
            ]
          }
        ],
        "P69": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P69",
              "hash": "7c26b753f767dd296d3323721c0f9e018e2fae90",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 691283,
                  "id": "Q691283"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P582": [
                {
                  "snaktype": "value",
                  "property": "P582",
                  "hash": "cf63122733bae275108bbf5d043d46669f782697",
                  "datavalue": {
                    "value": {
                      "time": "+1974-01-01T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P812": [
                {
                  "snaktype": "value",
                  "property": "P812",
                  "hash": "e03f82fd83e940fdf0020ded271f0edf11977d72",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 186579,
                      "id": "Q186579"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P512": [
                {
                  "snaktype": "value",
                  "property": "P512",
                  "hash": "e1bbba02ae21a15bcef937d017c8142e5cf73a88",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1765120,
                      "id": "Q1765120"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "847c4c912d3781dc83eabd7135d6403c473c0daf",
                  "datavalue": {
                    "value": {
                      "time": "+1971-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P582",
              "P812",
              "P512",
              "P580"
            ],
            "id": "q42$0E9C4724-C954-4698-84A7-5CE0D296A6F2",
            "rank": "normal",
            "references": [
              {
                "hash": "355b56329b78db22be549dec34f2570ca61ca056",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "d1d1b10a05a8f3fc5d26bb4aeb6849617ad81fc7",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5375741,
                          "id": "Q5375741"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P248"
                ]
              },
              {
                "hash": "9177d75c6061e9e1ab149c0aa01bee5a90e07415",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P69",
              "hash": "24e9c420759c3934fdb089994d6c07f9e96989cd",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 4961791,
                  "id": "Q4961791"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P582": [
                {
                  "snaktype": "value",
                  "property": "P582",
                  "hash": "5c5b90187b61a0af83711c9495e5529940747577",
                  "datavalue": {
                    "value": {
                      "time": "+1970-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "923f84fcbf398253e1ef1a8a13f1da430b87d7bb",
                  "datavalue": {
                    "value": {
                      "time": "+1959-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P582",
              "P580"
            ],
            "id": "Q42$32490F12-D9B5-498A-91A8-839F9149F600",
            "rank": "normal",
            "references": [
              {
                "hash": "04faceee0261403ec1371a48835b38dcacd0403d",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "3f701e6f558809b10d62268775d743aee5505a2c",
                      "datavalue": {
                        "value": "http://www.brentwoodschool.co.uk/Notable-Old-Brentwoods",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "10bcadd3b120a7012efeae6930062ec9d32632b5",
                      "datavalue": {
                        "value": {
                          "text": "Notable Old Brentwoods",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476"
                ]
              }
            ]
          }
        ],
        "P1273": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1273",
              "hash": "0c743c083410c1a7181a4e385097bdc26355f6b8",
              "datavalue": {
                "value": "a10667040",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4A2873C0-D848-4F3D-8066-38204E50414C",
            "rank": "normal",
            "references": [
              {
                "hash": "5bf8f7ddb6bb0daa4341120b6ca0b06898492ebc",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "79c7aecc389a0463fd6c991d3481a375c9610987",
                      "datavalue": {
                        "value": "https://viaf.org/viaf/113230702/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "9bcf0ce1a2cced24e19b82c842ac7eca378abe96",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201117185047/https://viaf.org/viaf/113230702/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "bbd71eb6e95ada0c5f6070fbf92b0a6c73c98053",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-17T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P108": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P108",
              "hash": "399e6e94b953e4305e2c0d4d6f752cedfd5576a9",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 9531,
                  "id": "Q9531"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$853B16C8-1AB3-489A-831E-AEAD7E94AB87",
            "rank": "normal",
            "references": [
              {
                "hash": "ebf92afc2ec3ffcf1aec1d55f0b066d190281576",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "ce45c622a9170b7f462f34f0f08f543843add2a9",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2567271,
                          "id": "Q2567271"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P4789": [
                    {
                      "snaktype": "value",
                      "property": "P4789",
                      "hash": "bb5a76d21ce7a9507293d4e26847bd068e04be27",
                      "datavalue": {
                        "value": "U4994",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P4789"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P108",
              "hash": "9dd39150909bb14ca297de8623f4e009fc34106d",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 3520623,
                  "id": "Q3520623"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "68c4b4d459d1b131347d9ffde2e282a8b9a167c8",
                  "datavalue": {
                    "value": {
                      "time": "+1996-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P580"
            ],
            "id": "Q42$1d55f34a-4cfd-c914-4057-b6b52bf29b8e",
            "rank": "normal",
            "references": [
              {
                "hash": "ebf92afc2ec3ffcf1aec1d55f0b066d190281576",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "ce45c622a9170b7f462f34f0f08f543843add2a9",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2567271,
                          "id": "Q2567271"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P4789": [
                    {
                      "snaktype": "value",
                      "property": "P4789",
                      "hash": "bb5a76d21ce7a9507293d4e26847bd068e04be27",
                      "datavalue": {
                        "value": "U4994",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P4789"
                ]
              }
            ]
          }
        ],
        "P998": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "e436a6c335c51397267b0c244a54801fa88ba1c6",
              "datavalue": {
                "value": "Arts/Literature/Authors/A/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$BE724F6B-6981-4DE9-B90C-338768A4BFC4",
            "rank": "preferred"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "f07d223888dcbdf328dc74fd6a28fbe85bba1f02",
              "datavalue": {
                "value": "World/Dansk/Kultur/Litteratur/Forfattere/A/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "4a90e9ca00d0eae667dbbdeb5d575498ec041124",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 9035,
                      "id": "Q9035"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$5776B538-2441-4B9E-9C39-4E6289396763",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "f67566d0a20a24e29f665d06f2e391b45d556699",
              "datavalue": {
                "value": "World/Fran\u00e7ais/Arts/Litt\u00e9rature/Genres/Science-fiction_et_fantastique/Auteurs/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "d197d0a5efa4b4c23a302a829dd3ef43684fe002",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 150,
                      "id": "Q150"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$B60CF952-9C65-4875-A4BA-6B8516C81E99",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "46e31918e9a49a4625ac129bcd6fe307881148e4",
              "datavalue": {
                "value": "World/Deutsch/Kultur/Literatur/Autoren_und_Autorinnen/A/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 188,
                      "id": "Q188"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$A0B48E74-C934-42B9-A583-FB3EAE4BC9BA",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "db656ead856cf3bfa451ba355e21363730a8d465",
              "datavalue": {
                "value": "World/Italiano/Arte/Letteratura/Autori/A/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "2ab2e485ce235a18142330fa1873a5bba7115d23",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 652,
                      "id": "Q652"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$F2632AC4-6F24-49E4-9E4E-B008F26BA8CE",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P998",
              "hash": "1ae5f83e9a27b3099283feee56595d8aa05a8585",
              "datavalue": {
                "value": "World/Svenska/Kultur/Litteratur/Genre/Science_fiction_och_fantasy/F\u00f6rfattare/Adams,_Douglas/",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "e41efcf0acaa18ea8fca63b87e2e0c24618f5664",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 9027,
                      "id": "Q9027"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$84B82B5A-8F33-4229-B988-BF960E676875",
            "rank": "normal"
          }
        ],
        "P1233": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1233",
              "hash": "b601606b4bce3131ed7b591bb3acbcaeaa8f7a6e",
              "datavalue": {
                "value": "122",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9F55FA72-F9E5-41E4-A771-041EB1D59C28",
            "rank": "normal"
          }
        ],
        "P1284": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1284",
              "hash": "2f5c2e65a1d9fca309615b885bf62f3e5260874e",
              "datavalue": {
                "value": "00000020676",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2EE16C9C-B74B-4322-9542-4A132555B363",
            "rank": "normal"
          }
        ],
        "P866": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P866",
              "hash": "37d031cbb7d33f06c43ad0a1faafac8071b4c3e1",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$A29644ED-0377-4F88-8BA6-FAAB7DE8C7BA",
            "rank": "normal"
          }
        ],
        "P1695": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1695",
              "hash": "5b3ec159aae2cbcee8689e36af4bda9a5497e72f",
              "datavalue": {
                "value": "A11573065",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9B5EED2E-C3F5-4634-8B85-4D4CC6F15C93",
            "rank": "normal",
            "references": [
              {
                "hash": "26c14416670af4da8614d9db92859f07401e3b88",
                "snaks": {
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "ab1e45f4e59b97ef39387dbd419722745e6cff99",
                      "datavalue": {
                        "value": {
                          "time": "+2015-03-07T00:00:00Z",
                          "timezone": 60,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P214",
                  "P248",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1816": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1816",
              "hash": "b19c490642f7a5d5c71bf612ec4089c74dbdfaf5",
              "datavalue": {
                "value": "mp60152",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$A70EF87C-33F4-4366-B0A7-000C5A3A43E5",
            "rank": "normal"
          }
        ],
        "P1263": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1263",
              "hash": "536c401a39def76dfbb2b0e1c332d3707a6aef95",
              "datavalue": {
                "value": "731/000023662",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9B26C69E-7B9E-43EB-9B20-AD1305D1EE6B",
            "rank": "normal"
          }
        ],
        "P271": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P271",
              "hash": "4427f3fc3ca4aa75b84c93e90043707031b24a72",
              "datavalue": {
                "value": "DA07517784",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$f69cd1df-4655-d1fa-5978-e3454415e57e",
            "rank": "normal"
          }
        ],
        "P856": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P856",
              "hash": "0e45abd71bbb7dc8d20627f52d8ee48892a62e2a",
              "datavalue": {
                "value": "https://douglasadams.com/",
                "type": "string"
              },
              "datatype": "url"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P407"
            ],
            "id": "Q42$D32EFF42-C5E2-482A-AE97-2159D6A99524",
            "rank": "normal"
          }
        ],
        "P1411": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1411",
              "hash": "99f1efe2922c2a67bb499cdee14b487adfe564ee",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 3414212,
                  "id": "Q3414212"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P1686": [
                {
                  "snaktype": "value",
                  "property": "P1686",
                  "hash": "6976dd054773df55af13d08387ac072427e71cb6",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 3521267,
                      "id": "Q3521267"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "21ce2394cef40d7e380a249ee1911d6efa38d1af",
                  "datavalue": {
                    "value": {
                      "time": "+1979-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P1686",
              "P585"
            ],
            "id": "Q42$1B3C484C-643E-45D0-B01C-F6DAD3D1F88E",
            "rank": "normal",
            "references": [
              {
                "hash": "327355ae07a14af7f684a612af7d7452ac62bb63",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "75772f67a591bffe59d3aaf19f7188df70c90863",
                      "datavalue": {
                        "value": "https://www.thehugoawards.org/hugo-history/1979-hugo-awards/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1411",
              "hash": "79aef316494aa8d5e3f72352a5315ecdea123e04",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 2576795,
                  "id": "Q2576795"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "1f4575b36bd16a12b6ce37bd18576d2809be2317",
                  "datavalue": {
                    "value": {
                      "time": "+1983-00-00T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P1686": [
                {
                  "snaktype": "value",
                  "property": "P1686",
                  "hash": "e7bb7e6e72fbe3cab6b40bc12cd86966ff4f9175",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 721,
                      "id": "Q721"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P585",
              "P1686"
            ],
            "id": "Q42$285E0C13-9674-4131-9556-51B316A57AEE",
            "rank": "normal"
          }
        ],
        "P1953": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1953",
              "hash": "62213f70dc895a9605d36aeeda01e3a6ab73e74f",
              "datavalue": {
                "value": "134923",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6C466225-DCB1-47B9-B868-C285F016E216",
            "rank": "normal"
          }
        ],
        "P648": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P648",
              "hash": "54001f8cc18087fa51c188b474a3abf2a5db19a0",
              "datavalue": {
                "value": "OL272947A",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$0BC410B8-8A0F-4658-90B0-BB2AE1D6AA3F",
            "rank": "normal"
          }
        ],
        "P1258": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1258",
              "hash": "8c80814f0a15ebe01dc19766129dbfe4276ad77a",
              "datavalue": {
                "value": "celebrity/douglas_adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4bc2af98-4182-3b11-0df3-80aac8e24081",
            "rank": "normal"
          }
        ],
        "P2191": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2191",
              "hash": "f30cf12ee4be16978a4a76b17518ea1b80db8b89",
              "datavalue": {
                "value": "10014",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2DB4179B-D385-495D-B248-9D0A53041DD4",
            "rank": "normal"
          }
        ],
        "P1266": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1266",
              "hash": "bdbb98c7c753fb88584e387119e1c174ffadb411",
              "datavalue": {
                "value": "97049",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$788bd2c1-46a0-9898-6410-5339ecf90a8b",
            "rank": "normal"
          }
        ],
        "P2019": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2019",
              "hash": "6dffad6e477d1b2e84322dcde7a5f67ea5414bfe",
              "datavalue": {
                "value": "p279442",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$b0322bc3-497a-8ef4-8eed-e4927b805d87",
            "rank": "normal"
          }
        ],
        "P2188": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2188",
              "hash": "241f004ee4042a5226417b8570251268a77d7982",
              "datavalue": {
                "value": "45993",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5215183d-42ec-a3e5-1745-0abd519d026a",
            "rank": "normal"
          }
        ],
        "P2168": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2168",
              "hash": "5b535a453c0f88c11cb592ae35510abe93d2eec5",
              "datavalue": {
                "value": "271209",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$77b4aae6-473c-f860-1918-9ca573cdfb2e",
            "rank": "normal"
          }
        ],
        "P1315": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1315",
              "hash": "26738bb6b795b709bab76e844b45c507e06cf04a",
              "datavalue": {
                "value": "847711",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$809C95C5-ED69-432B-91D8-FF7C8C9965A2",
            "rank": "normal"
          }
        ],
        "P2163": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2163",
              "hash": "a727f412894f1378687c860124872df50221304a",
              "datavalue": {
                "value": "56544",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7424C174-D7A8-4D60-89E3-416156EAC76D",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2163",
              "hash": "9eb9e3badafa17417270d66ba6f77a8be72370b2",
              "datavalue": {
                "value": "1775523",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2B5CB441-0DA8-4A5E-AB23-3D54C0ACE620",
            "rank": "normal"
          }
        ],
        "P1417": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1417",
              "hash": "6ea6871c416e9475ac71ca2f65128b3bf4202f79",
              "datavalue": {
                "value": "biography/Douglas-Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2B2DC742-3BC1-4DAA-BECF-C81A33453B57",
            "rank": "normal"
          }
        ],
        "P2611": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2611",
              "hash": "0631354d6f7ce9e874e9d561a8c77602d14c7661",
              "datavalue": {
                "value": "douglas_adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$3169835D-BBAB-48C0-B197-7428BDBAC28E",
            "rank": "normal"
          }
        ],
        "P2435": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2435",
              "hash": "c38967daaf99993bbc91b468fc81a82e3bb9dad3",
              "datavalue": {
                "value": "208947",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$daf51782-49c8-1e46-7738-e923dba42cb0",
            "rank": "normal"
          }
        ],
        "P2604": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2604",
              "hash": "421122162eba6332387f5e8cd004d4de354a64b8",
              "datavalue": {
                "value": "246164",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$ca83a88a-470c-b93a-2393-35a1de0a9c60",
            "rank": "normal"
          }
        ],
        "P2387": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2387",
              "hash": "d61c15b28b800e74f0c307c30d1caf14acd7fb0a",
              "datavalue": {
                "value": "1289170",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$29c1b057-497d-7d15-864e-3d889a76c750",
            "rank": "normal"
          }
        ],
        "P2626": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2626",
              "hash": "9d2f07ecfb40cd02ff993b45b55462b133d32779",
              "datavalue": {
                "value": "159696",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5a41f776-4135-80b1-e3fe-43156047ecb8",
            "rank": "normal"
          }
        ],
        "P2605": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2605",
              "hash": "cb22a19dc73066bcc1cddfd57ab8d26248180bfe",
              "datavalue": {
                "value": "39534",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7398157a-409e-7d35-7d89-7351426cb36c",
            "rank": "normal"
          }
        ],
        "P2963": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2963",
              "hash": "4221e8296d6a925d42a4df043b063108546097b5",
              "datavalue": {
                "value": "4",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "4742bd7d64eb60cd35c3e6f7f5fdafaf5fef1b30",
                  "datavalue": {
                    "value": {
                      "time": "+2020-09-28T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P3744": [
                {
                  "snaktype": "value",
                  "property": "P3744",
                  "hash": "b2715d967e0b549557d8855acd35790361e70afa",
                  "datavalue": {
                    "value": {
                      "amount": "+19460",
                      "unit": "1"
                    },
                    "type": "quantity"
                  },
                  "datatype": "quantity"
                }
              ]
            },
            "qualifiers-order": [
              "P585",
              "P1810",
              "P3744"
            ],
            "id": "Q42$eb0d02d3-4b1d-0e19-cb86-78a0a5439144",
            "rank": "normal"
          }
        ],
        "P910": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P910",
              "hash": "66af9938438374fa44164b5c655fd4902e65345a",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 8935487,
                  "id": "Q8935487"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$3B111597-2138-4517-85AD-FD0056D3DEB0",
            "rank": "normal"
          }
        ],
        "P3106": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3106",
              "hash": "80d1fadf05f08f13eda14529506bd5a48390a367",
              "datavalue": {
                "value": "books/douglasadams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$d8ebbd62-4229-1e3b-6494-ca96246286e3",
            "rank": "normal"
          }
        ],
        "P1303": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1303",
              "hash": "32ba5bbd0bb5778c1097444f80b17d3de3b3cdab",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 6607,
                  "id": "Q6607"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$67547850-C3A0-4C99-AFE4-3C18956CB19A",
            "rank": "normal",
            "references": [
              {
                "hash": "94b3c14bb9d4fe6cbe10c96a169b5c54cccc6b36",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "20a1c5cb74ddad55dcfa7e2d18abd98223e08c3c",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams's 60th birthday marked with liff, the universe and Pink Floyd",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1433": [
                    {
                      "snaktype": "value",
                      "property": "P1433",
                      "hash": "7b84ef4d8e9c65312af6aec92f081aa81c2d3464",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 5614018,
                          "id": "Q5614018"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "b6fdb4b994ead7b61883f5238ec83e88baef9db7",
                      "datavalue": {
                        "value": {
                          "time": "+2012-03-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "114ec1b31fb67a4b02a20fc41856adc937fe7145",
                      "datavalue": {
                        "value": "https://www.theguardian.com/books/2012/mar/06/douglas-adams-60th-birthday-party",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "be00df49aba4568b19e02a446fb86807709526df",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201117181919/https://www.theguardian.com/books/2012/mar/06/douglas-adams-60th-birthday-party",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "bbd71eb6e95ada0c5f6070fbf92b0a6c73c98053",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-17T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P1433",
                  "P577",
                  "P854",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P2469": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2469",
              "hash": "8182569fbc34cb375d652c1108c4895160df700d",
              "datavalue": {
                "value": "238p",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$32DACDAA-0C29-489B-B587-7CB5D374EEE5",
            "rank": "normal"
          }
        ],
        "P3373": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3373",
              "hash": "5e84b11b53fecf61d0ceff89b8f4d7beff79bd4a",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 14623673,
                  "id": "Q14623673"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P1039": [
                {
                  "snaktype": "value",
                  "property": "P1039",
                  "hash": "3ca4eb6cd8b1ba98eb7c5753c5d6ec55931e4b59",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 10943095,
                      "id": "Q10943095"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P1039"
            ],
            "id": "Q42$A3B1288B-67A9-4491-A3AA-20F881C292B9",
            "rank": "normal",
            "references": [
              {
                "hash": "6a3634133c828f5c3cba3f33d033c4d2ae67f5ec",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "b8a91b86a8de832f31541ef3e7ddbbe3b5a1e36e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "a10f1c6654340b4ac13cc7137d4fb1830c4aecb6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-09-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P3417": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3417",
              "hash": "db4aa0e21094eecf0c47e3826a988cf886d67fe0",
              "datavalue": {
                "value": "Douglas-Adams-4",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$edea25d2-4736-b539-ec8d-d3f82e1f7100",
            "rank": "normal"
          }
        ],
        "P3430": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3430",
              "hash": "1e9a0d6461bed3d3b3f7ed1956b151058982cd6e",
              "datavalue": {
                "value": "w65h7md1",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$76AD35E4-F222-418A-A3AC-CF6472790811",
            "rank": "normal"
          }
        ],
        "P1617": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1617",
              "hash": "aeab2cca07e2851f3be2739cb17cd7fc7fdcf255",
              "datavalue": {
                "value": "aa075cb6-75bf-46d8-b0bf-9751d6c04c93",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$545d5c9a-4bde-ee8b-089f-1a11ba699301",
            "rank": "normal"
          }
        ],
        "P2048": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2048",
              "hash": "bb30f6a415dca2ba16fc59f4fa2b5b32df39cd7d",
              "datavalue": {
                "value": {
                  "amount": "+1.96",
                  "unit": "http://www.wikidata.org/entity/Q11573"
                },
                "type": "quantity"
              },
              "datatype": "quantity"
            },
            "type": "statement",
            "id": "Q42$b0bf3caf-481c-356b-03a2-e61174b8e6da",
            "rank": "normal",
            "references": [
              {
                "hash": "ea084a413b5055da7bfc68fbd54d389080918b23",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "e837da58a8ef25e66d6112aa10c5e37cf9caf4f0",
                      "datavalue": {
                        "value": "https://books.google.com/books?id=0oA8DwAAQBAJ&pg=PT107",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c1dd32c79ecbfbdb407a13167380d7d97b87997b",
                      "datavalue": {
                        "value": {
                          "time": "+2018-11-15T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P957": [
                    {
                      "snaktype": "value",
                      "property": "P957",
                      "hash": "b78f1cbd5b0f909d622e73e57c2309db0a96479a",
                      "datavalue": {
                        "value": "1-782-43841-6",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P212": [
                    {
                      "snaktype": "value",
                      "property": "P212",
                      "hash": "ef3afe99c29235dbb20218225edabbcbbce2ffbb",
                      "datavalue": {
                        "value": "978-1-782-43841-0",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "77683e3c953a89bc3ab6018bf4b221be5d24e31c",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20190603110729/https://books.google.com/books?id=0oA8DwAAQBAJ&pg=PT107",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "7d10d7ef8eddb1fe10f66559456a473bcf6ce7ec",
                      "datavalue": {
                        "value": {
                          "time": "+2019-06-03T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P813",
                  "P957",
                  "P212",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P3222": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3222",
              "hash": "24ce0b270b00ea4d2dcc082d647f8eb542070bbd",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$D41D834D-0BD4-411C-A671-2B7BE6053EB5",
            "rank": "normal"
          }
        ],
        "P109": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P109",
              "hash": "cf4b6f2d6c3fb835e32de8e927cf75a75704f8ac",
              "datavalue": {
                "value": "Douglas Adams signature.svg",
                "type": "string"
              },
              "datatype": "commonsMedia"
            },
            "type": "statement",
            "qualifiers": {
              "P2096": [
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "c49b60c3026a607bbf867f814111ec154139497f",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adams'\u0131n imzas\u0131",
                      "language": "tr"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                }
              ]
            },
            "qualifiers-order": [
              "P2096"
            ],
            "id": "Q42$e5b8e5d5-4243-43e3-3476-c8f1572f14fa",
            "rank": "normal"
          }
        ],
        "P4193": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4193",
              "hash": "f1fe4a6c587c168332f92c0bd2a995bd9570b99a",
              "datavalue": {
                "value": "Douglas_Noel_Adams_(1952-2001)",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$769463b3-4b83-cf93-d5ef-0b4e98e1cf33",
            "rank": "normal"
          }
        ],
        "P136": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P136",
              "hash": "202d8227cb86026ec9956eea1628a52cd8d3cdfb",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 24925,
                  "id": "Q24925"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$0ff4aeeb-4fdb-56cf-5fe9-916e1bbbbc73",
            "rank": "normal",
            "references": [
              {
                "hash": "eb03fd03eef53befd07c43d5dfeea4047fb9a72e",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "b3784f20fdd968a0a3c739174983521c82d178fd",
                      "datavalue": {
                        "value": "https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "cc070d30c037a656be8479b9ecec12ae4d125596",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams is still the king of comic science fiction",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "8c7cfd920adb380546ec2444b506d6d00fce49e6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-03-11T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "5eb5f0ed5b2c86115f3003ddf19524e65e45340a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 11148,
                          "id": "Q11148"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "114e3f026277b9c91447ff480a721ac6f9af8f21",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201117102058/https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "bbd71eb6e95ada0c5f6070fbf92b0a6c73c98053",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-17T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476",
                  "P577",
                  "P248",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P136",
              "hash": "61ab43a3146565344895c746d35e7d3cf1917cc3",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 40831,
                  "id": "Q40831"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$2ac90f53-4dc5-2ecc-d595-70f7c43f2fda",
            "rank": "normal",
            "references": [
              {
                "hash": "6dcb62714f5201f4ea22c331a6e32e817916981f",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "b3784f20fdd968a0a3c739174983521c82d178fd",
                      "datavalue": {
                        "value": "https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "cc070d30c037a656be8479b9ecec12ae4d125596",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams is still the king of comic science fiction",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "8c7cfd920adb380546ec2444b506d6d00fce49e6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-03-11T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "5eb5f0ed5b2c86115f3003ddf19524e65e45340a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 11148,
                          "id": "Q11148"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476",
                  "P577",
                  "P248"
                ]
              },
              {
                "hash": "bab32d323b6c92d91ff7d0c4707346012900761b",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d74ce84c9bceb1f94564bc8d53ad074739e46eb3",
                      "datavalue": {
                        "value": "http://www.screenonline.org.uk/people/id/1233876/index.html",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P136",
              "hash": "98c2629a70e699b536d71d16e03b20fbbad7b8d5",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 128758,
                  "id": "Q128758"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$43f046bb-47a4-00aa-5174-aa7ca343396b",
            "rank": "normal",
            "references": [
              {
                "hash": "970f20bd8dc49db5bbe0de9d4c7b3b555c134e59",
                "snaks": {
                  "P3106": [
                    {
                      "snaktype": "value",
                      "property": "P3106",
                      "hash": "468b1af18aa266fe9eeaf8213a977a1612538c13",
                      "datavalue": {
                        "value": "commentisfree/2015/aug/07/hitchhikers-guide-galaxy-book-changed-me-vogons-economics",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P3106"
                ]
              }
            ]
          }
        ],
        "P4431": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4431",
              "hash": "1faf29b616aacd94361ec05e63b2faabef5aadcd",
              "datavalue": {
                "value": "douglas-adams-61st-birthday",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "52ee0260174795772f9cfbfa8ec3b7561ef4e7bc",
                  "datavalue": {
                    "value": {
                      "time": "+2013-03-11T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P585"
            ],
            "id": "Q42$520b13d1-47df-2d1c-f56d-7106f383a3b6",
            "rank": "normal",
            "references": [
              {
                "hash": "c8c63046ea013957f2ae353e4181e82d2829d3bb",
                "snaks": {
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "8753bb7a1a2ad9d3c7356999765471497859e0ce",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201118223820/http://www.google.com/doodles/douglas-adams-61st-birthday",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "d2020384c231d0816a2df1d8ca94802d4c02fda4",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-18T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P2607": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2607",
              "hash": "39e9c24ade56182f9826a6cdeb65b741c59f7349",
              "datavalue": {
                "value": "307812da-da11-4ee5-a906-31e5ce9694bb",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$52EA4A30-C798-4ED3-AEA0-A2FEB4B0FB95",
            "rank": "normal"
          }
        ],
        "P1415": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1415",
              "hash": "8a7b55e5b7e6d645618f191698851929669fda33",
              "datavalue": {
                "value": "75853",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$E10A1B54-9D65-4334-8F2C-58B21B49D565",
            "rank": "normal"
          }
        ],
        "P2949": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2949",
              "hash": "06f219671f6aca0ead3d077809a9f95938921c05",
              "datavalue": {
                "value": "Adams-32825",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "cfbfa8b63e2947a4f808c8bb17ae443638e13b1f",
                  "datavalue": {
                    "value": "Douglas Noel Adams (11 Mar 1952 - 11 May 2001)",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$A4E52439-57DF-4C31-902C-E995D78488FA",
            "rank": "normal"
          }
        ],
        "P3154": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3154",
              "hash": "a6153385a0dfb1b9acdc9bb2082a08cf8b5b72eb",
              "datavalue": {
                "value": "adamsdou",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$916F4133-B433-4FA1-B888-F86DA132B1DE",
            "rank": "normal"
          }
        ],
        "P3630": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3630",
              "hash": "c943a67cefbf6c5f52cd624308b923cddb344024",
              "datavalue": {
                "value": "2627",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$15011D96-BB02-4B8F-9728-8FF88A3A938D",
            "rank": "normal"
          }
        ],
        "P1280": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1280",
              "hash": "ad98b64e66275024c3602f3002911c205f7a3002",
              "datavalue": {
                "value": "6050147",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$0DFBA3E4-F98E-4ED5-AE30-CE8556429229",
            "rank": "normal"
          }
        ],
        "P2734": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2734",
              "hash": "0e5ad1f3b3f960fdc719f9c764afb9645f77ea1e",
              "datavalue": {
                "value": "AdamsDouglas",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6646C637-00DF-47E1-A845-CFCAB27A559D",
            "rank": "normal"
          }
        ],
        "P26": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P26",
              "hash": "e41afff05ff2364b903d9cbc117e5730a99f8cfb",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 14623681,
                  "id": "Q14623681"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "cccb5ca124ec4121900c8beb41b777148829fa49",
                  "datavalue": {
                    "value": {
                      "time": "+1991-11-25T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P582": [
                {
                  "snaktype": "value",
                  "property": "P582",
                  "hash": "8798597f326000b4ffd9948d42771308bdb23133",
                  "datavalue": {
                    "value": {
                      "time": "+2001-05-11T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ],
              "P1534": [
                {
                  "snaktype": "value",
                  "property": "P1534",
                  "hash": "cdecc87f4efe042c758e4e783a0eb1a6bf317bf5",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 99521170,
                      "id": "Q99521170"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P580",
              "P582",
              "P1534"
            ],
            "id": "q42$b88670f8-456b-3ecb-cf3d-2bca2cf7371e",
            "rank": "normal",
            "references": [
              {
                "hash": "6a3634133c828f5c3cba3f33d033c4d2ae67f5ec",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "db25e2819537870d0ef893d382ef7c400f4ec4d3",
                      "datavalue": {
                        "value": "http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P123": [
                    {
                      "snaktype": "value",
                      "property": "P123",
                      "hash": "201f20dc608f8134f4b320df3cc273babfbb2284",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1373513,
                          "id": "Q1373513"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "3efff2f94d96938bcfa1c19a34a4fa41de7be644",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "b8a91b86a8de832f31541ef3e7ddbbe3b5a1e36e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "a10f1c6654340b4ac13cc7137d4fb1830c4aecb6",
                      "datavalue": {
                        "value": {
                          "time": "+2013-09-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P407",
                  "P123",
                  "P813",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P5019": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5019",
              "hash": "43ed67a7e85525f6e09d5b1c7d8cf48a13b0249d",
              "datavalue": {
                "value": "adams-douglas-noel",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$d12f42dc-456c-4c5f-19ee-b4dda178e50f",
            "rank": "normal"
          }
        ],
        "P463": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P463",
              "hash": "a584c94c9a14d402a281d10bdf8b97b9c04f5642",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 857679,
                  "id": "Q857679"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$45E1E647-4941-42E1-8428-A6F6C848276A",
            "rank": "normal",
            "references": [
              {
                "hash": "d3a1bf3d15f15231160c53372322c3beffdc741d",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "9e9fcadde8d4a98a6ace310d9b1e0736710b6a68",
                      "datavalue": {
                        "value": "https://www.cambridgeindependent.co.uk/whats-on/cambridge-honours-hitchhikers-guide-to-the-galaxy-author-douglas-adams-9071978/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "a412da80d72f196ae7ad0a16bb8611070f54ecca",
                      "datavalue": {
                        "value": {
                          "text": "Cambridge holds Towel Day in honour of Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "26f3406d43daf2a276c43b0890b9701bdb58bf5d",
                      "datavalue": {
                        "value": {
                          "time": "+2019-05-30T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "bd6afba01dd8a6df3487fdb8e97a39520cc6b702",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201117174858/https://www.cambridgeindependent.co.uk/whats-on/cambridge-honours-hitchhikers-guide-to-the-galaxy-author-douglas-adams-9071978/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "bbd71eb6e95ada0c5f6070fbf92b0a6c73c98053",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-17T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476",
                  "P577",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P463",
              "hash": "84849e152aef5521da8473634fd3b47b1725730a",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 5610831,
                  "id": "Q5610831"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$05cafd4a-4fb1-13ff-7f11-2e72b85ae07a",
            "rank": "normal",
            "references": [
              {
                "hash": "ebf92afc2ec3ffcf1aec1d55f0b066d190281576",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "ce45c622a9170b7f462f34f0f08f543843add2a9",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 2567271,
                          "id": "Q2567271"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P4789": [
                    {
                      "snaktype": "value",
                      "property": "P4789",
                      "hash": "bb5a76d21ce7a9507293d4e26847bd068e04be27",
                      "datavalue": {
                        "value": "U4994",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P4789"
                ]
              }
            ]
          }
        ],
        "P2600": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2600",
              "hash": "8a7c7e56a0067681a41c7fbbc0eb5ebcc37fdb6c",
              "datavalue": {
                "value": "6000000050650155828",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$101c1875-4027-37aa-3a72-c202e42276ab",
            "rank": "normal"
          }
        ],
        "P5337": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5337",
              "hash": "29ed1262bb3fefb630042509e9c9ddbb9dd2cbd1",
              "datavalue": {
                "value": "CAAqJQgKIh9DQkFTRVFvSUwyMHZNREk0TW5nU0JXVnVMVWRDS0FBUAE",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$966e692e-4516-de45-356c-7e098273a79a",
            "rank": "normal"
          }
        ],
        "P5357": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5357",
              "hash": "6a7078b9e85a8ed980393e64dd62f4c93fe98a43",
              "datavalue": {
                "value": "adams_douglas",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$63B203C0-A6B4-40A7-9942-09F5AA7DE92F",
            "rank": "normal",
            "references": [
              {
                "hash": "154031fdff9fbadaa5f15c8b7e4ae46ca13db45a",
                "snaks": {
                  "P143": [
                    {
                      "snaktype": "value",
                      "property": "P143",
                      "hash": "a3bacfb56d9e630c9b0b2f1c5e906b4b26f7c49a",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 28054658,
                          "id": "Q28054658"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ]
                },
                "snaks-order": [
                  "P143"
                ]
              }
            ]
          }
        ],
        "P5361": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5361",
              "hash": "21938e02cbd2906580613024f462917402094384",
              "datavalue": {
                "value": "AdamsDouglas1952-2001",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$E5FCDDD6-0021-4543-8815-ACC8C2877C9F",
            "rank": "normal",
            "references": [
              {
                "hash": "133415593c921f4a8641abd7123e2c4d451cca0c",
                "snaks": {
                  "P4656": [
                    {
                      "snaktype": "value",
                      "property": "P4656",
                      "hash": "02056bd703f8d9ef04a126afb0a7011af1b085f0",
                      "datavalue": {
                        "value": "https://www.wikidata.org/w/index.php?title=Wikidata:Property_proposal/BNB_person_ID&oldid=700383726",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P4656"
                ]
              }
            ]
          }
        ],
        "P5365": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5365",
              "hash": "a44d4ded6b35d2d4a131099c633aa8b1fcaa1452",
              "datavalue": {
                "value": "42",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7894D1B9-2FB1-4F0D-BC65-D0736B68C179",
            "rank": "normal"
          }
        ],
        "P5408": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5408",
              "hash": "a537c2ffabd6b49cd9ea8f935bf6f53fdd2eb10f",
              "datavalue": {
                "value": "a/douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$37B09D07-EE5D-4944-80B0-27BB6D41D87F",
            "rank": "normal"
          }
        ],
        "P5570": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5570",
              "hash": "0a407feec4ece2cd71d650ad10574fb91b9f5b18",
              "datavalue": {
                "value": "143",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4F5DCE7C-3839-4642-AB6D-72C14C18D768",
            "rank": "normal"
          }
        ],
        "P1580": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1580",
              "hash": "381b5f7f7eee8c0b1ddc330f9384174fef368c10",
              "datavalue": {
                "value": "a1221374",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$50941274-91AC-438C-9B7C-F0105F9CD20F",
            "rank": "normal"
          }
        ],
        "P5587": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5587",
              "hash": "45b250733afb47b733dcb1716f910e468933123d",
              "datavalue": {
                "value": "1zcfh30k0gr4zxt",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$21178ECC-11CC-4CD3-BBD4-E35EB788B26E",
            "rank": "normal",
            "references": [
              {
                "hash": "090947d10eb71b36c636524a7efcdbb82d2f7a00",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "f487c993a88b7e91732ae6e2ad2910710a462ad8",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1798125,
                          "id": "Q1798125"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "86c9d0700fcc61e9c1ea1254d3d9b7029253623d",
                      "datavalue": {
                        "value": "https://libris.kb.se/katalogisering/1zcfh30k0gr4zxt",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "0e399d3b76f1dd42d1d750c3cf3cc81a2006aa96",
                      "datavalue": {
                        "value": {
                          "time": "+2018-03-26T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a11d62bd1cf10c4155401fd7884e6013285efeaa",
                      "datavalue": {
                        "value": {
                          "time": "+2018-08-24T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "ec1467e97e8e6116c8dd4ceac6926358e18333fc",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20190418182355/https://libris.kb.se/katalogisering/1zcfh30k0gr4zxt",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "2503adb98ff5e769a598892a003dd0b041fc31fe",
                      "datavalue": {
                        "value": {
                          "time": "+2019-04-18T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P854",
                  "P577",
                  "P813",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P3365": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3365",
              "hash": "b0800b1c5f6da693c6b7d845f5e0b0aa0fc517ac",
              "datavalue": {
                "value": "douglas-noel-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "bcb47e52c85d53c439b6d143dbfa9d49d6a28af6",
                  "datavalue": {
                    "value": "Adams, Douglas No\u00ebl",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$68E451D5-0EA5-4F70-8985-A2613B7F0729",
            "rank": "normal"
          }
        ],
        "P269": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P269",
              "hash": "adb558674eda6bfe9b17c3fed9be99c3d55f0cc3",
              "datavalue": {
                "value": "026677636",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$26D2B7C9-84FD-4E96-A6EC-42959F8D7048",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P213": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P213",
              "hash": "ed6b11a980013ea8e084b8e634cfcac37d2eba8a",
              "datavalue": {
                "value": "0000 0000 8045 6315",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$25738B35-D07D-4C28-8C74-05FBA1B1E6C7",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P691": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P691",
              "hash": "bc9fdc5daaa2387d2d7bc5749239552a696adb78",
              "datavalue": {
                "value": "jn19990000029",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "1b5dd348dc4e4d1783b5a7d6710bb07b099b930a",
                  "datavalue": {
                    "value": "Adams, Douglas",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$237DB309-0D43-42EB-999D-65BD0A833311",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P950": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P950",
              "hash": "fd89c3e8114dce50507d5dce01124aa51da46ee6",
              "datavalue": {
                "value": "XX1149955",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$A813E628-398C-40C6-B082-8C4FCE4DF3FF",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1670": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1670",
              "hash": "d61de0b70e9a69753fdd2e33499c67efb1140823",
              "datavalue": {
                "value": "0052C2705",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$53AB6C05-B46A-42E2-AF19-6E47B60987E9",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P409": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P409",
              "hash": "ee67cbff3db03abd0756291848d8351fb35833dd",
              "datavalue": {
                "value": "35163268",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$1167E25E-4B31-44B2-A08E-8178E52536AD",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P396": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P396",
              "hash": "71dd3e5737cb771f5fded0fb20494e2ef013fdda",
              "datavalue": {
                "value": "RAVV034417",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "6de4976ef3fbd18751d7d265581e25d0dc45d176",
                  "datavalue": {
                    "value": "Adams, Douglas <1952-2001>",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$63B132B2-B98C-40BA-AAA7-F855B1678CB0",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1207": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1207",
              "hash": "fb8c444b252a36a9690abf99924481f76209d617",
              "datavalue": {
                "value": "n94004172",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$391E9E99-4F2C-4229-91F0-8DEF0A7D901B",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1005": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1005",
              "hash": "37f6dc2b15256fe80a31628333c20d4a550cf5c4",
              "datavalue": {
                "value": "68537",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$F7E900F6-37B8-433C-A236-32E5CF8A5E20",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1375": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1375",
              "hash": "74f3cc3776b62c99ac1e7eaff7cdc7c9558cd12c",
              "datavalue": {
                "value": "000010283",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$D132DC6E-BE15-4502-BBE6-CDD6CDCED610",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1412": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1412",
              "hash": "7056615ebf0fbde82a3ca3bb9b2c481669a46eb1",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 1860,
                  "id": "Q1860"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$d55ff2eb-44fe-dab5-4bc9-c7c765720bc1",
            "rank": "normal",
            "references": [
              {
                "hash": "5adc5909e87421b0f55910d4bcbd4ce599bceab5",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "80047f9d5b0d2daf06989e71bd5f4ba15b215fd6",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 13550863,
                          "id": "Q13550863"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P691": [
                    {
                      "snaktype": "value",
                      "property": "P691",
                      "hash": "bc9fdc5daaa2387d2d7bc5749239552a696adb78",
                      "datavalue": {
                        "value": "jn19990000029",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "b2ad08910940cafbe24537b40cf2cd06bef73cac",
                      "datavalue": {
                        "value": {
                          "time": "+2022-03-01T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P691",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P5247": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5247",
              "hash": "8f4b62bbb398cf8ca51e399b2b953be528ba79ad",
              "datavalue": {
                "value": "3040-1126",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$90691468-A3EF-4050-9813-BC6BDD6C3168",
            "rank": "normal"
          }
        ],
        "P5905": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5905",
              "hash": "c700ceba2dd72a049af0351d873be7e87f7531c9",
              "datavalue": {
                "value": "4040-45935",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7F17859B-BE24-4CA0-8362-AFE1A02D71CC",
            "rank": "normal"
          }
        ],
        "P6839": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6839",
              "hash": "0733cda584fe12f4e30a68235634050d802b6769",
              "datavalue": {
                "value": "Creator/DouglasAdams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$024ba49c-4d11-9afa-781f-56c53f807bed",
            "rank": "normal"
          }
        ],
        "P4342": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4342",
              "hash": "8819177242878681cc99a517ada480a6fd2d03dc",
              "datavalue": {
                "value": "Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$0273baf0-71d1-4104-a6b9-2a6580713626",
            "rank": "normal",
            "references": [
              {
                "hash": "3a8536419e5f6bc8271f5902027354fc56ff7a8b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "65bf94067e6255ff8d61c9c9535d98794a309a4c",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 746368,
                          "id": "Q746368"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "d4e60cbd2f58fc57cca8f6316169296d06cf026c",
                      "datavalue": {
                        "value": {
                          "time": "+2019-07-28T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P4785": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4785",
              "hash": "ff5f2579684ae080fc9cbfc18e6a62451d499638",
              "datavalue": {
                "value": "47671",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$dc9a6318-40b1-0047-ba98-d0957a7d7d8c",
            "rank": "normal"
          }
        ],
        "P485": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P485",
              "hash": "b261d97449d344e10a5ff1ccf8184c871f93a9ff",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 67074906,
                  "id": "Q67074906"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P973": [
                {
                  "snaktype": "value",
                  "property": "P973",
                  "hash": "faa9b839c90fcc905fd3dd697c98fa89896bfbc8",
                  "datavalue": {
                    "value": "https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams",
                    "type": "string"
                  },
                  "datatype": "url"
                }
              ]
            },
            "qualifiers-order": [
              "P973"
            ],
            "id": "Q42$56607576-4b1f-fe7a-b893-9622286e9479",
            "rank": "normal",
            "references": [
              {
                "hash": "7283e4bf08c6476bff61211d3429dbb47b5bec27",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "65bf26986e02939462558674244522746a722b18",
                      "datavalue": {
                        "value": "https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "21e501dd773e86fe1e796ce7670b7b6b90655786",
                      "datavalue": {
                        "value": {
                          "text": "Fonds AdamsDN - Papers of Douglas No\u00ebl Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "5f236af701071cb06d653ff2e79b878c422160dd",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201117104349/https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "bbd71eb6e95ada0c5f6070fbf92b0a6c73c98053",
                      "datavalue": {
                        "value": {
                          "time": "+2020-11-17T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P7029": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7029",
              "hash": "81a852fb15a6f95808addd1e24374badbead216b",
              "datavalue": {
                "value": "770139179",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "7d33c149529ec792c9ff7380b6283fa3b5b39823",
                  "datavalue": {
                    "value": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441 (1952-2001)",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "d291ddb7cd77c94a7bd709a8395934147e0864fc",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 7737,
                      "id": "Q7737"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P1810",
              "P407"
            ],
            "id": "Q42$05A6E4FD-1F01-4F19-8ABF-190BA8319A04",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7029",
              "hash": "e176831539381d8d4effb5cb341503b47c770e29",
              "datavalue": {
                "value": "770139180",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "c0f66ac9dc069ba27f91832e34e6e1782116f8cc",
                  "datavalue": {
                    "value": "Adams, Douglas (1952-2001)",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P1810",
              "P407"
            ],
            "id": "Q42$996C8555-968B-437C-B18C-E2350E014C6A",
            "rank": "normal"
          }
        ],
        "P1343": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1343",
              "hash": "0d5652504d25c7e82ccab455e6a39aa951dc836c",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 67311526,
                  "id": "Q67311526"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P2699": [
                {
                  "snaktype": "value",
                  "property": "P2699",
                  "hash": "7323ac66bb04e87904ef6fdbd462bc1210b77263",
                  "datavalue": {
                    "value": "https://www.obalkyknih.cz/view_auth?auth_id=jn19990000029",
                    "type": "string"
                  },
                  "datatype": "url"
                }
              ]
            },
            "qualifiers-order": [
              "P2699"
            ],
            "id": "Q42$FD398E71-8597-4D36-949A-D905ACD24DAC",
            "rank": "normal"
          }
        ],
        "P5034": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5034",
              "hash": "3660910485b506349346be80d8304bad596bfe77",
              "datavalue": {
                "value": "KAC200300379",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4a27a89e-6e25-4ac1-ae53-88fe60763fc4",
            "rank": "normal"
          }
        ],
        "P7433": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7433",
              "hash": "6867c785f1d3f0d914f1670c5b70421d1e181c96",
              "datavalue": {
                "value": "25",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$67D7BFF5-F914-4780-A704-B8F9AA42F2C1",
            "rank": "normal",
            "references": [
              {
                "hash": "b2c64ac3b79264041210b0803c48d9a8ad98314d",
                "snaks": {
                  "P4656": [
                    {
                      "snaktype": "value",
                      "property": "P4656",
                      "hash": "b04a460a2d91f06a292297f74d06fe648fba23b9",
                      "datavalue": {
                        "value": "https://www.wikidata.org/w/index.php?title=Wikidata:Property_proposal/FantLab_author_ID&oldid=1032426353",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P4656"
                ]
              }
            ]
          }
        ],
        "P7400": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7400",
              "hash": "6f8e5bc8dc278f417eb24c1777157c5d0deff982",
              "datavalue": {
                "value": "adamsdouglas-1",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6b518eac-487e-231c-7079-10c2640be50b",
            "rank": "normal"
          }
        ],
        "P7704": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7704",
              "hash": "19d1d56262f5604ce439db9190b38789ba1c01db",
              "datavalue": {
                "value": "agent/base/59925",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$F953F363-3A9D-4DCC-AD34-12307E92A25B",
            "rank": "normal"
          }
        ],
        "P7859": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7859",
              "hash": "d804aa1bd7b2992e4170d3305d2388d2f43be99e",
              "datavalue": {
                "value": "lccn-n80076765",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$ca4e6fca-42cb-889f-2c84-9ed2e6d4b4a3",
            "rank": "normal",
            "references": [
              {
                "hash": "08e3e6521cbb059b15df261cf79fcefcc29a682a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "a1b98b5c8bb6eca02829acaf6200c3e4a45b4dd0",
                      "datavalue": {
                        "value": {
                          "time": "+2018-10-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P3762": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3762",
              "hash": "6700459c02f26575f0d773d2c98ef75a8802cc07",
              "datavalue": {
                "value": "140290",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$808D478E-2C19-46AD-BB08-D46EF27C6964",
            "rank": "normal"
          }
        ],
        "P3065": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3065",
              "hash": "c228b4722f89b4eaf56c8b257348332544b8ab08",
              "datavalue": {
                "value": "02-A002907983",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$d7befac9-4a60-389b-6821-1906d4acad6c",
            "rank": "normal"
          }
        ],
        "P3846": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3846",
              "hash": "2c540d355dda4a2a79e1748021887a00bd879583",
              "datavalue": {
                "value": "87097968038642",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$70d25151-4617-eb5c-9fae-6250b4be38e9",
            "rank": "normal"
          }
        ],
        "P7293": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7293",
              "hash": "e346af31943ebe5d53b1307fc28fbc4b6170d640",
              "datavalue": {
                "value": "9810669145205606",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$e4c35e65-4646-bc7d-2408-e84570b851d7",
            "rank": "normal"
          }
        ],
        "P7700": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7700",
              "hash": "c63cead176f232a4ccb9bee5abb5532e2e81e705",
              "datavalue": {
                "value": "vtls005710289",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$fcbe553b-4856-7ebf-2588-3e42fd422016",
            "rank": "normal"
          }
        ],
        "P1890": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1890",
              "hash": "9da0251cf5f486827457168f0a1bf41534a24a4d",
              "datavalue": {
                "value": "000750942",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4330e0d7-4b3d-7a01-5696-f93a0e2fcaa4",
            "rank": "normal"
          }
        ],
        "P4619": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4619",
              "hash": "9cfce7f067f85b929b7226fac2229aa0d99ba576",
              "datavalue": {
                "value": "000592321",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5313e948-4771-ea78-e253-c176070df512",
            "rank": "normal"
          }
        ],
        "P6394": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6394",
              "hash": "1c94402ac03899c8e59e42f64062bd30c8b3fdf3",
              "datavalue": {
                "value": "a1112474x",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$74e4f6a4-4f7a-859a-4ea1-c13d8b45f1f6",
            "rank": "normal"
          }
        ],
        "P4839": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4839",
              "hash": "bd42a9bc1b57eaaa4e132539c6a14ee56cc13070",
              "datavalue": {
                "value": "Entity[\"Person\", \"DouglasAdams::gh8qf\"]",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$bd06c277-4a19-ba01-ac45-8897cf3b1637",
            "rank": "normal"
          }
        ],
        "P2581": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2581",
              "hash": "1c404d4936187efa9904da6bd5013cd3c2f3568a",
              "datavalue": {
                "value": "03688580n",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$08c46dbb-40ce-ae67-b114-2e601e14f325",
            "rank": "normal"
          }
        ],
        "P5284": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5284",
              "hash": "91a36f2e53a4510a314ffc6be33ab374b7a63b27",
              "datavalue": {
                "value": "1032346",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$f764d646-4816-0a84-e111-6b471ec66320",
            "rank": "normal"
          }
        ],
        "P4862": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4862",
              "hash": "46153baa62a90a9575e877062d08b15f7dbc37cf",
              "datavalue": {
                "value": "B000AQ2A84",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9f67e2fc-4471-d610-6fb1-6b0fd7dbea02",
            "rank": "normal"
          }
        ],
        "P7661": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7661",
              "hash": "b644a20dc389df65f59964f464e077b57d11f8aa",
              "datavalue": {
                "value": "74033",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$61de1a61-487c-d2dc-fc4b-c0f94c1beec1",
            "rank": "normal"
          }
        ],
        "P3913": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3913",
              "hash": "6962040846568356e02ba50d60fb55905f247547",
              "datavalue": {
                "value": "337",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7288b73e-4289-318e-e3b5-e3f7e16eab66",
            "rank": "normal"
          }
        ],
        "P7214": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7214",
              "hash": "570b8626f4352027b976f3ee281b4d79e43c680d",
              "datavalue": {
                "value": "753186",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$cb65a36b-436a-4400-4f17-ee5ea0272ce4",
            "rank": "normal"
          }
        ],
        "P4666": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4666",
              "hash": "c933a5e21dade3f656cb0070077ca4bd3ef40de3",
              "datavalue": {
                "value": "23878",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$f585133b-43e3-2f2c-38b0-a2d8395aea11",
            "rank": "normal"
          }
        ],
        "P7215": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7215",
              "hash": "d0f12589ed774fd02e3df76962b1b60748a601cd",
              "datavalue": {
                "value": "46398",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5e13100f-4b67-7e71-cd0a-3ea7a8e385fd",
            "rank": "normal"
          }
        ],
        "P5233": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5233",
              "hash": "95804015ce0775d26d75a82c0d1182c6508675f9",
              "datavalue": {
                "value": "a38",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9ea6fb50-4466-a1d1-5c97-172f0ccc58c3",
            "rank": "normal"
          }
        ],
        "P5033": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5033",
              "hash": "f0498f1a53bd2d1d86e0773323e4b5e1108116ea",
              "datavalue": {
                "value": "160192",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$21346823-40f6-fc02-32c3-ab4eb16444b8",
            "rank": "normal"
          }
        ],
        "P3305": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3305",
              "hash": "be3e5596f23b11f16d5016217d1e81669ffadfb3",
              "datavalue": {
                "value": "199918",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9af076a8-4842-3d41-354a-51e4db2d27cb",
            "rank": "normal"
          }
        ],
        "P7745": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7745",
              "hash": "821c7ff42b52346c14a06e8ee1bb0bfc2e0878f8",
              "datavalue": {
                "value": "183956",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$1812a161-4964-adb1-ce77-0d39d3e00e3d",
            "rank": "normal"
          }
        ],
        "P6464": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6464",
              "hash": "a1435116c000a27515f93b0bfb245a67fe2e1534",
              "datavalue": {
                "value": "898203",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6fa04c06-4b5a-45f0-45ae-4a12d2f695c1",
            "rank": "normal"
          }
        ],
        "P7300": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7300",
              "hash": "b1f80c6fc1bbb4e6204c7f678b2eee7f91365a8d",
              "datavalue": {
                "value": "59932",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$dd3a4b98-49a0-853a-05fc-cfa372831d12",
            "rank": "normal"
          }
        ],
        "P4657": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4657",
              "hash": "b02b2cb89874509eb65e382e51acb52a7772ca4f",
              "datavalue": {
                "value": "432740401",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$a86fd81c-4561-8211-a2d8-40929a8ccf37",
            "rank": "normal"
          }
        ],
        "P5534": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5534",
              "hash": "124de8ddcceab5998afcec11de764307cc9f8918",
              "datavalue": {
                "value": "52843",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4e15fd9f-4b54-5e2f-58da-81abbec17d63",
            "rank": "normal"
          }
        ],
        "P4985": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4985",
              "hash": "ec4b31f8846d85fdabec5bd0f97f87e29f739dc4",
              "datavalue": {
                "value": "52843",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$50899201-49e7-dec1-004e-12e94109e1f0",
            "rank": "normal",
            "references": [
              {
                "hash": "354bdf2193acbbe0217db68cad6365e38d8a90a3",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "01c5ccdb20291acf36831371f5891341513dc666",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 20828898,
                          "id": "Q20828898"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P345": [
                    {
                      "snaktype": "value",
                      "property": "P345",
                      "hash": "c5e0f8f8e24ac2a6721b316e2a3a73820e61bc11",
                      "datavalue": {
                        "value": "nm0010930",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f794e0939e62568f014684eaf8b328fd49ddd187",
                      "datavalue": {
                        "value": {
                          "time": "+2021-05-28T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P345",
                  "P813"
                ]
              },
              {
                "hash": "76f54c6cf51e45eabdb0fecfdd703679f2067447",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "01c5ccdb20291acf36831371f5891341513dc666",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 20828898,
                          "id": "Q20828898"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P646": [
                    {
                      "snaktype": "value",
                      "property": "P646",
                      "hash": "119ce5ea11d825b41f7a763700a530f1fd602531",
                      "datavalue": {
                        "value": "/m/0282x",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f794e0939e62568f014684eaf8b328fd49ddd187",
                      "datavalue": {
                        "value": {
                          "time": "+2021-05-28T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P646",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P3845": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3845",
              "hash": "f2ad4953d46990ca53225d4c45c5ca380f681ee2",
              "datavalue": {
                "value": "665243",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$8d9f5195-4700-1cb0-fe1b-1b1940b02f23",
            "rank": "normal"
          }
        ],
        "P2638": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2638",
              "hash": "36f0effbc814b2a9221b6448b653e62ebe5fc2d3",
              "datavalue": {
                "value": "people/douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$13562de2-4ff2-a283-3077-378685600ff9",
            "rank": "normal"
          }
        ],
        "P1712": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1712",
              "hash": "61072509596eecae3983a8668aa6b6218b4ae1c9",
              "datavalue": {
                "value": "person/douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$8616ecb1-4ecb-0969-733f-76a41892c04e",
            "rank": "normal"
          }
        ],
        "P6119": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6119",
              "hash": "673d0d50657db50f53888ce6feb40e21b15b6dee",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5515f2c8-4f03-c5c9-3d54-0917f9678e00",
            "rank": "normal"
          }
        ],
        "P5340": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5340",
              "hash": "3e41ba562f1dbba94f43f7b02f605f3d320a08a8",
              "datavalue": {
                "value": "278771",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$b00a3a11-430e-e009-8379-dc40ab3fc3dd",
            "rank": "normal"
          }
        ],
        "P4438": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4438",
              "hash": "cb62b0c1d2b17b0c8fc382f31a1504160ad86788",
              "datavalue": {
                "value": "4ce2ba117755a",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$daa91fc4-4012-6945-f781-8238a0c73b19",
            "rank": "normal"
          }
        ],
        "P4326": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4326",
              "hash": "a5257daf61f9d032423a69dd74f1404fa7a87609",
              "datavalue": {
                "value": "215853",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$b47f944e-409a-8c99-5191-d27a1dd1ac38",
            "rank": "normal"
          }
        ],
        "P4768": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4768",
              "hash": "cbdd3f2dc0020219c31d3f2d08d9d16b307fdf6e",
              "datavalue": {
                "value": "212786",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$f03a5d7b-4ca7-a069-76fc-c864090ce050",
            "rank": "normal"
          }
        ],
        "P3142": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3142",
              "hash": "0e78a66d094ed9bf8b2275dcce75112a07acf942",
              "datavalue": {
                "value": "n0008574",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$ce5bc392-49b5-8efe-33c3-13ccd70e4d02",
            "rank": "normal"
          }
        ],
        "P3136": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3136",
              "hash": "01281d036746df6096f576cef1aad29dce6066af",
              "datavalue": {
                "value": "2000059",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7fec5700-4920-ba9a-72b9-38eef2a5c730",
            "rank": "normal"
          }
        ],
        "P4782": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4782",
              "hash": "9ce7be8cf4a9f4b878ccea94b5fde17127a0cce7",
              "datavalue": {
                "value": "26898",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$91d6d6cf-4d41-702a-ef4c-15426b35ca9c",
            "rank": "normal"
          }
        ],
        "P3145": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3145",
              "hash": "caf2fa2047e73726f099a6139b00b890fee365f7",
              "datavalue": {
                "value": "nm96558",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$26786e60-4358-7e6e-0707-b7dbfc33408c",
            "rank": "normal"
          }
        ],
        "P5882": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5882",
              "hash": "24bdcf2853aaa146c5f65779670d07fa0a45eed9",
              "datavalue": {
                "value": "M00000364497",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$1BDB6765-8F25-4ABB-8005-E3FB8B742EAF",
            "rank": "normal"
          }
        ],
        "P6327": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6327",
              "hash": "eb02023d52d1dd346cf4db98e68f4d2f4649402e",
              "datavalue": {
                "value": "55720",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$C884751D-F028-440C-972C-8666481CDF71",
            "rank": "normal"
          }
        ],
        "P6517": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6517",
              "hash": "d4b894c70cd9211e342a141bec09b17ebd8cffeb",
              "datavalue": {
                "value": "Douglas-Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$E6D2A634-8D60-42D0-977E-F0DB07DA62A5",
            "rank": "normal"
          }
        ],
        "P1728": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1728",
              "hash": "c617de5f679234c1898d99919c45d8221a8b44de",
              "datavalue": {
                "value": "mn0000803382",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$4a33fe5d-4f8d-363d-c839-911cea6636e2",
            "rank": "normal"
          }
        ],
        "P7195": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7195",
              "hash": "ff92b781d9b01f3266e0244028e3bd7c253d6507",
              "datavalue": {
                "value": "201077",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$19521d85-49ae-affd-3f36-ac2f5c14384f",
            "rank": "normal"
          }
        ],
        "P2722": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2722",
              "hash": "b0c58131314990b97eecc3d8a192c8b3bbd9f915",
              "datavalue": {
                "value": "4468812",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P3744": [
                {
                  "snaktype": "value",
                  "property": "P3744",
                  "hash": "c9a7089f29564c0b91bdc9bfa4e1dc5b0705143d",
                  "datavalue": {
                    "value": {
                      "amount": "+60",
                      "unit": "1"
                    },
                    "type": "quantity"
                  },
                  "datatype": "quantity"
                }
              ]
            },
            "qualifiers-order": [
              "P1810",
              "P3744"
            ],
            "id": "Q42$5af95f47-47b1-353d-79ce-f283ca814f2f",
            "rank": "normal"
          }
        ],
        "P2373": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2373",
              "hash": "6ac5dbe73b0785b378a4ae63105d372d6e25d365",
              "datavalue": {
                "value": "Douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$14da6a63-444c-6303-d4f9-662d23f8a395",
            "rank": "normal"
          }
        ],
        "P6351": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6351",
              "hash": "285df792119de674963ecce0c3ea9a2cb083fd4f",
              "datavalue": {
                "value": "41236",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$54e7d5d7-4f95-7707-f3b6-be215e24afb9",
            "rank": "normal"
          }
        ],
        "P2850": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2850",
              "hash": "dad902c66beaeeae322c517baf4cb87844bf641c",
              "datavalue": {
                "value": "2080713",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$d225ef98-43f4-2cc6-03dc-b8e4aba1bba3",
            "rank": "normal"
          }
        ],
        "P3192": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3192",
              "hash": "624e143bc081dac42d3862582b717518b85b6532",
              "datavalue": {
                "value": "Douglas+Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$a2b8283b-4a77-9663-4af7-569f90ffd378",
            "rank": "normal"
          }
        ],
        "P6874": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6874",
              "hash": "7b1668aa435bdb1a47bd096a0ca258fbdd088907",
              "datavalue": {
                "value": "Douglas-Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$f6c5b233-463f-5e0f-f922-96cbe1427a77",
            "rank": "normal"
          }
        ],
        "P5404": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5404",
              "hash": "dc2fae817138e96bf15e7e299385ac9713d24c3b",
              "datavalue": {
                "value": "douglas_adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$443713af-4f6a-ff3d-04a3-90323e97afe2",
            "rank": "normal"
          }
        ],
        "P1828": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1828",
              "hash": "7676871d2705ad9266428a72705702c3a34c9456",
              "datavalue": {
                "value": "00218511589",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "6d9209b5b84fd57b348b1531a6a894ef42f5eea1",
                  "datavalue": {
                    "value": "ADAMS DOUGLAS",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$ee526c73-46f5-69fe-fa30-159d01e6c56c",
            "rank": "normal",
            "references": [
              {
                "hash": "56f84865a76d214a29a4de08338f89fa2e0c0f5d",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "1b8696d3c6c1536b76347cd1bc6d3d804024e576",
                      "datavalue": {
                        "value": "https://iswcnet.cisac.org/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "ab03d6b502d44ee645bae730a92a0e0ff8956188",
                      "datavalue": {
                        "value": {
                          "time": "+2020-02-26T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "c9c6af82e49ae2974f8978817c4239a24e25e29e",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20150318093140/http://iswcnet.cisac.org/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "8c6423994c2a45ff4226c5002cdb3031bc1f0811",
                      "datavalue": {
                        "value": {
                          "time": "+2015-03-18T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P813",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P7154": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7154",
              "hash": "fde8226e4be6c82f6fdb65e96ba02bb6073300fe",
              "datavalue": {
                "value": "adams+douglas",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$ba75c7bf-45b5-bb6f-75c8-f2e7b0613537",
            "rank": "normal"
          }
        ],
        "P4198": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4198",
              "hash": "98a3d9536e3bbaf21d6dafb6123062056eda9173",
              "datavalue": {
                "value": "Acv2pnc5mj2oxjxych7atdfljky",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$378e2eb7-4d59-05bc-b015-1c07ad70f929",
            "rank": "normal"
          }
        ],
        "P6972": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6972",
              "hash": "97e86bc2549284c9c93505ee5378eff3e9c73f0b",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$21de97a8-473c-852a-bdf2-65ff6d257e8a",
            "rank": "normal"
          }
        ],
        "P7071": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7071",
              "hash": "729e538c481350cca79362380aab0856b00d9b0e",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$a9798bf7-4151-bb05-222e-98c713c0c293",
            "rank": "normal"
          }
        ],
        "P3479": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3479",
              "hash": "0e62004b073f541d757e7a15aa96e7e22fbe549b",
              "datavalue": {
                "value": "39a33dc4-5a81-4d67-91d6-1daecdb854e3",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7a4e6732-4220-b468-6876-ff7c4d1accff",
            "rank": "normal"
          }
        ],
        "P7284": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7284",
              "hash": "b684754f108215513312406a0bd46b3967a5955c",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$34f575cc-49d1-06de-c154-54e87c2e1654",
            "rank": "normal"
          }
        ],
        "P6620": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6620",
              "hash": "3ba37b93ee36c92aea3f44f544cd83e2658c4fcc",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$6bc43986-4c0e-7f7e-6267-7ae38af05c99",
            "rank": "normal"
          }
        ],
        "P4204": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4204",
              "hash": "435d710f1b5c9b41cacf9082848586b463e68463",
              "datavalue": {
                "value": "Douglas-Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$40dd2b67-4f6a-76ff-25f3-d1bd25ee6137",
            "rank": "normal"
          }
        ],
        "P7506": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7506",
              "hash": "fcf97cf491ff37f98c295f4810e5cd2777ecbe4b",
              "datavalue": {
                "value": "2078791",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$e2acdf62-407f-3a2a-6c07-c6b757d1dc11",
            "rank": "normal"
          }
        ],
        "P3341": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3341",
              "hash": "0adc8438584ced3eca0263c730e6cfaee07260cc",
              "datavalue": {
                "value": "21019",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$7b4ecd7b-4697-151b-ed85-c5f789b7ad34",
            "rank": "normal"
          }
        ],
        "P7803": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7803",
              "hash": "f0e825ddffd9f0d4828dd3fd884d2ccffd412c8b",
              "datavalue": {
                "value": "40761",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$a54b2838-45ac-bab9-d114-40630f8df3aa",
            "rank": "normal"
          }
        ],
        "P3388": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3388",
              "hash": "99c191787210a779523c04fbd5e747d76feec5fa",
              "datavalue": {
                "value": "168761",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$e4c6970b-43d5-d27f-e399-0f324f8efa44",
            "rank": "normal"
          }
        ],
        "P2087": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2087",
              "hash": "816085afd8571e514fd6c09f4ebe45993db73f2e",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$788133bf-4c31-8a1f-cde3-3671ae66dc4a",
            "rank": "normal"
          }
        ],
        "P7369": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7369",
              "hash": "87d5431a6a97c36cb5cdf37f495abe8c32f84ba1",
              "datavalue": {
                "value": "000263040",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$5B2391E3-31ED-4EE2-8D8C-8E38277D7C0D",
            "rank": "normal"
          }
        ],
        "P6298": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6298",
              "hash": "dc9f82d730fad6a954d0e3de5578259f0f847de8",
              "datavalue": {
                "value": "16115",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$13d9d139-4276-3423-9a72-6ee874b530d7",
            "rank": "normal"
          }
        ],
        "P2889": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2889",
              "hash": "8de6ac03db5d70e6866e950405fef32c37aa7f52",
              "datavalue": {
                "value": "9XLD-SZS",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$1d08f4aa-4b04-c41a-8376-da03dd29dfe7",
            "rank": "normal"
          }
        ],
        "P6886": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6886",
              "hash": "5ba8b48f714e1f7318e9d48ed1deb5ec28b207ca",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 1860,
                  "id": "Q1860"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$32C860DF-F954-4142-9F11-5AFD52CB613E",
            "rank": "normal"
          }
        ],
        "P1424": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1424",
              "hash": "932d83e7faf08e71700231a041b00960cadbcd88",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 22898962,
                  "id": "Q22898962"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$67c4ee30-4126-ec57-b870-e30643f19f99",
            "rank": "normal"
          }
        ],
        "P7902": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7902",
              "hash": "6cbd99c9d720f7fbd2a816978cd0c24096c7c252",
              "datavalue": {
                "value": "119033364",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$AEAC1235-AFC4-4A52-9883-8CD612CE043F",
            "rank": "normal"
          }
        ],
        "P8179": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8179",
              "hash": "c4990791a7f69b863726b9343a3301f98ada336e",
              "datavalue": {
                "value": "ncf10168152",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$c3488687-4e07-e8c2-48f7-deb6b50f48ea",
            "rank": "normal",
            "references": [
              {
                "hash": "9a136912b73c22560eaa627d398c0670202dd63a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c15b0cc15e82a74a9344c8c93047050681a3022f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P3348": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3348",
              "hash": "3ac32bacad3b3469dbc738e37445436a426612ac",
              "datavalue": {
                "value": "202604",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$436d70f4-4199-fda5-af92-5d9f0b9d94ad",
            "rank": "normal",
            "references": [
              {
                "hash": "9a136912b73c22560eaa627d398c0670202dd63a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c15b0cc15e82a74a9344c8c93047050681a3022f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P8189": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8189",
              "hash": "c7f5725fd3afad5c2a65e48c37bc5135b4fc2db6",
              "datavalue": {
                "value": "987007305652505171",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$664fe030-438a-4c19-e0da-f6515e906984",
            "rank": "normal",
            "references": [
              {
                "hash": "9a136912b73c22560eaa627d398c0670202dd63a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c15b0cc15e82a74a9344c8c93047050681a3022f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P7699": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7699",
              "hash": "0389d5b8beb283df5cc85c357fdd45ddd513c461",
              "datavalue": {
                "value": "LNB:Mr+;=Bf",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "q42$c52da967-4dce-de3e-345d-01396281315b",
            "rank": "normal",
            "references": [
              {
                "hash": "9a136912b73c22560eaa627d398c0670202dd63a",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "6b7d4330c4aac4caec4ede9de0311ce273f88ecd",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 54919,
                          "id": "Q54919"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P214": [
                    {
                      "snaktype": "value",
                      "property": "P214",
                      "hash": "20e5c69fbf37b8b0402a52948a04f481028e819c",
                      "datavalue": {
                        "value": "113230702",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "c15b0cc15e82a74a9344c8c93047050681a3022f",
                      "datavalue": {
                        "value": {
                          "time": "+2020-06-06T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P214",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P3984": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3984",
              "hash": "f46c23f8b18eeae476e18f4bbd4f18ca6b621f04",
              "datavalue": {
                "value": "douglasadams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "7db81fb2a21ff18ba68c85ed6e9934d9da9aceab",
                  "datavalue": {
                    "value": "Douglas Adams: From Hitchhikers to Holistic Detectives",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P580": [
                {
                  "snaktype": "value",
                  "property": "P580",
                  "hash": "990a1899f2689385cd447b92f184fbdd95671d37",
                  "datavalue": {
                    "value": {
                      "time": "+2011-02-06T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P1810",
              "P407",
              "P580"
            ],
            "id": "Q42$48511047-CEB9-4FC6-A2C3-0A6170FFD5BE",
            "rank": "normal"
          }
        ],
        "P8287": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8287",
              "hash": "2aabd130ef975393a6f2dbb6704d122e38f31d6c",
              "datavalue": {
                "value": "1430",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$98EA554E-FE23-437E-998F-430EFBE62F80",
            "rank": "normal"
          }
        ],
        "P8125": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8125",
              "hash": "91fc91f7750db893fde02c5db2e68006108fd11c",
              "datavalue": {
                "value": "3339",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$DC6835D6-4588-445E-8EDE-3FBBBA88C4CB",
            "rank": "normal"
          }
        ],
        "P4359": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4359",
              "hash": "03ef510e6e44b0be1cede3274420aa0f2f620d27",
              "datavalue": {
                "value": "douglasadams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9027138b-45f1-49dc-2a37-96f51d29876c",
            "rank": "normal"
          }
        ],
        "P8408": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8408",
              "hash": "301d086be328352168606497d8de7418e9218031",
              "datavalue": {
                "value": "DouglasAdams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$61CC120A-C60F-4231-B59B-7A9C7D8FF6C6",
            "rank": "normal"
          }
        ],
        "P6262": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "e70f63014834521c3b7e6fe32ec219ef341655bb",
              "datavalue": {
                "value": "hitchhikers:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "94f5238f1d8dd385ac472c7639bf1dd7daad8b3f",
                  "datavalue": {
                    "value": "1668",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$4272D5CF-086F-4D7F-96A6-575E229A1F63",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "d14bf90f7978f427a6f23448054383222c6cc066",
              "datavalue": {
                "value": "tardis:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "b37f741dfef45bdf929b3839af7702481fecccaf",
                  "datavalue": {
                    "value": "8825",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$BEA4DAC1-6A46-4500-A018-41D51905A329",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "172a698bab7ee5dd49aed8b94e66ee175a633871",
              "datavalue": {
                "value": "ru.tardis:\u0414\u0443\u0433\u043b\u0430\u0441_\u0410\u0434\u0430\u043c\u0441",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "d291ddb7cd77c94a7bd709a8395934147e0864fc",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 7737,
                      "id": "Q7737"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "f3b6d8c76855fd076190d961a9a9c8b0563a9663",
                  "datavalue": {
                    "value": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "9522a95803ec5e70c115d9b799f32c9b9bfc759a",
                  "datavalue": {
                    "value": "28118",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$BCE8EB06-BBDB-4073-8F1B-20AC1AB74467",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "48611903955b8fc82e3a1f7d16d0d366003a34c0",
              "datavalue": {
                "value": "montypython:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "f41cb6e8361cf7529907e15ea32d48f3c1afbcf0",
                  "datavalue": {
                    "value": "1927",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$042D4101-8C18-4F6B-93C9-4C1449014BD9",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "174d75b4d849f9059697ef37a85fe072f8644967",
              "datavalue": {
                "value": "dirkgently:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "d0dd8a6f8e5b9328015b9b2f52c29cb7c83aef55",
                  "datavalue": {
                    "value": "2133",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$D9CCB2C4-477D-4D9E-A379-65AB8BB0A0EF",
            "rank": "normal",
            "references": [
              {
                "hash": "5c0fe42f3c1ade9a0028546b89fa1226f8e029eb",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "af0d0ac8a9023bedad230a67ec088c1be8c68346",
                      "datavalue": {
                        "value": "https://dirkgently.fandom.com/wiki/Douglas_Adams?oldid=7417",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "40541094bad87d66effbe3fc8e4a7e4967763afd",
                      "datavalue": {
                        "value": {
                          "time": "+2020-08-26T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P1810": [
                    {
                      "snaktype": "value",
                      "property": "P1810",
                      "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                      "datavalue": {
                        "value": "Douglas Adams",
                        "type": "string"
                      },
                      "datatype": "string"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P813",
                  "P1810"
                ]
              }
            ]
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "ca090a0290a30c16f99ec9fa02e2015020997c3a",
              "datavalue": {
                "value": "disney:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "30efa66695bd489a607b7e8ae1c5d1e0125cfdda",
                  "datavalue": {
                    "value": "161805",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$5546016E-EB50-4AF8-AC8E-79E884A068EA",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "f6a237c47ded26710ed8e4b4c8bc58b4c53da824",
              "datavalue": {
                "value": "muppet:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "f728b147e2a5f5527a4b567dfe6dd8bbe8cbb807",
                  "datavalue": {
                    "value": "15796",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$28C2B1F7-2608-4409-BA15-D29A4F19B13C",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "c3dd1558e715a0f36032f2da883d0b6a648d7ef4",
              "datavalue": {
                "value": "getfuzzy:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "9935d95dd0ca7f0ee8a927cbc8d7f5c918b535c5",
                  "datavalue": {
                    "value": "2050",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$4B7395E1-4B9E-4CB9-B37B-72047CA54640",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6262",
              "hash": "97143d574bf286eefadbdef415e8d69f146540bd",
              "datavalue": {
                "value": "readyplayerone:Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P407": [
                {
                  "snaktype": "value",
                  "property": "P407",
                  "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 1860,
                      "id": "Q1860"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ],
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "03773f9c659ee8c03a232bce2522c8bb1b66402c",
                  "datavalue": {
                    "value": "Douglas Adams",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ],
              "P9675": [
                {
                  "snaktype": "value",
                  "property": "P9675",
                  "hash": "6a5ad69b0ab96d205ab59256f2835fdd8d10f604",
                  "datavalue": {
                    "value": "2244",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P407",
              "P1810",
              "P9675"
            ],
            "id": "Q42$A85576C6-30C2-48A5-A030-2D41B72ABBED",
            "rank": "normal"
          }
        ],
        "P4789": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P4789",
              "hash": "bb5a76d21ce7a9507293d4e26847bd068e04be27",
              "datavalue": {
                "value": "U4994",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$911d3a24-42f7-a575-6473-e926177d4e8c",
            "rank": "normal"
          }
        ],
        "P2021": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P2021",
              "hash": "f13b91357f838dac2a26a7bef98f8f8aa2c85500",
              "datavalue": {
                "value": {
                  "amount": "+10",
                  "unit": "1"
                },
                "type": "quantity"
              },
              "datatype": "quantity"
            },
            "type": "statement",
            "qualifiers": {
              "P3680": [
                {
                  "snaktype": "somevalue",
                  "property": "P3680",
                  "hash": "ffd1fe1bf735674b77217113213e1e8901cd40a5",
                  "datatype": "wikibase-item"
                }
              ],
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "a185ea49b223545103523c59a2c8e3b49d1d4b95",
                  "datavalue": {
                    "value": {
                      "time": "+2017-04-13T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 11,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P3680",
              "P585"
            ],
            "id": "Q42$bf7e1294-4f0f-3511-ab5f-81f47f5c98cb",
            "rank": "deprecated",
            "references": [
              {
                "hash": "5f446c2bf2ad680834678b82140cd8ca4910e2fb",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "239a400015707472731cf92bdac607dc9706c32c",
                      "datavalue": {
                        "value": "https://github.com/rchurchley/erdos-bacon-sabbath/issues/16",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "99cb077024d59f15c74b8df3143f10a02cfb8325",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20201216030053/https://github.com/rchurchley/erdos-bacon-sabbath/issues/16",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "b29a10955eb9ee1cb2bc5f378de95fe586144767",
                      "datavalue": {
                        "value": {
                          "time": "+2020-12-16T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P6868": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6868",
              "hash": "50ee971d0555853ae3d80e8afb09599a6137daed",
              "datavalue": {
                "value": "1402475181",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$98D93BBA-6AC9-4878-BD86-47BB0653ECE6",
            "rank": "normal"
          }
        ],
        "P8849": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8849",
              "hash": "3d1c442c1ea17801711beddb4321f958ae57eef0",
              "datavalue": {
                "value": "6391909",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$EF943121-C348-4E4B-863D-512FD156B75D",
            "rank": "normal"
          }
        ],
        "P8851": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8851",
              "hash": "462ce0f152ad9edb1b7c0b39b539b4a94eab3e4e",
              "datavalue": {
                "value": "26792807",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$56BDDF95-DD0F-401D-8888-BEB6976096FD",
            "rank": "normal"
          }
        ],
        "P5297": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P5297",
              "hash": "0e4babcfe92effe52206a17390b4e339811774f0",
              "datavalue": {
                "value": "x2e9kt_zKEDI0dPr3sAfM_jyUhA",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "qualifiers": {
              "P1810": [
                {
                  "snaktype": "value",
                  "property": "P1810",
                  "hash": "c3d14ca8747efaef10163876db9482bb50d98de6",
                  "datavalue": {
                    "value": "Douglas Noel ADAMS",
                    "type": "string"
                  },
                  "datatype": "string"
                }
              ]
            },
            "qualifiers-order": [
              "P1810"
            ],
            "id": "Q42$FD92488C-999D-49B0-BDB4-3024F2737AE2",
            "rank": "normal"
          }
        ],
        "P8895": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8895",
              "hash": "fd0dd9f6cb921bae17d6c739e191cfa9c81651c1",
              "datavalue": {
                "value": "Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$e5535b2a-4220-9941-599e-e8b6e8d005bd",
            "rank": "normal"
          }
        ],
        "P7763": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7763",
              "hash": "0caedd22a4d9f17e8035f795a39553128874ae04",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 73555012,
                  "id": "Q73555012"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$b3f2a8bb-499e-f51c-a45c-fc1a3ff9722e",
            "rank": "normal"
          }
        ],
        "P1889": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1889",
              "hash": "1562fef480c67c6c676ee7ff84621995ceb932f8",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 21454969,
                  "id": "Q21454969"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$73e33703-4ae6-7b11-eecc-af044ac04d29",
            "rank": "normal"
          }
        ],
        "P172": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P172",
              "hash": "1a660ba3db6d93b1c2e4c2d5cd651448783b7135",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 7994501,
                  "id": "Q7994501"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$3B573CED-154E-4A72-9575-68F94332FF1B",
            "rank": "normal",
            "references": [
              {
                "hash": "66cc747c76cfb3538eb404dab78a2c3942ac5ca0",
                "snaks": {
                  "P1263": [
                    {
                      "snaktype": "value",
                      "property": "P1263",
                      "hash": "536c401a39def76dfbb2b0e1c332d3707a6aef95",
                      "datavalue": {
                        "value": "731/000023662",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P1263"
                ]
              }
            ]
          }
        ],
        "P937": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P937",
              "hash": "6210867490acd48f2716ad4385442b5175a43c88",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 84,
                  "id": "Q84"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$3AE62B5B-91C1-48DB-B728-337F7925F4DF",
            "rank": "normal"
          }
        ],
        "P742": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P742",
              "hash": "f6feb4a5471358f4af5b46b7cbce567ac275b351",
              "datavalue": {
                "value": "David Agnew",
                "type": "string"
              },
              "datatype": "string"
            },
            "type": "statement",
            "qualifiers": {
              "P805": [
                {
                  "snaktype": "value",
                  "property": "P805",
                  "hash": "2f7a93d88dce21585997e91ff089ef516de95d44",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 11036149,
                      "id": "Q11036149"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P805"
            ],
            "id": "Q42$4f3397c8-44ec-14e7-b7d1-8e956ea0544d",
            "rank": "normal",
            "references": [
              {
                "hash": "75b1617556ee3edc63bc02b87f4a042a079e0901",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "1153ed15280072ec379f146c4aeb9295fd258cda",
                      "datavalue": {
                        "value": "https://www.bbc.co.uk/doctorwho/classic/episodeguide/cityofdeath/detail.shtml",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "254e9d1bbe73ee143444f9f567ba0480a52dd88f",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20200223004353/http://www.bbc.co.uk/doctorwho/classic/episodeguide/cityofdeath/detail.shtml",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "0f05235300233a8bd3cba3d39bd1b6674124ed41",
                      "datavalue": {
                        "value": {
                          "time": "+2020-02-23T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1065",
                  "P2960"
                ]
              }
            ]
          }
        ],
        "P8385": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8385",
              "hash": "b85368b35d2b0048779e6249f1e57a408890581e",
              "datavalue": {
                "value": "23691",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$A699AF6C-A60F-4B24-95E6-56C3BCC0C3F7",
            "rank": "normal",
            "references": [
              {
                "hash": "760e3627ff3aaf106fde98cc8fd2fc0cdec02773",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "cfd6260c3621f3fdb39013c3ecc6ac87635b3b07",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 76504070,
                          "id": "Q76504070"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "ba9bdc09a7cfeddc908bca728f6e8ef1b7f728a1",
                      "datavalue": {
                        "value": {
                          "time": "+2020-12-21T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P8129": [
                    {
                      "snaktype": "value",
                      "property": "P8129",
                      "hash": "17f9bb8aaea219700145ec5323480cbdac61ecdf",
                      "datavalue": {
                        "value": "23691",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P813",
                  "P8129"
                ]
              }
            ]
          }
        ],
        "P9100": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9100",
              "hash": "9dd1838e99ecb6632a45fc9f5a296d2ee09bfce2",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$94b63e30-45dc-c12d-1daf-330d8e34f2ba",
            "rank": "normal"
          }
        ],
        "P9196": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9196",
              "hash": "fa201c78890d06eae39fcc82b1c095c641d1067e",
              "datavalue": {
                "value": "douglas-adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9a620ec7-42d6-9ef2-1f50-88676fa6563b",
            "rank": "normal"
          }
        ],
        "P9251": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9251",
              "hash": "12fa4bf68b20c06964d2f0204f523b679760c0e5",
              "datavalue": {
                "value": "80743",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2CD4A5B8-E13E-478D-9C4D-10ADBC6DBD8E",
            "rank": "normal"
          }
        ],
        "P9307": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9307",
              "hash": "9c1c86e650f05d389bbe8a303109aa0693b5a8cc",
              "datavalue": {
                "value": "Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$86610cfa-4812-ac70-37ea-3e29d890db55",
            "rank": "normal"
          }
        ],
        "P1340": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1340",
              "hash": "02652f880cb021cc357ca41d222046efcaa20e58",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 17122705,
                  "id": "Q17122705"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$e699cb9f-4627-67c0-8ead-86e7f9873c5d",
            "rank": "normal",
            "references": [
              {
                "hash": "366cc289740fb68df974400fad75e891dc6af3d0",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "6a2d18a0eeb310cc0657f96e5a89ca372676d7be",
                      "datavalue": {
                        "value": "https://bookstr.com/article/life-the-universe-and-everything-happy-birthday-douglas-adams/",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P854"
                ]
              }
            ]
          }
        ],
        "P101": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P101",
              "hash": "e7e6bceb56cf00a0f1e471a96d54a566f8928803",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 3238422,
                  "id": "Q3238422"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "id": "Q42$0C5C0A36-7389-4E16-969B-851D25C94AC2",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1813": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1813",
              "hash": "9e6ec901cd53fbf1d5398547e9f37632e592a4a2",
              "datavalue": {
                "value": {
                  "text": "Douglas Adams",
                  "language": "en"
                },
                "type": "monolingualtext"
              },
              "datatype": "monolingualtext"
            },
            "type": "statement",
            "id": "Q42$ba67c870-4aab-5093-a92d-7de40d46c67a",
            "rank": "normal"
          }
        ],
        "P166": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P166",
              "hash": "f5b9caec5f8f45871bfeda388118e03c3a1aba4d",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 2687578,
                  "id": "Q2687578"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P585": [
                {
                  "snaktype": "value",
                  "property": "P585",
                  "hash": "648701c26902c5d60cf2c02012f55fcda4a88743",
                  "datavalue": {
                    "value": {
                      "time": "+1983-01-01T00:00:00Z",
                      "timezone": 0,
                      "before": 0,
                      "after": 0,
                      "precision": 9,
                      "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                    },
                    "type": "time"
                  },
                  "datatype": "time"
                }
              ]
            },
            "qualifiers-order": [
              "P585"
            ],
            "id": "Q42$4A5D5EDF-5E67-4014-855A-429C0A798A49",
            "rank": "normal",
            "references": [
              {
                "hash": "c380cbf312acc66fffc90dc202322f9f182c7620",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "09ea642fff8a0ea4143779f17856ec8a2a3f3399",
                      "datavalue": {
                        "value": "https://www.comic-con.org/awards/inkpot",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "b1ddced2819c88072cc5f9c3e5cb044e1175bb63",
                      "datavalue": {
                        "value": {
                          "time": "+2021-08-04T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P9807": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9807",
              "hash": "43bb325f6d48dd37d3f0855b092f6102ffbe2d7d",
              "datavalue": {
                "value": "153440",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$C47292D2-7E64-4003-B488-134B738E04DB",
            "rank": "normal"
          },
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9807",
              "hash": "7f5e242848a83cc716992d8ee9dc123f98283f85",
              "datavalue": {
                "value": "172463",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$275B307B-8212-4E9F-8BDD-5E8052FE7A6B",
            "rank": "normal"
          }
        ],
        "P9743": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9743",
              "hash": "46069318043f5fc159ec5f15de710a12f1cc3a96",
              "datavalue": {
                "value": "107a9B0DKL",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$0A124C11-F01C-47A5-B053-78FEC1419636",
            "rank": "normal"
          }
        ],
        "P1149": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1149",
              "hash": "67c09d11f84575684ee416d7a34dde8e81c832f6",
              "datavalue": {
                "value": "PR6051.D3352",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$64ccf7f1-468e-dd71-ce91-cf5b5a33bf66",
            "rank": "normal",
            "references": [
              {
                "hash": "e0f5a61dcd233962d497f85010f258c713169a5d",
                "snaks": {
                  "P244": [
                    {
                      "snaktype": "value",
                      "property": "P244",
                      "hash": "5308b152b94274513309d2ad5cee9b9286fff0bd",
                      "datavalue": {
                        "value": "n80076765",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "26961a8d339cfd993cf3f63cdfd4c7872410d1a3",
                      "datavalue": {
                        "value": {
                          "time": "+2021-09-20T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P244",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P9918": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9918",
              "hash": "ddfeecee9d2dd6e26a5d866841b4f9d1a2ea9e43",
              "datavalue": {
                "value": "PE00105434",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$C5579150-128A-4678-9203-F183E2BAC1AC",
            "rank": "normal"
          }
        ],
        "P9995": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9995",
              "hash": "207dc617c1b6eed1b4bc1ae789c70cd85b0fc468",
              "datavalue": {
                "value": "157777",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$209F2E28-4B1A-44F8-AB0E-B3E7AE7B2ED6",
            "rank": "normal"
          }
        ],
        "P9984": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9984",
              "hash": "1ad0921c8a4d1a2ee79a7ba572d10eb4aed18fc8",
              "datavalue": {
                "value": "981058527710806706",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$30E900DA-6B17-4530-874A-D1FC375CD0D1",
            "rank": "normal"
          }
        ],
        "P7084": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7084",
              "hash": "c53758ac9689d814cb20e6b7bc6be3fd9ec70f9d",
              "datavalue": {
                "value": {
                  "entity-type": "item",
                  "numeric-id": 8722666,
                  "id": "Q8722666"
                },
                "type": "wikibase-entityid"
              },
              "datatype": "wikibase-item"
            },
            "type": "statement",
            "qualifiers": {
              "P642": [
                {
                  "snaktype": "value",
                  "property": "P642",
                  "hash": "c1d9283470869c34e9ac3b7da441eb5d575045dd",
                  "datavalue": {
                    "value": {
                      "entity-type": "item",
                      "numeric-id": 109122021,
                      "id": "Q109122021"
                    },
                    "type": "wikibase-entityid"
                  },
                  "datatype": "wikibase-item"
                }
              ]
            },
            "qualifiers-order": [
              "P642"
            ],
            "id": "Q42$7611DFFC-CF13-46E4-A358-C8006733C2EB",
            "rank": "normal"
          }
        ],
        "P6173": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P6173",
              "hash": "4b9301fd5bdaf22969a3984228f15842c02fa1e1",
              "datavalue": {
                "value": "3352",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$B2C8E176-C004-4F94-B43D-289F50DC490E",
            "rank": "normal"
          }
        ],
        "P18": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P18",
              "hash": "5e0f24b66c3761cfc054ea25a92c5a7fb73ab703",
              "datavalue": {
                "value": "Douglas adams portrait cropped.jpg",
                "type": "string"
              },
              "datatype": "commonsMedia"
            },
            "type": "statement",
            "qualifiers": {
              "P2096": [
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "960f592e7cc01f08a71687b2ea6a041de1b53272",
                  "datavalue": {
                    "value": {
                      "text": "Portr\u00e4tt av Douglas Adams.",
                      "language": "sv"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "f0153c2a3c531661c373d6e16337a2277ec486ce",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adams portresi",
                      "language": "tr"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "a85992aaf06c62b2a6f78a38a1e432460cc703d7",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adams \u00e5\u00e5\u02b9ble\u01e9kartt",
                      "language": "sms"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "c8674a4db5887a9344eb3fc83ab38c98cbffcd94",
                  "datavalue": {
                    "value": {
                      "text": "Douglas Adamsin muotokuva",
                      "language": "fi"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "aec0d99f877591514b1e7335be28fd94c22916bb",
                  "datavalue": {
                    "value": {
                      "text": "Portrait of Douglas Adams",
                      "language": "en"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "1bbca4271a460c7d09b56c0c686ae9716d086ff1",
                  "datavalue": {
                    "value": {
                      "text": "\u05e4\u05d5\u05e8\u05d8\u05e8\u05d8 \u05e9\u05dc \u05d3\u05d0\u05d2\u05dc\u05e1 \u05d0\u05d3\u05de\u05e1",
                      "language": "he"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "a8e65987ff81d800d026e6b9bc7e0beb33739b56",
                  "datavalue": {
                    "value": {
                      "text": "Portrait von Douglas Adams",
                      "language": "de"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "6a56a9bac41c7442a8a838b1aeaa34a5aa458e7b",
                  "datavalue": {
                    "value": {
                      "text": "Retrat de Douglas Adams",
                      "language": "ca"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "6973e6c1dc68512451cbd2fe2a34f58670dfcab4",
                  "datavalue": {
                    "value": {
                      "text": "Portret Douglasa Adamsa",
                      "language": "pl"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "6c9e1aa3eb2d23d6aafdd4c6182d04d0db3baec5",
                  "datavalue": {
                    "value": {
                      "text": "Potret Douglas Adams",
                      "language": "ms"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "a54506b7d3f4bc6c9eb1f685005ce74ac8c4264c",
                  "datavalue": {
                    "value": {
                      "text": "\u06a4\u0648\u062a\u0631\u064a\u062a \u062f\u0762\u0644\u0633 \u0627\u064a\u062f\u0645\ufeaf",
                      "language": "ms-arab"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "4ce6ea03f8368df0deeef533fd33c3670efc9452",
                  "datavalue": {
                    "value": {
                      "text": "Ch\u00e2n dung Douglas Adams",
                      "language": "vi"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "4ee7433171506a9bea76e9681c1bada4170d8852",
                  "datavalue": {
                    "value": {
                      "text": "Portrait de Douglas Adams",
                      "language": "fr"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                },
                {
                  "snaktype": "value",
                  "property": "P2096",
                  "hash": "48624bd4851db46ca9cdc694c3e146b6bd4c6702",
                  "datavalue": {
                    "value": {
                      "text": "Portrett av Douglas Adams",
                      "language": "nb"
                    },
                    "type": "monolingualtext"
                  },
                  "datatype": "monolingualtext"
                }
              ]
            },
            "qualifiers-order": [
              "P2096"
            ],
            "id": "Q42$44889d0f-474c-4fb9-1961-9a3366cbbb9e",
            "rank": "normal"
          }
        ],
        "P7775": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7775",
              "hash": "0edaa784f6c430ca9d609332eacc4efde8f6bfa2",
              "datavalue": {
                "value": "Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$78C0F679-1DD4-4CF9-9531-53CE28F55223",
            "rank": "normal"
          }
        ],
        "P10069": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10069",
              "hash": "91a23afc7855248b3c1fe1f38086464b679a5389",
              "datavalue": {
                "value": "61960",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$22DF7228-265A-44D2-B901-CC6847EEAC97",
            "rank": "normal"
          }
        ],
        "P8292": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8292",
              "hash": "a926d7031fb45bd7fa730805ac51c40ca4c602ff",
              "datavalue": {
                "value": "236432",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$89FD13EC-42C3-4CCA-8194-0923F0FFF47A",
            "rank": "normal"
          }
        ],
        "P10266": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10266",
              "hash": "a3de8df8eb8dd0687f61df8812546552b30d4519",
              "datavalue": {
                "value": "97049",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$BA3242A3-8CFB-409A-B398-9DC8246386E4",
            "rank": "normal"
          }
        ],
        "P8313": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P8313",
              "hash": "fec85d39f14fdc78594c2601366f6d0c24a5e18a",
              "datavalue": {
                "value": "Douglas_Adams",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$3596C7F3-3DAF-436A-A226-5BF83795AFC5",
            "rank": "normal"
          }
        ],
        "P10291": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10291",
              "hash": "b9c5e8f883626b2cd7781c2645469262780f43cc",
              "datavalue": {
                "value": "82260",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$9ba29285-43e5-3c18-b1b9-a9a064eb0d6a",
            "rank": "normal"
          }
        ],
        "P3368": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P3368",
              "hash": "fc6ae50be2495383d160cef262b065addf2096d2",
              "datavalue": {
                "value": "215957",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$2DD87345-81C1-4252-A5C2-727F1950AB17",
            "rank": "normal"
          }
        ],
        "P10387": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10387",
              "hash": "179696a81b86ae0833a537043dbf88d229a6b7eb",
              "datavalue": {
                "value": "75",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$156e5f4b-4573-d9c9-c47b-9a15fd557baf",
            "rank": "normal"
          }
        ],
        "P10553": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10553",
              "hash": "35134cda8f7ed678fe732fc91b657e5f89cee9a1",
              "datavalue": {
                "value": "079822096",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$113B068E-749D-4BC8-8E4A-28FAB7CD7A02",
            "rank": "normal"
          }
        ],
        "P9965": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P9965",
              "hash": "14ee588f4a3a1b68434a731a5743d8bcb46e513c",
              "datavalue": {
                "value": "40231",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$3C16B2DF-4FE4-4E43-9EA7-70E7081C2B83",
            "rank": "normal"
          }
        ],
        "P10337": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P10337",
              "hash": "fbebf108aa423c2a4820eacb7045e351d3ec0928",
              "datavalue": {
                "value": "A/adams-douglas",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$D9E70352-C672-41BC-A71E-1FEF5B8066EB",
            "rank": "normal",
            "references": [
              {
                "hash": "10addd300a6925c60bbf81c3c80ee38786a8a616",
                "snaks": {
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "d88ff16554ef9d61c8e5887cd89034159214cf52",
                      "datavalue": {
                        "value": "http://www.doollee.com/PlaywrightsA/adams-douglas.php",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "84188cafff03bf218a91fa040e2ccf47f746ef6a",
                      "datavalue": {
                        "value": {
                          "text": "Douglas Adams- Playwright Dramatist",
                          "language": "und"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "ec2744e0d991f6c9ef682a412d7669fb6ce25aa8",
                      "datavalue": {
                        "value": {
                          "time": "+2022-08-18T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P854",
                  "P1476",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P7502": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P7502",
              "hash": "a126efc286aeeb00a6d02db7351fa91e531f5ae2",
              "datavalue": {
                "value": "Douglas_Adams-YNBW",
                "type": "string"
              },
              "datatype": "external-id"
            },
            "type": "statement",
            "id": "Q42$B3C6240B-C357-4EE1-AB7D-C41D0C8B5B03",
            "rank": "normal",
            "references": [
              {
                "hash": "b821feb93898353cb8fddf3c25f8a4ee538e7f2d",
                "snaks": {
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "849bf31a75ee81eef52deceed6ee34b2f429e12c",
                      "datavalue": {
                        "value": {
                          "time": "+2022-09-10T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "fd7b4897fd3d2de286fc7831ae237e1b78d66488",
                      "datavalue": {
                        "value": "https://golden.com/wiki/Douglas_Adams-YNBW",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ]
                },
                "snaks-order": [
                  "P813",
                  "P854"
                ]
              }
            ]
          }
        ],
        "P1477": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1477",
              "hash": "2889c1c1654989711b844560f19c9add9b5e17b9",
              "datavalue": {
                "value": {
                  "text": "Douglas No\u00ebl Adams",
                  "language": "en"
                },
                "type": "monolingualtext"
              },
              "datatype": "monolingualtext"
            },
            "type": "statement",
            "id": "Q42$7E93B05B-9637-433A-97B2-9F8288B215B0",
            "rank": "normal",
            "references": [
              {
                "hash": "4bdbb5fd8d46626c4c5a382ff95215b8d771ad56",
                "snaks": {
                  "P1476": [
                    {
                      "snaktype": "value",
                      "property": "P1476",
                      "hash": "0730f27f8dcabe7b3d74ea981c7a9c15ea162685",
                      "datavalue": {
                        "value": {
                          "text": "Obituary: Douglas Adams",
                          "language": "en"
                        },
                        "type": "monolingualtext"
                      },
                      "datatype": "monolingualtext"
                    }
                  ],
                  "P577": [
                    {
                      "snaktype": "value",
                      "property": "P577",
                      "hash": "27c7402a696628d2a0e5abbf443995be8b895503",
                      "datavalue": {
                        "value": {
                          "time": "+2001-05-15T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "daf1c4fcb58181b02dff9cc89deb084004ddae4b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 1860,
                          "id": "Q1860"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P854": [
                    {
                      "snaktype": "value",
                      "property": "P854",
                      "hash": "a99756c83f320398a58edbbdccd46eb682e68267",
                      "datavalue": {
                        "value": "http://www.theguardian.com/news/2001/may/15/guardianobituaries.books",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "6b8fcfa6afb3911fecec93ae1dff2b6b6cde5659",
                      "datavalue": {
                        "value": {
                          "time": "+2013-12-07T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ],
                  "P50": [
                    {
                      "snaktype": "value",
                      "property": "P50",
                      "hash": "0c09ca36156b084dd45e1b836575dc7382d4a16e",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 18145749,
                          "id": "Q18145749"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1433": [
                    {
                      "snaktype": "value",
                      "property": "P1433",
                      "hash": "5c3e5ddc26dbc4ebdea58b53cc7f40811ef9e2ec",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 11148,
                          "id": "Q11148"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P1065": [
                    {
                      "snaktype": "value",
                      "property": "P1065",
                      "hash": "c835f9df268052f411dc36be98165c3987163544",
                      "datavalue": {
                        "value": "https://web.archive.org/web/20131113051835/http://www.theguardian.com/news/2001/may/15/guardianobituaries.books",
                        "type": "string"
                      },
                      "datatype": "url"
                    }
                  ],
                  "P2960": [
                    {
                      "snaktype": "value",
                      "property": "P2960",
                      "hash": "22b9ef018021d2d267cad864dbe9e6bb50a1c8fd",
                      "datavalue": {
                        "value": {
                          "time": "+2013-11-13T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P1476",
                  "P577",
                  "P407",
                  "P854",
                  "P813",
                  "P50",
                  "P1433",
                  "P1065",
                  "P2960"
                ]
              },
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ],
        "P1559": [
          {
            "mainsnak": {
              "snaktype": "value",
              "property": "P1559",
              "hash": "95644e72f595a3bc535e0eb316325ee88d9466f8",
              "datavalue": {
                "value": {
                  "text": "Douglas Adams",
                  "language": "en"
                },
                "type": "monolingualtext"
              },
              "datatype": "monolingualtext"
            },
            "type": "statement",
            "id": "Q42$e525b79e-4a34-b70f-862e-41837655f565",
            "rank": "normal",
            "references": [
              {
                "hash": "f38b0c50096908694fe215d33497be11eb3f9d3b",
                "snaks": {
                  "P248": [
                    {
                      "snaktype": "value",
                      "property": "P248",
                      "hash": "019a50b7de741e0068bde41c9d9955b22a5de47b",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 36578,
                          "id": "Q36578"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P227": [
                    {
                      "snaktype": "value",
                      "property": "P227",
                      "hash": "2a20755d12051fc95152d6107bd8a34e7fbc63c4",
                      "datavalue": {
                        "value": "119033364",
                        "type": "string"
                      },
                      "datatype": "external-id"
                    }
                  ],
                  "P407": [
                    {
                      "snaktype": "value",
                      "property": "P407",
                      "hash": "46bfd327b830f66f7061ea92d1be430c135fa91f",
                      "datavalue": {
                        "value": {
                          "entity-type": "item",
                          "numeric-id": 188,
                          "id": "Q188"
                        },
                        "type": "wikibase-entityid"
                      },
                      "datatype": "wikibase-item"
                    }
                  ],
                  "P813": [
                    {
                      "snaktype": "value",
                      "property": "P813",
                      "hash": "f44435a8f14d71ab1b0c0aad17c46fcc01fc7702",
                      "datavalue": {
                        "value": {
                          "time": "+2022-10-09T00:00:00Z",
                          "timezone": 0,
                          "before": 0,
                          "after": 0,
                          "precision": 11,
                          "calendarmodel": "http://www.wikidata.org/entity/Q1985727"
                        },
                        "type": "time"
                      },
                      "datatype": "time"
                    }
                  ]
                },
                "snaks-order": [
                  "P248",
                  "P227",
                  "P407",
                  "P813"
                ]
              }
            ]
          }
        ]
      },
      "sitelinks": {
        "afwiki": {
          "site": "afwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://af.wikipedia.org/wiki/Douglas_Adams"
        },
        "arwiki": {
          "site": "arwiki",
          "title": "\u062f\u0648\u063a\u0644\u0627\u0633 \u0622\u062f\u0645\u0632",
          "badges": [],
          "url": "https://ar.wikipedia.org/wiki/%D8%AF%D9%88%D8%BA%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D9%85%D8%B2"
        },
        "arwikiquote": {
          "site": "arwikiquote",
          "title": "\u062f\u0648\u062c\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632",
          "badges": [],
          "url": "https://ar.wikiquote.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2"
        },
        "arzwiki": {
          "site": "arzwiki",
          "title": "\u062f\u0648\u062c\u0644\u0627\u0633 \u0627\u062f\u0627\u0645\u0632",
          "badges": [],
          "url": "https://arz.wikipedia.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A7%D8%AF%D8%A7%D9%85%D8%B2"
        },
        "astwiki": {
          "site": "astwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ast.wikipedia.org/wiki/Douglas_Adams"
        },
        "azbwiki": {
          "site": "azbwiki",
          "title": "\u062f\u0627\u0642\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632",
          "badges": [],
          "url": "https://azb.wikipedia.org/wiki/%D8%AF%D8%A7%D9%82%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2"
        },
        "azwiki": {
          "site": "azwiki",
          "title": "Duqlas Adams",
          "badges": [],
          "url": "https://az.wikipedia.org/wiki/Duqlas_Adams"
        },
        "azwikiquote": {
          "site": "azwikiquote",
          "title": "Duqlas Noel Adams",
          "badges": [],
          "url": "https://az.wikiquote.org/wiki/Duqlas_Noel_Adams"
        },
        "barwiki": {
          "site": "barwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://bar.wikipedia.org/wiki/Douglas_Adams"
        },
        "bawiki": {
          "site": "bawiki",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://ba.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "be_x_oldwiki": {
          "site": "be_x_oldwiki",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0437",
          "badges": [],
          "url": "https://be-tarask.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D0%B7"
        },
        "bewiki": {
          "site": "bewiki",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://be.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "bgwiki": {
          "site": "bgwiki",
          "title": "\u0414\u044a\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://bg.wikipedia.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "bgwikiquote": {
          "site": "bgwikiquote",
          "title": "\u0414\u044a\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://bg.wikiquote.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "bnwiki": {
          "site": "bnwiki",
          "title": "\u09a1\u0997\u09b2\u09be\u09b8 \u0985\u09cd\u09af\u09be\u09a1\u09be\u09ae\u09b8",
          "badges": [],
          "url": "https://bn.wikipedia.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8"
        },
        "bnwikiquote": {
          "site": "bnwikiquote",
          "title": "\u09a1\u0997\u09b2\u09be\u09b8 \u0985\u09cd\u09af\u09be\u09a1\u09be\u09ae\u09b8",
          "badges": [],
          "url": "https://bn.wikiquote.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8"
        },
        "bswiki": {
          "site": "bswiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://bs.wikipedia.org/wiki/Douglas_Adams"
        },
        "bswikiquote": {
          "site": "bswikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://bs.wikiquote.org/wiki/Douglas_Adams"
        },
        "cawiki": {
          "site": "cawiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ca.wikipedia.org/wiki/Douglas_Adams"
        },
        "cswiki": {
          "site": "cswiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://cs.wikipedia.org/wiki/Douglas_Adams"
        },
        "cswikiquote": {
          "site": "cswikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://cs.wikiquote.org/wiki/Douglas_Adams"
        },
        "cywiki": {
          "site": "cywiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://cy.wikipedia.org/wiki/Douglas_Adams"
        },
        "dawiki": {
          "site": "dawiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://da.wikipedia.org/wiki/Douglas_Adams"
        },
        "dewiki": {
          "site": "dewiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://de.wikipedia.org/wiki/Douglas_Adams"
        },
        "dewikiquote": {
          "site": "dewikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://de.wikiquote.org/wiki/Douglas_Adams"
        },
        "elwiki": {
          "site": "elwiki",
          "title": "\u039d\u03c4\u03ac\u03b3\u03ba\u03bb\u03b1\u03c2 \u0386\u03bd\u03c4\u03b1\u03bc\u03c2",
          "badges": [],
          "url": "https://el.wikipedia.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82"
        },
        "elwikiquote": {
          "site": "elwikiquote",
          "title": "\u039d\u03c4\u03ac\u03b3\u03ba\u03bb\u03b1\u03c2 \u0386\u03bd\u03c4\u03b1\u03bc\u03c2",
          "badges": [],
          "url": "https://el.wikiquote.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82"
        },
        "enwiki": {
          "site": "enwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://en.wikipedia.org/wiki/Douglas_Adams"
        },
        "enwikiquote": {
          "site": "enwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://en.wikiquote.org/wiki/Douglas_Adams"
        },
        "eowiki": {
          "site": "eowiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://eo.wikipedia.org/wiki/Douglas_Adams"
        },
        "eowikiquote": {
          "site": "eowikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://eo.wikiquote.org/wiki/Douglas_Adams"
        },
        "eswiki": {
          "site": "eswiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://es.wikipedia.org/wiki/Douglas_Adams"
        },
        "eswikiquote": {
          "site": "eswikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://es.wikiquote.org/wiki/Douglas_Adams"
        },
        "etwiki": {
          "site": "etwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://et.wikipedia.org/wiki/Douglas_Adams"
        },
        "etwikiquote": {
          "site": "etwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://et.wikiquote.org/wiki/Douglas_Adams"
        },
        "euwiki": {
          "site": "euwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://eu.wikipedia.org/wiki/Douglas_Adams"
        },
        "fawiki": {
          "site": "fawiki",
          "title": "\u062f\u0627\u06af\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632",
          "badges": [],
          "url": "https://fa.wikipedia.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2"
        },
        "fawikiquote": {
          "site": "fawikiquote",
          "title": "\u062f\u0627\u06af\u0644\u0627\u0633 \u0622\u062f\u0627\u0645\u0632",
          "badges": [],
          "url": "https://fa.wikiquote.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2"
        },
        "fiwiki": {
          "site": "fiwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://fi.wikipedia.org/wiki/Douglas_Adams"
        },
        "fiwikiquote": {
          "site": "fiwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://fi.wikiquote.org/wiki/Douglas_Adams"
        },
        "frwiki": {
          "site": "frwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://fr.wikipedia.org/wiki/Douglas_Adams"
        },
        "frwikiquote": {
          "site": "frwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://fr.wikiquote.org/wiki/Douglas_Adams"
        },
        "gawiki": {
          "site": "gawiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ga.wikipedia.org/wiki/Douglas_Adams"
        },
        "glwiki": {
          "site": "glwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://gl.wikipedia.org/wiki/Douglas_Adams"
        },
        "glwikiquote": {
          "site": "glwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://gl.wikiquote.org/wiki/Douglas_Adams"
        },
        "hewiki": {
          "site": "hewiki",
          "title": "\u05d3\u05d0\u05d2\u05dc\u05e1 \u05d0\u05d3\u05de\u05e1",
          "badges": [],
          "url": "https://he.wikipedia.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1"
        },
        "hewikiquote": {
          "site": "hewikiquote",
          "title": "\u05d3\u05d0\u05d2\u05dc\u05e1 \u05d0\u05d3\u05de\u05e1",
          "badges": [],
          "url": "https://he.wikiquote.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1"
        },
        "hrwiki": {
          "site": "hrwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://hr.wikipedia.org/wiki/Douglas_Adams"
        },
        "huwiki": {
          "site": "huwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://hu.wikipedia.org/wiki/Douglas_Adams"
        },
        "huwikiquote": {
          "site": "huwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://hu.wikiquote.org/wiki/Douglas_Adams"
        },
        "hywiki": {
          "site": "hywiki",
          "title": "\u0534\u0578\u0582\u0563\u056c\u0561\u057d \u0531\u0564\u0561\u0574\u057d",
          "badges": [],
          "url": "https://hy.wikipedia.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD"
        },
        "hywikiquote": {
          "site": "hywikiquote",
          "title": "\u0534\u0578\u0582\u0563\u056c\u0561\u057d \u0531\u0564\u0561\u0574\u057d",
          "badges": [],
          "url": "https://hy.wikiquote.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD"
        },
        "iawiki": {
          "site": "iawiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ia.wikipedia.org/wiki/Douglas_Adams"
        },
        "idwiki": {
          "site": "idwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://id.wikipedia.org/wiki/Douglas_Adams"
        },
        "idwikiquote": {
          "site": "idwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://id.wikiquote.org/wiki/Douglas_Adams"
        },
        "iewiki": {
          "site": "iewiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ie.wikipedia.org/wiki/Douglas_Adams"
        },
        "igwikiquote": {
          "site": "igwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ig.wikiquote.org/wiki/Douglas_Adams"
        },
        "iowiki": {
          "site": "iowiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://io.wikipedia.org/wiki/Douglas_Adams"
        },
        "iswiki": {
          "site": "iswiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://is.wikipedia.org/wiki/Douglas_Adams"
        },
        "itwiki": {
          "site": "itwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://it.wikipedia.org/wiki/Douglas_Adams"
        },
        "itwikiquote": {
          "site": "itwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://it.wikiquote.org/wiki/Douglas_Adams"
        },
        "jawiki": {
          "site": "jawiki",
          "title": "\u30c0\u30b0\u30e9\u30b9\u30fb\u30a2\u30c0\u30e0\u30ba",
          "badges": [],
          "url": "https://ja.wikipedia.org/wiki/%E3%83%80%E3%82%B0%E3%83%A9%E3%82%B9%E3%83%BB%E3%82%A2%E3%83%80%E3%83%A0%E3%82%BA"
        },
        "jvwiki": {
          "site": "jvwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://jv.wikipedia.org/wiki/Douglas_Adams"
        },
        "kawiki": {
          "site": "kawiki",
          "title": "\u10d3\u10d0\u10d2\u10da\u10d0\u10e1 \u10d0\u10d3\u10d0\u10db\u10e1\u10d8",
          "badges": [],
          "url": "https://ka.wikipedia.org/wiki/%E1%83%93%E1%83%90%E1%83%92%E1%83%9A%E1%83%90%E1%83%A1_%E1%83%90%E1%83%93%E1%83%90%E1%83%9B%E1%83%A1%E1%83%98"
        },
        "kowiki": {
          "site": "kowiki",
          "title": "\ub354\uae00\ub7ec\uc2a4 \uc560\ub364\uc2a4",
          "badges": [],
          "url": "https://ko.wikipedia.org/wiki/%EB%8D%94%EA%B8%80%EB%9F%AC%EC%8A%A4_%EC%95%A0%EB%8D%A4%EC%8A%A4"
        },
        "kwwiki": {
          "site": "kwwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://kw.wikipedia.org/wiki/Douglas_Adams"
        },
        "kywiki": {
          "site": "kywiki",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://ky.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "lawiki": {
          "site": "lawiki",
          "title": "Duglassius Adams",
          "badges": [],
          "url": "https://la.wikipedia.org/wiki/Duglassius_Adams"
        },
        "lfnwiki": {
          "site": "lfnwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://lfn.wikipedia.org/wiki/Douglas_Adams"
        },
        "liwikiquote": {
          "site": "liwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://li.wikiquote.org/wiki/Douglas_Adams"
        },
        "ltwiki": {
          "site": "ltwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://lt.wikipedia.org/wiki/Douglas_Adams"
        },
        "ltwikiquote": {
          "site": "ltwikiquote",
          "title": "Douglas Adamsas",
          "badges": [],
          "url": "https://lt.wikiquote.org/wiki/Douglas_Adamsas"
        },
        "lvwiki": {
          "site": "lvwiki",
          "title": "Duglass Adamss",
          "badges": [],
          "url": "https://lv.wikipedia.org/wiki/Duglass_Adamss"
        },
        "mgwiki": {
          "site": "mgwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://mg.wikipedia.org/wiki/Douglas_Adams"
        },
        "mkwiki": {
          "site": "mkwiki",
          "title": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://mk.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "mlwiki": {
          "site": "mlwiki",
          "title": "\u0d21\u0d17\u0d4d\u0d32\u0d38\u0d4d \u0d06\u0d21\u0d02\u0d38\u0d4d",
          "badges": [],
          "url": "https://ml.wikipedia.org/wiki/%E0%B4%A1%E0%B4%97%E0%B5%8D%E0%B4%B2%E0%B4%B8%E0%B5%8D_%E0%B4%86%E0%B4%A1%E0%B4%82%E0%B4%B8%E0%B5%8D"
        },
        "mrjwiki": {
          "site": "mrjwiki",
          "title": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441",
          "badges": [],
          "url": "https://mrj.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81"
        },
        "mrwiki": {
          "site": "mrwiki",
          "title": "\u0921\u0917\u094d\u0932\u0938 \u0905\u200d\u0945\u0921\u092e\u094d\u0938",
          "badges": [],
          "url": "https://mr.wikipedia.org/wiki/%E0%A4%A1%E0%A4%97%E0%A5%8D%E0%A4%B2%E0%A4%B8_%E0%A4%85%E2%80%8D%E0%A5%85%E0%A4%A1%E0%A4%AE%E0%A5%8D%E0%A4%B8"
        },
        "mswiki": {
          "site": "mswiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ms.wikipedia.org/wiki/Douglas_Adams"
        },
        "nlwiki": {
          "site": "nlwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://nl.wikipedia.org/wiki/Douglas_Adams"
        },
        "nlwikiquote": {
          "site": "nlwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://nl.wikiquote.org/wiki/Douglas_Adams"
        },
        "nnwiki": {
          "site": "nnwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://nn.wikipedia.org/wiki/Douglas_Adams"
        },
        "nowiki": {
          "site": "nowiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://no.wikipedia.org/wiki/Douglas_Adams"
        },
        "ocwiki": {
          "site": "ocwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://oc.wikipedia.org/wiki/Douglas_Adams"
        },
        "pawiki": {
          "site": "pawiki",
          "title": "\u0a21\u0a17\u0a32\u0a38 \u0a10\u0a21\u0a2e\u0a38",
          "badges": [],
          "url": "https://pa.wikipedia.org/wiki/%E0%A8%A1%E0%A8%97%E0%A8%B2%E0%A8%B8_%E0%A8%90%E0%A8%A1%E0%A8%AE%E0%A8%B8"
        },
        "plwiki": {
          "site": "plwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://pl.wikipedia.org/wiki/Douglas_Adams"
        },
        "plwikiquote": {
          "site": "plwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://pl.wikiquote.org/wiki/Douglas_Adams"
        },
        "pnbwiki": {
          "site": "pnbwiki",
          "title": "\u0688\u06af\u0644\u0633 \u0627\u06cc\u0688\u0645\u0633",
          "badges": [],
          "url": "https://pnb.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3"
        },
        "ptwiki": {
          "site": "ptwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://pt.wikipedia.org/wiki/Douglas_Adams"
        },
        "ptwikiquote": {
          "site": "ptwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://pt.wikiquote.org/wiki/Douglas_Adams"
        },
        "rowiki": {
          "site": "rowiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://ro.wikipedia.org/wiki/Douglas_Adams"
        },
        "ruwiki": {
          "site": "ruwiki",
          "title": "\u0410\u0434\u0430\u043c\u0441, \u0414\u0443\u0433\u043b\u0430\u0441",
          "badges": [],
          "url": "https://ru.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81"
        },
        "ruwikiquote": {
          "site": "ruwikiquote",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u041d\u043e\u044d\u043b\u044c \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://ru.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%9D%D0%BE%D1%8D%D0%BB%D1%8C_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "scowiki": {
          "site": "scowiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sco.wikipedia.org/wiki/Douglas_Adams"
        },
        "scwiki": {
          "site": "scwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sc.wikipedia.org/wiki/Douglas_Adams"
        },
        "shwiki": {
          "site": "shwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sh.wikipedia.org/wiki/Douglas_Adams"
        },
        "simplewiki": {
          "site": "simplewiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://simple.wikipedia.org/wiki/Douglas_Adams"
        },
        "simplewikiquote": {
          "site": "simplewikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://simple.wikiquote.org/wiki/Douglas_Adams"
        },
        "skwiki": {
          "site": "skwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sk.wikipedia.org/wiki/Douglas_Adams"
        },
        "skwikiquote": {
          "site": "skwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sk.wikiquote.org/wiki/Douglas_Adams"
        },
        "slwiki": {
          "site": "slwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sl.wikipedia.org/wiki/Douglas_Adams"
        },
        "sqwiki": {
          "site": "sqwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sq.wikipedia.org/wiki/Douglas_Adams"
        },
        "srwiki": {
          "site": "srwiki",
          "title": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://sr.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "srwikiquote": {
          "site": "srwikiquote",
          "title": "\u0414\u0430\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://sr.wikiquote.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "svwiki": {
          "site": "svwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sv.wikipedia.org/wiki/Douglas_Adams"
        },
        "svwikiquote": {
          "site": "svwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://sv.wikiquote.org/wiki/Douglas_Adams"
        },
        "tawiki": {
          "site": "tawiki",
          "title": "\u0b9f\u0b95\u0bcd\u0bb3\u0bb8\u0bcd \u0b86\u0b9f\u0bae\u0bcd\u0bb8\u0bcd",
          "badges": [],
          "url": "https://ta.wikipedia.org/wiki/%E0%AE%9F%E0%AE%95%E0%AF%8D%E0%AE%B3%E0%AE%B8%E0%AF%8D_%E0%AE%86%E0%AE%9F%E0%AE%AE%E0%AF%8D%E0%AE%B8%E0%AF%8D"
        },
        "trwiki": {
          "site": "trwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://tr.wikipedia.org/wiki/Douglas_Adams"
        },
        "trwikiquote": {
          "site": "trwikiquote",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://tr.wikiquote.org/wiki/Douglas_Adams"
        },
        "ukwiki": {
          "site": "ukwiki",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://uk.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "ukwikiquote": {
          "site": "ukwikiquote",
          "title": "\u0414\u0443\u0433\u043b\u0430\u0441 \u0410\u0434\u0430\u043c\u0441",
          "badges": [],
          "url": "https://uk.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81"
        },
        "urwiki": {
          "site": "urwiki",
          "title": "\u0688\u06af\u0644\u0633 \u0627\u06cc\u0688\u0645\u0633",
          "badges": [],
          "url": "https://ur.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3"
        },
        "vepwiki": {
          "site": "vepwiki",
          "title": "Adams Duglas",
          "badges": [],
          "url": "https://vep.wikipedia.org/wiki/Adams_Duglas"
        },
        "viwiki": {
          "site": "viwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://vi.wikipedia.org/wiki/Douglas_Adams"
        },
        "warwiki": {
          "site": "warwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://war.wikipedia.org/wiki/Douglas_Adams"
        },
        "wuuwiki": {
          "site": "wuuwiki",
          "title": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af",
          "badges": [],
          "url": "https://wuu.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF"
        },
        "zh_min_nanwiki": {
          "site": "zh_min_nanwiki",
          "title": "Douglas Adams",
          "badges": [],
          "url": "https://zh-min-nan.wikipedia.org/wiki/Douglas_Adams"
        },
        "zh_yuewiki": {
          "site": "zh_yuewiki",
          "title": "\u9053\u683c\u62c9\u65af\u4e9e\u7576\u65af",
          "badges": [],
          "url": "https://zh-yue.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%E4%BA%9E%E7%95%B6%E6%96%AF"
        },
        "zhwiki": {
          "site": "zhwiki",
          "title": "\u9053\u683c\u62c9\u65af\u00b7\u4e9a\u5f53\u65af",
          "badges": [],
          "url": "https://zh.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF"
        },
        "zhwikiquote": {
          "site": "zhwikiquote",
          "title": "\u9053\u683c\u62c9\u65af\u00b7\u4e9e\u7576\u65af",
          "badges": [],
          "url": "https://zh.wikiquote.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9E%E7%95%B6%E6%96%AF"
        }
      }
    }
  }
}
In [8]:
print(urlopen("https://www.wikidata.org/wiki/Special:EntityData/Q42.ttl").read().decode("utf-8"))
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix wikibase: <http://wikiba.se/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix data: <https://www.wikidata.org/wiki/Special:EntityData/> .
@prefix s: <http://www.wikidata.org/entity/statement/> .
@prefix ref: <http://www.wikidata.org/reference/> .
@prefix v: <http://www.wikidata.org/value/> .
@prefix wdt: <http://www.wikidata.org/prop/direct/> .
@prefix wdtn: <http://www.wikidata.org/prop/direct-normalized/> .
@prefix p: <http://www.wikidata.org/prop/> .
@prefix ps: <http://www.wikidata.org/prop/statement/> .
@prefix psv: <http://www.wikidata.org/prop/statement/value/> .
@prefix psn: <http://www.wikidata.org/prop/statement/value-normalized/> .
@prefix pq: <http://www.wikidata.org/prop/qualifier/> .
@prefix pqv: <http://www.wikidata.org/prop/qualifier/value/> .
@prefix pqn: <http://www.wikidata.org/prop/qualifier/value-normalized/> .
@prefix pr: <http://www.wikidata.org/prop/reference/> .
@prefix prv: <http://www.wikidata.org/prop/reference/value/> .
@prefix prn: <http://www.wikidata.org/prop/reference/value-normalized/> .
@prefix wdno: <http://www.wikidata.org/prop/novalue/> .

data:Q42 a schema:Dataset ;
	schema:about wd:Q42 ;
	cc:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
	schema:softwareVersion "1.0.0" ;
	schema:version "1757862527"^^xsd:integer ;
	schema:dateModified "2022-10-25T12:03:35Z"^^xsd:dateTime ;
	wikibase:statements "283"^^xsd:integer ;
	wikibase:sitelinks "120"^^xsd:integer ;
	wikibase:identifiers "214"^^xsd:integer .

wd:Q42 a wikibase:Item .

<https://af.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "af" ;
	schema:isPartOf <https://af.wikipedia.org/> ;
	schema:name "Douglas Adams"@af .

<https://af.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ar.wikipedia.org/wiki/%D8%AF%D9%88%D8%BA%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ar" ;
	schema:isPartOf <https://ar.wikipedia.org/> ;
	schema:name "دوغلاس آدمز"@ar .

<https://ar.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ar.wikiquote.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ar" ;
	schema:isPartOf <https://ar.wikiquote.org/> ;
	schema:name "دوجلاس آدامز"@ar .

<https://ar.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://arz.wikipedia.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A7%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "arz" ;
	schema:isPartOf <https://arz.wikipedia.org/> ;
	schema:name "دوجلاس ادامز"@arz .

<https://arz.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ast.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ast" ;
	schema:isPartOf <https://ast.wikipedia.org/> ;
	schema:name "Douglas Adams"@ast .

<https://ast.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://azb.wikipedia.org/wiki/%D8%AF%D8%A7%D9%82%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "azb" ;
	schema:isPartOf <https://azb.wikipedia.org/> ;
	schema:name "داقلاس آدامز"@azb .

<https://azb.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://az.wikipedia.org/wiki/Duqlas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "az" ;
	schema:isPartOf <https://az.wikipedia.org/> ;
	schema:name "Duqlas Adams"@az .

<https://az.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://az.wikiquote.org/wiki/Duqlas_Noel_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "az" ;
	schema:isPartOf <https://az.wikiquote.org/> ;
	schema:name "Duqlas Noel Adams"@az .

<https://az.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://bar.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bar" ;
	schema:isPartOf <https://bar.wikipedia.org/> ;
	schema:name "Douglas Adams"@bar .

<https://bar.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://be-tarask.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D0%B7> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "be-tarask" ;
	schema:isPartOf <https://be-tarask.wikipedia.org/> ;
	schema:name "Дуглас Адамз"@be-tarask .

<https://be-tarask.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://be.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "be" ;
	schema:isPartOf <https://be.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@be .

<https://be.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bg.wikipedia.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bg" ;
	schema:isPartOf <https://bg.wikipedia.org/> ;
	schema:name "Дъглас Адамс"@bg .

<https://bg.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bg.wikiquote.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bg" ;
	schema:isPartOf <https://bg.wikiquote.org/> ;
	schema:name "Дъглас Адамс"@bg .

<https://bg.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://bn.wikipedia.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bn" ;
	schema:isPartOf <https://bn.wikipedia.org/> ;
	schema:name "ডগলাস অ্যাডামস"@bn .

<https://bn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bs.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bs" ;
	schema:isPartOf <https://bs.wikipedia.org/> ;
	schema:name "Douglas Adams"@bs .

<https://bs.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bs.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bs" ;
	schema:isPartOf <https://bs.wikiquote.org/> ;
	schema:name "Douglas Adams"@bs .

<https://bs.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ca.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ca" ;
	schema:isPartOf <https://ca.wikipedia.org/> ;
	schema:name "Douglas Adams"@ca .

<https://ca.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://cs.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cs" ;
	schema:isPartOf <https://cs.wikipedia.org/> ;
	schema:name "Douglas Adams"@cs .

<https://cs.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://cs.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cs" ;
	schema:isPartOf <https://cs.wikiquote.org/> ;
	schema:name "Douglas Adams"@cs .

<https://cs.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://cy.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cy" ;
	schema:isPartOf <https://cy.wikipedia.org/> ;
	schema:name "Douglas Adams"@cy .

<https://cy.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://da.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "da" ;
	schema:isPartOf <https://da.wikipedia.org/> ;
	schema:name "Douglas Adams"@da .

<https://da.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://de.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "de" ;
	schema:isPartOf <https://de.wikipedia.org/> ;
	schema:name "Douglas Adams"@de .

<https://de.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://de.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "de" ;
	schema:isPartOf <https://de.wikiquote.org/> ;
	schema:name "Douglas Adams"@de .

<https://de.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://el.wikipedia.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "el" ;
	schema:isPartOf <https://el.wikipedia.org/> ;
	schema:name "Ντάγκλας Άνταμς"@el .

<https://el.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://el.wikiquote.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "el" ;
	schema:isPartOf <https://el.wikiquote.org/> ;
	schema:name "Ντάγκλας Άνταμς"@el .

<https://el.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://en.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en" ;
	schema:isPartOf <https://en.wikipedia.org/> ;
	schema:name "Douglas Adams"@en .

<https://en.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://en.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en" ;
	schema:isPartOf <https://en.wikiquote.org/> ;
	schema:name "Douglas Adams"@en .

<https://en.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://eo.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eo" ;
	schema:isPartOf <https://eo.wikipedia.org/> ;
	schema:name "Douglas Adams"@eo .

<https://eo.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://eo.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eo" ;
	schema:isPartOf <https://eo.wikiquote.org/> ;
	schema:name "Douglas Adams"@eo .

<https://eo.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://es.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "es" ;
	schema:isPartOf <https://es.wikipedia.org/> ;
	schema:name "Douglas Adams"@es .

<https://es.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://es.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "es" ;
	schema:isPartOf <https://es.wikiquote.org/> ;
	schema:name "Douglas Adams"@es .

<https://es.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://et.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "et" ;
	schema:isPartOf <https://et.wikipedia.org/> ;
	schema:name "Douglas Adams"@et .

<https://et.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://et.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "et" ;
	schema:isPartOf <https://et.wikiquote.org/> ;
	schema:name "Douglas Adams"@et .

<https://et.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://eu.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eu" ;
	schema:isPartOf <https://eu.wikipedia.org/> ;
	schema:name "Douglas Adams"@eu .

<https://eu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fa.wikipedia.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fa" ;
	schema:isPartOf <https://fa.wikipedia.org/> ;
	schema:name "داگلاس آدامز"@fa .

<https://fa.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fa.wikiquote.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fa" ;
	schema:isPartOf <https://fa.wikiquote.org/> ;
	schema:name "داگلاس آدامز"@fa .

<https://fa.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://fi.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fi" ;
	schema:isPartOf <https://fi.wikipedia.org/> ;
	schema:name "Douglas Adams"@fi .

<https://fi.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fi.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fi" ;
	schema:isPartOf <https://fi.wikiquote.org/> ;
	schema:name "Douglas Adams"@fi .

<https://fi.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://fr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fr" ;
	schema:isPartOf <https://fr.wikipedia.org/> ;
	schema:name "Douglas Adams"@fr .

<https://fr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fr.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fr" ;
	schema:isPartOf <https://fr.wikiquote.org/> ;
	schema:name "Douglas Adams"@fr .

<https://fr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ga.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ga" ;
	schema:isPartOf <https://ga.wikipedia.org/> ;
	schema:name "Douglas Adams"@ga .

<https://ga.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://gl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "gl" ;
	schema:isPartOf <https://gl.wikipedia.org/> ;
	schema:name "Douglas Adams"@gl .

<https://gl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://gl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "gl" ;
	schema:isPartOf <https://gl.wikiquote.org/> ;
	schema:name "Douglas Adams"@gl .

<https://gl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://he.wikipedia.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "he" ;
	schema:isPartOf <https://he.wikipedia.org/> ;
	schema:name "דאגלס אדמס"@he .

<https://he.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://he.wikiquote.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "he" ;
	schema:isPartOf <https://he.wikiquote.org/> ;
	schema:name "דאגלס אדמס"@he .

<https://he.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://hr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hr" ;
	schema:isPartOf <https://hr.wikipedia.org/> ;
	schema:name "Douglas Adams"@hr .

<https://hr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hu.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hu" ;
	schema:isPartOf <https://hu.wikipedia.org/> ;
	schema:name "Douglas Adams"@hu .

<https://hu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hu.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hu" ;
	schema:isPartOf <https://hu.wikiquote.org/> ;
	schema:name "Douglas Adams"@hu .

<https://hu.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://hy.wikipedia.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hy" ;
	schema:isPartOf <https://hy.wikipedia.org/> ;
	schema:name "Դուգլաս Ադամս"@hy .

<https://hy.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hy.wikiquote.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hy" ;
	schema:isPartOf <https://hy.wikiquote.org/> ;
	schema:name "Դուգլաս Ադամս"@hy .

<https://hy.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ia.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ia" ;
	schema:isPartOf <https://ia.wikipedia.org/> ;
	schema:name "Douglas Adams"@ia .

<https://ia.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://id.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "id" ;
	schema:isPartOf <https://id.wikipedia.org/> ;
	schema:name "Douglas Adams"@id .

<https://id.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ie.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ie" ;
	schema:isPartOf <https://ie.wikipedia.org/> ;
	schema:name "Douglas Adams"@ie .

<https://ie.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://io.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "io" ;
	schema:isPartOf <https://io.wikipedia.org/> ;
	schema:name "Douglas Adams"@io .

<https://io.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://is.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "is" ;
	schema:isPartOf <https://is.wikipedia.org/> ;
	schema:name "Douglas Adams"@is .

<https://is.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://it.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "it" ;
	schema:isPartOf <https://it.wikipedia.org/> ;
	schema:name "Douglas Adams"@it .

<https://it.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://it.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "it" ;
	schema:isPartOf <https://it.wikiquote.org/> ;
	schema:name "Douglas Adams"@it .

<https://it.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ja.wikipedia.org/wiki/%E3%83%80%E3%82%B0%E3%83%A9%E3%82%B9%E3%83%BB%E3%82%A2%E3%83%80%E3%83%A0%E3%82%BA> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ja" ;
	schema:isPartOf <https://ja.wikipedia.org/> ;
	schema:name "ダグラス・アダムズ"@ja .

<https://ja.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://jv.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "jv" ;
	schema:isPartOf <https://jv.wikipedia.org/> ;
	schema:name "Douglas Adams"@jv .

<https://jv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ka.wikipedia.org/wiki/%E1%83%93%E1%83%90%E1%83%92%E1%83%9A%E1%83%90%E1%83%A1_%E1%83%90%E1%83%93%E1%83%90%E1%83%9B%E1%83%A1%E1%83%98> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ka" ;
	schema:isPartOf <https://ka.wikipedia.org/> ;
	schema:name "დაგლას ადამსი"@ka .

<https://ka.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ko.wikipedia.org/wiki/%EB%8D%94%EA%B8%80%EB%9F%AC%EC%8A%A4_%EC%95%A0%EB%8D%A4%EC%8A%A4> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ko" ;
	schema:isPartOf <https://ko.wikipedia.org/> ;
	schema:name "더글러스 애덤스"@ko .

<https://ko.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://kw.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "kw" ;
	schema:isPartOf <https://kw.wikipedia.org/> ;
	schema:name "Douglas Adams"@kw .

<https://kw.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ky.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ky" ;
	schema:isPartOf <https://ky.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@ky .

<https://ky.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://la.wikipedia.org/wiki/Duglassius_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "la" ;
	schema:isPartOf <https://la.wikipedia.org/> ;
	schema:name "Duglassius Adams"@la .

<https://la.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://lfn.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lfn" ;
	schema:isPartOf <https://lfn.wikipedia.org/> ;
	schema:name "Douglas Adams"@lfn .

<https://lfn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://li.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "li" ;
	schema:isPartOf <https://li.wikiquote.org/> ;
	schema:name "Douglas Adams"@li .

<https://li.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://lt.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lt" ;
	schema:isPartOf <https://lt.wikipedia.org/> ;
	schema:name "Douglas Adams"@lt .

<https://lt.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://lt.wikiquote.org/wiki/Douglas_Adamsas> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lt" ;
	schema:isPartOf <https://lt.wikiquote.org/> ;
	schema:name "Douglas Adamsas"@lt .

<https://lt.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://lv.wikipedia.org/wiki/Duglass_Adamss> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lv" ;
	schema:isPartOf <https://lv.wikipedia.org/> ;
	schema:name "Duglass Adamss"@lv .

<https://lv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mg.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mg" ;
	schema:isPartOf <https://mg.wikipedia.org/> ;
	schema:name "Douglas Adams"@mg .

<https://mg.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mk.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mk" ;
	schema:isPartOf <https://mk.wikipedia.org/> ;
	schema:name "Даглас Адамс"@mk .

<https://mk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ml.wikipedia.org/wiki/%E0%B4%A1%E0%B4%97%E0%B5%8D%E0%B4%B2%E0%B4%B8%E0%B5%8D_%E0%B4%86%E0%B4%A1%E0%B4%82%E0%B4%B8%E0%B5%8D> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ml" ;
	schema:isPartOf <https://ml.wikipedia.org/> ;
	schema:name "ഡഗ്ലസ് ആഡംസ്"@ml .

<https://ml.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mrj.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mrj" ;
	schema:isPartOf <https://mrj.wikipedia.org/> ;
	schema:name "Адамс, Дуглас"@mrj .

<https://mrj.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mr.wikipedia.org/wiki/%E0%A4%A1%E0%A4%97%E0%A5%8D%E0%A4%B2%E0%A4%B8_%E0%A4%85%E2%80%8D%E0%A5%85%E0%A4%A1%E0%A4%AE%E0%A5%8D%E0%A4%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mr" ;
	schema:isPartOf <https://mr.wikipedia.org/> ;
	schema:name "डग्लस अ‍ॅडम्स"@mr .

<https://mr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://nl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nl" ;
	schema:isPartOf <https://nl.wikipedia.org/> ;
	schema:name "Douglas Adams"@nl .

<https://nl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://nl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nl" ;
	schema:isPartOf <https://nl.wikiquote.org/> ;
	schema:name "Douglas Adams"@nl .

<https://nl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://nn.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nn" ;
	schema:isPartOf <https://nn.wikipedia.org/> ;
	schema:name "Douglas Adams"@nn .

<https://nn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://no.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nb" ;
	schema:isPartOf <https://no.wikipedia.org/> ;
	schema:name "Douglas Adams"@nb .

<https://no.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://oc.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "oc" ;
	schema:isPartOf <https://oc.wikipedia.org/> ;
	schema:name "Douglas Adams"@oc .

<https://oc.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pa.wikipedia.org/wiki/%E0%A8%A1%E0%A8%97%E0%A8%B2%E0%A8%B8_%E0%A8%90%E0%A8%A1%E0%A8%AE%E0%A8%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pa" ;
	schema:isPartOf <https://pa.wikipedia.org/> ;
	schema:name "ਡਗਲਸ ਐਡਮਸ"@pa .

<https://pa.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pl" ;
	schema:isPartOf <https://pl.wikipedia.org/> ;
	schema:name "Douglas Adams"@pl .

<https://pl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pl" ;
	schema:isPartOf <https://pl.wikiquote.org/> ;
	schema:name "Douglas Adams"@pl .

<https://pl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://pnb.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pnb" ;
	schema:isPartOf <https://pnb.wikipedia.org/> ;
	schema:name "ڈگلس ایڈمس"@pnb .

<https://pnb.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pt.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pt" ;
	schema:isPartOf <https://pt.wikipedia.org/> ;
	schema:name "Douglas Adams"@pt .

<https://pt.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pt.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pt" ;
	schema:isPartOf <https://pt.wikiquote.org/> ;
	schema:name "Douglas Adams"@pt .

<https://pt.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ro.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ro" ;
	schema:isPartOf <https://ro.wikipedia.org/> ;
	schema:name "Douglas Adams"@ro .

<https://ro.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ru.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ru" ;
	schema:isPartOf <https://ru.wikipedia.org/> ;
	schema:name "Адамс, Дуглас"@ru .

<https://ru.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ru.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%9D%D0%BE%D1%8D%D0%BB%D1%8C_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ru" ;
	schema:isPartOf <https://ru.wikiquote.org/> ;
	schema:name "Дуглас Ноэль Адамс"@ru .

<https://ru.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sco.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sco" ;
	schema:isPartOf <https://sco.wikipedia.org/> ;
	schema:name "Douglas Adams"@sco .

<https://sco.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sc.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sc" ;
	schema:isPartOf <https://sc.wikipedia.org/> ;
	schema:name "Douglas Adams"@sc .

<https://sc.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sh.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sh" ;
	schema:isPartOf <https://sh.wikipedia.org/> ;
	schema:name "Douglas Adams"@sh .

<https://sh.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://simple.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en-simple" ;
	schema:isPartOf <https://simple.wikipedia.org/> ;
	schema:name "Douglas Adams"@en-simple .

<https://simple.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://simple.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en-simple" ;
	schema:isPartOf <https://simple.wikiquote.org/> ;
	schema:name "Douglas Adams"@en-simple .

<https://simple.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sk.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sk" ;
	schema:isPartOf <https://sk.wikipedia.org/> ;
	schema:name "Douglas Adams"@sk .

<https://sk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sk.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sk" ;
	schema:isPartOf <https://sk.wikiquote.org/> ;
	schema:name "Douglas Adams"@sk .

<https://sk.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sl" ;
	schema:isPartOf <https://sl.wikipedia.org/> ;
	schema:name "Douglas Adams"@sl .

<https://sl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sq.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sq" ;
	schema:isPartOf <https://sq.wikipedia.org/> ;
	schema:name "Douglas Adams"@sq .

<https://sq.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sr.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sr" ;
	schema:isPartOf <https://sr.wikipedia.org/> ;
	schema:name "Даглас Адамс"@sr .

<https://sr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sv.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sv" ;
	schema:isPartOf <https://sv.wikipedia.org/> ;
	schema:name "Douglas Adams"@sv .

<https://sv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sv.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sv" ;
	schema:isPartOf <https://sv.wikiquote.org/> ;
	schema:name "Douglas Adams"@sv .

<https://sv.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ta.wikipedia.org/wiki/%E0%AE%9F%E0%AE%95%E0%AF%8D%E0%AE%B3%E0%AE%B8%E0%AF%8D_%E0%AE%86%E0%AE%9F%E0%AE%AE%E0%AF%8D%E0%AE%B8%E0%AF%8D> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ta" ;
	schema:isPartOf <https://ta.wikipedia.org/> ;
	schema:name "டக்ளஸ் ஆடம்ஸ்"@ta .

<https://ta.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://tr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "tr" ;
	schema:isPartOf <https://tr.wikipedia.org/> ;
	schema:name "Douglas Adams"@tr .

<https://tr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://tr.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "tr" ;
	schema:isPartOf <https://tr.wikiquote.org/> ;
	schema:name "Douglas Adams"@tr .

<https://tr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://uk.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "uk" ;
	schema:isPartOf <https://uk.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@uk .

<https://uk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://uk.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "uk" ;
	schema:isPartOf <https://uk.wikiquote.org/> ;
	schema:name "Дуглас Адамс"@uk .

<https://uk.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ur.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ur" ;
	schema:isPartOf <https://ur.wikipedia.org/> ;
	schema:name "ڈگلس ایڈمس"@ur .

<https://ur.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://vep.wikipedia.org/wiki/Adams_Duglas> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "vep" ;
	schema:isPartOf <https://vep.wikipedia.org/> ;
	schema:name "Adams Duglas"@vep .

<https://vep.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://vi.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "vi" ;
	schema:isPartOf <https://vi.wikipedia.org/> ;
	schema:name "Douglas Adams"@vi .

<https://vi.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://war.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "war" ;
	schema:isPartOf <https://war.wikipedia.org/> ;
	schema:name "Douglas Adams"@war .

<https://war.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://wuu.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "wuu" ;
	schema:isPartOf <https://wuu.wikipedia.org/> ;
	schema:name "道格拉斯·亚当斯"@wuu .

<https://wuu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh-min-nan.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nan" ;
	schema:isPartOf <https://zh-min-nan.wikipedia.org/> ;
	schema:name "Douglas Adams"@nan .

<https://zh-min-nan.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh-yue.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%E4%BA%9E%E7%95%B6%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "yue" ;
	schema:isPartOf <https://zh-yue.wikipedia.org/> ;
	schema:name "道格拉斯亞當斯"@yue .

<https://zh-yue.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "zh" ;
	schema:isPartOf <https://zh.wikipedia.org/> ;
	schema:name "道格拉斯·亚当斯"@zh .

<https://zh.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh.wikiquote.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9E%E7%95%B6%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "zh" ;
	schema:isPartOf <https://zh.wikiquote.org/> ;
	schema:name "道格拉斯·亞當斯"@zh .

<https://zh.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://id.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "id" ;
	schema:isPartOf <https://id.wikiquote.org/> ;
	schema:name "Douglas Adams"@id .

<https://id.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ms.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ms" ;
	schema:isPartOf <https://ms.wikipedia.org/> ;
	schema:name "Douglas Adams"@ms .

<https://ms.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sr.wikiquote.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sr" ;
	schema:isPartOf <https://sr.wikiquote.org/> ;
	schema:name "Даглас Адамс"@sr .

<https://sr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ig.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ig" ;
	schema:isPartOf <https://ig.wikiquote.org/> ;
	schema:name "Douglas Adams"@ig .

<https://ig.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ba.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ba" ;
	schema:isPartOf <https://ba.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@ba .

<https://ba.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bn.wikiquote.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bn" ;
	schema:isPartOf <https://bn.wikiquote.org/> ;
	schema:name "ডগলাস অ্যাডামস"@bn .

<https://bn.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

wd:Q42 wdt:P31 wd:Q5 ;
	wdt:P21 wd:Q6581097 ;
	wdt:P106 wd:Q214917,
		wd:Q28389,
		wd:Q6625963,
		wd:Q4853732,
		wd:Q18844224,
		wd:Q245068,
		wd:Q36180 ;
	wdt:P800 wd:Q25169,
		wd:Q20736364,
		wd:Q7758404 ;
	wdt:P569 "1952-03-11T00:00:00Z"^^xsd:dateTime ;
	wdt:P19 wd:Q350 ;
	wdt:P570 "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	wdt:P1196 wd:Q3739104 ;
	wdt:P509 wd:Q12152 ;
	wdt:P20 wd:Q159288 ;
	wdt:P119 wd:Q533697 ;
	wdt:P1442 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%27%20gravestone.jpg> ;
	wdt:P1015 "90196888" ;
	wdtn:P1015 <https://livedata.bibsys.no/authority/90196888> ;
	wdt:P735 wd:Q463035 ;
	wdt:P734 wd:Q351735 ;
	wdt:P27 wd:Q145 ;
	wdt:P551 wd:Q84,
		wd:Q909993 ;
	wdt:P103 wd:Q1860 ;
	wdt:P1368 "000057405" ;
	wdt:P244 "n80076765" ;
	wdtn:P244 <http://id.loc.gov/authorities/names/n80076765> ;
	wdt:P947 "000002833" ;
	wdt:P214 "113230702" ;
	wdtn:P214 <http://viaf.org/viaf/113230702> ;
	wdt:P345 "nm0010930" ;
	wdt:P373 "Douglas Adams" ;
	wdt:P349 "00430962" ;
	wdtn:P349 <http://id.ndl.go.jp/auth/ndlna/00430962> ;
	wdt:P434 "e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4" ;
	wdtn:P434 <http://musicbrainz.org/artist/e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4> ;
	wdt:P268 "11888092r" ;
	wdtn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	wdt:P227 "119033364" ;
	wdtn:P227 <https://d-nb.info/gnd/119033364> ;
	wdt:P535 "22814" ;
	wdt:P22 wd:Q14623675 ;
	wdt:P25 wd:Q14623678 ;
	wdt:P40 wd:Q14623683 ;
	wdt:P906 "230807" ;
	wdtn:P906 <http://libris.kb.se/resource/auth/230807> ;
	wdt:P1006 "068744307" ;
	wdtn:P1006 <http://data.bibliotheken.nl/id/thes/p068744307> ;
	wdt:P1006 "339433876" ;
	wdtn:P1006 <http://data.bibliotheken.nl/id/thes/p339433876> ;
	wdt:P949 "000163846" ;
	wdt:P646 "/m/0282x" ;
	wdtn:P646 <http://g.co/kg/m/0282x> ;
	wdt:P69 wd:Q691283,
		wd:Q4961791 ;
	wdt:P1273 "a10667040" ;
	wdt:P108 wd:Q9531,
		wd:Q3520623 ;
	wdt:P998 "Arts/Literature/Authors/A/Adams,_Douglas/" ;
	wdt:P1233 "122" ;
	wdt:P1284 "00000020676" ;
	wdt:P866 "douglas-adams" ;
	wdt:P1695 "A11573065" ;
	wdt:P1816 "mp60152" ;
	wdt:P1263 "731/000023662" ;
	wdt:P271 "DA07517784" ;
	wdtn:P271 <https://ci.nii.ac.jp/author/DA07517784#entity> ;
	wdt:P856 <https://douglasadams.com/> ;
	wdt:P1411 wd:Q3414212,
		wd:Q2576795 ;
	wdt:P1953 "134923" ;
	wdt:P648 "OL272947A" ;
	wdtn:P648 <http://openlibrary.org/works/OL272947A> ;
	wdt:P1258 "celebrity/douglas_adams" ;
	wdt:P2191 "10014" ;
	wdt:P1266 "97049" ;
	wdt:P2019 "p279442" ;
	wdt:P2188 "45993" ;
	wdt:P2168 "271209" ;
	wdt:P1315 "847711" ;
	wdt:P2163 "56544" ;
	wdtn:P2163 <http://id.worldcat.org/fast/56544> ;
	wdt:P2163 "1775523" ;
	wdtn:P2163 <http://id.worldcat.org/fast/1775523> ;
	wdt:P1417 "biography/Douglas-Adams" ;
	wdt:P2611 "douglas_adams" ;
	wdt:P2435 "208947" ;
	wdt:P2604 "246164" ;
	wdt:P2387 "1289170" ;
	wdt:P2626 "159696" ;
	wdt:P2605 "39534" ;
	wdt:P2963 "4" ;
	wdt:P910 wd:Q8935487 ;
	wdt:P3106 "books/douglasadams" ;
	wdt:P1303 wd:Q6607 ;
	wdt:P2469 "238p" ;
	wdt:P3373 wd:Q14623673 ;
	wdt:P3417 "Douglas-Adams-4" ;
	wdt:P3430 "w65h7md1" ;
	wdt:P1617 "aa075cb6-75bf-46d8-b0bf-9751d6c04c93" ;
	wdtn:P1617 <http://www.bbc.co.uk/things/aa075cb6-75bf-46d8-b0bf-9751d6c04c93#id> ;
	wdt:P2048 "+1.96"^^xsd:decimal ;
	wdt:P3222 "douglas-adams" ;
	wdt:P109 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%20signature.svg> ;
	wdt:P4193 "Douglas_Noel_Adams_(1952-2001)" ;
	wdt:P136 wd:Q24925,
		wd:Q40831,
		wd:Q128758 ;
	wdt:P4431 "douglas-adams-61st-birthday" ;
	wdt:P2607 "307812da-da11-4ee5-a906-31e5ce9694bb" ;
	wdt:P1415 "75853" ;
	wdt:P2949 "Adams-32825" ;
	wdt:P3154 "adamsdou" ;
	wdt:P3630 "2627" ;
	wdt:P1280 "6050147" ;
	wdt:P2734 "AdamsDouglas" ;
	wdt:P26 wd:Q14623681 ;
	wdt:P5019 "adams-douglas-noel" ;
	wdt:P463 wd:Q857679,
		wd:Q5610831 ;
	wdt:P2600 "6000000050650155828" ;
	wdt:P5337 "CAAqJQgKIh9DQkFTRVFvSUwyMHZNREk0TW5nU0JXVnVMVWRDS0FBUAE" ;
	wdt:P5357 "adams_douglas" ;
	wdt:P5361 "AdamsDouglas1952-2001" ;
	wdtn:P5361 <https://bnb.data.bl.uk/doc/person/AdamsDouglas1952-2001> ;
	wdt:P5365 "42" ;
	wdt:P5408 "a/douglas-adams" ;
	wdt:P5570 "143" ;
	wdt:P1580 "a1221374" ;
	wdt:P5587 "1zcfh30k0gr4zxt" ;
	wdtn:P5587 <https://libris.kb.se/1zcfh30k0gr4zxt> ;
	wdt:P3365 "douglas-noel-adams" ;
	wdt:P269 "026677636" ;
	wdtn:P269 <http://www.idref.fr/026677636/id> ;
	wdt:P213 "0000 0000 8045 6315" ;
	wdt:P691 "jn19990000029" ;
	wdt:P950 "XX1149955" ;
	wdtn:P950 <http://datos.bne.es/resource/XX1149955> ;
	wdt:P1670 "0052C2705" ;
	wdt:P409 "35163268" ;
	wdt:P396 "RAVV034417" ;
	wdt:P1207 "n94004172" ;
	wdt:P1005 "68537" ;
	wdt:P1375 "000010283" ;
	wdt:P1412 wd:Q1860 ;
	wdt:P5247 "3040-1126" ;
	wdt:P5905 "4040-45935" ;
	wdt:P6839 "Creator/DouglasAdams" ;
	wdt:P4342 "Douglas_Adams" ;
	wdt:P4785 "47671" ;
	wdt:P485 wd:Q67074906 ;
	wdt:P7029 "770139179",
		"770139180" ;
	wdt:P1343 wd:Q67311526 ;
	wdt:P5034 "KAC200300379" ;
	wdtn:P5034 <https://lod.nl.go.kr/page/KAC200300379> ;
	wdt:P7433 "25" ;
	wdt:P7400 "adamsdouglas-1" ;
	wdt:P7704 "agent/base/59925" ;
	wdtn:P7704 <http://data.europeana.eu/agent/base/59925> ;
	wdt:P7859 "lccn-n80076765" ;
	wdt:P3762 "140290" ;
	wdt:P3065 "02-A002907983" ;
	wdt:P3846 "87097968038642" ;
	wdt:P7293 "9810669145205606" ;
	wdt:P7700 "vtls005710289" ;
	wdt:P1890 "000750942" ;
	wdt:P4619 "000592321" ;
	wdt:P6394 "a1112474x" ;
	wdt:P4839 "Entity[\"Person\", \"DouglasAdams::gh8qf\"]" ;
	wdt:P2581 "03688580n" ;
	wdtn:P2581 <http://babelnet.org/rdf/s03688580n> ;
	wdt:P5284 "1032346" ;
	wdt:P4862 "B000AQ2A84" ;
	wdt:P7661 "74033" ;
	wdt:P3913 "337" ;
	wdt:P7214 "753186" ;
	wdt:P4666 "23878" ;
	wdt:P7215 "46398" ;
	wdt:P5233 "a38" ;
	wdt:P5033 "160192" ;
	wdt:P3305 "199918" ;
	wdt:P7745 "183956" ;
	wdt:P6464 "898203" ;
	wdt:P7300 "59932" ;
	wdt:P4657 "432740401" ;
	wdt:P5534 "52843" ;
	wdt:P4985 "52843" ;
	wdt:P3845 "665243" ;
	wdt:P2638 "people/douglas-adams" ;
	wdt:P1712 "person/douglas-adams" ;
	wdt:P6119 "douglas-adams" ;
	wdt:P5340 "278771" ;
	wdt:P4438 "4ce2ba117755a" ;
	wdt:P4326 "215853" ;
	wdt:P4768 "212786" ;
	wdt:P3142 "n0008574" ;
	wdt:P3136 "2000059" ;
	wdt:P4782 "26898" ;
	wdt:P3145 "nm96558" ;
	wdt:P5882 "M00000364497" ;
	wdt:P6327 "55720" ;
	wdt:P6517 "Douglas-Adams" ;
	wdt:P1728 "mn0000803382" ;
	wdt:P7195 "201077" ;
	wdt:P2722 "4468812" ;
	wdt:P2373 "Douglas-adams" ;
	wdt:P6351 "41236" ;
	wdt:P2850 "2080713" ;
	wdt:P3192 "Douglas+Adams" ;
	wdt:P6874 "Douglas-Adams" ;
	wdt:P5404 "douglas_adams" ;
	wdt:P1828 "00218511589" ;
	wdt:P7154 "adams+douglas" ;
	wdt:P4198 "Acv2pnc5mj2oxjxych7atdfljky" ;
	wdt:P6972 "douglas-adams" ;
	wdt:P7071 "douglas-adams" ;
	wdt:P3479 "39a33dc4-5a81-4d67-91d6-1daecdb854e3" ;
	wdt:P7284 "douglas-adams" ;
	wdt:P6620 "douglas-adams" ;
	wdt:P4204 "Douglas-Adams" ;
	wdt:P7506 "2078791" ;
	wdt:P3341 "21019" ;
	wdt:P7803 "40761" ;
	wdt:P3388 "168761" ;
	wdt:P2087 "douglas-adams" ;
	wdt:P7369 "000263040" ;
	wdt:P6298 "16115" ;
	wdt:P2889 "9XLD-SZS" ;
	wdt:P6886 wd:Q1860 ;
	wdt:P1424 wd:Q22898962 ;
	wdt:P7902 "119033364" ;
	wdt:P8179 "ncf10168152" ;
	wdt:P3348 "202604" ;
	wdtn:P3348 <http://data.nlg.gr/resource/authority/record202604> ;
	wdt:P8189 "987007305652505171" ;
	wdt:P7699 "LNB:Mr+;=Bf" ;
	wdt:P3984 "douglasadams" ;
	wdt:P8287 "1430" ;
	wdt:P8125 "3339" ;
	wdt:P4359 "douglasadams" ;
	wdt:P8408 "DouglasAdams" ;
	wdtn:P8408 <http://kbpedia.org/kko/rc/DouglasAdams> ;
	wdt:P6262 "hitchhikers:Douglas_Adams",
		"tardis:Douglas_Adams",
		"ru.tardis:Дуглас_Адамс",
		"montypython:Douglas_Adams",
		"dirkgently:Douglas_Adams",
		"disney:Douglas_Adams",
		"muppet:Douglas_Adams",
		"getfuzzy:Douglas_Adams",
		"readyplayerone:Douglas_Adams" ;
	wdt:P4789 "U4994" ;
	wdt:P6868 "1402475181" ;
	wdt:P8849 "6391909" ;
	wdt:P8851 "26792807" ;
	wdt:P5297 "x2e9kt_zKEDI0dPr3sAfM_jyUhA" ;
	wdt:P8895 "Douglas_Adams" ;
	wdt:P7763 wd:Q73555012 ;
	wdt:P1889 wd:Q21454969 ;
	wdt:P172 wd:Q7994501 ;
	wdt:P937 wd:Q84 ;
	wdt:P742 "David Agnew" ;
	wdt:P8385 "23691" ;
	wdt:P9100 "douglas-adams" ;
	wdt:P9196 "douglas-adams" ;
	wdt:P9251 "80743" ;
	wdt:P9307 "Douglas_Adams" ;
	wdt:P1340 wd:Q17122705 ;
	wdt:P101 wd:Q3238422 ;
	wdt:P1813 "Douglas Adams"@en ;
	wdt:P166 wd:Q2687578 ;
	wdt:P9807 "153440",
		"172463" ;
	wdt:P9743 "107a9B0DKL" ;
	wdt:P1149 "PR6051.D3352" ;
	wdtn:P1149 <http://id.loc.gov/authorities/classification/PR6051.D3352> ;
	wdt:P9918 "PE00105434" ;
	wdt:P9995 "157777" ;
	wdt:P9984 "981058527710806706" ;
	wdt:P7084 wd:Q8722666 ;
	wdt:P6173 "3352" ;
	wdt:P18 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20adams%20portrait%20cropped.jpg> ;
	wdt:P7775 "Douglas_Adams" ;
	wdt:P10069 "61960" ;
	wdt:P8292 "236432" ;
	wdt:P10266 "97049" ;
	wdt:P8313 "Douglas_Adams" ;
	wdt:P10291 "82260" ;
	wdt:P3368 "215957" ;
	wdt:P10387 "75" ;
	wdt:P10553 "079822096" ;
	wdt:P9965 "40231" ;
	wdt:P10337 "A/adams-douglas" ;
	wdt:P7502 "Douglas_Adams-YNBW" ;
	wdt:P1477 "Douglas Noël Adams"@en ;
	wdt:P1559 "Douglas Adams"@en ;
	p:P31 s:Q42-F078E5B3-F9A8-480E-B7AC-D97778CBBEF9 .

s:Q42-F078E5B3-F9A8-480E-B7AC-D97778CBBEF9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P31 wd:Q5 ;
	prov:wasDerivedFrom ref:a4d108601216cffd2ff1819ccf12b483486b62e7,
		ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P21 s:q42-39F4DE4F-C277-449C-9F99-512350971B5B .

s:q42-39F4DE4F-C277-449C-9F99-512350971B5B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P21 wd:Q6581097 ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b,
		ref:a4d108601216cffd2ff1819ccf12b483486b62e7,
		ref:6f60c456c95ba618e266011ead6d50a81cfb3e76 .

wd:Q42 p:P106 s:Q42-e0f736bd-4711-c43b-9277-af1e9b2fb85f .

s:Q42-e0f736bd-4711-c43b-9277-af1e9b2fb85f a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q214917 .

wd:Q42 p:P106 s:q42-E13E619F-63EF-4B72-99D9-7A45C7C6AD34 .

s:q42-E13E619F-63EF-4B72-99D9-7A45C7C6AD34 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q28389 ;
	prov:wasDerivedFrom ref:f67142030dd221e1441a10a7438323ad44f35be8,
		ref:0fed87b3320338e0ed0587df9b43e47cfcf5b69f .

wd:Q42 p:P106 s:Q42-D6E21D67-05D6-4A0B-8458-0744FCEED13D .

s:Q42-D6E21D67-05D6-4A0B-8458-0744FCEED13D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q6625963 ;
	pq:P580 "1979-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:811f31244f158332fb4f1e13ae9f4d50 ;
	prov:wasDerivedFrom ref:ebf92afc2ec3ffcf1aec1d55f0b066d190281576 .

wd:Q42 p:P106 s:Q42-7eb8aaef-4ddf-8b87-bd02-406f91a296bd .

s:Q42-7eb8aaef-4ddf-8b87-bd02-406f91a296bd a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q4853732 .

wd:Q42 p:P106 s:q42-CBDC4890-D5A2-469C-AEBB-EFB682B891E7 .

s:q42-CBDC4890-D5A2-469C-AEBB-EFB682B891E7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q18844224 ;
	prov:wasDerivedFrom ref:2f26d70b1e8b8cb53882b83197d1859e226da12d .

wd:Q42 p:P106 s:Q42-58F0D772-9CE4-46AC-BF0D-FBBBAFA09603 .

s:Q42-58F0D772-9CE4-46AC-BF0D-FBBBAFA09603 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q245068 .

wd:Q42 p:P106 s:Q42-663C6872-388F-4024-995A-BC3C1C0E57C6 .

s:Q42-663C6872-388F-4024-995A-BC3C1C0E57C6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P106 wd:Q36180 ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P800 s:Q42-FA73986E-3D1D-4CAB-B358-424B58544620 .

s:Q42-FA73986E-3D1D-4CAB-B358-424B58544620 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P800 wd:Q25169 ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056 .

wd:Q42 p:P800 s:Q42-61ce65a9-454a-5b97-e014-496299c1c03a .

s:Q42-61ce65a9-454a-5b97-e014-496299c1c03a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P800 wd:Q20736364 .

wd:Q42 p:P800 s:Q42-1c92fbe2-4743-0b27-e4ac-16320efe7864 .

s:Q42-1c92fbe2-4743-0b27-e4ac-16320efe7864 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P800 wd:Q7758404 .

wd:Q42 p:P569 s:q42-D8404CDA-25E4-4334-AF13-A3290BCD9C0F .

s:q42-D8404CDA-25E4-4334-AF13-A3290BCD9C0F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P569 "1952-03-11T00:00:00Z"^^xsd:dateTime ;
	psv:P569 v:426df9023763f08b066f4478480f44cd ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056,
		ref:a02f3a77ddd343e6b88be25696b055f5131c3d64,
		ref:87dfb64c99ab2c706c135e0110f57d1ba58d67eb,
		ref:3bc90af5225a0b1248b3362e911577073e904e20,
		ref:b460d7e5cae668698a5dfe74198df6632fe7231d,
		ref:28af4e1131157dbbb2a5bbae189519a22e7d2b79,
		ref:fcdddce2cc4540a613b0b8c0e5d2bbd2cc5704a9,
		ref:162d5556b3c48733c6c27b4cddcb99bc86f4bf70,
		ref:bab32d323b6c92d91ff7d0c4707346012900761b,
		ref:0d9f07c561f61776c61a026473508c535af28267,
		ref:dc42b8fb4c89807fe07a74ee933d45e4ba6353a1,
		ref:7571c014841534580d357bfbc652e23c8dfe6f76,
		ref:a3feaf25fa95c4893bc1dc74ca6d884bc37c2723,
		ref:3780b8d878be9297899f30beb767bf408acbbd4a .

wd:Q42 p:P19 s:q42-3D284234-52BC-4DA3-83A3-7C39F84BA518 .

s:q42-3D284234-52BC-4DA3-83A3-7C39F84BA518 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P19 wd:Q350 ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056,
		ref:3f4d26cf841e20630c969afc0e48e5e3ef0c5a49,
		ref:1e351ee9aaac2b04ed1af6c6adcfd211f380c072,
		ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P570 s:q42-65EA9C32-B26C-469B-84FE-FC612B71D159 .

s:q42-65EA9C32-B26C-469B-84FE-FC612B71D159 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P570 "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	psv:P570 v:1c30ade7914d072877b2db404a683d7c ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056,
		ref:a02f3a77ddd343e6b88be25696b055f5131c3d64,
		ref:87dfb64c99ab2c706c135e0110f57d1ba58d67eb,
		ref:3bc90af5225a0b1248b3362e911577073e904e20,
		ref:b460d7e5cae668698a5dfe74198df6632fe7231d,
		ref:e9a6c72ac1c0c2bc336ff672ddaf89ecd17fff68,
		ref:28af4e1131157dbbb2a5bbae189519a22e7d2b79,
		ref:268aeb992f54257af5a86d9d7f0d9627214b628f,
		ref:5f3599922f5bee23969e91300f9eb461c7903a4b,
		ref:162d5556b3c48733c6c27b4cddcb99bc86f4bf70,
		ref:bab32d323b6c92d91ff7d0c4707346012900761b,
		ref:0d9f07c561f61776c61a026473508c535af28267,
		ref:dc42b8fb4c89807fe07a74ee933d45e4ba6353a1,
		ref:7571c014841534580d357bfbc652e23c8dfe6f76,
		ref:8da4cf44f0a93c09c81d3b38ef8e68f8a4c4a6dc,
		ref:a3feaf25fa95c4893bc1dc74ca6d884bc37c2723,
		ref:3780b8d878be9297899f30beb767bf408acbbd4a .

wd:Q42 p:P1196 s:Q42-2CF6704F-527F-46F7-9A89-41FC0C9DF492 .

s:Q42-2CF6704F-527F-46F7-9A89-41FC0C9DF492 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1196 wd:Q3739104 ;
	prov:wasDerivedFrom ref:792c357be1391569a970da13099242a6ad44af96 .

wd:Q42 p:P509 s:q42-E651BD8A-EA3E-478A-8558-C956EE60B29F .

s:q42-E651BD8A-EA3E-478A-8558-C956EE60B29F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P509 wd:Q12152 ;
	prov:wasDerivedFrom ref:f7d13e8497267ca24630766d281da71ad49e6cf1,
		ref:94f550fd58f53396915a7910e0bea7fac646924f,
		ref:8a954fb86baef5ac9f138ca641aea07b80570447 .

wd:Q42 p:P20 s:q42-C0DE2013-54C0-48F9-AD90-8A235248D8C7 .

s:q42-C0DE2013-54C0-48F9-AD90-8A235248D8C7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P20 wd:Q159288 ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056,
		ref:7ee048b166930e319a10ef56bc8bfa7202a31997,
		ref:de76f366926e923ef61d60535280c65570d26cc2,
		ref:027c2e3272694f0292b8ed6efa7d26e4b27fa458,
		ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P119 s:q42-881F40DC-0AFE-4FEB-B882-79600D234273 .

s:q42-881F40DC-0AFE-4FEB-B882-79600D234273 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P119 wd:Q533697 ;
	pq:P625 "Point(-0.14544444444444 51.566527777778)"^^geo:wktLiteral ;
	pqv:P625 v:12b3879e659a02b6b54b45eb5d03fe47 ;
	prov:wasDerivedFrom ref:e4f9e55d169fadcbf86b00425f1cce94ce788679,
		ref:e71a7903858496c67eea189a7084d5559f788edb .

wd:Q42 p:P1442 s:Q42-db1ba2ba-47b9-3650-e6c4-db683abf788c .

s:Q42-db1ba2ba-47b9-3650-e6c4-db683abf788c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:PreferredRank ;
	ps:P1442 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%27%20gravestone.jpg> ;
	pq:P585 "2008-10-24T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:670d91481c1e30640509865826308a7f ;
	pq:P2096 "Douglas Adams' gravestone"@en,
		"Grabstein von Douglas Adams"@de,
		"Douglas Adams'ın mezar taşı"@tr,
		"Batu nisan Douglas Adams"@ms,
		"باتو نيسن دݢلس ايدمﺯ"@ms-arab,
		"náhrobek Douglase Adamse"@cs,
		"道格拉斯·亞當斯的墓碑"@zh-hant,
		"道格拉斯·亚当斯的墓碑"@zh-hans .

wd:Q42 p:P1015 s:Q42-6583fdb7-4ffa-9fe1-4288-1a1cbb2950d0 .

s:Q42-6583fdb7-4ffa-9fe1-4288-1a1cbb2950d0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1015 "90196888" ;
	psn:P1015 <https://livedata.bibsys.no/authority/90196888> .

wd:Q42 p:P735 s:Q42-1d7d0ea9-412f-8b5b-ba8d-405ab9ecf026 .

s:Q42-1d7d0ea9-412f-8b5b-ba8d-405ab9ecf026 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:PreferredRank ;
	ps:P735 wd:Q463035 ;
	pq:P1545 "1" ;
	pq:P3831 wd:Q3409033 ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P735 s:Q42-1e106952-4b58-6067-c831-8593ce3d70f5 .

s:Q42-1e106952-4b58-6067-c831-8593ce3d70f5 a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P735 wd:Q19688263 ;
	pq:P1545 "2" ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P734 s:Q42-24df999a-4629-c679-e1f0-199bcefabbf3 .

s:Q42-24df999a-4629-c679-e1f0-199bcefabbf3 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P734 wd:Q351735 ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P27 s:q42-DE2A0C89-6199-44D0-B727-D7A4BE031A2B .

s:q42-DE2A0C89-6199-44D0-B727-D7A4BE031A2B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P27 wd:Q145 ;
	prov:wasDerivedFrom ref:a4d108601216cffd2ff1819ccf12b483486b62e7,
		ref:6f60c456c95ba618e266011ead6d50a81cfb3e76 .

wd:Q42 p:P551 s:Q42-E88EA363-419C-4FEA-BC63-F32669255382 .

s:Q42-E88EA363-419C-4FEA-BC63-F32669255382 a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P551 wd:Q159288 ;
	pq:P582 "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	pqv:P582 v:1c30ade7914d072877b2db404a683d7c ;
	prov:wasDerivedFrom ref:fa278ebfc458360e5aed63d5058cca83c46134f1 .

wd:Q42 p:P551 s:Q42-9D3B2F23-36F4-4212-983B-DC15D47FC01E .

s:Q42-9D3B2F23-36F4-4212-983B-DC15D47FC01E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:PreferredRank ;
	ps:P551 wd:Q84 .

wd:Q42 p:P551 s:Q42-21492F88-0043-439D-B733-C7211D2283F7 .

s:Q42-21492F88-0043-439D-B733-C7211D2283F7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:PreferredRank ;
	ps:P551 wd:Q909993 ;
	pq:P580 "1957-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:3ce9f606decac48214dd1c61f4d5e37d .

wd:Q42 p:P103 s:Q42-b7526300-4ac5-a529-3a91-c8a0120673be .

s:Q42-b7526300-4ac5-a529-3a91-c8a0120673be a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P103 wd:Q1860 .

wd:Q42 p:P1368 s:Q42-11725e9f-4f81-e0fd-b00a-b885fe7a75ac .

s:Q42-11725e9f-4f81-e0fd-b00a-b885fe7a75ac a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1368 "000057405" .

wd:Q42 p:P244 s:q42-2D472379-EC67-4C71-9700-0F9D551BF5E6 .

s:q42-2D472379-EC67-4C71-9700-0F9D551BF5E6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P244 "n80076765" ;
	psn:P244 <http://id.loc.gov/authorities/names/n80076765> ;
	pq:P1810 "Adams, Douglas, 1952-2001" ;
	pq:P4970 "אדאמס, דאגלאס, 1952-2001-",
		"亞當斯, 1952-2001" .

wd:Q42 p:P947 s:Q42-cf5f61ec-440d-60d4-7847-e95f75171f2f .

s:Q42-cf5f61ec-440d-60d4-7847-e95f75171f2f a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P947 "000002833" .

wd:Q42 p:P214 s:q42-488251B2-6732-4D49-85B0-6101803C97AB .

s:q42-488251B2-6732-4D49-85B0-6101803C97AB a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P214 "113230702" ;
	psn:P214 <http://viaf.org/viaf/113230702> ;
	prov:wasDerivedFrom ref:14d2400e3b1d36332748dc330276f099eeaa8800 .

wd:Q42 p:P345 s:q42-231549F5-0296-4D87-993D-6CBE3F24C0D2 .

s:q42-231549F5-0296-4D87-993D-6CBE3F24C0D2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P345 "nm0010930" .

wd:Q42 p:P373 s:q42-7EC4631F-FB22-4768-9B75-61875CD6C854 .

s:q42-7EC4631F-FB22-4768-9B75-61875CD6C854 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P373 "Douglas Adams" .

wd:Q42 p:P349 s:q42-31B1BC2A-D09F-4151-AD2B-5CEA229B9058 .

s:q42-31B1BC2A-D09F-4151-AD2B-5CEA229B9058 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P349 "00430962" ;
	psn:P349 <http://id.ndl.go.jp/auth/ndlna/00430962> .

wd:Q42 p:P434 s:q42-fc61f952-4071-7cc1-c20a-dc7a90ad6515 .

s:q42-fc61f952-4071-7cc1-c20a-dc7a90ad6515 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P434 "e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4" ;
	psn:P434 <http://musicbrainz.org/artist/e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4> .

wd:Q42 p:P268 s:q42-BB4B67FE-FECA-4469-9DEE-3E8F03AC9F1D .

s:q42-BB4B67FE-FECA-4469-9DEE-3E8F03AC9F1D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P268 "11888092r" ;
	psn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	prov:wasDerivedFrom ref:d4bd87b862b12d99d26e86472d44f26858dee639 .

wd:Q42 p:P227 s:q42-8AA8CCC1-86CE-4C66-88FC-267621A81EA0 .

s:q42-8AA8CCC1-86CE-4C66-88FC-267621A81EA0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P227 "119033364" ;
	psn:P227 <https://d-nb.info/gnd/119033364> ;
	prov:wasDerivedFrom ref:14d2400e3b1d36332748dc330276f099eeaa8800 .

wd:Q42 p:P535 s:q42-0DD4F039-6CDC-40C9-871B-63CDE4A47032 .

s:q42-0DD4F039-6CDC-40C9-871B-63CDE4A47032 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P535 "22814" ;
	prov:wasDerivedFrom ref:8d3f0e4d193c2c8dd2b81d935dec6d736099af35 .

wd:Q42 p:P22 s:q42-9ac7fb72-4402-8d72-f588-a170ca5e715c .

s:q42-9ac7fb72-4402-8d72-f588-a170ca5e715c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P22 wd:Q14623675 ;
	prov:wasDerivedFrom ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec .

wd:Q42 p:P25 s:q42-cf4cccbe-470e-e627-86a3-70ef115f601c .

s:q42-cf4cccbe-470e-e627-86a3-70ef115f601c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P25 wd:Q14623678 ;
	prov:wasDerivedFrom ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec .

wd:Q42 p:P40 s:q42-70b600fa-4c0a-b3e6-9e19-1486e71c99fb .

s:q42-70b600fa-4c0a-b3e6-9e19-1486e71c99fb a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P40 wd:Q14623683 ;
	prov:wasDerivedFrom ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec .

wd:Q42 p:P906 s:Q42-D92DF8AE-786C-4C3E-8A33-BABD8CB06D31 .

s:Q42-D92DF8AE-786C-4C3E-8A33-BABD8CB06D31 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P906 "230807" ;
	psn:P906 <http://libris.kb.se/resource/auth/230807> .

wd:Q42 p:P1006 s:Q42-B7643D02-6EF0-4932-A36A-3A2D4DA3F578 .

s:Q42-B7643D02-6EF0-4932-A36A-3A2D4DA3F578 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1006 "068744307" ;
	psn:P1006 <http://data.bibliotheken.nl/id/thes/p068744307> ;
	pq:P1810 "Adams, Douglas (1952-2001)" .

wd:Q42 p:P1006 s:Q42-8FDFE037-E24A-4D8B-AA78-37AC69650FD9 .

s:Q42-8FDFE037-E24A-4D8B-AA78-37AC69650FD9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1006 "339433876" ;
	psn:P1006 <http://data.bibliotheken.nl/id/thes/p339433876> ;
	pq:P1810 "Adams, Douglas (1952-2001)" ;
	prov:wasDerivedFrom ref:63309730314f4c20bf6b1008fe8ffd2b155272b3 .

wd:Q42 p:P949 s:Q42-2D50AE02-2BD8-4F82-9DFD-B3166DEFDEC1 .

s:Q42-2D50AE02-2BD8-4F82-9DFD-B3166DEFDEC1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P949 "000163846" .

wd:Q42 p:P646 s:Q42-48D9C731-BDA8-45D6-B593-437CD10A51B4 .

s:Q42-48D9C731-BDA8-45D6-B593-437CD10A51B4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P646 "/m/0282x" ;
	psn:P646 <http://g.co/kg/m/0282x> ;
	prov:wasDerivedFrom ref:2b00cb481cddcac7623114367489b5c194901c4a .

wd:Q42 p:P69 s:q42-0E9C4724-C954-4698-84A7-5CE0D296A6F2 .

s:q42-0E9C4724-C954-4698-84A7-5CE0D296A6F2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P69 wd:Q691283 ;
	pq:P582 "1974-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P582 v:92a2dadeb517309aab503fe32eb4cc72 ;
	pq:P812 wd:Q186579 ;
	pq:P512 wd:Q1765120 ;
	pq:P580 "1971-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:cf5d396bdc1074d11438fc47ab8bcf40 ;
	prov:wasDerivedFrom ref:355b56329b78db22be549dec34f2570ca61ca056,
		ref:9177d75c6061e9e1ab149c0aa01bee5a90e07415 .

wd:Q42 p:P69 s:Q42-32490F12-D9B5-498A-91A8-839F9149F600 .

s:Q42-32490F12-D9B5-498A-91A8-839F9149F600 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P69 wd:Q4961791 ;
	pq:P582 "1970-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P582 v:9a581f623d181b3e8160146d1a1c062c ;
	pq:P580 "1959-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:1f2f39b788827a68ca51882be5e66e8f ;
	prov:wasDerivedFrom ref:04faceee0261403ec1371a48835b38dcacd0403d .

wd:Q42 p:P1273 s:Q42-4A2873C0-D848-4F3D-8066-38204E50414C .

s:Q42-4A2873C0-D848-4F3D-8066-38204E50414C a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1273 "a10667040" ;
	prov:wasDerivedFrom ref:5bf8f7ddb6bb0daa4341120b6ca0b06898492ebc .

wd:Q42 p:P108 s:Q42-853B16C8-1AB3-489A-831E-AEAD7E94AB87 .

s:Q42-853B16C8-1AB3-489A-831E-AEAD7E94AB87 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P108 wd:Q9531 ;
	prov:wasDerivedFrom ref:ebf92afc2ec3ffcf1aec1d55f0b066d190281576 .

wd:Q42 p:P108 s:Q42-1d55f34a-4cfd-c914-4057-b6b52bf29b8e .

s:Q42-1d55f34a-4cfd-c914-4057-b6b52bf29b8e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P108 wd:Q3520623 ;
	pq:P580 "1996-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:d49b98a030ea836c922381a07d3a55a5 ;
	prov:wasDerivedFrom ref:ebf92afc2ec3ffcf1aec1d55f0b066d190281576 .

wd:Q42 p:P998 s:Q42-BE724F6B-6981-4DE9-B90C-338768A4BFC4 .

s:Q42-BE724F6B-6981-4DE9-B90C-338768A4BFC4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:PreferredRank ;
	ps:P998 "Arts/Literature/Authors/A/Adams,_Douglas/" ;
	pq:P407 wd:Q1860 .

wd:Q42 p:P998 s:Q42-5776B538-2441-4B9E-9C39-4E6289396763 .

s:Q42-5776B538-2441-4B9E-9C39-4E6289396763 a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P998 "World/Dansk/Kultur/Litteratur/Forfattere/A/Adams,_Douglas/" ;
	pq:P407 wd:Q9035 .

wd:Q42 p:P998 s:Q42-B60CF952-9C65-4875-A4BA-6B8516C81E99 .

s:Q42-B60CF952-9C65-4875-A4BA-6B8516C81E99 a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P998 "World/Français/Arts/Littérature/Genres/Science-fiction_et_fantastique/Auteurs/Adams,_Douglas/" ;
	pq:P407 wd:Q150 .

wd:Q42 p:P998 s:Q42-A0B48E74-C934-42B9-A583-FB3EAE4BC9BA .

s:Q42-A0B48E74-C934-42B9-A583-FB3EAE4BC9BA a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P998 "World/Deutsch/Kultur/Literatur/Autoren_und_Autorinnen/A/Adams,_Douglas/" ;
	pq:P407 wd:Q188 .

wd:Q42 p:P998 s:Q42-F2632AC4-6F24-49E4-9E4E-B008F26BA8CE .

s:Q42-F2632AC4-6F24-49E4-9E4E-B008F26BA8CE a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P998 "World/Italiano/Arte/Letteratura/Autori/A/Adams,_Douglas/" ;
	pq:P407 wd:Q652 .

wd:Q42 p:P998 s:Q42-84B82B5A-8F33-4229-B988-BF960E676875 .

s:Q42-84B82B5A-8F33-4229-B988-BF960E676875 a wikibase:Statement ;
	wikibase:rank wikibase:NormalRank ;
	ps:P998 "World/Svenska/Kultur/Litteratur/Genre/Science_fiction_och_fantasy/Författare/Adams,_Douglas/" ;
	pq:P407 wd:Q9027 .

wd:Q42 p:P1233 s:Q42-9F55FA72-F9E5-41E4-A771-041EB1D59C28 .

s:Q42-9F55FA72-F9E5-41E4-A771-041EB1D59C28 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1233 "122" .

wd:Q42 p:P1284 s:Q42-2EE16C9C-B74B-4322-9542-4A132555B363 .

s:Q42-2EE16C9C-B74B-4322-9542-4A132555B363 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1284 "00000020676" .

wd:Q42 p:P866 s:Q42-A29644ED-0377-4F88-8BA6-FAAB7DE8C7BA .

s:Q42-A29644ED-0377-4F88-8BA6-FAAB7DE8C7BA a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P866 "douglas-adams" .

wd:Q42 p:P1695 s:Q42-9B5EED2E-C3F5-4634-8B85-4D4CC6F15C93 .

s:Q42-9B5EED2E-C3F5-4634-8B85-4D4CC6F15C93 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1695 "A11573065" ;
	prov:wasDerivedFrom ref:26c14416670af4da8614d9db92859f07401e3b88 .

wd:Q42 p:P1816 s:Q42-A70EF87C-33F4-4366-B0A7-000C5A3A43E5 .

s:Q42-A70EF87C-33F4-4366-B0A7-000C5A3A43E5 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1816 "mp60152" .

wd:Q42 p:P1263 s:Q42-9B26C69E-7B9E-43EB-9B20-AD1305D1EE6B .

s:Q42-9B26C69E-7B9E-43EB-9B20-AD1305D1EE6B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1263 "731/000023662" .

wd:Q42 p:P271 s:Q42-f69cd1df-4655-d1fa-5978-e3454415e57e .

s:Q42-f69cd1df-4655-d1fa-5978-e3454415e57e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P271 "DA07517784" ;
	psn:P271 <https://ci.nii.ac.jp/author/DA07517784#entity> .

wd:Q42 p:P856 s:Q42-D32EFF42-C5E2-482A-AE97-2159D6A99524 .

s:Q42-D32EFF42-C5E2-482A-AE97-2159D6A99524 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P856 <https://douglasadams.com/> ;
	pq:P407 wd:Q1860 .

wd:Q42 p:P1411 s:Q42-1B3C484C-643E-45D0-B01C-F6DAD3D1F88E .

s:Q42-1B3C484C-643E-45D0-B01C-F6DAD3D1F88E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1411 wd:Q3414212 ;
	pq:P1686 wd:Q3521267 ;
	pq:P585 "1979-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:811f31244f158332fb4f1e13ae9f4d50 ;
	prov:wasDerivedFrom ref:327355ae07a14af7f684a612af7d7452ac62bb63 .

wd:Q42 p:P1411 s:Q42-285E0C13-9674-4131-9556-51B316A57AEE .

s:Q42-285E0C13-9674-4131-9556-51B316A57AEE a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1411 wd:Q2576795 ;
	pq:P585 "1983-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:f5628a29ba10551697cdc79d94741d01 ;
	pq:P1686 wd:Q721 .

wd:Q42 p:P1953 s:Q42-6C466225-DCB1-47B9-B868-C285F016E216 .

s:Q42-6C466225-DCB1-47B9-B868-C285F016E216 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1953 "134923" .

wd:Q42 p:P648 s:Q42-0BC410B8-8A0F-4658-90B0-BB2AE1D6AA3F .

s:Q42-0BC410B8-8A0F-4658-90B0-BB2AE1D6AA3F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P648 "OL272947A" ;
	psn:P648 <http://openlibrary.org/works/OL272947A> .

wd:Q42 p:P1258 s:Q42-4bc2af98-4182-3b11-0df3-80aac8e24081 .

s:Q42-4bc2af98-4182-3b11-0df3-80aac8e24081 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1258 "celebrity/douglas_adams" .

wd:Q42 p:P2191 s:Q42-2DB4179B-D385-495D-B248-9D0A53041DD4 .

s:Q42-2DB4179B-D385-495D-B248-9D0A53041DD4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2191 "10014" .

wd:Q42 p:P1266 s:Q42-788bd2c1-46a0-9898-6410-5339ecf90a8b .

s:Q42-788bd2c1-46a0-9898-6410-5339ecf90a8b a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1266 "97049" .

wd:Q42 p:P2019 s:Q42-b0322bc3-497a-8ef4-8eed-e4927b805d87 .

s:Q42-b0322bc3-497a-8ef4-8eed-e4927b805d87 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2019 "p279442" .

wd:Q42 p:P2188 s:Q42-5215183d-42ec-a3e5-1745-0abd519d026a .

s:Q42-5215183d-42ec-a3e5-1745-0abd519d026a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2188 "45993" .

wd:Q42 p:P2168 s:Q42-77b4aae6-473c-f860-1918-9ca573cdfb2e .

s:Q42-77b4aae6-473c-f860-1918-9ca573cdfb2e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2168 "271209" .

wd:Q42 p:P1315 s:Q42-809C95C5-ED69-432B-91D8-FF7C8C9965A2 .

s:Q42-809C95C5-ED69-432B-91D8-FF7C8C9965A2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1315 "847711" .

wd:Q42 p:P2163 s:Q42-7424C174-D7A8-4D60-89E3-416156EAC76D .

s:Q42-7424C174-D7A8-4D60-89E3-416156EAC76D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2163 "56544" ;
	psn:P2163 <http://id.worldcat.org/fast/56544> .

wd:Q42 p:P2163 s:Q42-2B5CB441-0DA8-4A5E-AB23-3D54C0ACE620 .

s:Q42-2B5CB441-0DA8-4A5E-AB23-3D54C0ACE620 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2163 "1775523" ;
	psn:P2163 <http://id.worldcat.org/fast/1775523> .

wd:Q42 p:P1417 s:Q42-2B2DC742-3BC1-4DAA-BECF-C81A33453B57 .

s:Q42-2B2DC742-3BC1-4DAA-BECF-C81A33453B57 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1417 "biography/Douglas-Adams" .

wd:Q42 p:P2611 s:Q42-3169835D-BBAB-48C0-B197-7428BDBAC28E .

s:Q42-3169835D-BBAB-48C0-B197-7428BDBAC28E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2611 "douglas_adams" .

wd:Q42 p:P2435 s:Q42-daf51782-49c8-1e46-7738-e923dba42cb0 .

s:Q42-daf51782-49c8-1e46-7738-e923dba42cb0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2435 "208947" .

wd:Q42 p:P2604 s:Q42-ca83a88a-470c-b93a-2393-35a1de0a9c60 .

s:Q42-ca83a88a-470c-b93a-2393-35a1de0a9c60 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2604 "246164" .

wd:Q42 p:P2387 s:Q42-29c1b057-497d-7d15-864e-3d889a76c750 .

s:Q42-29c1b057-497d-7d15-864e-3d889a76c750 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2387 "1289170" .

wd:Q42 p:P2626 s:Q42-5a41f776-4135-80b1-e3fe-43156047ecb8 .

s:Q42-5a41f776-4135-80b1-e3fe-43156047ecb8 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2626 "159696" .

wd:Q42 p:P2605 s:Q42-7398157a-409e-7d35-7d89-7351426cb36c .

s:Q42-7398157a-409e-7d35-7d89-7351426cb36c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2605 "39534" .

wd:Q42 p:P2963 s:Q42-eb0d02d3-4b1d-0e19-cb86-78a0a5439144 .

s:Q42-eb0d02d3-4b1d-0e19-cb86-78a0a5439144 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2963 "4" ;
	pq:P585 "2020-09-28T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:a503dea72c47d232fc0dbb53d5a68175 ;
	pq:P1810 "Douglas Adams" ;
	pq:P3744 "+19460"^^xsd:decimal ;
	pqv:P3744 v:4e3244ccc4d14053f6649e98562f6f0a .

wd:Q42 p:P910 s:Q42-3B111597-2138-4517-85AD-FD0056D3DEB0 .

s:Q42-3B111597-2138-4517-85AD-FD0056D3DEB0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P910 wd:Q8935487 .

wd:Q42 p:P3106 s:Q42-d8ebbd62-4229-1e3b-6494-ca96246286e3 .

s:Q42-d8ebbd62-4229-1e3b-6494-ca96246286e3 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3106 "books/douglasadams" .

wd:Q42 p:P1303 s:Q42-67547850-C3A0-4C99-AFE4-3C18956CB19A .

s:Q42-67547850-C3A0-4C99-AFE4-3C18956CB19A a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1303 wd:Q6607 ;
	prov:wasDerivedFrom ref:94b3c14bb9d4fe6cbe10c96a169b5c54cccc6b36 .

wd:Q42 p:P2469 s:Q42-32DACDAA-0C29-489B-B587-7CB5D374EEE5 .

s:Q42-32DACDAA-0C29-489B-B587-7CB5D374EEE5 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2469 "238p" .

wd:Q42 p:P3373 s:Q42-A3B1288B-67A9-4491-A3AA-20F881C292B9 .

s:Q42-A3B1288B-67A9-4491-A3AA-20F881C292B9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3373 wd:Q14623673 ;
	pq:P1039 wd:Q10943095 ;
	prov:wasDerivedFrom ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec .

wd:Q42 p:P3417 s:Q42-edea25d2-4736-b539-ec8d-d3f82e1f7100 .

s:Q42-edea25d2-4736-b539-ec8d-d3f82e1f7100 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3417 "Douglas-Adams-4" .

wd:Q42 p:P3430 s:Q42-76AD35E4-F222-418A-A3AC-CF6472790811 .

s:Q42-76AD35E4-F222-418A-A3AC-CF6472790811 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3430 "w65h7md1" .

wd:Q42 p:P1617 s:Q42-545d5c9a-4bde-ee8b-089f-1a11ba699301 .

s:Q42-545d5c9a-4bde-ee8b-089f-1a11ba699301 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1617 "aa075cb6-75bf-46d8-b0bf-9751d6c04c93" ;
	psn:P1617 <http://www.bbc.co.uk/things/aa075cb6-75bf-46d8-b0bf-9751d6c04c93#id> .

wd:Q42 p:P2048 s:Q42-b0bf3caf-481c-356b-03a2-e61174b8e6da .

s:Q42-b0bf3caf-481c-356b-03a2-e61174b8e6da a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2048 "+1.96"^^xsd:decimal ;
	psv:P2048 v:a75316bb9a036450071a6af49f7907ca ;
	psn:P2048 v:a75316bb9a036450071a6af49f7907ca ;
	prov:wasDerivedFrom ref:ea084a413b5055da7bfc68fbd54d389080918b23 .

wd:Q42 p:P3222 s:Q42-D41D834D-0BD4-411C-A671-2B7BE6053EB5 .

s:Q42-D41D834D-0BD4-411C-A671-2B7BE6053EB5 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3222 "douglas-adams" .

wd:Q42 p:P109 s:Q42-e5b8e5d5-4243-43e3-3476-c8f1572f14fa .

s:Q42-e5b8e5d5-4243-43e3-3476-c8f1572f14fa a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P109 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%20signature.svg> ;
	pq:P2096 "Douglas Adams'ın imzası"@tr .

wd:Q42 p:P4193 s:Q42-769463b3-4b83-cf93-d5ef-0b4e98e1cf33 .

s:Q42-769463b3-4b83-cf93-d5ef-0b4e98e1cf33 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4193 "Douglas_Noel_Adams_(1952-2001)" .

wd:Q42 p:P136 s:Q42-0ff4aeeb-4fdb-56cf-5fe9-916e1bbbbc73 .

s:Q42-0ff4aeeb-4fdb-56cf-5fe9-916e1bbbbc73 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P136 wd:Q24925 ;
	prov:wasDerivedFrom ref:eb03fd03eef53befd07c43d5dfeea4047fb9a72e .

wd:Q42 p:P136 s:Q42-2ac90f53-4dc5-2ecc-d595-70f7c43f2fda .

s:Q42-2ac90f53-4dc5-2ecc-d595-70f7c43f2fda a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P136 wd:Q40831 ;
	prov:wasDerivedFrom ref:6dcb62714f5201f4ea22c331a6e32e817916981f,
		ref:bab32d323b6c92d91ff7d0c4707346012900761b .

wd:Q42 p:P136 s:Q42-43f046bb-47a4-00aa-5174-aa7ca343396b .

s:Q42-43f046bb-47a4-00aa-5174-aa7ca343396b a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P136 wd:Q128758 ;
	prov:wasDerivedFrom ref:970f20bd8dc49db5bbe0de9d4c7b3b555c134e59 .

wd:Q42 p:P4431 s:Q42-520b13d1-47df-2d1c-f56d-7106f383a3b6 .

s:Q42-520b13d1-47df-2d1c-f56d-7106f383a3b6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4431 "douglas-adams-61st-birthday" ;
	pq:P585 "2013-03-11T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:f3d1202902d72c599bb60ae3067d62cc ;
	prov:wasDerivedFrom ref:c8c63046ea013957f2ae353e4181e82d2829d3bb .

wd:Q42 p:P2607 s:Q42-52EA4A30-C798-4ED3-AEA0-A2FEB4B0FB95 .

s:Q42-52EA4A30-C798-4ED3-AEA0-A2FEB4B0FB95 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2607 "307812da-da11-4ee5-a906-31e5ce9694bb" .

wd:Q42 p:P1415 s:Q42-E10A1B54-9D65-4334-8F2C-58B21B49D565 .

s:Q42-E10A1B54-9D65-4334-8F2C-58B21B49D565 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1415 "75853" .

wd:Q42 p:P2949 s:Q42-A4E52439-57DF-4C31-902C-E995D78488FA .

s:Q42-A4E52439-57DF-4C31-902C-E995D78488FA a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2949 "Adams-32825" ;
	pq:P1810 "Douglas Noel Adams (11 Mar 1952 - 11 May 2001)" .

wd:Q42 p:P3154 s:Q42-916F4133-B433-4FA1-B888-F86DA132B1DE .

s:Q42-916F4133-B433-4FA1-B888-F86DA132B1DE a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3154 "adamsdou" .

wd:Q42 p:P3630 s:Q42-15011D96-BB02-4B8F-9728-8FF88A3A938D .

s:Q42-15011D96-BB02-4B8F-9728-8FF88A3A938D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3630 "2627" .

wd:Q42 p:P1280 s:Q42-0DFBA3E4-F98E-4ED5-AE30-CE8556429229 .

s:Q42-0DFBA3E4-F98E-4ED5-AE30-CE8556429229 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1280 "6050147" .

wd:Q42 p:P2734 s:Q42-6646C637-00DF-47E1-A845-CFCAB27A559D .

s:Q42-6646C637-00DF-47E1-A845-CFCAB27A559D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2734 "AdamsDouglas" .

wd:Q42 p:P26 s:q42-b88670f8-456b-3ecb-cf3d-2bca2cf7371e .

s:q42-b88670f8-456b-3ecb-cf3d-2bca2cf7371e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P26 wd:Q14623681 ;
	pq:P580 "1991-11-25T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:c8ae0d38443d4671d3f893d7000a859e ;
	pq:P582 "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	pqv:P582 v:1c30ade7914d072877b2db404a683d7c ;
	pq:P1534 wd:Q99521170 ;
	prov:wasDerivedFrom ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec .

wd:Q42 p:P5019 s:Q42-d12f42dc-456c-4c5f-19ee-b4dda178e50f .

s:Q42-d12f42dc-456c-4c5f-19ee-b4dda178e50f a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5019 "adams-douglas-noel" .

wd:Q42 p:P463 s:Q42-45E1E647-4941-42E1-8428-A6F6C848276A .

s:Q42-45E1E647-4941-42E1-8428-A6F6C848276A a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P463 wd:Q857679 ;
	prov:wasDerivedFrom ref:d3a1bf3d15f15231160c53372322c3beffdc741d .

wd:Q42 p:P463 s:Q42-05cafd4a-4fb1-13ff-7f11-2e72b85ae07a .

s:Q42-05cafd4a-4fb1-13ff-7f11-2e72b85ae07a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P463 wd:Q5610831 ;
	prov:wasDerivedFrom ref:ebf92afc2ec3ffcf1aec1d55f0b066d190281576 .

wd:Q42 p:P2600 s:Q42-101c1875-4027-37aa-3a72-c202e42276ab .

s:Q42-101c1875-4027-37aa-3a72-c202e42276ab a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2600 "6000000050650155828" .

wd:Q42 p:P5337 s:Q42-966e692e-4516-de45-356c-7e098273a79a .

s:Q42-966e692e-4516-de45-356c-7e098273a79a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5337 "CAAqJQgKIh9DQkFTRVFvSUwyMHZNREk0TW5nU0JXVnVMVWRDS0FBUAE" .

wd:Q42 p:P5357 s:Q42-63B203C0-A6B4-40A7-9942-09F5AA7DE92F .

s:Q42-63B203C0-A6B4-40A7-9942-09F5AA7DE92F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5357 "adams_douglas" ;
	prov:wasDerivedFrom ref:154031fdff9fbadaa5f15c8b7e4ae46ca13db45a .

wd:Q42 p:P5361 s:Q42-E5FCDDD6-0021-4543-8815-ACC8C2877C9F .

s:Q42-E5FCDDD6-0021-4543-8815-ACC8C2877C9F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5361 "AdamsDouglas1952-2001" ;
	psn:P5361 <https://bnb.data.bl.uk/doc/person/AdamsDouglas1952-2001> ;
	prov:wasDerivedFrom ref:133415593c921f4a8641abd7123e2c4d451cca0c .

wd:Q42 p:P5365 s:Q42-7894D1B9-2FB1-4F0D-BC65-D0736B68C179 .

s:Q42-7894D1B9-2FB1-4F0D-BC65-D0736B68C179 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5365 "42" .

wd:Q42 p:P5408 s:Q42-37B09D07-EE5D-4944-80B0-27BB6D41D87F .

s:Q42-37B09D07-EE5D-4944-80B0-27BB6D41D87F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5408 "a/douglas-adams" .

wd:Q42 p:P5570 s:Q42-4F5DCE7C-3839-4642-AB6D-72C14C18D768 .

s:Q42-4F5DCE7C-3839-4642-AB6D-72C14C18D768 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5570 "143" .

wd:Q42 p:P1580 s:Q42-50941274-91AC-438C-9B7C-F0105F9CD20F .

s:Q42-50941274-91AC-438C-9B7C-F0105F9CD20F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1580 "a1221374" .

wd:Q42 p:P5587 s:Q42-21178ECC-11CC-4CD3-BBD4-E35EB788B26E .

s:Q42-21178ECC-11CC-4CD3-BBD4-E35EB788B26E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5587 "1zcfh30k0gr4zxt" ;
	psn:P5587 <https://libris.kb.se/1zcfh30k0gr4zxt> ;
	prov:wasDerivedFrom ref:090947d10eb71b36c636524a7efcdbb82d2f7a00 .

wd:Q42 p:P3365 s:Q42-68E451D5-0EA5-4F70-8985-A2613B7F0729 .

s:Q42-68E451D5-0EA5-4F70-8985-A2613B7F0729 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3365 "douglas-noel-adams" ;
	pq:P1810 "Adams, Douglas Noël" .

wd:Q42 p:P269 s:Q42-26D2B7C9-84FD-4E96-A6EC-42959F8D7048 .

s:Q42-26D2B7C9-84FD-4E96-A6EC-42959F8D7048 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P269 "026677636" ;
	psn:P269 <http://www.idref.fr/026677636/id> ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P213 s:Q42-25738B35-D07D-4C28-8C74-05FBA1B1E6C7 .

s:Q42-25738B35-D07D-4C28-8C74-05FBA1B1E6C7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P213 "0000 0000 8045 6315" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P691 s:Q42-237DB309-0D43-42EB-999D-65BD0A833311 .

s:Q42-237DB309-0D43-42EB-999D-65BD0A833311 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P691 "jn19990000029" ;
	pq:P1810 "Adams, Douglas" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P950 s:Q42-A813E628-398C-40C6-B082-8C4FCE4DF3FF .

s:Q42-A813E628-398C-40C6-B082-8C4FCE4DF3FF a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P950 "XX1149955" ;
	psn:P950 <http://datos.bne.es/resource/XX1149955> ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P1670 s:Q42-53AB6C05-B46A-42E2-AF19-6E47B60987E9 .

s:Q42-53AB6C05-B46A-42E2-AF19-6E47B60987E9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1670 "0052C2705" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P409 s:Q42-1167E25E-4B31-44B2-A08E-8178E52536AD .

s:Q42-1167E25E-4B31-44B2-A08E-8178E52536AD a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P409 "35163268" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P396 s:Q42-63B132B2-B98C-40BA-AAA7-F855B1678CB0 .

s:Q42-63B132B2-B98C-40BA-AAA7-F855B1678CB0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P396 "RAVV034417" ;
	pq:P1810 "Adams, Douglas <1952-2001>" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P1207 s:Q42-391E9E99-4F2C-4229-91F0-8DEF0A7D901B .

s:Q42-391E9E99-4F2C-4229-91F0-8DEF0A7D901B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1207 "n94004172" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P1005 s:Q42-F7E900F6-37B8-433C-A236-32E5CF8A5E20 .

s:Q42-F7E900F6-37B8-433C-A236-32E5CF8A5E20 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1005 "68537" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P1375 s:Q42-D132DC6E-BE15-4502-BBE6-CDD6CDCED610 .

s:Q42-D132DC6E-BE15-4502-BBE6-CDD6CDCED610 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1375 "000010283" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P1412 s:Q42-d55ff2eb-44fe-dab5-4bc9-c7c765720bc1 .

s:Q42-d55ff2eb-44fe-dab5-4bc9-c7c765720bc1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1412 wd:Q1860 ;
	prov:wasDerivedFrom ref:5adc5909e87421b0f55910d4bcbd4ce599bceab5 .

wd:Q42 p:P5247 s:Q42-90691468-A3EF-4050-9813-BC6BDD6C3168 .

s:Q42-90691468-A3EF-4050-9813-BC6BDD6C3168 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5247 "3040-1126" .

wd:Q42 p:P5905 s:Q42-7F17859B-BE24-4CA0-8362-AFE1A02D71CC .

s:Q42-7F17859B-BE24-4CA0-8362-AFE1A02D71CC a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5905 "4040-45935" .

wd:Q42 p:P6839 s:Q42-024ba49c-4d11-9afa-781f-56c53f807bed .

s:Q42-024ba49c-4d11-9afa-781f-56c53f807bed a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6839 "Creator/DouglasAdams" .

wd:Q42 p:P4342 s:Q42-0273baf0-71d1-4104-a6b9-2a6580713626 .

s:Q42-0273baf0-71d1-4104-a6b9-2a6580713626 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4342 "Douglas_Adams" ;
	prov:wasDerivedFrom ref:3a8536419e5f6bc8271f5902027354fc56ff7a8b .

wd:Q42 p:P4785 s:Q42-dc9a6318-40b1-0047-ba98-d0957a7d7d8c .

s:Q42-dc9a6318-40b1-0047-ba98-d0957a7d7d8c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4785 "47671" .

wd:Q42 p:P485 s:Q42-56607576-4b1f-fe7a-b893-9622286e9479 .

s:Q42-56607576-4b1f-fe7a-b893-9622286e9479 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P485 wd:Q67074906 ;
	pq:P973 <https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams> ;
	prov:wasDerivedFrom ref:7283e4bf08c6476bff61211d3429dbb47b5bec27 .

wd:Q42 p:P7029 s:Q42-05A6E4FD-1F01-4F19-8ABF-190BA8319A04 .

s:Q42-05A6E4FD-1F01-4F19-8ABF-190BA8319A04 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7029 "770139179" ;
	pq:P1810 "Адамс, Дуглас (1952-2001)" ;
	pq:P407 wd:Q7737 .

wd:Q42 p:P7029 s:Q42-996C8555-968B-437C-B18C-E2350E014C6A .

s:Q42-996C8555-968B-437C-B18C-E2350E014C6A a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7029 "770139180" ;
	pq:P1810 "Adams, Douglas (1952-2001)" ;
	pq:P407 wd:Q1860 .

wd:Q42 p:P1343 s:Q42-FD398E71-8597-4D36-949A-D905ACD24DAC .

s:Q42-FD398E71-8597-4D36-949A-D905ACD24DAC a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1343 wd:Q67311526 ;
	pq:P2699 <https://www.obalkyknih.cz/view_auth?auth_id=jn19990000029> .

wd:Q42 p:P5034 s:Q42-4a27a89e-6e25-4ac1-ae53-88fe60763fc4 .

s:Q42-4a27a89e-6e25-4ac1-ae53-88fe60763fc4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5034 "KAC200300379" ;
	psn:P5034 <https://lod.nl.go.kr/page/KAC200300379> .

wd:Q42 p:P7433 s:Q42-67D7BFF5-F914-4780-A704-B8F9AA42F2C1 .

s:Q42-67D7BFF5-F914-4780-A704-B8F9AA42F2C1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7433 "25" ;
	prov:wasDerivedFrom ref:b2c64ac3b79264041210b0803c48d9a8ad98314d .

wd:Q42 p:P7400 s:Q42-6b518eac-487e-231c-7079-10c2640be50b .

s:Q42-6b518eac-487e-231c-7079-10c2640be50b a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7400 "adamsdouglas-1" .

wd:Q42 p:P7704 s:Q42-F953F363-3A9D-4DCC-AD34-12307E92A25B .

s:Q42-F953F363-3A9D-4DCC-AD34-12307E92A25B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7704 "agent/base/59925" ;
	psn:P7704 <http://data.europeana.eu/agent/base/59925> .

wd:Q42 p:P7859 s:Q42-ca4e6fca-42cb-889f-2c84-9ed2e6d4b4a3 .

s:Q42-ca4e6fca-42cb-889f-2c84-9ed2e6d4b4a3 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7859 "lccn-n80076765" ;
	prov:wasDerivedFrom ref:08e3e6521cbb059b15df261cf79fcefcc29a682a .

wd:Q42 p:P3762 s:Q42-808D478E-2C19-46AD-BB08-D46EF27C6964 .

s:Q42-808D478E-2C19-46AD-BB08-D46EF27C6964 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3762 "140290" .

wd:Q42 p:P3065 s:Q42-d7befac9-4a60-389b-6821-1906d4acad6c .

s:Q42-d7befac9-4a60-389b-6821-1906d4acad6c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3065 "02-A002907983" .

wd:Q42 p:P3846 s:Q42-70d25151-4617-eb5c-9fae-6250b4be38e9 .

s:Q42-70d25151-4617-eb5c-9fae-6250b4be38e9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3846 "87097968038642" .

wd:Q42 p:P7293 s:Q42-e4c35e65-4646-bc7d-2408-e84570b851d7 .

s:Q42-e4c35e65-4646-bc7d-2408-e84570b851d7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7293 "9810669145205606" .

wd:Q42 p:P7700 s:Q42-fcbe553b-4856-7ebf-2588-3e42fd422016 .

s:Q42-fcbe553b-4856-7ebf-2588-3e42fd422016 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7700 "vtls005710289" .

wd:Q42 p:P1890 s:Q42-4330e0d7-4b3d-7a01-5696-f93a0e2fcaa4 .

s:Q42-4330e0d7-4b3d-7a01-5696-f93a0e2fcaa4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1890 "000750942" .

wd:Q42 p:P4619 s:Q42-5313e948-4771-ea78-e253-c176070df512 .

s:Q42-5313e948-4771-ea78-e253-c176070df512 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4619 "000592321" .

wd:Q42 p:P6394 s:Q42-74e4f6a4-4f7a-859a-4ea1-c13d8b45f1f6 .

s:Q42-74e4f6a4-4f7a-859a-4ea1-c13d8b45f1f6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6394 "a1112474x" .

wd:Q42 p:P4839 s:Q42-bd06c277-4a19-ba01-ac45-8897cf3b1637 .

s:Q42-bd06c277-4a19-ba01-ac45-8897cf3b1637 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4839 "Entity[\"Person\", \"DouglasAdams::gh8qf\"]" .

wd:Q42 p:P2581 s:Q42-08c46dbb-40ce-ae67-b114-2e601e14f325 .

s:Q42-08c46dbb-40ce-ae67-b114-2e601e14f325 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2581 "03688580n" ;
	psn:P2581 <http://babelnet.org/rdf/s03688580n> .

wd:Q42 p:P5284 s:Q42-f764d646-4816-0a84-e111-6b471ec66320 .

s:Q42-f764d646-4816-0a84-e111-6b471ec66320 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5284 "1032346" .

wd:Q42 p:P4862 s:Q42-9f67e2fc-4471-d610-6fb1-6b0fd7dbea02 .

s:Q42-9f67e2fc-4471-d610-6fb1-6b0fd7dbea02 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4862 "B000AQ2A84" .

wd:Q42 p:P7661 s:Q42-61de1a61-487c-d2dc-fc4b-c0f94c1beec1 .

s:Q42-61de1a61-487c-d2dc-fc4b-c0f94c1beec1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7661 "74033" .

wd:Q42 p:P3913 s:Q42-7288b73e-4289-318e-e3b5-e3f7e16eab66 .

s:Q42-7288b73e-4289-318e-e3b5-e3f7e16eab66 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3913 "337" .

wd:Q42 p:P7214 s:Q42-cb65a36b-436a-4400-4f17-ee5ea0272ce4 .

s:Q42-cb65a36b-436a-4400-4f17-ee5ea0272ce4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7214 "753186" .

wd:Q42 p:P4666 s:Q42-f585133b-43e3-2f2c-38b0-a2d8395aea11 .

s:Q42-f585133b-43e3-2f2c-38b0-a2d8395aea11 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4666 "23878" .

wd:Q42 p:P7215 s:Q42-5e13100f-4b67-7e71-cd0a-3ea7a8e385fd .

s:Q42-5e13100f-4b67-7e71-cd0a-3ea7a8e385fd a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7215 "46398" .

wd:Q42 p:P5233 s:Q42-9ea6fb50-4466-a1d1-5c97-172f0ccc58c3 .

s:Q42-9ea6fb50-4466-a1d1-5c97-172f0ccc58c3 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5233 "a38" .

wd:Q42 p:P5033 s:Q42-21346823-40f6-fc02-32c3-ab4eb16444b8 .

s:Q42-21346823-40f6-fc02-32c3-ab4eb16444b8 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5033 "160192" .

wd:Q42 p:P3305 s:Q42-9af076a8-4842-3d41-354a-51e4db2d27cb .

s:Q42-9af076a8-4842-3d41-354a-51e4db2d27cb a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3305 "199918" .

wd:Q42 p:P7745 s:Q42-1812a161-4964-adb1-ce77-0d39d3e00e3d .

s:Q42-1812a161-4964-adb1-ce77-0d39d3e00e3d a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7745 "183956" .

wd:Q42 p:P6464 s:Q42-6fa04c06-4b5a-45f0-45ae-4a12d2f695c1 .

s:Q42-6fa04c06-4b5a-45f0-45ae-4a12d2f695c1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6464 "898203" .

wd:Q42 p:P7300 s:Q42-dd3a4b98-49a0-853a-05fc-cfa372831d12 .

s:Q42-dd3a4b98-49a0-853a-05fc-cfa372831d12 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7300 "59932" .

wd:Q42 p:P4657 s:Q42-a86fd81c-4561-8211-a2d8-40929a8ccf37 .

s:Q42-a86fd81c-4561-8211-a2d8-40929a8ccf37 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4657 "432740401" .

wd:Q42 p:P5534 s:Q42-4e15fd9f-4b54-5e2f-58da-81abbec17d63 .

s:Q42-4e15fd9f-4b54-5e2f-58da-81abbec17d63 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5534 "52843" .

wd:Q42 p:P4985 s:Q42-50899201-49e7-dec1-004e-12e94109e1f0 .

s:Q42-50899201-49e7-dec1-004e-12e94109e1f0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4985 "52843" ;
	prov:wasDerivedFrom ref:354bdf2193acbbe0217db68cad6365e38d8a90a3,
		ref:76f54c6cf51e45eabdb0fecfdd703679f2067447 .

wd:Q42 p:P3845 s:Q42-8d9f5195-4700-1cb0-fe1b-1b1940b02f23 .

s:Q42-8d9f5195-4700-1cb0-fe1b-1b1940b02f23 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3845 "665243" .

wd:Q42 p:P2638 s:Q42-13562de2-4ff2-a283-3077-378685600ff9 .

s:Q42-13562de2-4ff2-a283-3077-378685600ff9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2638 "people/douglas-adams" .

wd:Q42 p:P1712 s:Q42-8616ecb1-4ecb-0969-733f-76a41892c04e .

s:Q42-8616ecb1-4ecb-0969-733f-76a41892c04e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1712 "person/douglas-adams" .

wd:Q42 p:P6119 s:Q42-5515f2c8-4f03-c5c9-3d54-0917f9678e00 .

s:Q42-5515f2c8-4f03-c5c9-3d54-0917f9678e00 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6119 "douglas-adams" .

wd:Q42 p:P5340 s:Q42-b00a3a11-430e-e009-8379-dc40ab3fc3dd .

s:Q42-b00a3a11-430e-e009-8379-dc40ab3fc3dd a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5340 "278771" .

wd:Q42 p:P4438 s:Q42-daa91fc4-4012-6945-f781-8238a0c73b19 .

s:Q42-daa91fc4-4012-6945-f781-8238a0c73b19 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4438 "4ce2ba117755a" .

wd:Q42 p:P4326 s:Q42-b47f944e-409a-8c99-5191-d27a1dd1ac38 .

s:Q42-b47f944e-409a-8c99-5191-d27a1dd1ac38 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4326 "215853" .

wd:Q42 p:P4768 s:Q42-f03a5d7b-4ca7-a069-76fc-c864090ce050 .

s:Q42-f03a5d7b-4ca7-a069-76fc-c864090ce050 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4768 "212786" .

wd:Q42 p:P3142 s:Q42-ce5bc392-49b5-8efe-33c3-13ccd70e4d02 .

s:Q42-ce5bc392-49b5-8efe-33c3-13ccd70e4d02 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3142 "n0008574" .

wd:Q42 p:P3136 s:Q42-7fec5700-4920-ba9a-72b9-38eef2a5c730 .

s:Q42-7fec5700-4920-ba9a-72b9-38eef2a5c730 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3136 "2000059" .

wd:Q42 p:P4782 s:Q42-91d6d6cf-4d41-702a-ef4c-15426b35ca9c .

s:Q42-91d6d6cf-4d41-702a-ef4c-15426b35ca9c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4782 "26898" .

wd:Q42 p:P3145 s:Q42-26786e60-4358-7e6e-0707-b7dbfc33408c .

s:Q42-26786e60-4358-7e6e-0707-b7dbfc33408c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3145 "nm96558" .

wd:Q42 p:P5882 s:Q42-1BDB6765-8F25-4ABB-8005-E3FB8B742EAF .

s:Q42-1BDB6765-8F25-4ABB-8005-E3FB8B742EAF a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5882 "M00000364497" .

wd:Q42 p:P6327 s:Q42-C884751D-F028-440C-972C-8666481CDF71 .

s:Q42-C884751D-F028-440C-972C-8666481CDF71 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6327 "55720" .

wd:Q42 p:P6517 s:Q42-E6D2A634-8D60-42D0-977E-F0DB07DA62A5 .

s:Q42-E6D2A634-8D60-42D0-977E-F0DB07DA62A5 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6517 "Douglas-Adams" .

wd:Q42 p:P1728 s:Q42-4a33fe5d-4f8d-363d-c839-911cea6636e2 .

s:Q42-4a33fe5d-4f8d-363d-c839-911cea6636e2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1728 "mn0000803382" .

wd:Q42 p:P7195 s:Q42-19521d85-49ae-affd-3f36-ac2f5c14384f .

s:Q42-19521d85-49ae-affd-3f36-ac2f5c14384f a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7195 "201077" .

wd:Q42 p:P2722 s:Q42-5af95f47-47b1-353d-79ce-f283ca814f2f .

s:Q42-5af95f47-47b1-353d-79ce-f283ca814f2f a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2722 "4468812" ;
	pq:P1810 "Douglas Adams" ;
	pq:P3744 "+60"^^xsd:decimal ;
	pqv:P3744 v:3bbb57bce2998f753db444ac3162397e .

wd:Q42 p:P2373 s:Q42-14da6a63-444c-6303-d4f9-662d23f8a395 .

s:Q42-14da6a63-444c-6303-d4f9-662d23f8a395 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2373 "Douglas-adams" .

wd:Q42 p:P6351 s:Q42-54e7d5d7-4f95-7707-f3b6-be215e24afb9 .

s:Q42-54e7d5d7-4f95-7707-f3b6-be215e24afb9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6351 "41236" .

wd:Q42 p:P2850 s:Q42-d225ef98-43f4-2cc6-03dc-b8e4aba1bba3 .

s:Q42-d225ef98-43f4-2cc6-03dc-b8e4aba1bba3 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2850 "2080713" .

wd:Q42 p:P3192 s:Q42-a2b8283b-4a77-9663-4af7-569f90ffd378 .

s:Q42-a2b8283b-4a77-9663-4af7-569f90ffd378 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3192 "Douglas+Adams" .

wd:Q42 p:P6874 s:Q42-f6c5b233-463f-5e0f-f922-96cbe1427a77 .

s:Q42-f6c5b233-463f-5e0f-f922-96cbe1427a77 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6874 "Douglas-Adams" .

wd:Q42 p:P5404 s:Q42-443713af-4f6a-ff3d-04a3-90323e97afe2 .

s:Q42-443713af-4f6a-ff3d-04a3-90323e97afe2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5404 "douglas_adams" .

wd:Q42 p:P1828 s:Q42-ee526c73-46f5-69fe-fa30-159d01e6c56c .

s:Q42-ee526c73-46f5-69fe-fa30-159d01e6c56c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1828 "00218511589" ;
	pq:P1810 "ADAMS DOUGLAS" ;
	prov:wasDerivedFrom ref:56f84865a76d214a29a4de08338f89fa2e0c0f5d .

wd:Q42 p:P7154 s:Q42-ba75c7bf-45b5-bb6f-75c8-f2e7b0613537 .

s:Q42-ba75c7bf-45b5-bb6f-75c8-f2e7b0613537 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7154 "adams+douglas" .

wd:Q42 p:P4198 s:Q42-378e2eb7-4d59-05bc-b015-1c07ad70f929 .

s:Q42-378e2eb7-4d59-05bc-b015-1c07ad70f929 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4198 "Acv2pnc5mj2oxjxych7atdfljky" .

wd:Q42 p:P6972 s:Q42-21de97a8-473c-852a-bdf2-65ff6d257e8a .

s:Q42-21de97a8-473c-852a-bdf2-65ff6d257e8a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6972 "douglas-adams" .

wd:Q42 p:P7071 s:Q42-a9798bf7-4151-bb05-222e-98c713c0c293 .

s:Q42-a9798bf7-4151-bb05-222e-98c713c0c293 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7071 "douglas-adams" .

wd:Q42 p:P3479 s:Q42-7a4e6732-4220-b468-6876-ff7c4d1accff .

s:Q42-7a4e6732-4220-b468-6876-ff7c4d1accff a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3479 "39a33dc4-5a81-4d67-91d6-1daecdb854e3" .

wd:Q42 p:P7284 s:Q42-34f575cc-49d1-06de-c154-54e87c2e1654 .

s:Q42-34f575cc-49d1-06de-c154-54e87c2e1654 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7284 "douglas-adams" .

wd:Q42 p:P6620 s:Q42-6bc43986-4c0e-7f7e-6267-7ae38af05c99 .

s:Q42-6bc43986-4c0e-7f7e-6267-7ae38af05c99 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6620 "douglas-adams" .

wd:Q42 p:P4204 s:Q42-40dd2b67-4f6a-76ff-25f3-d1bd25ee6137 .

s:Q42-40dd2b67-4f6a-76ff-25f3-d1bd25ee6137 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4204 "Douglas-Adams" .

wd:Q42 p:P7506 s:Q42-e2acdf62-407f-3a2a-6c07-c6b757d1dc11 .

s:Q42-e2acdf62-407f-3a2a-6c07-c6b757d1dc11 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7506 "2078791" .

wd:Q42 p:P3341 s:Q42-7b4ecd7b-4697-151b-ed85-c5f789b7ad34 .

s:Q42-7b4ecd7b-4697-151b-ed85-c5f789b7ad34 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3341 "21019" .

wd:Q42 p:P7803 s:Q42-a54b2838-45ac-bab9-d114-40630f8df3aa .

s:Q42-a54b2838-45ac-bab9-d114-40630f8df3aa a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7803 "40761" .

wd:Q42 p:P3388 s:Q42-e4c6970b-43d5-d27f-e399-0f324f8efa44 .

s:Q42-e4c6970b-43d5-d27f-e399-0f324f8efa44 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3388 "168761" .

wd:Q42 p:P2087 s:Q42-788133bf-4c31-8a1f-cde3-3671ae66dc4a .

s:Q42-788133bf-4c31-8a1f-cde3-3671ae66dc4a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2087 "douglas-adams" .

wd:Q42 p:P7369 s:Q42-5B2391E3-31ED-4EE2-8D8C-8E38277D7C0D .

s:Q42-5B2391E3-31ED-4EE2-8D8C-8E38277D7C0D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7369 "000263040" .

wd:Q42 p:P6298 s:Q42-13d9d139-4276-3423-9a72-6ee874b530d7 .

s:Q42-13d9d139-4276-3423-9a72-6ee874b530d7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6298 "16115" .

wd:Q42 p:P2889 s:Q42-1d08f4aa-4b04-c41a-8376-da03dd29dfe7 .

s:Q42-1d08f4aa-4b04-c41a-8376-da03dd29dfe7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P2889 "9XLD-SZS" .

wd:Q42 p:P6886 s:Q42-32C860DF-F954-4142-9F11-5AFD52CB613E .

s:Q42-32C860DF-F954-4142-9F11-5AFD52CB613E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6886 wd:Q1860 .

wd:Q42 p:P1424 s:Q42-67c4ee30-4126-ec57-b870-e30643f19f99 .

s:Q42-67c4ee30-4126-ec57-b870-e30643f19f99 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1424 wd:Q22898962 .

wd:Q42 p:P7902 s:Q42-AEAC1235-AFC4-4A52-9883-8CD612CE043F .

s:Q42-AEAC1235-AFC4-4A52-9883-8CD612CE043F a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7902 "119033364" .

wd:Q42 p:P8179 s:q42-c3488687-4e07-e8c2-48f7-deb6b50f48ea .

s:q42-c3488687-4e07-e8c2-48f7-deb6b50f48ea a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8179 "ncf10168152" ;
	prov:wasDerivedFrom ref:9a136912b73c22560eaa627d398c0670202dd63a .

wd:Q42 p:P3348 s:q42-436d70f4-4199-fda5-af92-5d9f0b9d94ad .

s:q42-436d70f4-4199-fda5-af92-5d9f0b9d94ad a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3348 "202604" ;
	psn:P3348 <http://data.nlg.gr/resource/authority/record202604> ;
	prov:wasDerivedFrom ref:9a136912b73c22560eaa627d398c0670202dd63a .

wd:Q42 p:P8189 s:q42-664fe030-438a-4c19-e0da-f6515e906984 .

s:q42-664fe030-438a-4c19-e0da-f6515e906984 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8189 "987007305652505171" ;
	prov:wasDerivedFrom ref:9a136912b73c22560eaa627d398c0670202dd63a .

wd:Q42 p:P7699 s:q42-c52da967-4dce-de3e-345d-01396281315b .

s:q42-c52da967-4dce-de3e-345d-01396281315b a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7699 "LNB:Mr+;=Bf" ;
	prov:wasDerivedFrom ref:9a136912b73c22560eaa627d398c0670202dd63a .

wd:Q42 p:P3984 s:Q42-48511047-CEB9-4FC6-A2C3-0A6170FFD5BE .

s:Q42-48511047-CEB9-4FC6-A2C3-0A6170FFD5BE a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3984 "douglasadams" ;
	pq:P1810 "Douglas Adams: From Hitchhikers to Holistic Detectives" ;
	pq:P407 wd:Q1860 ;
	pq:P580 "2011-02-06T00:00:00Z"^^xsd:dateTime ;
	pqv:P580 v:841e5e98ca80d010e5056f4fd5219a42 .

wd:Q42 p:P8287 s:Q42-98EA554E-FE23-437E-998F-430EFBE62F80 .

s:Q42-98EA554E-FE23-437E-998F-430EFBE62F80 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8287 "1430" .

wd:Q42 p:P8125 s:Q42-DC6835D6-4588-445E-8EDE-3FBBBA88C4CB .

s:Q42-DC6835D6-4588-445E-8EDE-3FBBBA88C4CB a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8125 "3339" .

wd:Q42 p:P4359 s:Q42-9027138b-45f1-49dc-2a37-96f51d29876c .

s:Q42-9027138b-45f1-49dc-2a37-96f51d29876c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4359 "douglasadams" .

wd:Q42 p:P8408 s:Q42-61CC120A-C60F-4231-B59B-7A9C7D8FF6C6 .

s:Q42-61CC120A-C60F-4231-B59B-7A9C7D8FF6C6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8408 "DouglasAdams" ;
	psn:P8408 <http://kbpedia.org/kko/rc/DouglasAdams> .

wd:Q42 p:P6262 s:Q42-4272D5CF-086F-4D7F-96A6-575E229A1F63 .

s:Q42-4272D5CF-086F-4D7F-96A6-575E229A1F63 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "hitchhikers:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "1668" .

wd:Q42 p:P6262 s:Q42-BEA4DAC1-6A46-4500-A018-41D51905A329 .

s:Q42-BEA4DAC1-6A46-4500-A018-41D51905A329 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "tardis:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "8825" .

wd:Q42 p:P6262 s:Q42-BCE8EB06-BBDB-4073-8F1B-20AC1AB74467 .

s:Q42-BCE8EB06-BBDB-4073-8F1B-20AC1AB74467 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "ru.tardis:Дуглас_Адамс" ;
	pq:P407 wd:Q7737 ;
	pq:P1810 "Дуглас Адамс" ;
	pq:P9675 "28118" .

wd:Q42 p:P6262 s:Q42-042D4101-8C18-4F6B-93C9-4C1449014BD9 .

s:Q42-042D4101-8C18-4F6B-93C9-4C1449014BD9 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "montypython:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "1927" .

wd:Q42 p:P6262 s:Q42-D9CCB2C4-477D-4D9E-A379-65AB8BB0A0EF .

s:Q42-D9CCB2C4-477D-4D9E-A379-65AB8BB0A0EF a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "dirkgently:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "2133" ;
	prov:wasDerivedFrom ref:5c0fe42f3c1ade9a0028546b89fa1226f8e029eb .

wd:Q42 p:P6262 s:Q42-5546016E-EB50-4AF8-AC8E-79E884A068EA .

s:Q42-5546016E-EB50-4AF8-AC8E-79E884A068EA a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "disney:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "161805" .

wd:Q42 p:P6262 s:Q42-28C2B1F7-2608-4409-BA15-D29A4F19B13C .

s:Q42-28C2B1F7-2608-4409-BA15-D29A4F19B13C a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "muppet:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "15796" .

wd:Q42 p:P6262 s:Q42-4B7395E1-4B9E-4CB9-B37B-72047CA54640 .

s:Q42-4B7395E1-4B9E-4CB9-B37B-72047CA54640 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "getfuzzy:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "2050" .

wd:Q42 p:P6262 s:Q42-A85576C6-30C2-48A5-A030-2D41B72ABBED .

s:Q42-A85576C6-30C2-48A5-A030-2D41B72ABBED a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6262 "readyplayerone:Douglas_Adams" ;
	pq:P407 wd:Q1860 ;
	pq:P1810 "Douglas Adams" ;
	pq:P9675 "2244" .

wd:Q42 p:P4789 s:Q42-911d3a24-42f7-a575-6473-e926177d4e8c .

s:Q42-911d3a24-42f7-a575-6473-e926177d4e8c a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P4789 "U4994" .

wd:Q42 p:P2021 s:Q42-bf7e1294-4f0f-3511-ab5f-81f47f5c98cb .

s:Q42-bf7e1294-4f0f-3511-ab5f-81f47f5c98cb a wikibase:Statement ;
	wikibase:rank wikibase:DeprecatedRank ;
	ps:P2021 "+10"^^xsd:decimal ;
	psv:P2021 v:6fc1f325788cfea1bc9c869fbbfe7824 ;
	pq:P3680 _:4249d9c21f8b973644e0eab84cdaaf17 ;
	pq:P585 "2017-04-13T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:6db7aa179b1e57b39bd302c2c65d51de ;
	prov:wasDerivedFrom ref:5f446c2bf2ad680834678b82140cd8ca4910e2fb .

wd:Q42 p:P6868 s:Q42-98D93BBA-6AC9-4878-BD86-47BB0653ECE6 .

s:Q42-98D93BBA-6AC9-4878-BD86-47BB0653ECE6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6868 "1402475181" .

wd:Q42 p:P8849 s:Q42-EF943121-C348-4E4B-863D-512FD156B75D .

s:Q42-EF943121-C348-4E4B-863D-512FD156B75D a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8849 "6391909" .

wd:Q42 p:P8851 s:Q42-56BDDF95-DD0F-401D-8888-BEB6976096FD .

s:Q42-56BDDF95-DD0F-401D-8888-BEB6976096FD a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8851 "26792807" .

wd:Q42 p:P5297 s:Q42-FD92488C-999D-49B0-BDB4-3024F2737AE2 .

s:Q42-FD92488C-999D-49B0-BDB4-3024F2737AE2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P5297 "x2e9kt_zKEDI0dPr3sAfM_jyUhA" ;
	pq:P1810 "Douglas Noel ADAMS" .

wd:Q42 p:P8895 s:Q42-e5535b2a-4220-9941-599e-e8b6e8d005bd .

s:Q42-e5535b2a-4220-9941-599e-e8b6e8d005bd a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8895 "Douglas_Adams" .

wd:Q42 p:P7763 s:Q42-b3f2a8bb-499e-f51c-a45c-fc1a3ff9722e .

s:Q42-b3f2a8bb-499e-f51c-a45c-fc1a3ff9722e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7763 wd:Q73555012 .

wd:Q42 p:P1889 s:Q42-73e33703-4ae6-7b11-eecc-af044ac04d29 .

s:Q42-73e33703-4ae6-7b11-eecc-af044ac04d29 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1889 wd:Q21454969 .

wd:Q42 p:P172 s:Q42-3B573CED-154E-4A72-9575-68F94332FF1B .

s:Q42-3B573CED-154E-4A72-9575-68F94332FF1B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P172 wd:Q7994501 ;
	prov:wasDerivedFrom ref:66cc747c76cfb3538eb404dab78a2c3942ac5ca0 .

wd:Q42 p:P937 s:Q42-3AE62B5B-91C1-48DB-B728-337F7925F4DF .

s:Q42-3AE62B5B-91C1-48DB-B728-337F7925F4DF a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P937 wd:Q84 .

wd:Q42 p:P742 s:Q42-4f3397c8-44ec-14e7-b7d1-8e956ea0544d .

s:Q42-4f3397c8-44ec-14e7-b7d1-8e956ea0544d a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P742 "David Agnew" ;
	pq:P805 wd:Q11036149 ;
	prov:wasDerivedFrom ref:75b1617556ee3edc63bc02b87f4a042a079e0901 .

wd:Q42 p:P8385 s:Q42-A699AF6C-A60F-4B24-95E6-56C3BCC0C3F7 .

s:Q42-A699AF6C-A60F-4B24-95E6-56C3BCC0C3F7 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8385 "23691" ;
	prov:wasDerivedFrom ref:760e3627ff3aaf106fde98cc8fd2fc0cdec02773 .

wd:Q42 p:P9100 s:Q42-94b63e30-45dc-c12d-1daf-330d8e34f2ba .

s:Q42-94b63e30-45dc-c12d-1daf-330d8e34f2ba a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9100 "douglas-adams" .

wd:Q42 p:P9196 s:Q42-9a620ec7-42d6-9ef2-1f50-88676fa6563b .

s:Q42-9a620ec7-42d6-9ef2-1f50-88676fa6563b a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9196 "douglas-adams" .

wd:Q42 p:P9251 s:Q42-2CD4A5B8-E13E-478D-9C4D-10ADBC6DBD8E .

s:Q42-2CD4A5B8-E13E-478D-9C4D-10ADBC6DBD8E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9251 "80743" .

wd:Q42 p:P9307 s:Q42-86610cfa-4812-ac70-37ea-3e29d890db55 .

s:Q42-86610cfa-4812-ac70-37ea-3e29d890db55 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9307 "Douglas_Adams" .

wd:Q42 p:P1340 s:Q42-e699cb9f-4627-67c0-8ead-86e7f9873c5d .

s:Q42-e699cb9f-4627-67c0-8ead-86e7f9873c5d a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1340 wd:Q17122705 ;
	prov:wasDerivedFrom ref:366cc289740fb68df974400fad75e891dc6af3d0 .

wd:Q42 p:P101 s:Q42-0C5C0A36-7389-4E16-969B-851D25C94AC2 .

s:Q42-0C5C0A36-7389-4E16-969B-851D25C94AC2 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P101 wd:Q3238422 ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P1813 s:Q42-ba67c870-4aab-5093-a92d-7de40d46c67a .

s:Q42-ba67c870-4aab-5093-a92d-7de40d46c67a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1813 "Douglas Adams"@en .

wd:Q42 p:P166 s:Q42-4A5D5EDF-5E67-4014-855A-429C0A798A49 .

s:Q42-4A5D5EDF-5E67-4014-855A-429C0A798A49 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P166 wd:Q2687578 ;
	pq:P585 "1983-01-01T00:00:00Z"^^xsd:dateTime ;
	pqv:P585 v:879ab479c61145d6cf9d0b29093b0e10 ;
	prov:wasDerivedFrom ref:c380cbf312acc66fffc90dc202322f9f182c7620 .

wd:Q42 p:P9807 s:Q42-C47292D2-7E64-4003-B488-134B738E04DB .

s:Q42-C47292D2-7E64-4003-B488-134B738E04DB a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9807 "153440" .

wd:Q42 p:P9807 s:Q42-275B307B-8212-4E9F-8BDD-5E8052FE7A6B .

s:Q42-275B307B-8212-4E9F-8BDD-5E8052FE7A6B a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9807 "172463" .

wd:Q42 p:P9743 s:Q42-0A124C11-F01C-47A5-B053-78FEC1419636 .

s:Q42-0A124C11-F01C-47A5-B053-78FEC1419636 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9743 "107a9B0DKL" .

wd:Q42 p:P1149 s:Q42-64ccf7f1-468e-dd71-ce91-cf5b5a33bf66 .

s:Q42-64ccf7f1-468e-dd71-ce91-cf5b5a33bf66 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1149 "PR6051.D3352" ;
	psn:P1149 <http://id.loc.gov/authorities/classification/PR6051.D3352> ;
	prov:wasDerivedFrom ref:e0f5a61dcd233962d497f85010f258c713169a5d .

wd:Q42 p:P9918 s:Q42-C5579150-128A-4678-9203-F183E2BAC1AC .

s:Q42-C5579150-128A-4678-9203-F183E2BAC1AC a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9918 "PE00105434" .

wd:Q42 p:P9995 s:Q42-209F2E28-4B1A-44F8-AB0E-B3E7AE7B2ED6 .

s:Q42-209F2E28-4B1A-44F8-AB0E-B3E7AE7B2ED6 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9995 "157777" .

wd:Q42 p:P9984 s:Q42-30E900DA-6B17-4530-874A-D1FC375CD0D1 .

s:Q42-30E900DA-6B17-4530-874A-D1FC375CD0D1 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9984 "981058527710806706" .

wd:Q42 p:P7084 s:Q42-7611DFFC-CF13-46E4-A358-C8006733C2EB .

s:Q42-7611DFFC-CF13-46E4-A358-C8006733C2EB a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7084 wd:Q8722666 ;
	pq:P642 wd:Q109122021 .

wd:Q42 p:P6173 s:Q42-B2C8E176-C004-4F94-B43D-289F50DC490E .

s:Q42-B2C8E176-C004-4F94-B43D-289F50DC490E a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P6173 "3352" .

wd:Q42 p:P18 s:Q42-44889d0f-474c-4fb9-1961-9a3366cbbb9e .

s:Q42-44889d0f-474c-4fb9-1961-9a3366cbbb9e a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P18 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20adams%20portrait%20cropped.jpg> ;
	pq:P2096 "Porträtt av Douglas Adams."@sv,
		"Douglas Adams portresi"@tr,
		"Douglas Adams ååʹbleǩkartt"@sms,
		"Douglas Adamsin muotokuva"@fi,
		"Portrait of Douglas Adams"@en,
		"פורטרט של דאגלס אדמס"@he,
		"Portrait von Douglas Adams"@de,
		"Retrat de Douglas Adams"@ca,
		"Portret Douglasa Adamsa"@pl,
		"Potret Douglas Adams"@ms,
		"ڤوتريت دݢلس ايدمﺯ"@ms-arab,
		"Chân dung Douglas Adams"@vi,
		"Portrait de Douglas Adams"@fr,
		"Portrett av Douglas Adams"@nb .

wd:Q42 p:P7775 s:Q42-78C0F679-1DD4-4CF9-9531-53CE28F55223 .

s:Q42-78C0F679-1DD4-4CF9-9531-53CE28F55223 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7775 "Douglas_Adams" .

wd:Q42 p:P10069 s:Q42-22DF7228-265A-44D2-B901-CC6847EEAC97 .

s:Q42-22DF7228-265A-44D2-B901-CC6847EEAC97 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10069 "61960" .

wd:Q42 p:P8292 s:Q42-89FD13EC-42C3-4CCA-8194-0923F0FFF47A .

s:Q42-89FD13EC-42C3-4CCA-8194-0923F0FFF47A a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8292 "236432" .

wd:Q42 p:P10266 s:Q42-BA3242A3-8CFB-409A-B398-9DC8246386E4 .

s:Q42-BA3242A3-8CFB-409A-B398-9DC8246386E4 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10266 "97049" .

wd:Q42 p:P8313 s:Q42-3596C7F3-3DAF-436A-A226-5BF83795AFC5 .

s:Q42-3596C7F3-3DAF-436A-A226-5BF83795AFC5 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P8313 "Douglas_Adams" .

wd:Q42 p:P10291 s:Q42-9ba29285-43e5-3c18-b1b9-a9a064eb0d6a .

s:Q42-9ba29285-43e5-3c18-b1b9-a9a064eb0d6a a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10291 "82260" .

wd:Q42 p:P3368 s:Q42-2DD87345-81C1-4252-A5C2-727F1950AB17 .

s:Q42-2DD87345-81C1-4252-A5C2-727F1950AB17 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P3368 "215957" .

wd:Q42 p:P10387 s:Q42-156e5f4b-4573-d9c9-c47b-9a15fd557baf .

s:Q42-156e5f4b-4573-d9c9-c47b-9a15fd557baf a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10387 "75" .

wd:Q42 p:P10553 s:Q42-113B068E-749D-4BC8-8E4A-28FAB7CD7A02 .

s:Q42-113B068E-749D-4BC8-8E4A-28FAB7CD7A02 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10553 "079822096" .

wd:Q42 p:P9965 s:Q42-3C16B2DF-4FE4-4E43-9EA7-70E7081C2B83 .

s:Q42-3C16B2DF-4FE4-4E43-9EA7-70E7081C2B83 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P9965 "40231" .

wd:Q42 p:P10337 s:Q42-D9E70352-C672-41BC-A71E-1FEF5B8066EB .

s:Q42-D9E70352-C672-41BC-A71E-1FEF5B8066EB a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P10337 "A/adams-douglas" ;
	prov:wasDerivedFrom ref:10addd300a6925c60bbf81c3c80ee38786a8a616 .

wd:Q42 p:P7502 s:Q42-B3C6240B-C357-4EE1-AB7D-C41D0C8B5B03 .

s:Q42-B3C6240B-C357-4EE1-AB7D-C41D0C8B5B03 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P7502 "Douglas_Adams-YNBW" ;
	prov:wasDerivedFrom ref:b821feb93898353cb8fddf3c25f8a4ee538e7f2d .

wd:Q42 p:P1477 s:Q42-7E93B05B-9637-433A-97B2-9F8288B215B0 .

s:Q42-7E93B05B-9637-433A-97B2-9F8288B215B0 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1477 "Douglas Noël Adams"@en ;
	prov:wasDerivedFrom ref:4bdbb5fd8d46626c4c5a382ff95215b8d771ad56,
		ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 p:P1559 s:Q42-e525b79e-4a34-b70f-862e-41837655f565 .

s:Q42-e525b79e-4a34-b70f-862e-41837655f565 a wikibase:Statement,
		wikibase:BestRank ;
	wikibase:rank wikibase:NormalRank ;
	ps:P1559 "Douglas Adams"@en ;
	prov:wasDerivedFrom ref:f38b0c50096908694fe215d33497be11eb3f9d3b .

wd:Q42 rdfs:label "Douglas Adams"@en ;
	skos:prefLabel "Douglas Adams"@en ;
	schema:name "Douglas Adams"@en ;
	rdfs:label "Douglas Adams"@fr ;
	skos:prefLabel "Douglas Adams"@fr ;
	schema:name "Douglas Adams"@fr ;
	rdfs:label "Дуглас Адамс"@ru ;
	skos:prefLabel "Дуглас Адамс"@ru ;
	schema:name "Дуглас Адамс"@ru ;
	rdfs:label "Douglas Adams"@pl ;
	skos:prefLabel "Douglas Adams"@pl ;
	schema:name "Douglas Adams"@pl ;
	rdfs:label "Douglas Adams"@it ;
	skos:prefLabel "Douglas Adams"@it ;
	schema:name "Douglas Adams"@it ;
	rdfs:label "Douglas Adams"@en-gb ;
	skos:prefLabel "Douglas Adams"@en-gb ;
	schema:name "Douglas Adams"@en-gb ;
	rdfs:label "Douglas Adams"@nb ;
	skos:prefLabel "Douglas Adams"@nb ;
	schema:name "Douglas Adams"@nb ;
	rdfs:label "Douglas Adams"@es ;
	skos:prefLabel "Douglas Adams"@es ;
	schema:name "Douglas Adams"@es ;
	rdfs:label "Douglas Adams"@en-ca ;
	skos:prefLabel "Douglas Adams"@en-ca ;
	schema:name "Douglas Adams"@en-ca ;
	rdfs:label "Douglas Adams"@hr ;
	skos:prefLabel "Douglas Adams"@hr ;
	schema:name "Douglas Adams"@hr ;
	rdfs:label "Douglas Adams"@pt ;
	skos:prefLabel "Douglas Adams"@pt ;
	schema:name "Douglas Adams"@pt ;
	rdfs:label "더글러스 애덤스"@ko ;
	skos:prefLabel "더글러스 애덤스"@ko ;
	schema:name "더글러스 애덤스"@ko ;
	rdfs:label "Douglas Adams"@nl ;
	skos:prefLabel "Douglas Adams"@nl ;
	schema:name "Douglas Adams"@nl ;
	rdfs:label "Ντάγκλας Άνταμς"@el ;
	skos:prefLabel "Ντάγκλας Άνταμς"@el ;
	schema:name "Ντάγκλας Άνταμς"@el ;
	rdfs:label "دوغلاس آدمز"@ar ;
	skos:prefLabel "دوغلاس آدمز"@ar ;
	schema:name "دوغلاس آدمز"@ar ;
	rdfs:label "دوجلاس ادامز"@arz ;
	skos:prefLabel "دوجلاس ادامز"@arz ;
	schema:name "دوجلاس ادامز"@arz ;
	rdfs:label "Douglas Adams"@bar ;
	skos:prefLabel "Douglas Adams"@bar ;
	schema:name "Douglas Adams"@bar ;
	rdfs:label "Дуглас Адамс"@be ;
	skos:prefLabel "Дуглас Адамс"@be ;
	schema:name "Дуглас Адамс"@be ;
	rdfs:label "Дъглас Адамс"@bg ;
	skos:prefLabel "Дъглас Адамс"@bg ;
	schema:name "Дъглас Адамс"@bg ;
	rdfs:label "Douglas Adams"@bs ;
	skos:prefLabel "Douglas Adams"@bs ;
	schema:name "Douglas Adams"@bs ;
	rdfs:label "Douglas Adams"@ca ;
	skos:prefLabel "Douglas Adams"@ca ;
	schema:name "Douglas Adams"@ca ;
	rdfs:label "Douglas Adams"@cs ;
	skos:prefLabel "Douglas Adams"@cs ;
	schema:name "Douglas Adams"@cs ;
	rdfs:label "Douglas Adams"@cy ;
	skos:prefLabel "Douglas Adams"@cy ;
	schema:name "Douglas Adams"@cy ;
	rdfs:label "Douglas Adams"@da ;
	skos:prefLabel "Douglas Adams"@da ;
	schema:name "Douglas Adams"@da ;
	rdfs:label "Douglas Adams"@eo ;
	skos:prefLabel "Douglas Adams"@eo ;
	schema:name "Douglas Adams"@eo ;
	rdfs:label "Douglas Adams"@et ;
	skos:prefLabel "Douglas Adams"@et ;
	schema:name "Douglas Adams"@et ;
	rdfs:label "داگلاس آدامز"@fa ;
	skos:prefLabel "داگلاس آدامز"@fa ;
	schema:name "داگلاس آدامز"@fa ;
	rdfs:label "Douglas Adams"@fi ;
	skos:prefLabel "Douglas Adams"@fi ;
	schema:name "Douglas Adams"@fi ;
	rdfs:label "Douglas Adams"@ga ;
	skos:prefLabel "Douglas Adams"@ga ;
	schema:name "Douglas Adams"@ga ;
	rdfs:label "Douglas Adams"@gl ;
	skos:prefLabel "Douglas Adams"@gl ;
	schema:name "Douglas Adams"@gl ;
	rdfs:label "דאגלס אדמס"@he ;
	skos:prefLabel "דאגלס אדמס"@he ;
	schema:name "דאגלס אדמס"@he ;
	rdfs:label "Douglas Adams"@hu ;
	skos:prefLabel "Douglas Adams"@hu ;
	schema:name "Douglas Adams"@hu ;
	rdfs:label "Douglas Adams"@id ;
	skos:prefLabel "Douglas Adams"@id ;
	schema:name "Douglas Adams"@id ;
	rdfs:label "Douglas Adams"@io ;
	skos:prefLabel "Douglas Adams"@io ;
	schema:name "Douglas Adams"@io ;
	rdfs:label "Douglas Adams"@is ;
	skos:prefLabel "Douglas Adams"@is ;
	schema:name "Douglas Adams"@is ;
	rdfs:label "ダグラス・アダムズ"@ja ;
	skos:prefLabel "ダグラス・アダムズ"@ja ;
	schema:name "ダグラス・アダムズ"@ja ;
	rdfs:label "Douglas Adams"@jv ;
	skos:prefLabel "Douglas Adams"@jv ;
	schema:name "Douglas Adams"@jv ;
	rdfs:label "დაგლას ადამსი"@ka ;
	skos:prefLabel "დაგლას ადამსი"@ka ;
	schema:name "დაგლას ადამსი"@ka ;
	rdfs:label "Duglassius Adams"@la ;
	skos:prefLabel "Duglassius Adams"@la ;
	schema:name "Duglassius Adams"@la ;
	rdfs:label "Duglass Adamss"@lv ;
	skos:prefLabel "Duglass Adamss"@lv ;
	schema:name "Duglass Adamss"@lv ;
	rdfs:label "Даглас Адамс"@mk ;
	skos:prefLabel "Даглас Адамс"@mk ;
	schema:name "Даглас Адамс"@mk ;
	rdfs:label "डग्लस अॅडम्स"@mr ;
	skos:prefLabel "डग्लस अॅडम्स"@mr ;
	schema:name "डग्लस अॅडम्स"@mr ;
	rdfs:label "Douglas Adams"@nn ;
	skos:prefLabel "Douglas Adams"@nn ;
	schema:name "Douglas Adams"@nn ;
	rdfs:label "Douglas Adams"@ro ;
	skos:prefLabel "Douglas Adams"@ro ;
	schema:name "Douglas Adams"@ro ;
	rdfs:label "Douglas Adams"@sco ;
	skos:prefLabel "Douglas Adams"@sco ;
	schema:name "Douglas Adams"@sco ;
	rdfs:label "Douglas Adams"@sh ;
	skos:prefLabel "Douglas Adams"@sh ;
	schema:name "Douglas Adams"@sh ;
	rdfs:label "Douglas Adams"@sk ;
	skos:prefLabel "Douglas Adams"@sk ;
	schema:name "Douglas Adams"@sk ;
	rdfs:label "Douglas Adams"@sl ;
	skos:prefLabel "Douglas Adams"@sl ;
	schema:name "Douglas Adams"@sl ;
	rdfs:label "Douglas Adams"@sq ;
	skos:prefLabel "Douglas Adams"@sq ;
	schema:name "Douglas Adams"@sq ;
	rdfs:label "Даглас Адамс"@sr ;
	skos:prefLabel "Даглас Адамс"@sr ;
	schema:name "Даглас Адамс"@sr ;
	rdfs:label "Douglas Adams"@sv ;
	skos:prefLabel "Douglas Adams"@sv ;
	schema:name "Douglas Adams"@sv ;
	rdfs:label "டக்ளஸ் ஆடம்ஸ்"@ta ;
	skos:prefLabel "டக்ளஸ் ஆடம்ஸ்"@ta ;
	schema:name "டக்ளஸ் ஆடம்ஸ்"@ta ;
	rdfs:label "Douglas Adams"@tr ;
	skos:prefLabel "Douglas Adams"@tr ;
	schema:name "Douglas Adams"@tr ;
	rdfs:label "Дуглас Адамс"@uk ;
	skos:prefLabel "Дуглас Адамс"@uk ;
	schema:name "Дуглас Адамс"@uk ;
	rdfs:label "Douglas Adams"@vi ;
	skos:prefLabel "Douglas Adams"@vi ;
	schema:name "Douglas Adams"@vi ;
	rdfs:label "道格拉斯·亞當斯"@zh ;
	skos:prefLabel "道格拉斯·亞當斯"@zh ;
	schema:name "道格拉斯·亞當斯"@zh ;
	rdfs:label "道格拉斯·亚当斯"@zh-cn ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-cn ;
	schema:name "道格拉斯·亚当斯"@zh-cn ;
	rdfs:label "道格拉斯·亚当斯"@zh-hans ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-hans ;
	schema:name "道格拉斯·亚当斯"@zh-hans ;
	rdfs:label "道格拉斯·亞當斯"@zh-hant ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-hant ;
	schema:name "道格拉斯·亞當斯"@zh-hant ;
	rdfs:label "Douglas Adams"@de-ch ;
	skos:prefLabel "Douglas Adams"@de-ch ;
	schema:name "Douglas Adams"@de-ch ;
	rdfs:label "Douglas Adams"@pt-br ;
	skos:prefLabel "Douglas Adams"@pt-br ;
	schema:name "Douglas Adams"@pt-br ;
	rdfs:label "道格拉斯·亚当斯"@zh-sg ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-sg ;
	schema:name "道格拉斯·亚当斯"@zh-sg ;
	rdfs:label "道格拉斯·亚当斯"@zh-my ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-my ;
	schema:name "道格拉斯·亚当斯"@zh-my ;
	rdfs:label "道格拉斯·亞當斯"@zh-hk ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-hk ;
	schema:name "道格拉斯·亞當斯"@zh-hk ;
	rdfs:label "道格拉斯·亞當斯"@zh-tw ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-tw ;
	schema:name "道格拉斯·亞當斯"@zh-tw ;
	rdfs:label "道格拉斯·亞當斯"@zh-mo ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-mo ;
	schema:name "道格拉斯·亞當斯"@zh-mo ;
	rdfs:label "Douglas Adams"@war ;
	skos:prefLabel "Douglas Adams"@war ;
	schema:name "Douglas Adams"@war ;
	rdfs:label "Дуглас Адамз"@be-tarask ;
	skos:prefLabel "Дуглас Адамз"@be-tarask ;
	schema:name "Дуглас Адамз"@be-tarask ;
	rdfs:label "Adams Duglas"@vep ;
	skos:prefLabel "Adams Duglas"@vep ;
	schema:name "Adams Duglas"@vep ;
	rdfs:label "ڈگلس ایڈم"@ur ;
	skos:prefLabel "ڈگلس ایڈم"@ur ;
	schema:name "ڈگلس ایڈم"@ur ;
	rdfs:label "Douglas Adams"@oc ;
	skos:prefLabel "Douglas Adams"@oc ;
	schema:name "Douglas Adams"@oc ;
	rdfs:label "Douglas Adams"@af ;
	skos:prefLabel "Douglas Adams"@af ;
	schema:name "Douglas Adams"@af ;
	rdfs:label "Douglas Adams"@an ;
	skos:prefLabel "Douglas Adams"@an ;
	schema:name "Douglas Adams"@an ;
	rdfs:label "Douglas Adams"@br ;
	skos:prefLabel "Douglas Adams"@br ;
	schema:name "Douglas Adams"@br ;
	rdfs:label "Douglas Adams"@eu ;
	skos:prefLabel "Douglas Adams"@eu ;
	schema:name "Douglas Adams"@eu ;
	rdfs:label "Douglas Adams"@lb ;
	skos:prefLabel "Douglas Adams"@lb ;
	schema:name "Douglas Adams"@lb ;
	rdfs:label "Douglas Adams"@lmo ;
	skos:prefLabel "Douglas Adams"@lmo ;
	schema:name "Douglas Adams"@lmo ;
	rdfs:label "Douglas Adams"@lt ;
	skos:prefLabel "Douglas Adams"@lt ;
	schema:name "Douglas Adams"@lt ;
	rdfs:label "Douglas Adams"@nds ;
	skos:prefLabel "Douglas Adams"@nds ;
	schema:name "Douglas Adams"@nds ;
	rdfs:label "Douglas Adams"@nds-nl ;
	skos:prefLabel "Douglas Adams"@nds-nl ;
	schema:name "Douglas Adams"@nds-nl ;
	rdfs:label "Douglas Adams"@pms ;
	skos:prefLabel "Douglas Adams"@pms ;
	schema:name "Douglas Adams"@pms ;
	rdfs:label "Douglas Adams"@vec ;
	skos:prefLabel "Douglas Adams"@vec ;
	schema:name "Douglas Adams"@vec ;
	rdfs:label "Douglas Adams"@wa ;
	skos:prefLabel "Douglas Adams"@wa ;
	schema:name "Douglas Adams"@wa ;
	rdfs:label "Даглас Адамс"@sr-ec ;
	skos:prefLabel "Даглас Адамс"@sr-ec ;
	schema:name "Даглас Адамс"@sr-ec ;
	rdfs:label "Daglas Adams"@sr-el ;
	skos:prefLabel "Daglas Adams"@sr-el ;
	schema:name "Daglas Adams"@sr-el ;
	rdfs:label "Douglas Adams"@de ;
	skos:prefLabel "Douglas Adams"@de ;
	schema:name "Douglas Adams"@de ;
	rdfs:label "دەگلاس ئادمز"@ckb ;
	skos:prefLabel "دەگلاس ئادمز"@ckb ;
	schema:name "دەگلاس ئادمز"@ckb ;
	rdfs:label "Douglas Adams"@fo ;
	skos:prefLabel "Douglas Adams"@fo ;
	schema:name "Douglas Adams"@fo ;
	rdfs:label "Douglas Adams"@kl ;
	skos:prefLabel "Douglas Adams"@kl ;
	schema:name "Douglas Adams"@kl ;
	rdfs:label "Douglas Adams"@gsw ;
	skos:prefLabel "Douglas Adams"@gsw ;
	schema:name "Douglas Adams"@gsw ;
	rdfs:label "డగ్లస్ ఆడమ్స్"@te ;
	skos:prefLabel "డగ్లస్ ఆడమ్స్"@te ;
	schema:name "డగ్లస్ ఆడమ్స్"@te ;
	rdfs:label "ඩග්ලස් ඇඩම්ස්"@si ;
	skos:prefLabel "ඩග්ලස් ඇඩම්ස්"@si ;
	schema:name "ඩග්ලස් ඇඩම්ස්"@si ;
	rdfs:label "ডগলাস অ্যাডামস"@bn ;
	skos:prefLabel "ডগলাস অ্যাডামস"@bn ;
	schema:name "ডগলাস অ্যাডামস"@bn ;
	rdfs:label "डग्लस अ‍डम्स"@hi ;
	skos:prefLabel "डग्लस अ‍डम्स"@hi ;
	schema:name "डग्लस अ‍डम्स"@hi ;
	rdfs:label "डग्लस अ‍डम्स"@rwr ;
	skos:prefLabel "डग्लस अ‍डम्स"@rwr ;
	schema:name "डग्लस अ‍डम्स"@rwr ;
	rdfs:label "Douglas Adams"@mg ;
	skos:prefLabel "Douglas Adams"@mg ;
	schema:name "Douglas Adams"@mg ;
	rdfs:label "ഡഗ്ലസ് ആഡംസ്"@ml ;
	skos:prefLabel "ഡഗ്ലസ് ആഡംസ്"@ml ;
	schema:name "ഡഗ്ലസ് ആഡംസ്"@ml ;
	rdfs:label "ડગ્લાસ એડમ્સ"@gu ;
	skos:prefLabel "ડગ્લાસ એડમ્સ"@gu ;
	schema:name "ડગ્લાસ એડમ્સ"@gu ;
	rdfs:label "Դուգլաս Ադամս"@hy ;
	skos:prefLabel "Դուգլաս Ադամս"@hy ;
	schema:name "Դուգլաս Ադամս"@hy ;
	rdfs:label "Douglas Adams"@ast ;
	skos:prefLabel "Douglas Adams"@ast ;
	schema:name "Douglas Adams"@ast ;
	rdfs:label "Douglas Adams"@co ;
	skos:prefLabel "Douglas Adams"@co ;
	schema:name "Douglas Adams"@co ;
	rdfs:label "Douglas Adams"@de-at ;
	skos:prefLabel "Douglas Adams"@de-at ;
	schema:name "Douglas Adams"@de-at ;
	rdfs:label "Douglas Adams"@frp ;
	skos:prefLabel "Douglas Adams"@frp ;
	schema:name "Douglas Adams"@frp ;
	rdfs:label "Douglas Adams"@fur ;
	skos:prefLabel "Douglas Adams"@fur ;
	schema:name "Douglas Adams"@fur ;
	rdfs:label "Douglas Adams"@gd ;
	skos:prefLabel "Douglas Adams"@gd ;
	schema:name "Douglas Adams"@gd ;
	rdfs:label "Douglas Adams"@ia ;
	skos:prefLabel "Douglas Adams"@ia ;
	schema:name "Douglas Adams"@ia ;
	rdfs:label "Douglas Adams"@ie ;
	skos:prefLabel "Douglas Adams"@ie ;
	schema:name "Douglas Adams"@ie ;
	rdfs:label "Douglas Adams"@kg ;
	skos:prefLabel "Douglas Adams"@kg ;
	schema:name "Douglas Adams"@kg ;
	rdfs:label "Douglas Adams"@li ;
	skos:prefLabel "Douglas Adams"@li ;
	schema:name "Douglas Adams"@li ;
	rdfs:label "Douglas Adams"@lij ;
	skos:prefLabel "Douglas Adams"@lij ;
	schema:name "Douglas Adams"@lij ;
	rdfs:label "Douglas Adams"@min ;
	skos:prefLabel "Douglas Adams"@min ;
	schema:name "Douglas Adams"@min ;
	rdfs:label "Douglas Adams"@ms ;
	skos:prefLabel "Douglas Adams"@ms ;
	schema:name "Douglas Adams"@ms ;
	rdfs:label "Douglas Adams"@nap ;
	skos:prefLabel "Douglas Adams"@nap ;
	schema:name "Douglas Adams"@nap ;
	rdfs:label "Douglas Adams"@nrm ;
	skos:prefLabel "Douglas Adams"@nrm ;
	schema:name "Douglas Adams"@nrm ;
	rdfs:label "Douglas Adams"@pcd ;
	skos:prefLabel "Douglas Adams"@pcd ;
	schema:name "Douglas Adams"@pcd ;
	rdfs:label "Douglas Adams"@rm ;
	skos:prefLabel "Douglas Adams"@rm ;
	schema:name "Douglas Adams"@rm ;
	rdfs:label "Douglas Adams"@sc ;
	skos:prefLabel "Douglas Adams"@sc ;
	schema:name "Douglas Adams"@sc ;
	rdfs:label "Douglas Adams"@scn ;
	skos:prefLabel "Douglas Adams"@scn ;
	schema:name "Douglas Adams"@scn ;
	rdfs:label "Douglas Adams"@sw ;
	skos:prefLabel "Douglas Adams"@sw ;
	schema:name "Douglas Adams"@sw ;
	rdfs:label "Douglas Adams"@vls ;
	skos:prefLabel "Douglas Adams"@vls ;
	schema:name "Douglas Adams"@vls ;
	rdfs:label "Douglas Adams"@vo ;
	skos:prefLabel "Douglas Adams"@vo ;
	schema:name "Douglas Adams"@vo ;
	rdfs:label "Douglas Adams"@wo ;
	skos:prefLabel "Douglas Adams"@wo ;
	schema:name "Douglas Adams"@wo ;
	rdfs:label "Douglas Adams"@zu ;
	skos:prefLabel "Douglas Adams"@zu ;
	schema:name "Douglas Adams"@zu ;
	rdfs:label "Duqlas Noel Adams"@az ;
	skos:prefLabel "Duqlas Noel Adams"@az ;
	schema:name "Duqlas Noel Adams"@az ;
	rdfs:label "Doglas Adams"@ak ;
	skos:prefLabel "Doglas Adams"@ak ;
	schema:name "Doglas Adams"@ak ;
	rdfs:label "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	skos:prefLabel "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	schema:name "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	rdfs:label "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	skos:prefLabel "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	schema:name "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	rdfs:label "डगलस एडम्स"@ne ;
	skos:prefLabel "डगलस एडम्स"@ne ;
	schema:name "डगलस एडम्स"@ne ;
	rdfs:label "Адамс"@mrj ;
	skos:prefLabel "Адамс"@mrj ;
	schema:name "Адамс"@mrj ;
	rdfs:label "ดักลัส แอดัมส์"@th ;
	skos:prefLabel "ดักลัส แอดัมส์"@th ;
	schema:name "ดักลัส แอดัมส์"@th ;
	rdfs:label "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	skos:prefLabel "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	schema:name "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	rdfs:label "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	skos:prefLabel "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	schema:name "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	rdfs:label "Douglas Adams"@tl ;
	skos:prefLabel "Douglas Adams"@tl ;
	schema:name "Douglas Adams"@tl ;
	rdfs:label "Douglas Adams"@ext ;
	skos:prefLabel "Douglas Adams"@ext ;
	schema:name "Douglas Adams"@ext ;
	rdfs:label "داقلاس آدامز"@azb ;
	skos:prefLabel "داقلاس آدامز"@azb ;
	schema:name "داقلاس آدامز"@azb ;
	rdfs:label "Douglas Adams"@lfn ;
	skos:prefLabel "Douglas Adams"@lfn ;
	schema:name "Douglas Adams"@lfn ;
	rdfs:label "Douglas Adams"@nan ;
	skos:prefLabel "Douglas Adams"@nan ;
	schema:name "Douglas Adams"@nan ;
	rdfs:label "Дуглас Адамс"@ky ;
	skos:prefLabel "Дуглас Адамс"@ky ;
	schema:name "Дуглас Адамс"@ky ;
	rdfs:label "डगलस एडम्स"@bho ;
	skos:prefLabel "डगलस एडम्स"@bho ;
	schema:name "डगलस एडम्स"@bho ;
	rdfs:label "道格拉斯·亚当斯"@wuu ;
	skos:prefLabel "道格拉斯·亚当斯"@wuu ;
	schema:name "道格拉斯·亚当斯"@wuu ;
	rdfs:label "道格拉斯亞當斯"@yue ;
	skos:prefLabel "道格拉斯亞當斯"@yue ;
	schema:name "道格拉斯亞當斯"@yue ;
	rdfs:label "ڈگلس ایڈمس"@pnb ;
	skos:prefLabel "ڈگلس ایڈمس"@pnb ;
	schema:name "ڈگلس ایڈمس"@pnb ;
	rdfs:label "Douglas Adams"@sje ;
	skos:prefLabel "Douglas Adams"@sje ;
	schema:name "Douglas Adams"@sje ;
	rdfs:label "Douglas Adams"@se ;
	skos:prefLabel "Douglas Adams"@se ;
	schema:name "Douglas Adams"@se ;
	rdfs:label "Douglas Adams"@smn ;
	skos:prefLabel "Douglas Adams"@smn ;
	schema:name "Douglas Adams"@smn ;
	rdfs:label "Douglas Adams"@sms ;
	skos:prefLabel "Douglas Adams"@sms ;
	schema:name "Douglas Adams"@sms ;
	rdfs:label "Douglas Adams"@sma ;
	skos:prefLabel "Douglas Adams"@sma ;
	schema:name "Douglas Adams"@sma ;
	rdfs:label "Douglas Adams"@smj ;
	skos:prefLabel "Douglas Adams"@smj ;
	schema:name "Douglas Adams"@smj ;
	rdfs:label "Douglas Adams"@bm ;
	skos:prefLabel "Douglas Adams"@bm ;
	schema:name "Douglas Adams"@bm ;
	rdfs:label "Douglas Adams"@frc ;
	skos:prefLabel "Douglas Adams"@frc ;
	schema:name "Douglas Adams"@frc ;
	rdfs:label "Douglas Adams"@jam ;
	skos:prefLabel "Douglas Adams"@jam ;
	schema:name "Douglas Adams"@jam ;
	rdfs:label "Douglas Adams"@kab ;
	skos:prefLabel "Douglas Adams"@kab ;
	schema:name "Douglas Adams"@kab ;
	rdfs:label "Douglas Adams"@pap ;
	skos:prefLabel "Douglas Adams"@pap ;
	schema:name "Douglas Adams"@pap ;
	rdfs:label "Douglas Adams"@prg ;
	skos:prefLabel "Douglas Adams"@prg ;
	schema:name "Douglas Adams"@prg ;
	rdfs:label "Douglas Adams"@rgn ;
	skos:prefLabel "Douglas Adams"@rgn ;
	schema:name "Douglas Adams"@rgn ;
	rdfs:label "Douglas Adams"@vmf ;
	skos:prefLabel "Douglas Adams"@vmf ;
	schema:name "Douglas Adams"@vmf ;
	rdfs:label "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	skos:prefLabel "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	schema:name "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	rdfs:label "Douglas Adams"@fy ;
	skos:prefLabel "Douglas Adams"@fy ;
	schema:name "Douglas Adams"@fy ;
	rdfs:label "Douglas Adams"@hsb ;
	skos:prefLabel "Douglas Adams"@hsb ;
	schema:name "Douglas Adams"@hsb ;
	rdfs:label "דאַגלאַס אַדאַמס"@yi ;
	skos:prefLabel "דאַגלאַס אַדאַמס"@yi ;
	schema:name "דאַגלאַס אַדאַמס"@yi ;
	rdfs:label "Douglas Adams"@kw ;
	skos:prefLabel "Douglas Adams"@kw ;
	schema:name "Douglas Adams"@kw ;
	rdfs:label "دݢلس ايدمﺯ"@ms-arab ;
	skos:prefLabel "دݢلس ايدمﺯ"@ms-arab ;
	schema:name "دݢلس ايدمﺯ"@ms-arab ;
	rdfs:label "Douglas Adams"@jut ;
	skos:prefLabel "Douglas Adams"@jut ;
	schema:name "Douglas Adams"@jut ;
	rdfs:label "Дуглас Адамс"@ba ;
	skos:prefLabel "Дуглас Адамс"@ba ;
	schema:name "Дуглас Адамс"@ba ;
	rdfs:label "Douglas Adams"@ig ;
	skos:prefLabel "Douglas Adams"@ig ;
	schema:name "Douglas Adams"@ig ;
	rdfs:label "دوڭلاس أدامز"@ary ;
	skos:prefLabel "دوڭلاس أدامز"@ary ;
	schema:name "دوڭلاس أدامز"@ary ;
	schema:description "English science fiction writer and humourist (19522001)"@en,
		"écrivain de science-fiction et humoriste anglais (19522001)"@fr,
		"English writer and humourist"@en-gb,
		"engelsk science fiction-forfatter og humorist"@nb,
		"scrittore e umorista britannico"@it,
		"britischer Science-Fiction-Autor und Humorist (19522001)"@de,
		"escritor y humorista británico"@es,
		"английский писатель, драматург и сценарист, автор серии книг «Автостопом по галактике»"@ru,
		"英国作家"@zh-hans,
		"英國作家"@zh-hant,
		"英国作家"@zh-cn,
		"英国作家"@zh-sg,
		"英国作家"@zh-my,
		"英國作家"@zh,
		"英國作家"@zh-hk,
		"英國文學家、幽默作家"@zh-tw,
		"英國作家"@zh-mo,
		"escriptor anglès"@ca,
		"englantilainen kirjailija ja humoristi"@fi,
		"anglický spisovatel, humorista a dramatik"@cs,
		"brittisk författare (19522001)"@sv,
		"escritor e comediante britânico"@pt-br,
		"ஆங்கில எழுத்தாளர் மற்றும் நகைச்சுவையாளர்"@ta,
		"angleški pisatelj, humorist in dramatik"@sl,
		"engelsk forfatter"@da,
		"Engelse schrijver (1952-2001)"@nl,
		"escritor e comediante britânico"@pt,
		"brytyjski pisarz"@pl,
		"angļu zinātniskās fantastikas rakstnieks un humorists"@lv,
		"енглески писац и хумориста"@sr,
		"енглески писац научне фантастике и хумориста"@sr-ec,
		"engleski pisac naučne fantastike i humorista"@sr-el,
		"angla aŭtoro de sciencfikcio-romanoj kaj humoristo"@eo,
		"a englischer Science-Fiction-Schriftsteller"@bar,
		"skrivagner saoznek"@br,
		"イングランドの作家"@ja,
		"forfattar"@nn,
		"İngiliz yazar"@tr,
		"ඉංග්‍රීසි කවියෙක්"@si,
		"nhà văn và nhà soạn hài kịch người Anh (1952-2001)"@vi,
		"awdur a dychanwr Seisnig"@cy,
		"અંગ્રેજી લેખક અને હાસ્યકાર"@gu,
		"британський комічний радіодраматург, письменник"@uk,
		"scriitor, dramaturg englez"@ro,
		"angol író és humorista (19522001)"@hu,
		"فیلمنامه‌نویس و نویسنده بریتانیایی"@fa,
		"Engelse skrywer en humoris"@af,
		"англиски писател и хуморист"@mk,
		"Άγγλος συγγραφέας (19522001)"@el,
		"անգլիացի գրող, դրամատուրգ, սցենարիստ, «Ավտոստոպով զբոսաշրջիկի միջգալակտիկական ուղեցույց» վեպերի շարք"@hy,
		"английски писател и хуморист"@bg,
		"अङ्ग्रेजी लेखक र व्यङ्ग्यकार"@ne,
		"סופר והומוריסטן בריטי"@he,
		"britischer Schriftsteller"@de-at,
		"britischer Schriftsteller"@de-ch,
		"britischer Schriftsteller"@gsw,
		"englischer Schriftsteller"@nds,
		"ಇಂಗ್ಲಿಷ್ ಭಾಷೆಯ ಬರಹಗಾರ ಹಾಗೂ ಹಾಸ್ಯ ಲೇಖಕ"@kn,
		"ਅੰਗਰੇਜ਼ੀ ਲੇਖਕ"@pa,
		"كاتب إنجليزي فكاهي"@ar,
		"taga-Inglatera na manunulat at tagapagpatawa"@tl,
		"idazle eta umorista britaniarra"@eu,
		"britanski radijski dramaturg i pisac znanstvene fantastike"@hr,
		"영국의 작가"@ko,
		"mwandishi Mwingereza"@sw,
		"นักเขียนและผู้เล่าเรื่องอารมณ์ขันชาวอังกฤษ"@th,
		"English writer"@en-ca,
		"sgrìobhadair Sasannach"@gd,
		"ინგლისელი მწერალი და იუმორისტი"@ka,
		"inglise ulmekirjanik"@et,
		"ఇంగ్లీషు రచయిత, హాస్యకారుడు"@te,
		"escritor y humorista inglés"@ast,
		"autor dhe humorist anglez"@sq,
		"escritor e guionista británico"@gl,
		"अंग्रेजी भाषा के ब्रिटिश लेखक"@bho,
		"anglický spisovateľ"@sk,
		"scriptor, scriptor scaenicus, et mythistoricus (19522001)"@la,
		"ബ്രിട്ടീഷ് എഴുത്തുകാരനും ഹാസ്യസാഹിത്യാകാരനും"@ml,
		"scríbhneoir Sasanach"@ga,
		"nivîskarê brîtanî"@ku-latn,
		"Panulih jo palawak dari Inggirih"@min,
		"अंग्रेजी लेखक"@hi,
		"ߊ߲߬ߜ߭ߌ߬ߟߋ߬ ߛߓߍߦߟߊ ߞߎ߲߬ߘߐ߬ߕߍ߰ ߟߐ߲ߞߏ ߞߊ߲߬"@nqo,
		"англійскі пісьменнік"@be,
		"penulis dan humoris asal Britania Raya (1952-2001)"@id,
		"engleski pisac i humorist"@bs,
		"penulis dan pelawak Inggeris"@ms,
		"ब्रिटिश लेखक व नाटककार"@mr,
		"ইংরেজ কল্পবিজ্ঞান লেখক ও কৌতুকবিদ"@bn,
		"ލިޔުންތެރިއެއް"@dv,
		"Enskur höfundur"@is,
		"كاتب نڭليزي ديال لخيال لعلمي و لفكاهة"@ary ;
	skos:altLabel "Douglas Noël Adams"@en,
		"DNA"@en,
		"Адамс, Дуглас"@ru,
		"Дуглас Ноэль Адамс"@ru,
		"Адамс, Дуглас Ноэль"@ru,
		"Douglas Noël Adams"@nb,
		"Douglas N. Adams"@nb,
		"Douglas Noël Adams"@fr,
		"Douglas Noël Adams"@de,
		"Douglas Noël Adams"@pt-br,
		"Douglas Noel Adams"@pt-br,
		"Дуглас Адамс"@be-tarask,
		"亞當斯"@zh,
		"Douglas Noel Adams"@es,
		"Douglas Noël Adams"@es,
		"Douglas Noel Adams"@it,
		"Douglas N. Adams"@it,
		"Douglas Noël Adams"@cs,
		"Douglas Noel Adams"@cs,
		"Douglas N. Adams"@cs,
		"Ադամս, Դուգլաս"@hy,
		"Ντάγκλας Νόελ Άνταμς"@el,
		"Douglas Noel Adams"@nl,
		"Douglas Noël Adams"@nl,
		"Douglas Noël Adams"@pt,
		"Douglas Noel Adams"@pt,
		"ダグラス・アダムス"@ja,
		"ਡਗਲਸ ਨੋਏਲ ਐਡਮਜ਼"@pa,
		"ਡਗਲਸ ਐਡਮਸ"@pa,
		"Douglas Noël Adams"@tl,
		"Douglas Noel Adams"@tl,
		"Douglas Noel Adams"@eu,
		"Douglas Noël Adams"@eu,
		"Дуглас Ноел Адамс"@uk,
		"Адамс Дуглас"@uk,
		"Douglas Noël Adams"@hr,
		"Douglas N. Adams"@hr,
		"Douglas Noel Adams"@hr,
		"דגלס אדמס"@he,
		"דאגלס נואל אדמס"@he,
		"더글라스 애덤스"@ko,
		"더글러스 노엘 애덤스"@ko,
		"Douglas Noel Adams"@sw,
		"Douglas Noël Adams"@sw,
		"Douglas Noel Adams"@tr,
		"Douglas N. Adams"@tr,
		"Douglas Noël Adams"@tr,
		"Douglas Noël Adams"@et,
		"دوغلاس نويل آدمز"@ar,
		"دوغلاس ن. آدمز"@ar,
		"دوغلاس آدامز"@ar,
		"دوجلاس آدمز"@ar,
		"دوجلاس آدامز"@ar,
		"Duglassius Noëlus Adams"@la,
		"Douglas Adams"@la,
		"Duglassius Natalis Adams"@la,
		"Douglas Noël Adams"@gl,
		"डग्लस अडम्स"@bho,
		"डग्लस एडम्स"@bho,
		"Douglas Noel Adams"@sv,
		"Douglas Noël Adams"@sv,
		"ഡഗ്ലസ് നോയൽ ആഡംസ്"@ml,
		"ഡഗ്ലസ് എന്‍ ആഡംസ്"@ml,
		"Douglas Noel Adams"@nn,
		"Douglas Noel Adams"@ga,
		"Douglas Noël Adams"@ga,
		"Douglas N. Adams"@ga,
		"道格拉斯·諾耶爾·亞當斯"@zh-tw,
		"Douglas Noël Adams"@ro,
		"Douglas ADAMS"@eo,
		"Douglas Noël ADAMS"@eo,
		"Douglas Noel Adams"@ca,
		"Douglas Noël Adams"@ca,
		"ߘߎߜ߭ߑߟߊߛ ߣߏߥߍߟ ߊߘߊߡߛ"@nqo,
		"ߘߎߜ߭ߑߟߊߛ ߣ. ߊߘߊߡߛ"@nqo,
		"Douglas Noel Adams"@pl,
		"Douglas Noel Adams"@ms,
		"Douglas Noël Adams"@ms,
		"Douglas N. Adams"@ms,
		"Douglas Noel Adams"@da,
		"Douglas Noel Adams"@fi,
		"Duqlas Adams"@az,
		"Douglas Adams"@az,
		"Адамс, Дуглас"@mrj,
		"ڈگلس ایڈمس"@ur,
		"Douglas Adams"@lv,
		"Douglas Adams"@sr-el,
		"Douglas Adams"@ak,
		"Douglas Noel Adams"@hu,
		"Douglas Noël Adams"@hu,
		"Douglas Noel Adams"@ia,
		"Douglas Noel Adams"@id,
		"Douglas Noël Adams"@id,
		"Douglas N. Adams"@id,
		"Douglas Noel Adams"@sk,
		"Douglas Noël Adams"@sk,
		"Douglas N. Adams"@sk,
		"Douglas Noel Adams"@af,
		"Douglas Noël Adams"@bar .

wd:Q5 a wikibase:Item ;
	rdfs:label "human"@en ;
	skos:prefLabel "human"@en ;
	schema:name "human"@en ;
	schema:description "common name of Homo sapiens, unique extant species of the genus Homo"@en .

wd:P31 a wikibase:Property ;
	rdfs:label "instance of"@en ;
	skos:prefLabel "instance of"@en ;
	schema:name "instance of"@en ;
	schema:description "that class of which this subject is a particular example and member; different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain (and an instance of volcanic landform)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P31 ;
	wikibase:claim p:P31 ;
	wikibase:statementProperty ps:P31 ;
	wikibase:statementValue psv:P31 ;
	wikibase:qualifier pq:P31 ;
	wikibase:qualifierValue pqv:P31 ;
	wikibase:reference pr:P31 ;
	wikibase:referenceValue prv:P31 ;
	wikibase:novalue wdno:P31 .

p:P31 a owl:ObjectProperty .

psv:P31 a owl:ObjectProperty .

pqv:P31 a owl:ObjectProperty .

prv:P31 a owl:ObjectProperty .

wdt:P31 a owl:ObjectProperty .

ps:P31 a owl:ObjectProperty .

pq:P31 a owl:ObjectProperty .

pr:P31 a owl:ObjectProperty .

wdno:P31 a owl:Class ;
	owl:complementOf _:0b8bd71b926a65ca3fa72e5d9103e4d6 .

_:0b8bd71b926a65ca3fa72e5d9103e4d6 a owl:Restriction ;
	owl:onProperty wdt:P31 ;
	owl:someValuesFrom owl:Thing .

wd:Q6581097 a wikibase:Item ;
	rdfs:label "male"@en ;
	skos:prefLabel "male"@en ;
	schema:name "male"@en ;
	schema:description "to be used in \"sex or gender\" (P21) to indicate that the human subject is a male or \"semantic gender\" (P10339) to indicate that a word refers to a male person"@en .

wd:P21 a wikibase:Property ;
	rdfs:label "sex or gender"@en ;
	skos:prefLabel "sex or gender"@en ;
	schema:name "sex or gender"@en ;
	schema:description "sex or gender identity of human or animal. For human: male, female, non-binary, intersex, transgender female, transgender male, agender. For animal: male organism, female organism. Groups of same gender use subclass of (P279)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P21 ;
	wikibase:claim p:P21 ;
	wikibase:statementProperty ps:P21 ;
	wikibase:statementValue psv:P21 ;
	wikibase:qualifier pq:P21 ;
	wikibase:qualifierValue pqv:P21 ;
	wikibase:reference pr:P21 ;
	wikibase:referenceValue prv:P21 ;
	wikibase:novalue wdno:P21 .

p:P21 a owl:ObjectProperty .

psv:P21 a owl:ObjectProperty .

pqv:P21 a owl:ObjectProperty .

prv:P21 a owl:ObjectProperty .

wdt:P21 a owl:ObjectProperty .

ps:P21 a owl:ObjectProperty .

pq:P21 a owl:ObjectProperty .

pr:P21 a owl:ObjectProperty .

wdno:P21 a owl:Class ;
	owl:complementOf _:8543f188a73d6ea7a6705f0835ae332d .

_:8543f188a73d6ea7a6705f0835ae332d a owl:Restriction ;
	owl:onProperty wdt:P21 ;
	owl:someValuesFrom owl:Thing .

wd:Q214917 a wikibase:Item ;
	rdfs:label "playwright"@en ;
	skos:prefLabel "playwright"@en ;
	schema:name "playwright"@en ;
	schema:description "person who writes plays"@en .

wd:P106 a wikibase:Property ;
	rdfs:label "occupation"@en ;
	skos:prefLabel "occupation"@en ;
	schema:name "occupation"@en ;
	schema:description "occupation of a person; see also \"field of work\" (Property:P101), \"position held\" (Property:P39)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P106 ;
	wikibase:claim p:P106 ;
	wikibase:statementProperty ps:P106 ;
	wikibase:statementValue psv:P106 ;
	wikibase:qualifier pq:P106 ;
	wikibase:qualifierValue pqv:P106 ;
	wikibase:reference pr:P106 ;
	wikibase:referenceValue prv:P106 ;
	wikibase:novalue wdno:P106 .

p:P106 a owl:ObjectProperty .

psv:P106 a owl:ObjectProperty .

pqv:P106 a owl:ObjectProperty .

prv:P106 a owl:ObjectProperty .

wdt:P106 a owl:ObjectProperty .

ps:P106 a owl:ObjectProperty .

pq:P106 a owl:ObjectProperty .

pr:P106 a owl:ObjectProperty .

wdno:P106 a owl:Class ;
	owl:complementOf _:cfa3a75a3525fa319d07757b53d28076 .

_:cfa3a75a3525fa319d07757b53d28076 a owl:Restriction ;
	owl:onProperty wdt:P106 ;
	owl:someValuesFrom owl:Thing .

wd:Q28389 a wikibase:Item ;
	rdfs:label "screenwriter"@en ;
	skos:prefLabel "screenwriter"@en ;
	schema:name "screenwriter"@en ;
	schema:description "writer who writes for films, TV shows, comics and games"@en .

wd:Q6625963 a wikibase:Item ;
	rdfs:label "novelist"@en ;
	skos:prefLabel "novelist"@en ;
	schema:name "novelist"@en ;
	schema:description "writer of novels"@en .

wd:Q4853732 a wikibase:Item ;
	rdfs:label "children's writer"@en ;
	skos:prefLabel "children's writer"@en ;
	schema:name "children's writer"@en ;
	schema:description "writer of literature targeted primarily at children"@en .

wd:Q18844224 a wikibase:Item ;
	rdfs:label "science fiction writer"@en ;
	skos:prefLabel "science fiction writer"@en ;
	schema:name "science fiction writer"@en ;
	schema:description "person who writes works of science fiction"@en .

wd:Q245068 a wikibase:Item ;
	rdfs:label "comedian"@en ;
	skos:prefLabel "comedian"@en ;
	schema:name "comedian"@en ;
	schema:description "person who seeks to entertain an audience, primarily by making them laugh"@en .

wd:Q36180 a wikibase:Item ;
	rdfs:label "writer"@en ;
	skos:prefLabel "writer"@en ;
	schema:name "writer"@en ;
	schema:description "person who uses written words to communicate ideas and to produce works of literature"@en .

wd:Q25169 a wikibase:Item ;
	rdfs:label "The Hitchhiker's Guide to the Galaxy pentalogy"@en ;
	skos:prefLabel "The Hitchhiker's Guide to the Galaxy pentalogy"@en ;
	schema:name "The Hitchhiker's Guide to the Galaxy pentalogy"@en ;
	schema:description "1979-1992 series of five books by Douglas Adams"@en .

wd:P800 a wikibase:Property ;
	rdfs:label "notable work"@en ;
	skos:prefLabel "notable work"@en ;
	schema:name "notable work"@en ;
	schema:description "notable scientific, artistic or literary work, or other work of significance among subject's works"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P800 ;
	wikibase:claim p:P800 ;
	wikibase:statementProperty ps:P800 ;
	wikibase:statementValue psv:P800 ;
	wikibase:qualifier pq:P800 ;
	wikibase:qualifierValue pqv:P800 ;
	wikibase:reference pr:P800 ;
	wikibase:referenceValue prv:P800 ;
	wikibase:novalue wdno:P800 .

p:P800 a owl:ObjectProperty .

psv:P800 a owl:ObjectProperty .

pqv:P800 a owl:ObjectProperty .

prv:P800 a owl:ObjectProperty .

wdt:P800 a owl:ObjectProperty .

ps:P800 a owl:ObjectProperty .

pq:P800 a owl:ObjectProperty .

pr:P800 a owl:ObjectProperty .

wdno:P800 a owl:Class ;
	owl:complementOf _:d1c8b15e6b29e7f28ae6b5fc4857eb5f .

_:d1c8b15e6b29e7f28ae6b5fc4857eb5f a owl:Restriction ;
	owl:onProperty wdt:P800 ;
	owl:someValuesFrom owl:Thing .

wd:Q20736364 a wikibase:Item ;
	rdfs:label "Dirk Gently series"@en ;
	skos:prefLabel "Dirk Gently series"@en ;
	schema:name "Dirk Gently series"@en ;
	schema:description "series of three books by Douglas Adams"@en .

wd:Q7758404 a wikibase:Item ;
	rdfs:label "The Private Life of Genghis Khan"@en ;
	skos:prefLabel "The Private Life of Genghis Khan"@en ;
	schema:name "The Private Life of Genghis Khan"@en ;
	schema:description "story by Douglas Adams and Graham Chapman"@en .

wd:P569 a wikibase:Property ;
	rdfs:label "date of birth"@en ;
	skos:prefLabel "date of birth"@en ;
	schema:name "date of birth"@en ;
	schema:description "date on which the subject was born"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P569 ;
	wikibase:claim p:P569 ;
	wikibase:statementProperty ps:P569 ;
	wikibase:statementValue psv:P569 ;
	wikibase:qualifier pq:P569 ;
	wikibase:qualifierValue pqv:P569 ;
	wikibase:reference pr:P569 ;
	wikibase:referenceValue prv:P569 ;
	wikibase:novalue wdno:P569 .

p:P569 a owl:ObjectProperty .

psv:P569 a owl:ObjectProperty .

pqv:P569 a owl:ObjectProperty .

prv:P569 a owl:ObjectProperty .

wdt:P569 a owl:DatatypeProperty .

ps:P569 a owl:DatatypeProperty .

pq:P569 a owl:DatatypeProperty .

pr:P569 a owl:DatatypeProperty .

wdno:P569 a owl:Class ;
	owl:complementOf _:4bfb48d5a3bb3600187722aa6901d2c3 .

_:4bfb48d5a3bb3600187722aa6901d2c3 a owl:Restriction ;
	owl:onProperty wdt:P569 ;
	owl:someValuesFrom owl:Thing .

wd:Q350 a wikibase:Item ;
	rdfs:label "Cambridge"@en ;
	skos:prefLabel "Cambridge"@en ;
	schema:name "Cambridge"@en ;
	schema:description "city in Cambridgeshire, England"@en .

wd:P19 a wikibase:Property ;
	rdfs:label "place of birth"@en ;
	skos:prefLabel "place of birth"@en ;
	schema:name "place of birth"@en ;
	schema:description "most specific known (e.g. city instead of country, or hospital instead of city) birth location of a person, animal or fictional character"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P19 ;
	wikibase:claim p:P19 ;
	wikibase:statementProperty ps:P19 ;
	wikibase:statementValue psv:P19 ;
	wikibase:qualifier pq:P19 ;
	wikibase:qualifierValue pqv:P19 ;
	wikibase:reference pr:P19 ;
	wikibase:referenceValue prv:P19 ;
	wikibase:novalue wdno:P19 .

p:P19 a owl:ObjectProperty .

psv:P19 a owl:ObjectProperty .

pqv:P19 a owl:ObjectProperty .

prv:P19 a owl:ObjectProperty .

wdt:P19 a owl:ObjectProperty .

ps:P19 a owl:ObjectProperty .

pq:P19 a owl:ObjectProperty .

pr:P19 a owl:ObjectProperty .

wdno:P19 a owl:Class ;
	owl:complementOf _:79c4b5dd8e675d763a3f05a7c9e9d549 .

_:79c4b5dd8e675d763a3f05a7c9e9d549 a owl:Restriction ;
	owl:onProperty wdt:P19 ;
	owl:someValuesFrom owl:Thing .

wd:P570 a wikibase:Property ;
	rdfs:label "date of death"@en ;
	skos:prefLabel "date of death"@en ;
	schema:name "date of death"@en ;
	schema:description "date on which the subject died"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P570 ;
	wikibase:claim p:P570 ;
	wikibase:statementProperty ps:P570 ;
	wikibase:statementValue psv:P570 ;
	wikibase:qualifier pq:P570 ;
	wikibase:qualifierValue pqv:P570 ;
	wikibase:reference pr:P570 ;
	wikibase:referenceValue prv:P570 ;
	wikibase:novalue wdno:P570 .

p:P570 a owl:ObjectProperty .

psv:P570 a owl:ObjectProperty .

pqv:P570 a owl:ObjectProperty .

prv:P570 a owl:ObjectProperty .

wdt:P570 a owl:DatatypeProperty .

ps:P570 a owl:DatatypeProperty .

pq:P570 a owl:DatatypeProperty .

pr:P570 a owl:DatatypeProperty .

wdno:P570 a owl:Class ;
	owl:complementOf _:69635c1f0b0b26e68131d8b4c428b7e5 .

_:69635c1f0b0b26e68131d8b4c428b7e5 a owl:Restriction ;
	owl:onProperty wdt:P570 ;
	owl:someValuesFrom owl:Thing .

wd:Q3739104 a wikibase:Item ;
	rdfs:label "natural causes"@en ;
	skos:prefLabel "natural causes"@en ;
	schema:name "natural causes"@en ;
	schema:description "manner of death"@en .

wd:P1196 a wikibase:Property ;
	rdfs:label "manner of death"@en ;
	skos:prefLabel "manner of death"@en ;
	schema:name "manner of death"@en ;
	schema:description "general circumstances of a person's death; e.g. natural causes, accident, suicide, homicide, etc.  Use 'cause of death' (P509) for the specific physiological mechanism, e.g. heart attack, trauma, pneumonia..."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1196 ;
	wikibase:claim p:P1196 ;
	wikibase:statementProperty ps:P1196 ;
	wikibase:statementValue psv:P1196 ;
	wikibase:qualifier pq:P1196 ;
	wikibase:qualifierValue pqv:P1196 ;
	wikibase:reference pr:P1196 ;
	wikibase:referenceValue prv:P1196 ;
	wikibase:novalue wdno:P1196 .

p:P1196 a owl:ObjectProperty .

psv:P1196 a owl:ObjectProperty .

pqv:P1196 a owl:ObjectProperty .

prv:P1196 a owl:ObjectProperty .

wdt:P1196 a owl:ObjectProperty .

ps:P1196 a owl:ObjectProperty .

pq:P1196 a owl:ObjectProperty .

pr:P1196 a owl:ObjectProperty .

wdno:P1196 a owl:Class ;
	owl:complementOf _:5aa7498a222e3575d4bfe4b1af9f738a .

_:5aa7498a222e3575d4bfe4b1af9f738a a owl:Restriction ;
	owl:onProperty wdt:P1196 ;
	owl:someValuesFrom owl:Thing .

wd:Q12152 a wikibase:Item ;
	rdfs:label "myocardial infarction"@en ;
	skos:prefLabel "myocardial infarction"@en ;
	schema:name "myocardial infarction"@en ;
	schema:description "interruption of blood supply to a part of the heart"@en .

wd:P509 a wikibase:Property ;
	rdfs:label "cause of death"@en ;
	skos:prefLabel "cause of death"@en ;
	schema:name "cause of death"@en ;
	schema:description "underlying or immediate cause of death.  Underlying cause (e.g. car accident, stomach cancer) preferred.  Use 'manner of death' (P1196) for broadest category, e.g. natural causes, accident, homicide, suicide"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P509 ;
	wikibase:claim p:P509 ;
	wikibase:statementProperty ps:P509 ;
	wikibase:statementValue psv:P509 ;
	wikibase:qualifier pq:P509 ;
	wikibase:qualifierValue pqv:P509 ;
	wikibase:reference pr:P509 ;
	wikibase:referenceValue prv:P509 ;
	wikibase:novalue wdno:P509 .

p:P509 a owl:ObjectProperty .

psv:P509 a owl:ObjectProperty .

pqv:P509 a owl:ObjectProperty .

prv:P509 a owl:ObjectProperty .

wdt:P509 a owl:ObjectProperty .

ps:P509 a owl:ObjectProperty .

pq:P509 a owl:ObjectProperty .

pr:P509 a owl:ObjectProperty .

wdno:P509 a owl:Class ;
	owl:complementOf _:ca1305e2b2e3e39b5d037cbbf11b3427 .

_:ca1305e2b2e3e39b5d037cbbf11b3427 a owl:Restriction ;
	owl:onProperty wdt:P509 ;
	owl:someValuesFrom owl:Thing .

wd:Q159288 a wikibase:Item ;
	rdfs:label "Santa Barbara"@en ;
	skos:prefLabel "Santa Barbara"@en ;
	schema:name "Santa Barbara"@en ;
	schema:description "city in California, United States"@en .

wd:P20 a wikibase:Property ;
	rdfs:label "place of death"@en ;
	skos:prefLabel "place of death"@en ;
	schema:name "place of death"@en ;
	schema:description "most specific known (e.g. city instead of country, or hospital instead of city) death location of a person, animal or fictional character"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P20 ;
	wikibase:claim p:P20 ;
	wikibase:statementProperty ps:P20 ;
	wikibase:statementValue psv:P20 ;
	wikibase:qualifier pq:P20 ;
	wikibase:qualifierValue pqv:P20 ;
	wikibase:reference pr:P20 ;
	wikibase:referenceValue prv:P20 ;
	wikibase:novalue wdno:P20 .

p:P20 a owl:ObjectProperty .

psv:P20 a owl:ObjectProperty .

pqv:P20 a owl:ObjectProperty .

prv:P20 a owl:ObjectProperty .

wdt:P20 a owl:ObjectProperty .

ps:P20 a owl:ObjectProperty .

pq:P20 a owl:ObjectProperty .

pr:P20 a owl:ObjectProperty .

wdno:P20 a owl:Class ;
	owl:complementOf _:da029950c0b6d5fb9368ae0401421df3 .

_:da029950c0b6d5fb9368ae0401421df3 a owl:Restriction ;
	owl:onProperty wdt:P20 ;
	owl:someValuesFrom owl:Thing .

wd:Q533697 a wikibase:Item ;
	rdfs:label "Highgate Cemetery"@en ;
	skos:prefLabel "Highgate Cemetery"@en ;
	schema:name "Highgate Cemetery"@en ;
	schema:description "place of burial in north London, England"@en .

wd:P119 a wikibase:Property ;
	rdfs:label "place of burial"@en ;
	skos:prefLabel "place of burial"@en ;
	schema:name "place of burial"@en ;
	schema:description "location of grave, resting place, place of ash-scattering, etc. (e.g., town/city or cemetery) for a person or animal. There may be several places: e.g., re-burials, parts of body buried separately."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P119 ;
	wikibase:claim p:P119 ;
	wikibase:statementProperty ps:P119 ;
	wikibase:statementValue psv:P119 ;
	wikibase:qualifier pq:P119 ;
	wikibase:qualifierValue pqv:P119 ;
	wikibase:reference pr:P119 ;
	wikibase:referenceValue prv:P119 ;
	wikibase:novalue wdno:P119 .

p:P119 a owl:ObjectProperty .

psv:P119 a owl:ObjectProperty .

pqv:P119 a owl:ObjectProperty .

prv:P119 a owl:ObjectProperty .

wdt:P119 a owl:ObjectProperty .

ps:P119 a owl:ObjectProperty .

pq:P119 a owl:ObjectProperty .

pr:P119 a owl:ObjectProperty .

wdno:P119 a owl:Class ;
	owl:complementOf _:71eb2f5773cbc41c58f8fcc83889aedd .

_:71eb2f5773cbc41c58f8fcc83889aedd a owl:Restriction ;
	owl:onProperty wdt:P119 ;
	owl:someValuesFrom owl:Thing .

wd:P1442 a wikibase:Property ;
	rdfs:label "image of grave"@en ;
	skos:prefLabel "image of grave"@en ;
	schema:name "image of grave"@en ;
	schema:description "picture of a person or animal's grave, gravestone or tomb"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#CommonsMedia> ;
	wikibase:directClaim wdt:P1442 ;
	wikibase:claim p:P1442 ;
	wikibase:statementProperty ps:P1442 ;
	wikibase:statementValue psv:P1442 ;
	wikibase:qualifier pq:P1442 ;
	wikibase:qualifierValue pqv:P1442 ;
	wikibase:reference pr:P1442 ;
	wikibase:referenceValue prv:P1442 ;
	wikibase:novalue wdno:P1442 .

p:P1442 a owl:ObjectProperty .

psv:P1442 a owl:ObjectProperty .

pqv:P1442 a owl:ObjectProperty .

prv:P1442 a owl:ObjectProperty .

wdt:P1442 a owl:ObjectProperty .

ps:P1442 a owl:ObjectProperty .

pq:P1442 a owl:ObjectProperty .

pr:P1442 a owl:ObjectProperty .

wdno:P1442 a owl:Class ;
	owl:complementOf _:7bbb5b6dfb7b36af2715325fe4e1f50a .

_:7bbb5b6dfb7b36af2715325fe4e1f50a a owl:Restriction ;
	owl:onProperty wdt:P1442 ;
	owl:someValuesFrom owl:Thing .

wd:P1015 a wikibase:Property ;
	rdfs:label "NORAF ID"@en ;
	skos:prefLabel "NORAF ID"@en ;
	schema:name "NORAF ID"@en ;
	schema:description "identifier in the Norwegian Authority File, formerly Bibsys Authority File"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1015 ;
	wikibase:claim p:P1015 ;
	wikibase:statementProperty ps:P1015 ;
	wikibase:statementValue psv:P1015 ;
	wikibase:qualifier pq:P1015 ;
	wikibase:qualifierValue pqv:P1015 ;
	wikibase:reference pr:P1015 ;
	wikibase:referenceValue prv:P1015 ;
	wikibase:novalue wdno:P1015 ;
	wikibase:directClaimNormalized wdtn:P1015 ;
	wikibase:statementValueNormalized psn:P1015 ;
	wikibase:qualifierValueNormalized pqn:P1015 ;
	wikibase:referenceValueNormalized prn:P1015 .

p:P1015 a owl:ObjectProperty .

psv:P1015 a owl:ObjectProperty .

pqv:P1015 a owl:ObjectProperty .

prv:P1015 a owl:ObjectProperty .

wdt:P1015 a owl:DatatypeProperty .

ps:P1015 a owl:DatatypeProperty .

pq:P1015 a owl:DatatypeProperty .

pr:P1015 a owl:DatatypeProperty .

psn:P1015 a owl:ObjectProperty .

pqn:P1015 a owl:ObjectProperty .

prn:P1015 a owl:ObjectProperty .

wdtn:P1015 a owl:ObjectProperty .

wdno:P1015 a owl:Class ;
	owl:complementOf _:f5094c5277687d34a21eee6ba1d0029e .

_:f5094c5277687d34a21eee6ba1d0029e a owl:Restriction ;
	owl:onProperty wdt:P1015 ;
	owl:someValuesFrom owl:Thing .

wd:Q463035 a wikibase:Item ;
	rdfs:label "Douglas"@en ;
	skos:prefLabel "Douglas"@en ;
	schema:name "Douglas"@en ;
	schema:description "male given name"@en .

wd:P735 a wikibase:Property ;
	rdfs:label "given name"@en ;
	skos:prefLabel "given name"@en ;
	schema:name "given name"@en ;
	schema:description "first name or another given name of this person; values used with the property should not link disambiguations nor family names"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P735 ;
	wikibase:claim p:P735 ;
	wikibase:statementProperty ps:P735 ;
	wikibase:statementValue psv:P735 ;
	wikibase:qualifier pq:P735 ;
	wikibase:qualifierValue pqv:P735 ;
	wikibase:reference pr:P735 ;
	wikibase:referenceValue prv:P735 ;
	wikibase:novalue wdno:P735 .

p:P735 a owl:ObjectProperty .

psv:P735 a owl:ObjectProperty .

pqv:P735 a owl:ObjectProperty .

prv:P735 a owl:ObjectProperty .

wdt:P735 a owl:ObjectProperty .

ps:P735 a owl:ObjectProperty .

pq:P735 a owl:ObjectProperty .

pr:P735 a owl:ObjectProperty .

wdno:P735 a owl:Class ;
	owl:complementOf _:7cd44173f1681fd19dd103a28fda54a8 .

_:7cd44173f1681fd19dd103a28fda54a8 a owl:Restriction ;
	owl:onProperty wdt:P735 ;
	owl:someValuesFrom owl:Thing .

wd:Q351735 a wikibase:Item ;
	rdfs:label "Adams"@en ;
	skos:prefLabel "Adams"@en ;
	schema:name "Adams"@en ;
	schema:description "family name"@en .

wd:P734 a wikibase:Property ;
	rdfs:label "family name"@en ;
	skos:prefLabel "family name"@en ;
	schema:name "family name"@en ;
	schema:description "part of full name of person"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P734 ;
	wikibase:claim p:P734 ;
	wikibase:statementProperty ps:P734 ;
	wikibase:statementValue psv:P734 ;
	wikibase:qualifier pq:P734 ;
	wikibase:qualifierValue pqv:P734 ;
	wikibase:reference pr:P734 ;
	wikibase:referenceValue prv:P734 ;
	wikibase:novalue wdno:P734 .

p:P734 a owl:ObjectProperty .

psv:P734 a owl:ObjectProperty .

pqv:P734 a owl:ObjectProperty .

prv:P734 a owl:ObjectProperty .

wdt:P734 a owl:ObjectProperty .

ps:P734 a owl:ObjectProperty .

pq:P734 a owl:ObjectProperty .

pr:P734 a owl:ObjectProperty .

wdno:P734 a owl:Class ;
	owl:complementOf _:80fa0a4abf09baad42c1554bbfc82b00 .

_:80fa0a4abf09baad42c1554bbfc82b00 a owl:Restriction ;
	owl:onProperty wdt:P734 ;
	owl:someValuesFrom owl:Thing .

wd:Q145 a wikibase:Item ;
	rdfs:label "United Kingdom"@en ;
	skos:prefLabel "United Kingdom"@en ;
	schema:name "United Kingdom"@en ;
	schema:description "country in north-west Europe"@en .

wd:P27 a wikibase:Property ;
	rdfs:label "country of citizenship"@en ;
	skos:prefLabel "country of citizenship"@en ;
	schema:name "country of citizenship"@en ;
	schema:description "the object is a country that recognizes the subject as its citizen"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P27 ;
	wikibase:claim p:P27 ;
	wikibase:statementProperty ps:P27 ;
	wikibase:statementValue psv:P27 ;
	wikibase:qualifier pq:P27 ;
	wikibase:qualifierValue pqv:P27 ;
	wikibase:reference pr:P27 ;
	wikibase:referenceValue prv:P27 ;
	wikibase:novalue wdno:P27 .

p:P27 a owl:ObjectProperty .

psv:P27 a owl:ObjectProperty .

pqv:P27 a owl:ObjectProperty .

prv:P27 a owl:ObjectProperty .

wdt:P27 a owl:ObjectProperty .

ps:P27 a owl:ObjectProperty .

pq:P27 a owl:ObjectProperty .

pr:P27 a owl:ObjectProperty .

wdno:P27 a owl:Class ;
	owl:complementOf _:10b960483099011464f84586b88d281b .

_:10b960483099011464f84586b88d281b a owl:Restriction ;
	owl:onProperty wdt:P27 ;
	owl:someValuesFrom owl:Thing .

wd:Q84 a wikibase:Item ;
	rdfs:label "London"@en ;
	skos:prefLabel "London"@en ;
	schema:name "London"@en ;
	schema:description "capital and largest city of the United Kingdom"@en .

wd:P551 a wikibase:Property ;
	rdfs:label "residence"@en ;
	skos:prefLabel "residence"@en ;
	schema:name "residence"@en ;
	schema:description "the place where the person is or has been, resident"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P551 ;
	wikibase:claim p:P551 ;
	wikibase:statementProperty ps:P551 ;
	wikibase:statementValue psv:P551 ;
	wikibase:qualifier pq:P551 ;
	wikibase:qualifierValue pqv:P551 ;
	wikibase:reference pr:P551 ;
	wikibase:referenceValue prv:P551 ;
	wikibase:novalue wdno:P551 .

p:P551 a owl:ObjectProperty .

psv:P551 a owl:ObjectProperty .

pqv:P551 a owl:ObjectProperty .

prv:P551 a owl:ObjectProperty .

wdt:P551 a owl:ObjectProperty .

ps:P551 a owl:ObjectProperty .

pq:P551 a owl:ObjectProperty .

pr:P551 a owl:ObjectProperty .

wdno:P551 a owl:Class ;
	owl:complementOf _:2e2ac5e9a91f653ff0c0823b43723840 .

_:2e2ac5e9a91f653ff0c0823b43723840 a owl:Restriction ;
	owl:onProperty wdt:P551 ;
	owl:someValuesFrom owl:Thing .

wd:Q909993 a wikibase:Item ;
	rdfs:label "Brentwood"@en ;
	skos:prefLabel "Brentwood"@en ;
	schema:name "Brentwood"@en ;
	schema:description "town and the principal settlement of the Borough of Brentwood in England"@en .

wd:Q1860 a wikibase:Item ;
	rdfs:label "English"@en ;
	skos:prefLabel "English"@en ;
	schema:name "English"@en ;
	schema:description "West Germanic language"@en .

wd:P103 a wikibase:Property ;
	rdfs:label "native language"@en ;
	skos:prefLabel "native language"@en ;
	schema:name "native language"@en ;
	schema:description "language or languages a person has learned from early childhood"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P103 ;
	wikibase:claim p:P103 ;
	wikibase:statementProperty ps:P103 ;
	wikibase:statementValue psv:P103 ;
	wikibase:qualifier pq:P103 ;
	wikibase:qualifierValue pqv:P103 ;
	wikibase:reference pr:P103 ;
	wikibase:referenceValue prv:P103 ;
	wikibase:novalue wdno:P103 .

p:P103 a owl:ObjectProperty .

psv:P103 a owl:ObjectProperty .

pqv:P103 a owl:ObjectProperty .

prv:P103 a owl:ObjectProperty .

wdt:P103 a owl:ObjectProperty .

ps:P103 a owl:ObjectProperty .

pq:P103 a owl:ObjectProperty .

pr:P103 a owl:ObjectProperty .

wdno:P103 a owl:Class ;
	owl:complementOf _:aaf3f293a5c93e051ac4c80abea3a9a9 .

_:aaf3f293a5c93e051ac4c80abea3a9a9 a owl:Restriction ;
	owl:onProperty wdt:P103 ;
	owl:someValuesFrom owl:Thing .

wd:P1368 a wikibase:Property ;
	rdfs:label "LNB ID"@en ;
	skos:prefLabel "LNB ID"@en ;
	schema:name "LNB ID"@en ;
	schema:description "identifier assigned by the National Library of Latvia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1368 ;
	wikibase:claim p:P1368 ;
	wikibase:statementProperty ps:P1368 ;
	wikibase:statementValue psv:P1368 ;
	wikibase:qualifier pq:P1368 ;
	wikibase:qualifierValue pqv:P1368 ;
	wikibase:reference pr:P1368 ;
	wikibase:referenceValue prv:P1368 ;
	wikibase:novalue wdno:P1368 ;
	wikibase:directClaimNormalized wdtn:P1368 ;
	wikibase:statementValueNormalized psn:P1368 ;
	wikibase:qualifierValueNormalized pqn:P1368 ;
	wikibase:referenceValueNormalized prn:P1368 .

p:P1368 a owl:ObjectProperty .

psv:P1368 a owl:ObjectProperty .

pqv:P1368 a owl:ObjectProperty .

prv:P1368 a owl:ObjectProperty .

wdt:P1368 a owl:DatatypeProperty .

ps:P1368 a owl:DatatypeProperty .

pq:P1368 a owl:DatatypeProperty .

pr:P1368 a owl:DatatypeProperty .

psn:P1368 a owl:ObjectProperty .

pqn:P1368 a owl:ObjectProperty .

prn:P1368 a owl:ObjectProperty .

wdtn:P1368 a owl:ObjectProperty .

wdno:P1368 a owl:Class ;
	owl:complementOf _:9e5897c3da5422c230ae7fcf8c78fba1 .

_:9e5897c3da5422c230ae7fcf8c78fba1 a owl:Restriction ;
	owl:onProperty wdt:P1368 ;
	owl:someValuesFrom owl:Thing .

wd:P244 a wikibase:Property ;
	rdfs:label "Library of Congress authority ID"@en ;
	skos:prefLabel "Library of Congress authority ID"@en ;
	schema:name "Library of Congress authority ID"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P244 ;
	wikibase:claim p:P244 ;
	wikibase:statementProperty ps:P244 ;
	wikibase:statementValue psv:P244 ;
	wikibase:qualifier pq:P244 ;
	wikibase:qualifierValue pqv:P244 ;
	wikibase:reference pr:P244 ;
	wikibase:referenceValue prv:P244 ;
	wikibase:novalue wdno:P244 ;
	wikibase:directClaimNormalized wdtn:P244 ;
	wikibase:statementValueNormalized psn:P244 ;
	wikibase:qualifierValueNormalized pqn:P244 ;
	wikibase:referenceValueNormalized prn:P244 .

p:P244 a owl:ObjectProperty .

psv:P244 a owl:ObjectProperty .

pqv:P244 a owl:ObjectProperty .

prv:P244 a owl:ObjectProperty .

wdt:P244 a owl:DatatypeProperty .

ps:P244 a owl:DatatypeProperty .

pq:P244 a owl:DatatypeProperty .

pr:P244 a owl:DatatypeProperty .

psn:P244 a owl:ObjectProperty .

pqn:P244 a owl:ObjectProperty .

prn:P244 a owl:ObjectProperty .

wdtn:P244 a owl:ObjectProperty .

wdno:P244 a owl:Class ;
	owl:complementOf _:590c65ffccb1a1851cc444e4370c7714 .

_:590c65ffccb1a1851cc444e4370c7714 a owl:Restriction ;
	owl:onProperty wdt:P244 ;
	owl:someValuesFrom owl:Thing .

wd:P947 a wikibase:Property ;
	rdfs:label "RSL ID (person)"@en ;
	skos:prefLabel "RSL ID (person)"@en ;
	schema:name "RSL ID (person)"@en ;
	schema:description "person identifier in the Russian State Library"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P947 ;
	wikibase:claim p:P947 ;
	wikibase:statementProperty ps:P947 ;
	wikibase:statementValue psv:P947 ;
	wikibase:qualifier pq:P947 ;
	wikibase:qualifierValue pqv:P947 ;
	wikibase:reference pr:P947 ;
	wikibase:referenceValue prv:P947 ;
	wikibase:novalue wdno:P947 ;
	wikibase:directClaimNormalized wdtn:P947 ;
	wikibase:statementValueNormalized psn:P947 ;
	wikibase:qualifierValueNormalized pqn:P947 ;
	wikibase:referenceValueNormalized prn:P947 .

p:P947 a owl:ObjectProperty .

psv:P947 a owl:ObjectProperty .

pqv:P947 a owl:ObjectProperty .

prv:P947 a owl:ObjectProperty .

wdt:P947 a owl:DatatypeProperty .

ps:P947 a owl:DatatypeProperty .

pq:P947 a owl:DatatypeProperty .

pr:P947 a owl:DatatypeProperty .

psn:P947 a owl:ObjectProperty .

pqn:P947 a owl:ObjectProperty .

prn:P947 a owl:ObjectProperty .

wdtn:P947 a owl:ObjectProperty .

wdno:P947 a owl:Class ;
	owl:complementOf _:09f55493f3206967be84d8a25f7d37f9 .

_:09f55493f3206967be84d8a25f7d37f9 a owl:Restriction ;
	owl:onProperty wdt:P947 ;
	owl:someValuesFrom owl:Thing .

wd:P214 a wikibase:Property ;
	rdfs:label "VIAF ID"@en ;
	skos:prefLabel "VIAF ID"@en ;
	schema:name "VIAF ID"@en ;
	schema:description "identifier for the Virtual International Authority File database [format: up to 22 digits]"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P214 ;
	wikibase:claim p:P214 ;
	wikibase:statementProperty ps:P214 ;
	wikibase:statementValue psv:P214 ;
	wikibase:qualifier pq:P214 ;
	wikibase:qualifierValue pqv:P214 ;
	wikibase:reference pr:P214 ;
	wikibase:referenceValue prv:P214 ;
	wikibase:novalue wdno:P214 ;
	wikibase:directClaimNormalized wdtn:P214 ;
	wikibase:statementValueNormalized psn:P214 ;
	wikibase:qualifierValueNormalized pqn:P214 ;
	wikibase:referenceValueNormalized prn:P214 .

p:P214 a owl:ObjectProperty .

psv:P214 a owl:ObjectProperty .

pqv:P214 a owl:ObjectProperty .

prv:P214 a owl:ObjectProperty .

wdt:P214 a owl:DatatypeProperty .

ps:P214 a owl:DatatypeProperty .

pq:P214 a owl:DatatypeProperty .

pr:P214 a owl:DatatypeProperty .

psn:P214 a owl:ObjectProperty .

pqn:P214 a owl:ObjectProperty .

prn:P214 a owl:ObjectProperty .

wdtn:P214 a owl:ObjectProperty .

wdno:P214 a owl:Class ;
	owl:complementOf _:29da2ca818bc08f93ddc0a2be66197e9 .

_:29da2ca818bc08f93ddc0a2be66197e9 a owl:Restriction ;
	owl:onProperty wdt:P214 ;
	owl:someValuesFrom owl:Thing .

wd:P345 a wikibase:Property ;
	rdfs:label "IMDb ID"@en ;
	skos:prefLabel "IMDb ID"@en ;
	schema:name "IMDb ID"@en ;
	schema:description "identifier for the IMDb [with prefix 'tt', 'nm', 'co', 'ev', 'ch' or 'ni']"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P345 ;
	wikibase:claim p:P345 ;
	wikibase:statementProperty ps:P345 ;
	wikibase:statementValue psv:P345 ;
	wikibase:qualifier pq:P345 ;
	wikibase:qualifierValue pqv:P345 ;
	wikibase:reference pr:P345 ;
	wikibase:referenceValue prv:P345 ;
	wikibase:novalue wdno:P345 ;
	wikibase:directClaimNormalized wdtn:P345 ;
	wikibase:statementValueNormalized psn:P345 ;
	wikibase:qualifierValueNormalized pqn:P345 ;
	wikibase:referenceValueNormalized prn:P345 .

p:P345 a owl:ObjectProperty .

psv:P345 a owl:ObjectProperty .

pqv:P345 a owl:ObjectProperty .

prv:P345 a owl:ObjectProperty .

wdt:P345 a owl:DatatypeProperty .

ps:P345 a owl:DatatypeProperty .

pq:P345 a owl:DatatypeProperty .

pr:P345 a owl:DatatypeProperty .

psn:P345 a owl:ObjectProperty .

pqn:P345 a owl:ObjectProperty .

prn:P345 a owl:ObjectProperty .

wdtn:P345 a owl:ObjectProperty .

wdno:P345 a owl:Class ;
	owl:complementOf _:3a4e6350bce9f8651aa60101dacb63de .

_:3a4e6350bce9f8651aa60101dacb63de a owl:Restriction ;
	owl:onProperty wdt:P345 ;
	owl:someValuesFrom owl:Thing .

wd:P373 a wikibase:Property ;
	rdfs:label "Commons category"@en ;
	skos:prefLabel "Commons category"@en ;
	schema:name "Commons category"@en ;
	schema:description "name of the Wikimedia Commons category containing files related to this item (without the prefix \"Category:\")"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P373 ;
	wikibase:claim p:P373 ;
	wikibase:statementProperty ps:P373 ;
	wikibase:statementValue psv:P373 ;
	wikibase:qualifier pq:P373 ;
	wikibase:qualifierValue pqv:P373 ;
	wikibase:reference pr:P373 ;
	wikibase:referenceValue prv:P373 ;
	wikibase:novalue wdno:P373 .

p:P373 a owl:ObjectProperty .

psv:P373 a owl:ObjectProperty .

pqv:P373 a owl:ObjectProperty .

prv:P373 a owl:ObjectProperty .

wdt:P373 a owl:DatatypeProperty .

ps:P373 a owl:DatatypeProperty .

pq:P373 a owl:DatatypeProperty .

pr:P373 a owl:DatatypeProperty .

wdno:P373 a owl:Class ;
	owl:complementOf _:3de19c92e209926f02f215095eb4fd12 .

_:3de19c92e209926f02f215095eb4fd12 a owl:Restriction ;
	owl:onProperty wdt:P373 ;
	owl:someValuesFrom owl:Thing .

wd:P349 a wikibase:Property ;
	rdfs:label "NDL Authority ID"@en ;
	skos:prefLabel "NDL Authority ID"@en ;
	schema:name "NDL Authority ID"@en ;
	schema:description "identifier for authority control per the National Diet Library of Japan"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P349 ;
	wikibase:claim p:P349 ;
	wikibase:statementProperty ps:P349 ;
	wikibase:statementValue psv:P349 ;
	wikibase:qualifier pq:P349 ;
	wikibase:qualifierValue pqv:P349 ;
	wikibase:reference pr:P349 ;
	wikibase:referenceValue prv:P349 ;
	wikibase:novalue wdno:P349 ;
	wikibase:directClaimNormalized wdtn:P349 ;
	wikibase:statementValueNormalized psn:P349 ;
	wikibase:qualifierValueNormalized pqn:P349 ;
	wikibase:referenceValueNormalized prn:P349 .

p:P349 a owl:ObjectProperty .

psv:P349 a owl:ObjectProperty .

pqv:P349 a owl:ObjectProperty .

prv:P349 a owl:ObjectProperty .

wdt:P349 a owl:DatatypeProperty .

ps:P349 a owl:DatatypeProperty .

pq:P349 a owl:DatatypeProperty .

pr:P349 a owl:DatatypeProperty .

psn:P349 a owl:ObjectProperty .

pqn:P349 a owl:ObjectProperty .

prn:P349 a owl:ObjectProperty .

wdtn:P349 a owl:ObjectProperty .

wdno:P349 a owl:Class ;
	owl:complementOf _:cd24209e08bc1ccf071135ac50a89a01 .

_:cd24209e08bc1ccf071135ac50a89a01 a owl:Restriction ;
	owl:onProperty wdt:P349 ;
	owl:someValuesFrom owl:Thing .

wd:P434 a wikibase:Property ;
	rdfs:label "MusicBrainz artist ID"@en ;
	skos:prefLabel "MusicBrainz artist ID"@en ;
	schema:name "MusicBrainz artist ID"@en ;
	schema:description "identifier for an artist in the MusicBrainz open music encyclopedia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P434 ;
	wikibase:claim p:P434 ;
	wikibase:statementProperty ps:P434 ;
	wikibase:statementValue psv:P434 ;
	wikibase:qualifier pq:P434 ;
	wikibase:qualifierValue pqv:P434 ;
	wikibase:reference pr:P434 ;
	wikibase:referenceValue prv:P434 ;
	wikibase:novalue wdno:P434 ;
	wikibase:directClaimNormalized wdtn:P434 ;
	wikibase:statementValueNormalized psn:P434 ;
	wikibase:qualifierValueNormalized pqn:P434 ;
	wikibase:referenceValueNormalized prn:P434 .

p:P434 a owl:ObjectProperty .

psv:P434 a owl:ObjectProperty .

pqv:P434 a owl:ObjectProperty .

prv:P434 a owl:ObjectProperty .

wdt:P434 a owl:DatatypeProperty .

ps:P434 a owl:DatatypeProperty .

pq:P434 a owl:DatatypeProperty .

pr:P434 a owl:DatatypeProperty .

psn:P434 a owl:ObjectProperty .

pqn:P434 a owl:ObjectProperty .

prn:P434 a owl:ObjectProperty .

wdtn:P434 a owl:ObjectProperty .

wdno:P434 a owl:Class ;
	owl:complementOf _:d14f406f7399e30628f1731deb160709 .

_:d14f406f7399e30628f1731deb160709 a owl:Restriction ;
	owl:onProperty wdt:P434 ;
	owl:someValuesFrom owl:Thing .

wd:P268 a wikibase:Property ;
	rdfs:label "Bibliothèque nationale de France ID"@en ;
	skos:prefLabel "Bibliothèque nationale de France ID"@en ;
	schema:name "Bibliothèque nationale de France ID"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P268 ;
	wikibase:claim p:P268 ;
	wikibase:statementProperty ps:P268 ;
	wikibase:statementValue psv:P268 ;
	wikibase:qualifier pq:P268 ;
	wikibase:qualifierValue pqv:P268 ;
	wikibase:reference pr:P268 ;
	wikibase:referenceValue prv:P268 ;
	wikibase:novalue wdno:P268 ;
	wikibase:directClaimNormalized wdtn:P268 ;
	wikibase:statementValueNormalized psn:P268 ;
	wikibase:qualifierValueNormalized pqn:P268 ;
	wikibase:referenceValueNormalized prn:P268 .

p:P268 a owl:ObjectProperty .

psv:P268 a owl:ObjectProperty .

pqv:P268 a owl:ObjectProperty .

prv:P268 a owl:ObjectProperty .

wdt:P268 a owl:DatatypeProperty .

ps:P268 a owl:DatatypeProperty .

pq:P268 a owl:DatatypeProperty .

pr:P268 a owl:DatatypeProperty .

psn:P268 a owl:ObjectProperty .

pqn:P268 a owl:ObjectProperty .

prn:P268 a owl:ObjectProperty .

wdtn:P268 a owl:ObjectProperty .

wdno:P268 a owl:Class ;
	owl:complementOf _:d3120d2b47ac0e3950d9219515d435cc .

_:d3120d2b47ac0e3950d9219515d435cc a owl:Restriction ;
	owl:onProperty wdt:P268 ;
	owl:someValuesFrom owl:Thing .

wd:P227 a wikibase:Property ;
	rdfs:label "GND ID"@en ;
	skos:prefLabel "GND ID"@en ;
	schema:name "GND ID"@en ;
	schema:description "identifier from an international authority file of names, subjects, and organizations (please don't use type n = name, disambiguation) - Deutsche Nationalbibliothek"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P227 ;
	wikibase:claim p:P227 ;
	wikibase:statementProperty ps:P227 ;
	wikibase:statementValue psv:P227 ;
	wikibase:qualifier pq:P227 ;
	wikibase:qualifierValue pqv:P227 ;
	wikibase:reference pr:P227 ;
	wikibase:referenceValue prv:P227 ;
	wikibase:novalue wdno:P227 ;
	wikibase:directClaimNormalized wdtn:P227 ;
	wikibase:statementValueNormalized psn:P227 ;
	wikibase:qualifierValueNormalized pqn:P227 ;
	wikibase:referenceValueNormalized prn:P227 .

p:P227 a owl:ObjectProperty .

psv:P227 a owl:ObjectProperty .

pqv:P227 a owl:ObjectProperty .

prv:P227 a owl:ObjectProperty .

wdt:P227 a owl:DatatypeProperty .

ps:P227 a owl:DatatypeProperty .

pq:P227 a owl:DatatypeProperty .

pr:P227 a owl:DatatypeProperty .

psn:P227 a owl:ObjectProperty .

pqn:P227 a owl:ObjectProperty .

prn:P227 a owl:ObjectProperty .

wdtn:P227 a owl:ObjectProperty .

wdno:P227 a owl:Class ;
	owl:complementOf _:286c7ee15bc3c86b8eb6b23547b34d68 .

_:286c7ee15bc3c86b8eb6b23547b34d68 a owl:Restriction ;
	owl:onProperty wdt:P227 ;
	owl:someValuesFrom owl:Thing .

wd:P535 a wikibase:Property ;
	rdfs:label "Find a Grave memorial ID"@en ;
	skos:prefLabel "Find a Grave memorial ID"@en ;
	schema:name "Find a Grave memorial ID"@en ;
	schema:description "identifier of an individual's burial place in the Find a Grave database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P535 ;
	wikibase:claim p:P535 ;
	wikibase:statementProperty ps:P535 ;
	wikibase:statementValue psv:P535 ;
	wikibase:qualifier pq:P535 ;
	wikibase:qualifierValue pqv:P535 ;
	wikibase:reference pr:P535 ;
	wikibase:referenceValue prv:P535 ;
	wikibase:novalue wdno:P535 ;
	wikibase:directClaimNormalized wdtn:P535 ;
	wikibase:statementValueNormalized psn:P535 ;
	wikibase:qualifierValueNormalized pqn:P535 ;
	wikibase:referenceValueNormalized prn:P535 .

p:P535 a owl:ObjectProperty .

psv:P535 a owl:ObjectProperty .

pqv:P535 a owl:ObjectProperty .

prv:P535 a owl:ObjectProperty .

wdt:P535 a owl:DatatypeProperty .

ps:P535 a owl:DatatypeProperty .

pq:P535 a owl:DatatypeProperty .

pr:P535 a owl:DatatypeProperty .

psn:P535 a owl:ObjectProperty .

pqn:P535 a owl:ObjectProperty .

prn:P535 a owl:ObjectProperty .

wdtn:P535 a owl:ObjectProperty .

wdno:P535 a owl:Class ;
	owl:complementOf _:132981616110a181261762493c11af74 .

_:132981616110a181261762493c11af74 a owl:Restriction ;
	owl:onProperty wdt:P535 ;
	owl:someValuesFrom owl:Thing .

wd:Q14623675 a wikibase:Item ;
	rdfs:label "Christopher Douglas Adams"@en ;
	skos:prefLabel "Christopher Douglas Adams"@en ;
	schema:name "Christopher Douglas Adams"@en ;
	schema:description "father of sci-fi author Douglas Adams"@en .

wd:P22 a wikibase:Property ;
	rdfs:label "father"@en ;
	skos:prefLabel "father"@en ;
	schema:name "father"@en ;
	schema:description "male parent of the subject. For stepfather, use \"stepparent\" (P3448)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P22 ;
	wikibase:claim p:P22 ;
	wikibase:statementProperty ps:P22 ;
	wikibase:statementValue psv:P22 ;
	wikibase:qualifier pq:P22 ;
	wikibase:qualifierValue pqv:P22 ;
	wikibase:reference pr:P22 ;
	wikibase:referenceValue prv:P22 ;
	wikibase:novalue wdno:P22 .

p:P22 a owl:ObjectProperty .

psv:P22 a owl:ObjectProperty .

pqv:P22 a owl:ObjectProperty .

prv:P22 a owl:ObjectProperty .

wdt:P22 a owl:ObjectProperty .

ps:P22 a owl:ObjectProperty .

pq:P22 a owl:ObjectProperty .

pr:P22 a owl:ObjectProperty .

wdno:P22 a owl:Class ;
	owl:complementOf _:e980a69703fe427dd5e1d323cd63ae13 .

_:e980a69703fe427dd5e1d323cd63ae13 a owl:Restriction ;
	owl:onProperty wdt:P22 ;
	owl:someValuesFrom owl:Thing .

wd:Q14623678 a wikibase:Item ;
	rdfs:label "Janet Adams"@en ;
	skos:prefLabel "Janet Adams"@en ;
	schema:name "Janet Adams"@en ;
	schema:description "mother of sci-fi author Douglas Adams"@en .

wd:P25 a wikibase:Property ;
	rdfs:label "mother"@en ;
	skos:prefLabel "mother"@en ;
	schema:name "mother"@en ;
	schema:description "female parent of the subject. For stepmother, use \"stepparent\" (P3448)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P25 ;
	wikibase:claim p:P25 ;
	wikibase:statementProperty ps:P25 ;
	wikibase:statementValue psv:P25 ;
	wikibase:qualifier pq:P25 ;
	wikibase:qualifierValue pqv:P25 ;
	wikibase:reference pr:P25 ;
	wikibase:referenceValue prv:P25 ;
	wikibase:novalue wdno:P25 .

p:P25 a owl:ObjectProperty .

psv:P25 a owl:ObjectProperty .

pqv:P25 a owl:ObjectProperty .

prv:P25 a owl:ObjectProperty .

wdt:P25 a owl:ObjectProperty .

ps:P25 a owl:ObjectProperty .

pq:P25 a owl:ObjectProperty .

pr:P25 a owl:ObjectProperty .

wdno:P25 a owl:Class ;
	owl:complementOf _:aa380536eb9fdfbc9f4ce0f157c7fdb7 .

_:aa380536eb9fdfbc9f4ce0f157c7fdb7 a owl:Restriction ;
	owl:onProperty wdt:P25 ;
	owl:someValuesFrom owl:Thing .

wd:Q14623683 a wikibase:Item ;
	rdfs:label "Polly Adams"@en ;
	skos:prefLabel "Polly Adams"@en ;
	schema:name "Polly Adams"@en ;
	schema:description "British actress and daughter of sci-fi author Douglas Adams"@en .

wd:P40 a wikibase:Property ;
	rdfs:label "child"@en ;
	skos:prefLabel "child"@en ;
	schema:name "child"@en ;
	schema:description "subject has object as child. Do not use for stepchildren"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P40 ;
	wikibase:claim p:P40 ;
	wikibase:statementProperty ps:P40 ;
	wikibase:statementValue psv:P40 ;
	wikibase:qualifier pq:P40 ;
	wikibase:qualifierValue pqv:P40 ;
	wikibase:reference pr:P40 ;
	wikibase:referenceValue prv:P40 ;
	wikibase:novalue wdno:P40 .

p:P40 a owl:ObjectProperty .

psv:P40 a owl:ObjectProperty .

pqv:P40 a owl:ObjectProperty .

prv:P40 a owl:ObjectProperty .

wdt:P40 a owl:ObjectProperty .

ps:P40 a owl:ObjectProperty .

pq:P40 a owl:ObjectProperty .

pr:P40 a owl:ObjectProperty .

wdno:P40 a owl:Class ;
	owl:complementOf _:0fa0ea7c1a9dd8c5db4fc6e14e8767c4 .

_:0fa0ea7c1a9dd8c5db4fc6e14e8767c4 a owl:Restriction ;
	owl:onProperty wdt:P40 ;
	owl:someValuesFrom owl:Thing .

wd:P906 a wikibase:Property ;
	rdfs:label "SELIBR ID"@en ;
	skos:prefLabel "SELIBR ID"@en ;
	schema:name "SELIBR ID"@en ;
	schema:description "identifier per National Library of Sweden Libris library catalog"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P906 ;
	wikibase:claim p:P906 ;
	wikibase:statementProperty ps:P906 ;
	wikibase:statementValue psv:P906 ;
	wikibase:qualifier pq:P906 ;
	wikibase:qualifierValue pqv:P906 ;
	wikibase:reference pr:P906 ;
	wikibase:referenceValue prv:P906 ;
	wikibase:novalue wdno:P906 ;
	wikibase:directClaimNormalized wdtn:P906 ;
	wikibase:statementValueNormalized psn:P906 ;
	wikibase:qualifierValueNormalized pqn:P906 ;
	wikibase:referenceValueNormalized prn:P906 .

p:P906 a owl:ObjectProperty .

psv:P906 a owl:ObjectProperty .

pqv:P906 a owl:ObjectProperty .

prv:P906 a owl:ObjectProperty .

wdt:P906 a owl:DatatypeProperty .

ps:P906 a owl:DatatypeProperty .

pq:P906 a owl:DatatypeProperty .

pr:P906 a owl:DatatypeProperty .

psn:P906 a owl:ObjectProperty .

pqn:P906 a owl:ObjectProperty .

prn:P906 a owl:ObjectProperty .

wdtn:P906 a owl:ObjectProperty .

wdno:P906 a owl:Class ;
	owl:complementOf _:e45f8af414eecb543d997cc3039ae32a .

_:e45f8af414eecb543d997cc3039ae32a a owl:Restriction ;
	owl:onProperty wdt:P906 ;
	owl:someValuesFrom owl:Thing .

wd:P1006 a wikibase:Property ;
	rdfs:label "Nationale Thesaurus voor Auteurs ID"@en ;
	skos:prefLabel "Nationale Thesaurus voor Auteurs ID"@en ;
	schema:name "Nationale Thesaurus voor Auteurs ID"@en ;
	schema:description "identifier for person names (not: works nor organisations) from the Dutch National Thesaurus for Author names (which also contains non-authors)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1006 ;
	wikibase:claim p:P1006 ;
	wikibase:statementProperty ps:P1006 ;
	wikibase:statementValue psv:P1006 ;
	wikibase:qualifier pq:P1006 ;
	wikibase:qualifierValue pqv:P1006 ;
	wikibase:reference pr:P1006 ;
	wikibase:referenceValue prv:P1006 ;
	wikibase:novalue wdno:P1006 ;
	wikibase:directClaimNormalized wdtn:P1006 ;
	wikibase:statementValueNormalized psn:P1006 ;
	wikibase:qualifierValueNormalized pqn:P1006 ;
	wikibase:referenceValueNormalized prn:P1006 .

p:P1006 a owl:ObjectProperty .

psv:P1006 a owl:ObjectProperty .

pqv:P1006 a owl:ObjectProperty .

prv:P1006 a owl:ObjectProperty .

wdt:P1006 a owl:DatatypeProperty .

ps:P1006 a owl:DatatypeProperty .

pq:P1006 a owl:DatatypeProperty .

pr:P1006 a owl:DatatypeProperty .

psn:P1006 a owl:ObjectProperty .

pqn:P1006 a owl:ObjectProperty .

prn:P1006 a owl:ObjectProperty .

wdtn:P1006 a owl:ObjectProperty .

wdno:P1006 a owl:Class ;
	owl:complementOf _:ef6abca6d7a000dbeea7ff6cf1c93655 .

_:ef6abca6d7a000dbeea7ff6cf1c93655 a owl:Restriction ;
	owl:onProperty wdt:P1006 ;
	owl:someValuesFrom owl:Thing .

wd:P949 a wikibase:Property ;
	rdfs:label "National Library of Israel ID (old)"@en ;
	skos:prefLabel "National Library of Israel ID (old)"@en ;
	schema:name "National Library of Israel ID (old)"@en ;
	schema:description "former identifier for authority control used at the National Library of Israel. Replaced with \"National Library of Israel J9U ID\" (P8189)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P949 ;
	wikibase:claim p:P949 ;
	wikibase:statementProperty ps:P949 ;
	wikibase:statementValue psv:P949 ;
	wikibase:qualifier pq:P949 ;
	wikibase:qualifierValue pqv:P949 ;
	wikibase:reference pr:P949 ;
	wikibase:referenceValue prv:P949 ;
	wikibase:novalue wdno:P949 ;
	wikibase:directClaimNormalized wdtn:P949 ;
	wikibase:statementValueNormalized psn:P949 ;
	wikibase:qualifierValueNormalized pqn:P949 ;
	wikibase:referenceValueNormalized prn:P949 .

p:P949 a owl:ObjectProperty .

psv:P949 a owl:ObjectProperty .

pqv:P949 a owl:ObjectProperty .

prv:P949 a owl:ObjectProperty .

wdt:P949 a owl:DatatypeProperty .

ps:P949 a owl:DatatypeProperty .

pq:P949 a owl:DatatypeProperty .

pr:P949 a owl:DatatypeProperty .

psn:P949 a owl:ObjectProperty .

pqn:P949 a owl:ObjectProperty .

prn:P949 a owl:ObjectProperty .

wdtn:P949 a owl:ObjectProperty .

wdno:P949 a owl:Class ;
	owl:complementOf _:85c146c8026653253daee222e99e6207 .

_:85c146c8026653253daee222e99e6207 a owl:Restriction ;
	owl:onProperty wdt:P949 ;
	owl:someValuesFrom owl:Thing .

wd:P646 a wikibase:Property ;
	rdfs:label "Freebase ID"@en ;
	skos:prefLabel "Freebase ID"@en ;
	schema:name "Freebase ID"@en ;
	schema:description "identifier for a page in the Freebase database. Format: \"/m/0\" followed by 2 to 7 characters. For those starting with \"/g/\", use Google Knowledge Graph identifier (P2671)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P646 ;
	wikibase:claim p:P646 ;
	wikibase:statementProperty ps:P646 ;
	wikibase:statementValue psv:P646 ;
	wikibase:qualifier pq:P646 ;
	wikibase:qualifierValue pqv:P646 ;
	wikibase:reference pr:P646 ;
	wikibase:referenceValue prv:P646 ;
	wikibase:novalue wdno:P646 ;
	wikibase:directClaimNormalized wdtn:P646 ;
	wikibase:statementValueNormalized psn:P646 ;
	wikibase:qualifierValueNormalized pqn:P646 ;
	wikibase:referenceValueNormalized prn:P646 .

p:P646 a owl:ObjectProperty .

psv:P646 a owl:ObjectProperty .

pqv:P646 a owl:ObjectProperty .

prv:P646 a owl:ObjectProperty .

wdt:P646 a owl:DatatypeProperty .

ps:P646 a owl:DatatypeProperty .

pq:P646 a owl:DatatypeProperty .

pr:P646 a owl:DatatypeProperty .

psn:P646 a owl:ObjectProperty .

pqn:P646 a owl:ObjectProperty .

prn:P646 a owl:ObjectProperty .

wdtn:P646 a owl:ObjectProperty .

wdno:P646 a owl:Class ;
	owl:complementOf _:38db277a4b10d59fd38a3fd995cbe570 .

_:38db277a4b10d59fd38a3fd995cbe570 a owl:Restriction ;
	owl:onProperty wdt:P646 ;
	owl:someValuesFrom owl:Thing .

wd:Q691283 a wikibase:Item ;
	rdfs:label "St John's College"@en ;
	skos:prefLabel "St John's College"@en ;
	schema:name "St John's College"@en ;
	schema:description "Constituent college of the University of Cambridge"@en .

wd:P69 a wikibase:Property ;
	rdfs:label "educated at"@en ;
	skos:prefLabel "educated at"@en ;
	schema:name "educated at"@en ;
	schema:description "educational institution attended by subject"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P69 ;
	wikibase:claim p:P69 ;
	wikibase:statementProperty ps:P69 ;
	wikibase:statementValue psv:P69 ;
	wikibase:qualifier pq:P69 ;
	wikibase:qualifierValue pqv:P69 ;
	wikibase:reference pr:P69 ;
	wikibase:referenceValue prv:P69 ;
	wikibase:novalue wdno:P69 .

p:P69 a owl:ObjectProperty .

psv:P69 a owl:ObjectProperty .

pqv:P69 a owl:ObjectProperty .

prv:P69 a owl:ObjectProperty .

wdt:P69 a owl:ObjectProperty .

ps:P69 a owl:ObjectProperty .

pq:P69 a owl:ObjectProperty .

pr:P69 a owl:ObjectProperty .

wdno:P69 a owl:Class ;
	owl:complementOf _:6f19214137e50372f245d71207fe238f .

_:6f19214137e50372f245d71207fe238f a owl:Restriction ;
	owl:onProperty wdt:P69 ;
	owl:someValuesFrom owl:Thing .

wd:Q4961791 a wikibase:Item ;
	rdfs:label "Brentwood School"@en ;
	skos:prefLabel "Brentwood School"@en ;
	schema:name "Brentwood School"@en ;
	schema:description "independent day and boarding school in Essex, England"@en .

wd:P1273 a wikibase:Property ;
	rdfs:label "CANTIC ID (former scheme)"@en ;
	skos:prefLabel "CANTIC ID (former scheme)"@en ;
	schema:name "CANTIC ID (former scheme)"@en ;
	schema:description "old identifier for authority control managed by the Library of Catalonia. Format: \"a\", 7 digits, \"x\" or digit. Replaced with \"CANTIC ID\" (P9984)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1273 ;
	wikibase:claim p:P1273 ;
	wikibase:statementProperty ps:P1273 ;
	wikibase:statementValue psv:P1273 ;
	wikibase:qualifier pq:P1273 ;
	wikibase:qualifierValue pqv:P1273 ;
	wikibase:reference pr:P1273 ;
	wikibase:referenceValue prv:P1273 ;
	wikibase:novalue wdno:P1273 ;
	wikibase:directClaimNormalized wdtn:P1273 ;
	wikibase:statementValueNormalized psn:P1273 ;
	wikibase:qualifierValueNormalized pqn:P1273 ;
	wikibase:referenceValueNormalized prn:P1273 .

p:P1273 a owl:ObjectProperty .

psv:P1273 a owl:ObjectProperty .

pqv:P1273 a owl:ObjectProperty .

prv:P1273 a owl:ObjectProperty .

wdt:P1273 a owl:DatatypeProperty .

ps:P1273 a owl:DatatypeProperty .

pq:P1273 a owl:DatatypeProperty .

pr:P1273 a owl:DatatypeProperty .

psn:P1273 a owl:ObjectProperty .

pqn:P1273 a owl:ObjectProperty .

prn:P1273 a owl:ObjectProperty .

wdtn:P1273 a owl:ObjectProperty .

wdno:P1273 a owl:Class ;
	owl:complementOf _:d1063212b718f39ab05a2e04b03cbb21 .

_:d1063212b718f39ab05a2e04b03cbb21 a owl:Restriction ;
	owl:onProperty wdt:P1273 ;
	owl:someValuesFrom owl:Thing .

wd:Q9531 a wikibase:Item ;
	rdfs:label "BBC"@en ;
	skos:prefLabel "BBC"@en ;
	schema:name "BBC"@en ;
	schema:description "British public service broadcaster"@en .

wd:P108 a wikibase:Property ;
	rdfs:label "employer"@en ;
	skos:prefLabel "employer"@en ;
	schema:name "employer"@en ;
	schema:description "person or organization for which the subject works or worked"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P108 ;
	wikibase:claim p:P108 ;
	wikibase:statementProperty ps:P108 ;
	wikibase:statementValue psv:P108 ;
	wikibase:qualifier pq:P108 ;
	wikibase:qualifierValue pqv:P108 ;
	wikibase:reference pr:P108 ;
	wikibase:referenceValue prv:P108 ;
	wikibase:novalue wdno:P108 .

p:P108 a owl:ObjectProperty .

psv:P108 a owl:ObjectProperty .

pqv:P108 a owl:ObjectProperty .

prv:P108 a owl:ObjectProperty .

wdt:P108 a owl:ObjectProperty .

ps:P108 a owl:ObjectProperty .

pq:P108 a owl:ObjectProperty .

pr:P108 a owl:ObjectProperty .

wdno:P108 a owl:Class ;
	owl:complementOf _:dd09e98680a6ecbadef560716040f8f7 .

_:dd09e98680a6ecbadef560716040f8f7 a owl:Restriction ;
	owl:onProperty wdt:P108 ;
	owl:someValuesFrom owl:Thing .

wd:Q3520623 a wikibase:Item ;
	rdfs:label "The Digital Village"@en ;
	skos:prefLabel "The Digital Village"@en ;
	schema:name "The Digital Village"@en ;
	schema:description "digital media company based in London, England, UK"@en .

wd:P998 a wikibase:Property ;
	rdfs:label "Curlie ID"@en ;
	skos:prefLabel "Curlie ID"@en ;
	schema:name "Curlie ID"@en ;
	schema:description "category path at Open Directory Project"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P998 ;
	wikibase:claim p:P998 ;
	wikibase:statementProperty ps:P998 ;
	wikibase:statementValue psv:P998 ;
	wikibase:qualifier pq:P998 ;
	wikibase:qualifierValue pqv:P998 ;
	wikibase:reference pr:P998 ;
	wikibase:referenceValue prv:P998 ;
	wikibase:novalue wdno:P998 ;
	wikibase:directClaimNormalized wdtn:P998 ;
	wikibase:statementValueNormalized psn:P998 ;
	wikibase:qualifierValueNormalized pqn:P998 ;
	wikibase:referenceValueNormalized prn:P998 .

p:P998 a owl:ObjectProperty .

psv:P998 a owl:ObjectProperty .

pqv:P998 a owl:ObjectProperty .

prv:P998 a owl:ObjectProperty .

wdt:P998 a owl:DatatypeProperty .

ps:P998 a owl:DatatypeProperty .

pq:P998 a owl:DatatypeProperty .

pr:P998 a owl:DatatypeProperty .

psn:P998 a owl:ObjectProperty .

pqn:P998 a owl:ObjectProperty .

prn:P998 a owl:ObjectProperty .

wdtn:P998 a owl:ObjectProperty .

wdno:P998 a owl:Class ;
	owl:complementOf _:fb083a6ff16be725db56b625cc535be2 .

_:fb083a6ff16be725db56b625cc535be2 a owl:Restriction ;
	owl:onProperty wdt:P998 ;
	owl:someValuesFrom owl:Thing .

wd:P1233 a wikibase:Property ;
	rdfs:label "Internet Speculative Fiction Database author ID"@en ;
	skos:prefLabel "Internet Speculative Fiction Database author ID"@en ;
	schema:name "Internet Speculative Fiction Database author ID"@en ;
	schema:description "identifier for a person in the Internet Speculative Fiction Database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1233 ;
	wikibase:claim p:P1233 ;
	wikibase:statementProperty ps:P1233 ;
	wikibase:statementValue psv:P1233 ;
	wikibase:qualifier pq:P1233 ;
	wikibase:qualifierValue pqv:P1233 ;
	wikibase:reference pr:P1233 ;
	wikibase:referenceValue prv:P1233 ;
	wikibase:novalue wdno:P1233 ;
	wikibase:directClaimNormalized wdtn:P1233 ;
	wikibase:statementValueNormalized psn:P1233 ;
	wikibase:qualifierValueNormalized pqn:P1233 ;
	wikibase:referenceValueNormalized prn:P1233 .

p:P1233 a owl:ObjectProperty .

psv:P1233 a owl:ObjectProperty .

pqv:P1233 a owl:ObjectProperty .

prv:P1233 a owl:ObjectProperty .

wdt:P1233 a owl:DatatypeProperty .

ps:P1233 a owl:DatatypeProperty .

pq:P1233 a owl:DatatypeProperty .

pr:P1233 a owl:DatatypeProperty .

psn:P1233 a owl:ObjectProperty .

pqn:P1233 a owl:ObjectProperty .

prn:P1233 a owl:ObjectProperty .

wdtn:P1233 a owl:ObjectProperty .

wdno:P1233 a owl:Class ;
	owl:complementOf _:9acf9d94173716014f1f86ca2e6b1ab6 .

_:9acf9d94173716014f1f86ca2e6b1ab6 a owl:Restriction ;
	owl:onProperty wdt:P1233 ;
	owl:someValuesFrom owl:Thing .

wd:P1284 a wikibase:Property ;
	rdfs:label "Munzinger person ID"@en ;
	skos:prefLabel "Munzinger person ID"@en ;
	schema:name "Munzinger person ID"@en ;
	schema:description "identifier on the Munzinger Archiv"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1284 ;
	wikibase:claim p:P1284 ;
	wikibase:statementProperty ps:P1284 ;
	wikibase:statementValue psv:P1284 ;
	wikibase:qualifier pq:P1284 ;
	wikibase:qualifierValue pqv:P1284 ;
	wikibase:reference pr:P1284 ;
	wikibase:referenceValue prv:P1284 ;
	wikibase:novalue wdno:P1284 ;
	wikibase:directClaimNormalized wdtn:P1284 ;
	wikibase:statementValueNormalized psn:P1284 ;
	wikibase:qualifierValueNormalized pqn:P1284 ;
	wikibase:referenceValueNormalized prn:P1284 .

p:P1284 a owl:ObjectProperty .

psv:P1284 a owl:ObjectProperty .

pqv:P1284 a owl:ObjectProperty .

prv:P1284 a owl:ObjectProperty .

wdt:P1284 a owl:DatatypeProperty .

ps:P1284 a owl:DatatypeProperty .

pq:P1284 a owl:DatatypeProperty .

pr:P1284 a owl:DatatypeProperty .

psn:P1284 a owl:ObjectProperty .

pqn:P1284 a owl:ObjectProperty .

prn:P1284 a owl:ObjectProperty .

wdtn:P1284 a owl:ObjectProperty .

wdno:P1284 a owl:Class ;
	owl:complementOf _:07a2c4c0fcf065ca7dd2b7a2d1d88a14 .

_:07a2c4c0fcf065ca7dd2b7a2d1d88a14 a owl:Restriction ;
	owl:onProperty wdt:P1284 ;
	owl:someValuesFrom owl:Thing .

wd:P866 a wikibase:Property ;
	rdfs:label "Perlentaucher ID"@en ;
	skos:prefLabel "Perlentaucher ID"@en ;
	schema:name "Perlentaucher ID"@en ;
	schema:description "identifier in Perlentaucher (Q2071388)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P866 ;
	wikibase:claim p:P866 ;
	wikibase:statementProperty ps:P866 ;
	wikibase:statementValue psv:P866 ;
	wikibase:qualifier pq:P866 ;
	wikibase:qualifierValue pqv:P866 ;
	wikibase:reference pr:P866 ;
	wikibase:referenceValue prv:P866 ;
	wikibase:novalue wdno:P866 ;
	wikibase:directClaimNormalized wdtn:P866 ;
	wikibase:statementValueNormalized psn:P866 ;
	wikibase:qualifierValueNormalized pqn:P866 ;
	wikibase:referenceValueNormalized prn:P866 .

p:P866 a owl:ObjectProperty .

psv:P866 a owl:ObjectProperty .

pqv:P866 a owl:ObjectProperty .

prv:P866 a owl:ObjectProperty .

wdt:P866 a owl:DatatypeProperty .

ps:P866 a owl:DatatypeProperty .

pq:P866 a owl:DatatypeProperty .

pr:P866 a owl:DatatypeProperty .

psn:P866 a owl:ObjectProperty .

pqn:P866 a owl:ObjectProperty .

prn:P866 a owl:ObjectProperty .

wdtn:P866 a owl:ObjectProperty .

wdno:P866 a owl:Class ;
	owl:complementOf _:203361e7e712c2ab577371121778c0f5 .

_:203361e7e712c2ab577371121778c0f5 a owl:Restriction ;
	owl:onProperty wdt:P866 ;
	owl:someValuesFrom owl:Thing .

wd:P1695 a wikibase:Property ;
	rdfs:label "NLP ID (old)"@en ;
	skos:prefLabel "NLP ID (old)"@en ;
	schema:name "NLP ID (old)"@en ;
	schema:description "former National Library of Poland unique identifier. Format: \"A\", 7 digits, \"X\" or another digit. For the newer 16-digit format, use \"NLP ID (PLWABN record)\" (P7293)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1695 ;
	wikibase:claim p:P1695 ;
	wikibase:statementProperty ps:P1695 ;
	wikibase:statementValue psv:P1695 ;
	wikibase:qualifier pq:P1695 ;
	wikibase:qualifierValue pqv:P1695 ;
	wikibase:reference pr:P1695 ;
	wikibase:referenceValue prv:P1695 ;
	wikibase:novalue wdno:P1695 ;
	wikibase:directClaimNormalized wdtn:P1695 ;
	wikibase:statementValueNormalized psn:P1695 ;
	wikibase:qualifierValueNormalized pqn:P1695 ;
	wikibase:referenceValueNormalized prn:P1695 .

p:P1695 a owl:ObjectProperty .

psv:P1695 a owl:ObjectProperty .

pqv:P1695 a owl:ObjectProperty .

prv:P1695 a owl:ObjectProperty .

wdt:P1695 a owl:DatatypeProperty .

ps:P1695 a owl:DatatypeProperty .

pq:P1695 a owl:DatatypeProperty .

pr:P1695 a owl:DatatypeProperty .

psn:P1695 a owl:ObjectProperty .

pqn:P1695 a owl:ObjectProperty .

prn:P1695 a owl:ObjectProperty .

wdtn:P1695 a owl:ObjectProperty .

wdno:P1695 a owl:Class ;
	owl:complementOf _:b044ed5b0588da38f8d18431c5314ea3 .

_:b044ed5b0588da38f8d18431c5314ea3 a owl:Restriction ;
	owl:onProperty wdt:P1695 ;
	owl:someValuesFrom owl:Thing .

wd:P1816 a wikibase:Property ;
	rdfs:label "National Portrait Gallery (London) person ID"@en ;
	skos:prefLabel "National Portrait Gallery (London) person ID"@en ;
	schema:name "National Portrait Gallery (London) person ID"@en ;
	schema:description "identifier for sitters and artists represented in the National Portrait Gallery, London"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1816 ;
	wikibase:claim p:P1816 ;
	wikibase:statementProperty ps:P1816 ;
	wikibase:statementValue psv:P1816 ;
	wikibase:qualifier pq:P1816 ;
	wikibase:qualifierValue pqv:P1816 ;
	wikibase:reference pr:P1816 ;
	wikibase:referenceValue prv:P1816 ;
	wikibase:novalue wdno:P1816 ;
	wikibase:directClaimNormalized wdtn:P1816 ;
	wikibase:statementValueNormalized psn:P1816 ;
	wikibase:qualifierValueNormalized pqn:P1816 ;
	wikibase:referenceValueNormalized prn:P1816 .

p:P1816 a owl:ObjectProperty .

psv:P1816 a owl:ObjectProperty .

pqv:P1816 a owl:ObjectProperty .

prv:P1816 a owl:ObjectProperty .

wdt:P1816 a owl:DatatypeProperty .

ps:P1816 a owl:DatatypeProperty .

pq:P1816 a owl:DatatypeProperty .

pr:P1816 a owl:DatatypeProperty .

psn:P1816 a owl:ObjectProperty .

pqn:P1816 a owl:ObjectProperty .

prn:P1816 a owl:ObjectProperty .

wdtn:P1816 a owl:ObjectProperty .

wdno:P1816 a owl:Class ;
	owl:complementOf _:7015b06446b221f0e096d2116ba4d977 .

_:7015b06446b221f0e096d2116ba4d977 a owl:Restriction ;
	owl:onProperty wdt:P1816 ;
	owl:someValuesFrom owl:Thing .

wd:P1263 a wikibase:Property ;
	rdfs:label "NNDB people ID"@en ;
	skos:prefLabel "NNDB people ID"@en ;
	schema:name "NNDB people ID"@en ;
	schema:description "identifier in the Notable Names Database, a biographical database: only for people entries"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1263 ;
	wikibase:claim p:P1263 ;
	wikibase:statementProperty ps:P1263 ;
	wikibase:statementValue psv:P1263 ;
	wikibase:qualifier pq:P1263 ;
	wikibase:qualifierValue pqv:P1263 ;
	wikibase:reference pr:P1263 ;
	wikibase:referenceValue prv:P1263 ;
	wikibase:novalue wdno:P1263 ;
	wikibase:directClaimNormalized wdtn:P1263 ;
	wikibase:statementValueNormalized psn:P1263 ;
	wikibase:qualifierValueNormalized pqn:P1263 ;
	wikibase:referenceValueNormalized prn:P1263 .

p:P1263 a owl:ObjectProperty .

psv:P1263 a owl:ObjectProperty .

pqv:P1263 a owl:ObjectProperty .

prv:P1263 a owl:ObjectProperty .

wdt:P1263 a owl:DatatypeProperty .

ps:P1263 a owl:DatatypeProperty .

pq:P1263 a owl:DatatypeProperty .

pr:P1263 a owl:DatatypeProperty .

psn:P1263 a owl:ObjectProperty .

pqn:P1263 a owl:ObjectProperty .

prn:P1263 a owl:ObjectProperty .

wdtn:P1263 a owl:ObjectProperty .

wdno:P1263 a owl:Class ;
	owl:complementOf _:6610f61c5bae634e385ce57401c1b481 .

_:6610f61c5bae634e385ce57401c1b481 a owl:Restriction ;
	owl:onProperty wdt:P1263 ;
	owl:someValuesFrom owl:Thing .

wd:P271 a wikibase:Property ;
	rdfs:label "CiNii Books author ID"@en ;
	skos:prefLabel "CiNii Books author ID"@en ;
	schema:name "CiNii Books author ID"@en ;
	schema:description "identifier for book authors in CiNii Books service, cataloged in NACSIS-CAT system for university libraries and research institutions of Japan"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P271 ;
	wikibase:claim p:P271 ;
	wikibase:statementProperty ps:P271 ;
	wikibase:statementValue psv:P271 ;
	wikibase:qualifier pq:P271 ;
	wikibase:qualifierValue pqv:P271 ;
	wikibase:reference pr:P271 ;
	wikibase:referenceValue prv:P271 ;
	wikibase:novalue wdno:P271 ;
	wikibase:directClaimNormalized wdtn:P271 ;
	wikibase:statementValueNormalized psn:P271 ;
	wikibase:qualifierValueNormalized pqn:P271 ;
	wikibase:referenceValueNormalized prn:P271 .

p:P271 a owl:ObjectProperty .

psv:P271 a owl:ObjectProperty .

pqv:P271 a owl:ObjectProperty .

prv:P271 a owl:ObjectProperty .

wdt:P271 a owl:DatatypeProperty .

ps:P271 a owl:DatatypeProperty .

pq:P271 a owl:DatatypeProperty .

pr:P271 a owl:DatatypeProperty .

psn:P271 a owl:ObjectProperty .

pqn:P271 a owl:ObjectProperty .

prn:P271 a owl:ObjectProperty .

wdtn:P271 a owl:ObjectProperty .

wdno:P271 a owl:Class ;
	owl:complementOf _:9ba064927b8513b8ad98caff580315e0 .

_:9ba064927b8513b8ad98caff580315e0 a owl:Restriction ;
	owl:onProperty wdt:P271 ;
	owl:someValuesFrom owl:Thing .

wd:P856 a wikibase:Property ;
	rdfs:label "official website"@en ;
	skos:prefLabel "official website"@en ;
	schema:name "official website"@en ;
	schema:description "URL of the official page of an item (current or former) [if the page changes, add an additional statement with preferred rank. Do not remove the former URL]"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P856 ;
	wikibase:claim p:P856 ;
	wikibase:statementProperty ps:P856 ;
	wikibase:statementValue psv:P856 ;
	wikibase:qualifier pq:P856 ;
	wikibase:qualifierValue pqv:P856 ;
	wikibase:reference pr:P856 ;
	wikibase:referenceValue prv:P856 ;
	wikibase:novalue wdno:P856 .

p:P856 a owl:ObjectProperty .

psv:P856 a owl:ObjectProperty .

pqv:P856 a owl:ObjectProperty .

prv:P856 a owl:ObjectProperty .

wdt:P856 a owl:ObjectProperty .

ps:P856 a owl:ObjectProperty .

pq:P856 a owl:ObjectProperty .

pr:P856 a owl:ObjectProperty .

wdno:P856 a owl:Class ;
	owl:complementOf _:1d357f887a7e27ff82787607ac757e2c .

_:1d357f887a7e27ff82787607ac757e2c a owl:Restriction ;
	owl:onProperty wdt:P856 ;
	owl:someValuesFrom owl:Thing .

wd:Q3414212 a wikibase:Item ;
	rdfs:label "Hugo Award for Best Dramatic Presentation"@en ;
	skos:prefLabel "Hugo Award for Best Dramatic Presentation"@en ;
	schema:name "Hugo Award for Best Dramatic Presentation"@en ;
	schema:description "Hugo Awards presented by the World Science Fiction Convention"@en .

wd:P1411 a wikibase:Property ;
	rdfs:label "nominated for"@en ;
	skos:prefLabel "nominated for"@en ;
	schema:name "nominated for"@en ;
	schema:description "award nomination received by a person, organisation or creative work (inspired from \"award received\" (Property:P166))"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1411 ;
	wikibase:claim p:P1411 ;
	wikibase:statementProperty ps:P1411 ;
	wikibase:statementValue psv:P1411 ;
	wikibase:qualifier pq:P1411 ;
	wikibase:qualifierValue pqv:P1411 ;
	wikibase:reference pr:P1411 ;
	wikibase:referenceValue prv:P1411 ;
	wikibase:novalue wdno:P1411 .

p:P1411 a owl:ObjectProperty .

psv:P1411 a owl:ObjectProperty .

pqv:P1411 a owl:ObjectProperty .

prv:P1411 a owl:ObjectProperty .

wdt:P1411 a owl:ObjectProperty .

ps:P1411 a owl:ObjectProperty .

pq:P1411 a owl:ObjectProperty .

pr:P1411 a owl:ObjectProperty .

wdno:P1411 a owl:Class ;
	owl:complementOf _:83f83c2accc0c72dad4bbe0aff05d4f4 .

_:83f83c2accc0c72dad4bbe0aff05d4f4 a owl:Restriction ;
	owl:onProperty wdt:P1411 ;
	owl:someValuesFrom owl:Thing .

wd:Q2576795 a wikibase:Item ;
	rdfs:label "Locus Award for Best Science Fiction Novel"@en ;
	skos:prefLabel "Locus Award for Best Science Fiction Novel"@en ;
	schema:name "Locus Award for Best Science Fiction Novel"@en ;
	schema:description "literary award by the science fiction and fantasy magazine Locus"@en .

wd:P1953 a wikibase:Property ;
	rdfs:label "Discogs artist ID"@en ;
	skos:prefLabel "Discogs artist ID"@en ;
	schema:name "Discogs artist ID"@en ;
	schema:description "identifier for a band or person in the Discogs database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1953 ;
	wikibase:claim p:P1953 ;
	wikibase:statementProperty ps:P1953 ;
	wikibase:statementValue psv:P1953 ;
	wikibase:qualifier pq:P1953 ;
	wikibase:qualifierValue pqv:P1953 ;
	wikibase:reference pr:P1953 ;
	wikibase:referenceValue prv:P1953 ;
	wikibase:novalue wdno:P1953 ;
	wikibase:directClaimNormalized wdtn:P1953 ;
	wikibase:statementValueNormalized psn:P1953 ;
	wikibase:qualifierValueNormalized pqn:P1953 ;
	wikibase:referenceValueNormalized prn:P1953 .

p:P1953 a owl:ObjectProperty .

psv:P1953 a owl:ObjectProperty .

pqv:P1953 a owl:ObjectProperty .

prv:P1953 a owl:ObjectProperty .

wdt:P1953 a owl:DatatypeProperty .

ps:P1953 a owl:DatatypeProperty .

pq:P1953 a owl:DatatypeProperty .

pr:P1953 a owl:DatatypeProperty .

psn:P1953 a owl:ObjectProperty .

pqn:P1953 a owl:ObjectProperty .

prn:P1953 a owl:ObjectProperty .

wdtn:P1953 a owl:ObjectProperty .

wdno:P1953 a owl:Class ;
	owl:complementOf _:4dd1fe3fa1719551dddfd2e48366594c .

_:4dd1fe3fa1719551dddfd2e48366594c a owl:Restriction ;
	owl:onProperty wdt:P1953 ;
	owl:someValuesFrom owl:Thing .

wd:P648 a wikibase:Property ;
	rdfs:label "Open Library ID"@en ;
	skos:prefLabel "Open Library ID"@en ;
	schema:name "Open Library ID"@en ;
	schema:description "identifier for a work (\"W\"), edition (\"M\") or author (\"A\") for book data of the Internet Archive"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P648 ;
	wikibase:claim p:P648 ;
	wikibase:statementProperty ps:P648 ;
	wikibase:statementValue psv:P648 ;
	wikibase:qualifier pq:P648 ;
	wikibase:qualifierValue pqv:P648 ;
	wikibase:reference pr:P648 ;
	wikibase:referenceValue prv:P648 ;
	wikibase:novalue wdno:P648 ;
	wikibase:directClaimNormalized wdtn:P648 ;
	wikibase:statementValueNormalized psn:P648 ;
	wikibase:qualifierValueNormalized pqn:P648 ;
	wikibase:referenceValueNormalized prn:P648 .

p:P648 a owl:ObjectProperty .

psv:P648 a owl:ObjectProperty .

pqv:P648 a owl:ObjectProperty .

prv:P648 a owl:ObjectProperty .

wdt:P648 a owl:DatatypeProperty .

ps:P648 a owl:DatatypeProperty .

pq:P648 a owl:DatatypeProperty .

pr:P648 a owl:DatatypeProperty .

psn:P648 a owl:ObjectProperty .

pqn:P648 a owl:ObjectProperty .

prn:P648 a owl:ObjectProperty .

wdtn:P648 a owl:ObjectProperty .

wdno:P648 a owl:Class ;
	owl:complementOf _:77764e4c47fec97d0c5bb4562bf6e826 .

_:77764e4c47fec97d0c5bb4562bf6e826 a owl:Restriction ;
	owl:onProperty wdt:P648 ;
	owl:someValuesFrom owl:Thing .

wd:P1258 a wikibase:Property ;
	rdfs:label "Rotten Tomatoes ID"@en ;
	skos:prefLabel "Rotten Tomatoes ID"@en ;
	schema:name "Rotten Tomatoes ID"@en ;
	schema:description "identifier on Rotten Tomatoes"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1258 ;
	wikibase:claim p:P1258 ;
	wikibase:statementProperty ps:P1258 ;
	wikibase:statementValue psv:P1258 ;
	wikibase:qualifier pq:P1258 ;
	wikibase:qualifierValue pqv:P1258 ;
	wikibase:reference pr:P1258 ;
	wikibase:referenceValue prv:P1258 ;
	wikibase:novalue wdno:P1258 ;
	wikibase:directClaimNormalized wdtn:P1258 ;
	wikibase:statementValueNormalized psn:P1258 ;
	wikibase:qualifierValueNormalized pqn:P1258 ;
	wikibase:referenceValueNormalized prn:P1258 .

p:P1258 a owl:ObjectProperty .

psv:P1258 a owl:ObjectProperty .

pqv:P1258 a owl:ObjectProperty .

prv:P1258 a owl:ObjectProperty .

wdt:P1258 a owl:DatatypeProperty .

ps:P1258 a owl:DatatypeProperty .

pq:P1258 a owl:DatatypeProperty .

pr:P1258 a owl:DatatypeProperty .

psn:P1258 a owl:ObjectProperty .

pqn:P1258 a owl:ObjectProperty .

prn:P1258 a owl:ObjectProperty .

wdtn:P1258 a owl:ObjectProperty .

wdno:P1258 a owl:Class ;
	owl:complementOf _:f73bf261a91757d82cdef8f992dd5275 .

_:f73bf261a91757d82cdef8f992dd5275 a owl:Restriction ;
	owl:onProperty wdt:P1258 ;
	owl:someValuesFrom owl:Thing .

wd:P2191 a wikibase:Property ;
	rdfs:label "Vegetti Catalog of Fantastic Literature NILF ID"@en ;
	skos:prefLabel "Vegetti Catalog of Fantastic Literature NILF ID"@en ;
	schema:name "Vegetti Catalog of Fantastic Literature NILF ID"@en ;
	schema:description "numeric identifier within the Vegetti Catalog of Fantastic Literature"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2191 ;
	wikibase:claim p:P2191 ;
	wikibase:statementProperty ps:P2191 ;
	wikibase:statementValue psv:P2191 ;
	wikibase:qualifier pq:P2191 ;
	wikibase:qualifierValue pqv:P2191 ;
	wikibase:reference pr:P2191 ;
	wikibase:referenceValue prv:P2191 ;
	wikibase:novalue wdno:P2191 ;
	wikibase:directClaimNormalized wdtn:P2191 ;
	wikibase:statementValueNormalized psn:P2191 ;
	wikibase:qualifierValueNormalized pqn:P2191 ;
	wikibase:referenceValueNormalized prn:P2191 .

p:P2191 a owl:ObjectProperty .

psv:P2191 a owl:ObjectProperty .

pqv:P2191 a owl:ObjectProperty .

prv:P2191 a owl:ObjectProperty .

wdt:P2191 a owl:DatatypeProperty .

ps:P2191 a owl:DatatypeProperty .

pq:P2191 a owl:DatatypeProperty .

pr:P2191 a owl:DatatypeProperty .

psn:P2191 a owl:ObjectProperty .

pqn:P2191 a owl:ObjectProperty .

prn:P2191 a owl:ObjectProperty .

wdtn:P2191 a owl:ObjectProperty .

wdno:P2191 a owl:Class ;
	owl:complementOf _:d2f419d80183b08ccb66bd6476f38562 .

_:d2f419d80183b08ccb66bd6476f38562 a owl:Restriction ;
	owl:onProperty wdt:P2191 ;
	owl:someValuesFrom owl:Thing .

wd:P1266 a wikibase:Property ;
	rdfs:label "AlloCiné person ID"@en ;
	skos:prefLabel "AlloCiné person ID"@en ;
	schema:name "AlloCiné person ID"@en ;
	schema:description "identifier for a person on the AlloCiné film database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1266 ;
	wikibase:claim p:P1266 ;
	wikibase:statementProperty ps:P1266 ;
	wikibase:statementValue psv:P1266 ;
	wikibase:qualifier pq:P1266 ;
	wikibase:qualifierValue pqv:P1266 ;
	wikibase:reference pr:P1266 ;
	wikibase:referenceValue prv:P1266 ;
	wikibase:novalue wdno:P1266 ;
	wikibase:directClaimNormalized wdtn:P1266 ;
	wikibase:statementValueNormalized psn:P1266 ;
	wikibase:qualifierValueNormalized pqn:P1266 ;
	wikibase:referenceValueNormalized prn:P1266 .

p:P1266 a owl:ObjectProperty .

psv:P1266 a owl:ObjectProperty .

pqv:P1266 a owl:ObjectProperty .

prv:P1266 a owl:ObjectProperty .

wdt:P1266 a owl:DatatypeProperty .

ps:P1266 a owl:DatatypeProperty .

pq:P1266 a owl:DatatypeProperty .

pr:P1266 a owl:DatatypeProperty .

psn:P1266 a owl:ObjectProperty .

pqn:P1266 a owl:ObjectProperty .

prn:P1266 a owl:ObjectProperty .

wdtn:P1266 a owl:ObjectProperty .

wdno:P1266 a owl:Class ;
	owl:complementOf _:da32dfdafd2a556ecbe718f87b36703d .

_:da32dfdafd2a556ecbe718f87b36703d a owl:Restriction ;
	owl:onProperty wdt:P1266 ;
	owl:someValuesFrom owl:Thing .

wd:P2019 a wikibase:Property ;
	rdfs:label "AllMovie person ID"@en ;
	skos:prefLabel "AllMovie person ID"@en ;
	schema:name "AllMovie person ID"@en ;
	schema:description "identifier for a person on the AllMovie film database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2019 ;
	wikibase:claim p:P2019 ;
	wikibase:statementProperty ps:P2019 ;
	wikibase:statementValue psv:P2019 ;
	wikibase:qualifier pq:P2019 ;
	wikibase:qualifierValue pqv:P2019 ;
	wikibase:reference pr:P2019 ;
	wikibase:referenceValue prv:P2019 ;
	wikibase:novalue wdno:P2019 ;
	wikibase:directClaimNormalized wdtn:P2019 ;
	wikibase:statementValueNormalized psn:P2019 ;
	wikibase:qualifierValueNormalized pqn:P2019 ;
	wikibase:referenceValueNormalized prn:P2019 .

p:P2019 a owl:ObjectProperty .

psv:P2019 a owl:ObjectProperty .

pqv:P2019 a owl:ObjectProperty .

prv:P2019 a owl:ObjectProperty .

wdt:P2019 a owl:DatatypeProperty .

ps:P2019 a owl:DatatypeProperty .

pq:P2019 a owl:DatatypeProperty .

pr:P2019 a owl:DatatypeProperty .

psn:P2019 a owl:ObjectProperty .

pqn:P2019 a owl:ObjectProperty .

prn:P2019 a owl:ObjectProperty .

wdtn:P2019 a owl:ObjectProperty .

wdno:P2019 a owl:Class ;
	owl:complementOf _:e195a2b4a5546556b03174275f04b189 .

_:e195a2b4a5546556b03174275f04b189 a owl:Restriction ;
	owl:onProperty wdt:P2019 ;
	owl:someValuesFrom owl:Thing .

wd:P2188 a wikibase:Property ;
	rdfs:label "BiblioNet author ID"@en ;
	skos:prefLabel "BiblioNet author ID"@en ;
	schema:name "BiblioNet author ID"@en ;
	schema:description "identifier in the BiblioNet database of authors, created by the National Book Centre of Greece, many Greek individual publishers and their professional associations"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2188 ;
	wikibase:claim p:P2188 ;
	wikibase:statementProperty ps:P2188 ;
	wikibase:statementValue psv:P2188 ;
	wikibase:qualifier pq:P2188 ;
	wikibase:qualifierValue pqv:P2188 ;
	wikibase:reference pr:P2188 ;
	wikibase:referenceValue prv:P2188 ;
	wikibase:novalue wdno:P2188 ;
	wikibase:directClaimNormalized wdtn:P2188 ;
	wikibase:statementValueNormalized psn:P2188 ;
	wikibase:qualifierValueNormalized pqn:P2188 ;
	wikibase:referenceValueNormalized prn:P2188 .

p:P2188 a owl:ObjectProperty .

psv:P2188 a owl:ObjectProperty .

pqv:P2188 a owl:ObjectProperty .

prv:P2188 a owl:ObjectProperty .

wdt:P2188 a owl:DatatypeProperty .

ps:P2188 a owl:DatatypeProperty .

pq:P2188 a owl:DatatypeProperty .

pr:P2188 a owl:DatatypeProperty .

psn:P2188 a owl:ObjectProperty .

pqn:P2188 a owl:ObjectProperty .

prn:P2188 a owl:ObjectProperty .

wdtn:P2188 a owl:ObjectProperty .

wdno:P2188 a owl:Class ;
	owl:complementOf _:40d5f0f3f0fa19f107709c33ac5f8e65 .

_:40d5f0f3f0fa19f107709c33ac5f8e65 a owl:Restriction ;
	owl:onProperty wdt:P2188 ;
	owl:someValuesFrom owl:Thing .

wd:P2168 a wikibase:Property ;
	rdfs:label "Swedish Film Database person ID"@en ;
	skos:prefLabel "Swedish Film Database person ID"@en ;
	schema:name "Swedish Film Database person ID"@en ;
	schema:description "identifier for a person on the Swedish Film Database (SFDb)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2168 ;
	wikibase:claim p:P2168 ;
	wikibase:statementProperty ps:P2168 ;
	wikibase:statementValue psv:P2168 ;
	wikibase:qualifier pq:P2168 ;
	wikibase:qualifierValue pqv:P2168 ;
	wikibase:reference pr:P2168 ;
	wikibase:referenceValue prv:P2168 ;
	wikibase:novalue wdno:P2168 ;
	wikibase:directClaimNormalized wdtn:P2168 ;
	wikibase:statementValueNormalized psn:P2168 ;
	wikibase:qualifierValueNormalized pqn:P2168 ;
	wikibase:referenceValueNormalized prn:P2168 .

p:P2168 a owl:ObjectProperty .

psv:P2168 a owl:ObjectProperty .

pqv:P2168 a owl:ObjectProperty .

prv:P2168 a owl:ObjectProperty .

wdt:P2168 a owl:DatatypeProperty .

ps:P2168 a owl:DatatypeProperty .

pq:P2168 a owl:DatatypeProperty .

pr:P2168 a owl:DatatypeProperty .

psn:P2168 a owl:ObjectProperty .

pqn:P2168 a owl:ObjectProperty .

prn:P2168 a owl:ObjectProperty .

wdtn:P2168 a owl:ObjectProperty .

wdno:P2168 a owl:Class ;
	owl:complementOf _:c0ea747bb7451f7f7ad5b2f154c6ed4d .

_:c0ea747bb7451f7f7ad5b2f154c6ed4d a owl:Restriction ;
	owl:onProperty wdt:P2168 ;
	owl:someValuesFrom owl:Thing .

wd:P1315 a wikibase:Property ;
	rdfs:label "NLA Trove people ID"@en ;
	skos:prefLabel "NLA Trove people ID"@en ;
	schema:name "NLA Trove people ID"@en ;
	schema:description "identifier for people or organizations per National Library of Australia (see also P409 for the older Libraries Australia identifier). Format: 5 to 7 digits."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1315 ;
	wikibase:claim p:P1315 ;
	wikibase:statementProperty ps:P1315 ;
	wikibase:statementValue psv:P1315 ;
	wikibase:qualifier pq:P1315 ;
	wikibase:qualifierValue pqv:P1315 ;
	wikibase:reference pr:P1315 ;
	wikibase:referenceValue prv:P1315 ;
	wikibase:novalue wdno:P1315 ;
	wikibase:directClaimNormalized wdtn:P1315 ;
	wikibase:statementValueNormalized psn:P1315 ;
	wikibase:qualifierValueNormalized pqn:P1315 ;
	wikibase:referenceValueNormalized prn:P1315 .

p:P1315 a owl:ObjectProperty .

psv:P1315 a owl:ObjectProperty .

pqv:P1315 a owl:ObjectProperty .

prv:P1315 a owl:ObjectProperty .

wdt:P1315 a owl:DatatypeProperty .

ps:P1315 a owl:DatatypeProperty .

pq:P1315 a owl:DatatypeProperty .

pr:P1315 a owl:DatatypeProperty .

psn:P1315 a owl:ObjectProperty .

pqn:P1315 a owl:ObjectProperty .

prn:P1315 a owl:ObjectProperty .

wdtn:P1315 a owl:ObjectProperty .

wdno:P1315 a owl:Class ;
	owl:complementOf _:a1e1fa0636e696a5458f6caa7e80e073 .

_:a1e1fa0636e696a5458f6caa7e80e073 a owl:Restriction ;
	owl:onProperty wdt:P1315 ;
	owl:someValuesFrom owl:Thing .

wd:P2163 a wikibase:Property ;
	rdfs:label "FAST ID"@en ;
	skos:prefLabel "FAST ID"@en ;
	schema:name "FAST ID"@en ;
	schema:description "authority control identifier in WorldCat's “FAST Linked Data” authority file"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2163 ;
	wikibase:claim p:P2163 ;
	wikibase:statementProperty ps:P2163 ;
	wikibase:statementValue psv:P2163 ;
	wikibase:qualifier pq:P2163 ;
	wikibase:qualifierValue pqv:P2163 ;
	wikibase:reference pr:P2163 ;
	wikibase:referenceValue prv:P2163 ;
	wikibase:novalue wdno:P2163 ;
	wikibase:directClaimNormalized wdtn:P2163 ;
	wikibase:statementValueNormalized psn:P2163 ;
	wikibase:qualifierValueNormalized pqn:P2163 ;
	wikibase:referenceValueNormalized prn:P2163 .

p:P2163 a owl:ObjectProperty .

psv:P2163 a owl:ObjectProperty .

pqv:P2163 a owl:ObjectProperty .

prv:P2163 a owl:ObjectProperty .

wdt:P2163 a owl:DatatypeProperty .

ps:P2163 a owl:DatatypeProperty .

pq:P2163 a owl:DatatypeProperty .

pr:P2163 a owl:DatatypeProperty .

psn:P2163 a owl:ObjectProperty .

pqn:P2163 a owl:ObjectProperty .

prn:P2163 a owl:ObjectProperty .

wdtn:P2163 a owl:ObjectProperty .

wdno:P2163 a owl:Class ;
	owl:complementOf _:be15783f018d2abc361b1b2183fe8448 .

_:be15783f018d2abc361b1b2183fe8448 a owl:Restriction ;
	owl:onProperty wdt:P2163 ;
	owl:someValuesFrom owl:Thing .

wd:P1417 a wikibase:Property ;
	rdfs:label "Encyclopædia Britannica Online ID"@en ;
	skos:prefLabel "Encyclopædia Britannica Online ID"@en ;
	schema:name "Encyclopædia Britannica Online ID"@en ;
	schema:description "identifer for an article in the online version of Encyclopædia Britannica"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1417 ;
	wikibase:claim p:P1417 ;
	wikibase:statementProperty ps:P1417 ;
	wikibase:statementValue psv:P1417 ;
	wikibase:qualifier pq:P1417 ;
	wikibase:qualifierValue pqv:P1417 ;
	wikibase:reference pr:P1417 ;
	wikibase:referenceValue prv:P1417 ;
	wikibase:novalue wdno:P1417 ;
	wikibase:directClaimNormalized wdtn:P1417 ;
	wikibase:statementValueNormalized psn:P1417 ;
	wikibase:qualifierValueNormalized pqn:P1417 ;
	wikibase:referenceValueNormalized prn:P1417 .

p:P1417 a owl:ObjectProperty .

psv:P1417 a owl:ObjectProperty .

pqv:P1417 a owl:ObjectProperty .

prv:P1417 a owl:ObjectProperty .

wdt:P1417 a owl:DatatypeProperty .

ps:P1417 a owl:DatatypeProperty .

pq:P1417 a owl:DatatypeProperty .

pr:P1417 a owl:DatatypeProperty .

psn:P1417 a owl:ObjectProperty .

pqn:P1417 a owl:ObjectProperty .

prn:P1417 a owl:ObjectProperty .

wdtn:P1417 a owl:ObjectProperty .

wdno:P1417 a owl:Class ;
	owl:complementOf _:0cb1ab8817799c4db539b18975ce292a .

_:0cb1ab8817799c4db539b18975ce292a a owl:Restriction ;
	owl:onProperty wdt:P1417 ;
	owl:someValuesFrom owl:Thing .

wd:P2611 a wikibase:Property ;
	rdfs:label "TED speaker ID"@en ;
	skos:prefLabel "TED speaker ID"@en ;
	schema:name "TED speaker ID"@en ;
	schema:description "identifier of a person in the TED database of talks"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2611 ;
	wikibase:claim p:P2611 ;
	wikibase:statementProperty ps:P2611 ;
	wikibase:statementValue psv:P2611 ;
	wikibase:qualifier pq:P2611 ;
	wikibase:qualifierValue pqv:P2611 ;
	wikibase:reference pr:P2611 ;
	wikibase:referenceValue prv:P2611 ;
	wikibase:novalue wdno:P2611 ;
	wikibase:directClaimNormalized wdtn:P2611 ;
	wikibase:statementValueNormalized psn:P2611 ;
	wikibase:qualifierValueNormalized pqn:P2611 ;
	wikibase:referenceValueNormalized prn:P2611 .

p:P2611 a owl:ObjectProperty .

psv:P2611 a owl:ObjectProperty .

pqv:P2611 a owl:ObjectProperty .

prv:P2611 a owl:ObjectProperty .

wdt:P2611 a owl:DatatypeProperty .

ps:P2611 a owl:DatatypeProperty .

pq:P2611 a owl:DatatypeProperty .

pr:P2611 a owl:DatatypeProperty .

psn:P2611 a owl:ObjectProperty .

pqn:P2611 a owl:ObjectProperty .

prn:P2611 a owl:ObjectProperty .

wdtn:P2611 a owl:ObjectProperty .

wdno:P2611 a owl:Class ;
	owl:complementOf _:e43012ecc38a37dd790fb2cb0f6163a0 .

_:e43012ecc38a37dd790fb2cb0f6163a0 a owl:Restriction ;
	owl:onProperty wdt:P2611 ;
	owl:someValuesFrom owl:Thing .

wd:P2435 a wikibase:Property ;
	rdfs:label "PORT person ID"@en ;
	skos:prefLabel "PORT person ID"@en ;
	schema:name "PORT person ID"@en ;
	schema:description "PORT-network film database: identifier for a person"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2435 ;
	wikibase:claim p:P2435 ;
	wikibase:statementProperty ps:P2435 ;
	wikibase:statementValue psv:P2435 ;
	wikibase:qualifier pq:P2435 ;
	wikibase:qualifierValue pqv:P2435 ;
	wikibase:reference pr:P2435 ;
	wikibase:referenceValue prv:P2435 ;
	wikibase:novalue wdno:P2435 ;
	wikibase:directClaimNormalized wdtn:P2435 ;
	wikibase:statementValueNormalized psn:P2435 ;
	wikibase:qualifierValueNormalized pqn:P2435 ;
	wikibase:referenceValueNormalized prn:P2435 .

p:P2435 a owl:ObjectProperty .

psv:P2435 a owl:ObjectProperty .

pqv:P2435 a owl:ObjectProperty .

prv:P2435 a owl:ObjectProperty .

wdt:P2435 a owl:DatatypeProperty .

ps:P2435 a owl:DatatypeProperty .

pq:P2435 a owl:DatatypeProperty .

pr:P2435 a owl:DatatypeProperty .

psn:P2435 a owl:ObjectProperty .

pqn:P2435 a owl:ObjectProperty .

prn:P2435 a owl:ObjectProperty .

wdtn:P2435 a owl:ObjectProperty .

wdno:P2435 a owl:Class ;
	owl:complementOf _:775b08d8edc5489c9ac533ee7138a000 .

_:775b08d8edc5489c9ac533ee7138a000 a owl:Restriction ;
	owl:onProperty wdt:P2435 ;
	owl:someValuesFrom owl:Thing .

wd:P2604 a wikibase:Property ;
	rdfs:label "Kinopoisk person ID"@en ;
	skos:prefLabel "Kinopoisk person ID"@en ;
	schema:name "Kinopoisk person ID"@en ;
	schema:description "identifier for a person in the Kinopoisk.ru database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2604 ;
	wikibase:claim p:P2604 ;
	wikibase:statementProperty ps:P2604 ;
	wikibase:statementValue psv:P2604 ;
	wikibase:qualifier pq:P2604 ;
	wikibase:qualifierValue pqv:P2604 ;
	wikibase:reference pr:P2604 ;
	wikibase:referenceValue prv:P2604 ;
	wikibase:novalue wdno:P2604 ;
	wikibase:directClaimNormalized wdtn:P2604 ;
	wikibase:statementValueNormalized psn:P2604 ;
	wikibase:qualifierValueNormalized pqn:P2604 ;
	wikibase:referenceValueNormalized prn:P2604 .

p:P2604 a owl:ObjectProperty .

psv:P2604 a owl:ObjectProperty .

pqv:P2604 a owl:ObjectProperty .

prv:P2604 a owl:ObjectProperty .

wdt:P2604 a owl:DatatypeProperty .

ps:P2604 a owl:DatatypeProperty .

pq:P2604 a owl:DatatypeProperty .

pr:P2604 a owl:DatatypeProperty .

psn:P2604 a owl:ObjectProperty .

pqn:P2604 a owl:ObjectProperty .

prn:P2604 a owl:ObjectProperty .

wdtn:P2604 a owl:ObjectProperty .

wdno:P2604 a owl:Class ;
	owl:complementOf _:10b904d65291ca01c8a9832fec26cd49 .

_:10b904d65291ca01c8a9832fec26cd49 a owl:Restriction ;
	owl:onProperty wdt:P2604 ;
	owl:someValuesFrom owl:Thing .

wd:P2387 a wikibase:Property ;
	rdfs:label "Elonet person ID"@en ;
	skos:prefLabel "Elonet person ID"@en ;
	schema:name "Elonet person ID"@en ;
	schema:description "identifier for a person in the Elonet database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2387 ;
	wikibase:claim p:P2387 ;
	wikibase:statementProperty ps:P2387 ;
	wikibase:statementValue psv:P2387 ;
	wikibase:qualifier pq:P2387 ;
	wikibase:qualifierValue pqv:P2387 ;
	wikibase:reference pr:P2387 ;
	wikibase:referenceValue prv:P2387 ;
	wikibase:novalue wdno:P2387 ;
	wikibase:directClaimNormalized wdtn:P2387 ;
	wikibase:statementValueNormalized psn:P2387 ;
	wikibase:qualifierValueNormalized pqn:P2387 ;
	wikibase:referenceValueNormalized prn:P2387 .

p:P2387 a owl:ObjectProperty .

psv:P2387 a owl:ObjectProperty .

pqv:P2387 a owl:ObjectProperty .

prv:P2387 a owl:ObjectProperty .

wdt:P2387 a owl:DatatypeProperty .

ps:P2387 a owl:DatatypeProperty .

pq:P2387 a owl:DatatypeProperty .

pr:P2387 a owl:DatatypeProperty .

psn:P2387 a owl:ObjectProperty .

pqn:P2387 a owl:ObjectProperty .

prn:P2387 a owl:ObjectProperty .

wdtn:P2387 a owl:ObjectProperty .

wdno:P2387 a owl:Class ;
	owl:complementOf _:c544d2cf7696d1ce6b8ac25ff924f0b4 .

_:c544d2cf7696d1ce6b8ac25ff924f0b4 a owl:Restriction ;
	owl:onProperty wdt:P2387 ;
	owl:someValuesFrom owl:Thing .

wd:P2626 a wikibase:Property ;
	rdfs:label "Danish National Filmography person ID"@en ;
	skos:prefLabel "Danish National Filmography person ID"@en ;
	schema:name "Danish National Filmography person ID"@en ;
	schema:description "identifier for a person in the Danish National Filmography"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2626 ;
	wikibase:claim p:P2626 ;
	wikibase:statementProperty ps:P2626 ;
	wikibase:statementValue psv:P2626 ;
	wikibase:qualifier pq:P2626 ;
	wikibase:qualifierValue pqv:P2626 ;
	wikibase:reference pr:P2626 ;
	wikibase:referenceValue prv:P2626 ;
	wikibase:novalue wdno:P2626 ;
	wikibase:directClaimNormalized wdtn:P2626 ;
	wikibase:statementValueNormalized psn:P2626 ;
	wikibase:qualifierValueNormalized pqn:P2626 ;
	wikibase:referenceValueNormalized prn:P2626 .

p:P2626 a owl:ObjectProperty .

psv:P2626 a owl:ObjectProperty .

pqv:P2626 a owl:ObjectProperty .

prv:P2626 a owl:ObjectProperty .

wdt:P2626 a owl:DatatypeProperty .

ps:P2626 a owl:DatatypeProperty .

pq:P2626 a owl:DatatypeProperty .

pr:P2626 a owl:DatatypeProperty .

psn:P2626 a owl:ObjectProperty .

pqn:P2626 a owl:ObjectProperty .

prn:P2626 a owl:ObjectProperty .

wdtn:P2626 a owl:ObjectProperty .

wdno:P2626 a owl:Class ;
	owl:complementOf _:724ec0a119255cecf9d5c64b7c0ef31a .

_:724ec0a119255cecf9d5c64b7c0ef31a a owl:Restriction ;
	owl:onProperty wdt:P2626 ;
	owl:someValuesFrom owl:Thing .

wd:P2605 a wikibase:Property ;
	rdfs:label "ČSFD person ID"@en ;
	skos:prefLabel "ČSFD person ID"@en ;
	schema:name "ČSFD person ID"@en ;
	schema:description "identifier for a person in the Czecho-Slovak film database ČSFD"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2605 ;
	wikibase:claim p:P2605 ;
	wikibase:statementProperty ps:P2605 ;
	wikibase:statementValue psv:P2605 ;
	wikibase:qualifier pq:P2605 ;
	wikibase:qualifierValue pqv:P2605 ;
	wikibase:reference pr:P2605 ;
	wikibase:referenceValue prv:P2605 ;
	wikibase:novalue wdno:P2605 ;
	wikibase:directClaimNormalized wdtn:P2605 ;
	wikibase:statementValueNormalized psn:P2605 ;
	wikibase:qualifierValueNormalized pqn:P2605 ;
	wikibase:referenceValueNormalized prn:P2605 .

p:P2605 a owl:ObjectProperty .

psv:P2605 a owl:ObjectProperty .

pqv:P2605 a owl:ObjectProperty .

prv:P2605 a owl:ObjectProperty .

wdt:P2605 a owl:DatatypeProperty .

ps:P2605 a owl:DatatypeProperty .

pq:P2605 a owl:DatatypeProperty .

pr:P2605 a owl:DatatypeProperty .

psn:P2605 a owl:ObjectProperty .

pqn:P2605 a owl:ObjectProperty .

prn:P2605 a owl:ObjectProperty .

wdtn:P2605 a owl:ObjectProperty .

wdno:P2605 a owl:Class ;
	owl:complementOf _:dd5a2924da0b3df5fbdee83c8ffc9c09 .

_:dd5a2924da0b3df5fbdee83c8ffc9c09 a owl:Restriction ;
	owl:onProperty wdt:P2605 ;
	owl:someValuesFrom owl:Thing .

wd:P2963 a wikibase:Property ;
	rdfs:label "Goodreads author ID"@en ;
	skos:prefLabel "Goodreads author ID"@en ;
	schema:name "Goodreads author ID"@en ;
	schema:description "identifier of an author on the Goodreads website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2963 ;
	wikibase:claim p:P2963 ;
	wikibase:statementProperty ps:P2963 ;
	wikibase:statementValue psv:P2963 ;
	wikibase:qualifier pq:P2963 ;
	wikibase:qualifierValue pqv:P2963 ;
	wikibase:reference pr:P2963 ;
	wikibase:referenceValue prv:P2963 ;
	wikibase:novalue wdno:P2963 ;
	wikibase:directClaimNormalized wdtn:P2963 ;
	wikibase:statementValueNormalized psn:P2963 ;
	wikibase:qualifierValueNormalized pqn:P2963 ;
	wikibase:referenceValueNormalized prn:P2963 .

p:P2963 a owl:ObjectProperty .

psv:P2963 a owl:ObjectProperty .

pqv:P2963 a owl:ObjectProperty .

prv:P2963 a owl:ObjectProperty .

wdt:P2963 a owl:DatatypeProperty .

ps:P2963 a owl:DatatypeProperty .

pq:P2963 a owl:DatatypeProperty .

pr:P2963 a owl:DatatypeProperty .

psn:P2963 a owl:ObjectProperty .

pqn:P2963 a owl:ObjectProperty .

prn:P2963 a owl:ObjectProperty .

wdtn:P2963 a owl:ObjectProperty .

wdno:P2963 a owl:Class ;
	owl:complementOf _:dc499ce078ff19cc55ba2c4727f311f1 .

_:dc499ce078ff19cc55ba2c4727f311f1 a owl:Restriction ;
	owl:onProperty wdt:P2963 ;
	owl:someValuesFrom owl:Thing .

wd:Q8935487 a wikibase:Item ;
	rdfs:label "Category:Douglas Adams"@en ;
	skos:prefLabel "Category:Douglas Adams"@en ;
	schema:name "Category:Douglas Adams"@en ;
	schema:description "Wikimedia category"@en .

wd:P910 a wikibase:Property ;
	rdfs:label "topic's main category"@en ;
	skos:prefLabel "topic's main category"@en ;
	schema:name "topic's main category"@en ;
	schema:description "main Wikimedia category"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P910 ;
	wikibase:claim p:P910 ;
	wikibase:statementProperty ps:P910 ;
	wikibase:statementValue psv:P910 ;
	wikibase:qualifier pq:P910 ;
	wikibase:qualifierValue pqv:P910 ;
	wikibase:reference pr:P910 ;
	wikibase:referenceValue prv:P910 ;
	wikibase:novalue wdno:P910 .

p:P910 a owl:ObjectProperty .

psv:P910 a owl:ObjectProperty .

pqv:P910 a owl:ObjectProperty .

prv:P910 a owl:ObjectProperty .

wdt:P910 a owl:ObjectProperty .

ps:P910 a owl:ObjectProperty .

pq:P910 a owl:ObjectProperty .

pr:P910 a owl:ObjectProperty .

wdno:P910 a owl:Class ;
	owl:complementOf _:06be9361e78d041ce01df69013cf6906 .

_:06be9361e78d041ce01df69013cf6906 a owl:Restriction ;
	owl:onProperty wdt:P910 ;
	owl:someValuesFrom owl:Thing .

wd:P3106 a wikibase:Property ;
	rdfs:label "Guardian topic ID"@en ;
	skos:prefLabel "Guardian topic ID"@en ;
	schema:name "Guardian topic ID"@en ;
	schema:description "identifier for a topic at the Guardian newspaper website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3106 ;
	wikibase:claim p:P3106 ;
	wikibase:statementProperty ps:P3106 ;
	wikibase:statementValue psv:P3106 ;
	wikibase:qualifier pq:P3106 ;
	wikibase:qualifierValue pqv:P3106 ;
	wikibase:reference pr:P3106 ;
	wikibase:referenceValue prv:P3106 ;
	wikibase:novalue wdno:P3106 ;
	wikibase:directClaimNormalized wdtn:P3106 ;
	wikibase:statementValueNormalized psn:P3106 ;
	wikibase:qualifierValueNormalized pqn:P3106 ;
	wikibase:referenceValueNormalized prn:P3106 .

p:P3106 a owl:ObjectProperty .

psv:P3106 a owl:ObjectProperty .

pqv:P3106 a owl:ObjectProperty .

prv:P3106 a owl:ObjectProperty .

wdt:P3106 a owl:DatatypeProperty .

ps:P3106 a owl:DatatypeProperty .

pq:P3106 a owl:DatatypeProperty .

pr:P3106 a owl:DatatypeProperty .

psn:P3106 a owl:ObjectProperty .

pqn:P3106 a owl:ObjectProperty .

prn:P3106 a owl:ObjectProperty .

wdtn:P3106 a owl:ObjectProperty .

wdno:P3106 a owl:Class ;
	owl:complementOf _:3f5fb8cd6e8b42db420a0a9d7526f491 .

_:3f5fb8cd6e8b42db420a0a9d7526f491 a owl:Restriction ;
	owl:onProperty wdt:P3106 ;
	owl:someValuesFrom owl:Thing .

wd:Q6607 a wikibase:Item ;
	rdfs:label "guitar"@en ;
	skos:prefLabel "guitar"@en ;
	schema:name "guitar"@en ;
	schema:description "fretted string instrument"@en .

wd:P1303 a wikibase:Property ;
	rdfs:label "instrument"@en ;
	skos:prefLabel "instrument"@en ;
	schema:name "instrument"@en ;
	schema:description "musical instrument that a person plays or teaches or used in a music occupation"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1303 ;
	wikibase:claim p:P1303 ;
	wikibase:statementProperty ps:P1303 ;
	wikibase:statementValue psv:P1303 ;
	wikibase:qualifier pq:P1303 ;
	wikibase:qualifierValue pqv:P1303 ;
	wikibase:reference pr:P1303 ;
	wikibase:referenceValue prv:P1303 ;
	wikibase:novalue wdno:P1303 .

p:P1303 a owl:ObjectProperty .

psv:P1303 a owl:ObjectProperty .

pqv:P1303 a owl:ObjectProperty .

prv:P1303 a owl:ObjectProperty .

wdt:P1303 a owl:ObjectProperty .

ps:P1303 a owl:ObjectProperty .

pq:P1303 a owl:ObjectProperty .

pr:P1303 a owl:ObjectProperty .

wdno:P1303 a owl:Class ;
	owl:complementOf _:d00c9eba47a6f844d038a51335c5e8cd .

_:d00c9eba47a6f844d038a51335c5e8cd a owl:Restriction ;
	owl:onProperty wdt:P1303 ;
	owl:someValuesFrom owl:Thing .

wd:P2469 a wikibase:Property ;
	rdfs:label "Theatricalia person ID"@en ;
	skos:prefLabel "Theatricalia person ID"@en ;
	schema:name "Theatricalia person ID"@en ;
	schema:description "identifier for a person in the Theatricalia  database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2469 ;
	wikibase:claim p:P2469 ;
	wikibase:statementProperty ps:P2469 ;
	wikibase:statementValue psv:P2469 ;
	wikibase:qualifier pq:P2469 ;
	wikibase:qualifierValue pqv:P2469 ;
	wikibase:reference pr:P2469 ;
	wikibase:referenceValue prv:P2469 ;
	wikibase:novalue wdno:P2469 ;
	wikibase:directClaimNormalized wdtn:P2469 ;
	wikibase:statementValueNormalized psn:P2469 ;
	wikibase:qualifierValueNormalized pqn:P2469 ;
	wikibase:referenceValueNormalized prn:P2469 .

p:P2469 a owl:ObjectProperty .

psv:P2469 a owl:ObjectProperty .

pqv:P2469 a owl:ObjectProperty .

prv:P2469 a owl:ObjectProperty .

wdt:P2469 a owl:DatatypeProperty .

ps:P2469 a owl:DatatypeProperty .

pq:P2469 a owl:DatatypeProperty .

pr:P2469 a owl:DatatypeProperty .

psn:P2469 a owl:ObjectProperty .

pqn:P2469 a owl:ObjectProperty .

prn:P2469 a owl:ObjectProperty .

wdtn:P2469 a owl:ObjectProperty .

wdno:P2469 a owl:Class ;
	owl:complementOf _:c0b640cdd2a6caa2487d356a9cc7cd66 .

_:c0b640cdd2a6caa2487d356a9cc7cd66 a owl:Restriction ;
	owl:onProperty wdt:P2469 ;
	owl:someValuesFrom owl:Thing .

wd:Q14623673 a wikibase:Item ;
	rdfs:label "Susan Adams"@en ;
	skos:prefLabel "Susan Adams"@en ;
	schema:name "Susan Adams"@en ;
	schema:description "sister of sci-fi writer Douglas Adams"@en .

wd:P3373 a wikibase:Property ;
	rdfs:label "sibling"@en ;
	skos:prefLabel "sibling"@en ;
	schema:name "sibling"@en ;
	schema:description "the subject and the object have at least one common parent (brother, sister, etc. including half-siblings); use \"relative\" (P1038) for siblings-in-law (brother-in-law, sister-in-law, etc.) and step-siblings (step-brothers, step-sisters, etc.)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P3373 ;
	wikibase:claim p:P3373 ;
	wikibase:statementProperty ps:P3373 ;
	wikibase:statementValue psv:P3373 ;
	wikibase:qualifier pq:P3373 ;
	wikibase:qualifierValue pqv:P3373 ;
	wikibase:reference pr:P3373 ;
	wikibase:referenceValue prv:P3373 ;
	wikibase:novalue wdno:P3373 .

p:P3373 a owl:ObjectProperty .

psv:P3373 a owl:ObjectProperty .

pqv:P3373 a owl:ObjectProperty .

prv:P3373 a owl:ObjectProperty .

wdt:P3373 a owl:ObjectProperty .

ps:P3373 a owl:ObjectProperty .

pq:P3373 a owl:ObjectProperty .

pr:P3373 a owl:ObjectProperty .

wdno:P3373 a owl:Class ;
	owl:complementOf _:68101db99b9c4548c495d5107ec2751f .

_:68101db99b9c4548c495d5107ec2751f a owl:Restriction ;
	owl:onProperty wdt:P3373 ;
	owl:someValuesFrom owl:Thing .

wd:P3417 a wikibase:Property ;
	rdfs:label "Quora topic ID"@en ;
	skos:prefLabel "Quora topic ID"@en ;
	schema:name "Quora topic ID"@en ;
	schema:description "identifier for a topic on Quora (English language version)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3417 ;
	wikibase:claim p:P3417 ;
	wikibase:statementProperty ps:P3417 ;
	wikibase:statementValue psv:P3417 ;
	wikibase:qualifier pq:P3417 ;
	wikibase:qualifierValue pqv:P3417 ;
	wikibase:reference pr:P3417 ;
	wikibase:referenceValue prv:P3417 ;
	wikibase:novalue wdno:P3417 ;
	wikibase:directClaimNormalized wdtn:P3417 ;
	wikibase:statementValueNormalized psn:P3417 ;
	wikibase:qualifierValueNormalized pqn:P3417 ;
	wikibase:referenceValueNormalized prn:P3417 .

p:P3417 a owl:ObjectProperty .

psv:P3417 a owl:ObjectProperty .

pqv:P3417 a owl:ObjectProperty .

prv:P3417 a owl:ObjectProperty .

wdt:P3417 a owl:DatatypeProperty .

ps:P3417 a owl:DatatypeProperty .

pq:P3417 a owl:DatatypeProperty .

pr:P3417 a owl:DatatypeProperty .

psn:P3417 a owl:ObjectProperty .

pqn:P3417 a owl:ObjectProperty .

prn:P3417 a owl:ObjectProperty .

wdtn:P3417 a owl:ObjectProperty .

wdno:P3417 a owl:Class ;
	owl:complementOf _:54217a89695819ffcfec13afc576b468 .

_:54217a89695819ffcfec13afc576b468 a owl:Restriction ;
	owl:onProperty wdt:P3417 ;
	owl:someValuesFrom owl:Thing .

wd:P3430 a wikibase:Property ;
	rdfs:label "SNAC ARK ID"@en ;
	skos:prefLabel "SNAC ARK ID"@en ;
	schema:name "SNAC ARK ID"@en ;
	schema:description "identifier for items in the Social Networks and Archival Context system"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3430 ;
	wikibase:claim p:P3430 ;
	wikibase:statementProperty ps:P3430 ;
	wikibase:statementValue psv:P3430 ;
	wikibase:qualifier pq:P3430 ;
	wikibase:qualifierValue pqv:P3430 ;
	wikibase:reference pr:P3430 ;
	wikibase:referenceValue prv:P3430 ;
	wikibase:novalue wdno:P3430 ;
	wikibase:directClaimNormalized wdtn:P3430 ;
	wikibase:statementValueNormalized psn:P3430 ;
	wikibase:qualifierValueNormalized pqn:P3430 ;
	wikibase:referenceValueNormalized prn:P3430 .

p:P3430 a owl:ObjectProperty .

psv:P3430 a owl:ObjectProperty .

pqv:P3430 a owl:ObjectProperty .

prv:P3430 a owl:ObjectProperty .

wdt:P3430 a owl:DatatypeProperty .

ps:P3430 a owl:DatatypeProperty .

pq:P3430 a owl:DatatypeProperty .

pr:P3430 a owl:DatatypeProperty .

psn:P3430 a owl:ObjectProperty .

pqn:P3430 a owl:ObjectProperty .

prn:P3430 a owl:ObjectProperty .

wdtn:P3430 a owl:ObjectProperty .

wdno:P3430 a owl:Class ;
	owl:complementOf _:74856f7b60c8c386cfe39120d60827fa .

_:74856f7b60c8c386cfe39120d60827fa a owl:Restriction ;
	owl:onProperty wdt:P3430 ;
	owl:someValuesFrom owl:Thing .

wd:P1617 a wikibase:Property ;
	rdfs:label "BBC Things ID"@en ;
	skos:prefLabel "BBC Things ID"@en ;
	schema:name "BBC Things ID"@en ;
	schema:description "identifier in the BBC Things database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1617 ;
	wikibase:claim p:P1617 ;
	wikibase:statementProperty ps:P1617 ;
	wikibase:statementValue psv:P1617 ;
	wikibase:qualifier pq:P1617 ;
	wikibase:qualifierValue pqv:P1617 ;
	wikibase:reference pr:P1617 ;
	wikibase:referenceValue prv:P1617 ;
	wikibase:novalue wdno:P1617 ;
	wikibase:directClaimNormalized wdtn:P1617 ;
	wikibase:statementValueNormalized psn:P1617 ;
	wikibase:qualifierValueNormalized pqn:P1617 ;
	wikibase:referenceValueNormalized prn:P1617 .

p:P1617 a owl:ObjectProperty .

psv:P1617 a owl:ObjectProperty .

pqv:P1617 a owl:ObjectProperty .

prv:P1617 a owl:ObjectProperty .

wdt:P1617 a owl:DatatypeProperty .

ps:P1617 a owl:DatatypeProperty .

pq:P1617 a owl:DatatypeProperty .

pr:P1617 a owl:DatatypeProperty .

psn:P1617 a owl:ObjectProperty .

pqn:P1617 a owl:ObjectProperty .

prn:P1617 a owl:ObjectProperty .

wdtn:P1617 a owl:ObjectProperty .

wdno:P1617 a owl:Class ;
	owl:complementOf _:8fdc3215765eb06e29c097f7d29bf9cf .

_:8fdc3215765eb06e29c097f7d29bf9cf a owl:Restriction ;
	owl:onProperty wdt:P1617 ;
	owl:someValuesFrom owl:Thing .

wd:P2048 a wikibase:Property ;
	rdfs:label "height"@en ;
	skos:prefLabel "height"@en ;
	schema:name "height"@en ;
	schema:description "vertical length of an entity"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Quantity> ;
	wikibase:directClaim wdt:P2048 ;
	wikibase:claim p:P2048 ;
	wikibase:statementProperty ps:P2048 ;
	wikibase:statementValue psv:P2048 ;
	wikibase:qualifier pq:P2048 ;
	wikibase:qualifierValue pqv:P2048 ;
	wikibase:reference pr:P2048 ;
	wikibase:referenceValue prv:P2048 ;
	wikibase:novalue wdno:P2048 ;
	wikibase:directClaimNormalized wdtn:P2048 ;
	wikibase:statementValueNormalized psn:P2048 ;
	wikibase:qualifierValueNormalized pqn:P2048 ;
	wikibase:referenceValueNormalized prn:P2048 .

p:P2048 a owl:ObjectProperty .

psv:P2048 a owl:ObjectProperty .

pqv:P2048 a owl:ObjectProperty .

prv:P2048 a owl:ObjectProperty .

wdt:P2048 a owl:DatatypeProperty .

ps:P2048 a owl:DatatypeProperty .

pq:P2048 a owl:DatatypeProperty .

pr:P2048 a owl:DatatypeProperty .

psn:P2048 a owl:ObjectProperty .

pqn:P2048 a owl:ObjectProperty .

prn:P2048 a owl:ObjectProperty .

wdtn:P2048 a owl:DatatypeProperty .

wdno:P2048 a owl:Class ;
	owl:complementOf _:8b9e3c496971ca7a35e1bb77aa490b02 .

_:8b9e3c496971ca7a35e1bb77aa490b02 a owl:Restriction ;
	owl:onProperty wdt:P2048 ;
	owl:someValuesFrom owl:Thing .

wd:P3222 a wikibase:Property ;
	rdfs:label "NE.se ID"@en ;
	skos:prefLabel "NE.se ID"@en ;
	schema:name "NE.se ID"@en ;
	schema:description "ID of article on the Swedish Nationalencyklopedin (NE.se) site"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3222 ;
	wikibase:claim p:P3222 ;
	wikibase:statementProperty ps:P3222 ;
	wikibase:statementValue psv:P3222 ;
	wikibase:qualifier pq:P3222 ;
	wikibase:qualifierValue pqv:P3222 ;
	wikibase:reference pr:P3222 ;
	wikibase:referenceValue prv:P3222 ;
	wikibase:novalue wdno:P3222 ;
	wikibase:directClaimNormalized wdtn:P3222 ;
	wikibase:statementValueNormalized psn:P3222 ;
	wikibase:qualifierValueNormalized pqn:P3222 ;
	wikibase:referenceValueNormalized prn:P3222 .

p:P3222 a owl:ObjectProperty .

psv:P3222 a owl:ObjectProperty .

pqv:P3222 a owl:ObjectProperty .

prv:P3222 a owl:ObjectProperty .

wdt:P3222 a owl:DatatypeProperty .

ps:P3222 a owl:DatatypeProperty .

pq:P3222 a owl:DatatypeProperty .

pr:P3222 a owl:DatatypeProperty .

psn:P3222 a owl:ObjectProperty .

pqn:P3222 a owl:ObjectProperty .

prn:P3222 a owl:ObjectProperty .

wdtn:P3222 a owl:ObjectProperty .

wdno:P3222 a owl:Class ;
	owl:complementOf _:393cb71cdc4813584bc563e30239129e .

_:393cb71cdc4813584bc563e30239129e a owl:Restriction ;
	owl:onProperty wdt:P3222 ;
	owl:someValuesFrom owl:Thing .

wd:P109 a wikibase:Property ;
	rdfs:label "signature"@en ;
	skos:prefLabel "signature"@en ;
	schema:name "signature"@en ;
	schema:description "image of a person's signature"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#CommonsMedia> ;
	wikibase:directClaim wdt:P109 ;
	wikibase:claim p:P109 ;
	wikibase:statementProperty ps:P109 ;
	wikibase:statementValue psv:P109 ;
	wikibase:qualifier pq:P109 ;
	wikibase:qualifierValue pqv:P109 ;
	wikibase:reference pr:P109 ;
	wikibase:referenceValue prv:P109 ;
	wikibase:novalue wdno:P109 .

p:P109 a owl:ObjectProperty .

psv:P109 a owl:ObjectProperty .

pqv:P109 a owl:ObjectProperty .

prv:P109 a owl:ObjectProperty .

wdt:P109 a owl:ObjectProperty .

ps:P109 a owl:ObjectProperty .

pq:P109 a owl:ObjectProperty .

pr:P109 a owl:ObjectProperty .

wdno:P109 a owl:Class ;
	owl:complementOf _:9178d5b87278df363b4768ff2a4933f1 .

_:9178d5b87278df363b4768ff2a4933f1 a owl:Restriction ;
	owl:onProperty wdt:P109 ;
	owl:someValuesFrom owl:Thing .

wd:P4193 a wikibase:Property ;
	rdfs:label "Familypedia person ID"@en ;
	skos:prefLabel "Familypedia person ID"@en ;
	schema:name "Familypedia person ID"@en ;
	schema:description "identifier for a person on Familypedia, a genealogical database hosted at Wikia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4193 ;
	wikibase:claim p:P4193 ;
	wikibase:statementProperty ps:P4193 ;
	wikibase:statementValue psv:P4193 ;
	wikibase:qualifier pq:P4193 ;
	wikibase:qualifierValue pqv:P4193 ;
	wikibase:reference pr:P4193 ;
	wikibase:referenceValue prv:P4193 ;
	wikibase:novalue wdno:P4193 ;
	wikibase:directClaimNormalized wdtn:P4193 ;
	wikibase:statementValueNormalized psn:P4193 ;
	wikibase:qualifierValueNormalized pqn:P4193 ;
	wikibase:referenceValueNormalized prn:P4193 .

p:P4193 a owl:ObjectProperty .

psv:P4193 a owl:ObjectProperty .

pqv:P4193 a owl:ObjectProperty .

prv:P4193 a owl:ObjectProperty .

wdt:P4193 a owl:DatatypeProperty .

ps:P4193 a owl:DatatypeProperty .

pq:P4193 a owl:DatatypeProperty .

pr:P4193 a owl:DatatypeProperty .

psn:P4193 a owl:ObjectProperty .

pqn:P4193 a owl:ObjectProperty .

prn:P4193 a owl:ObjectProperty .

wdtn:P4193 a owl:ObjectProperty .

wdno:P4193 a owl:Class ;
	owl:complementOf _:e20051e9e89f3be5c1b115070975d119 .

_:e20051e9e89f3be5c1b115070975d119 a owl:Restriction ;
	owl:onProperty wdt:P4193 ;
	owl:someValuesFrom owl:Thing .

wd:Q24925 a wikibase:Item ;
	rdfs:label "science fiction"@en ;
	skos:prefLabel "science fiction"@en ;
	schema:name "science fiction"@en ;
	schema:description "genre of fiction"@en .

wd:P136 a wikibase:Property ;
	rdfs:label "genre"@en ;
	skos:prefLabel "genre"@en ;
	schema:name "genre"@en ;
	schema:description "creative work's genre or an artist's field of work (P101). Use main subject (P921) to relate creative works to their topic"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P136 ;
	wikibase:claim p:P136 ;
	wikibase:statementProperty ps:P136 ;
	wikibase:statementValue psv:P136 ;
	wikibase:qualifier pq:P136 ;
	wikibase:qualifierValue pqv:P136 ;
	wikibase:reference pr:P136 ;
	wikibase:referenceValue prv:P136 ;
	wikibase:novalue wdno:P136 .

p:P136 a owl:ObjectProperty .

psv:P136 a owl:ObjectProperty .

pqv:P136 a owl:ObjectProperty .

prv:P136 a owl:ObjectProperty .

wdt:P136 a owl:ObjectProperty .

ps:P136 a owl:ObjectProperty .

pq:P136 a owl:ObjectProperty .

pr:P136 a owl:ObjectProperty .

wdno:P136 a owl:Class ;
	owl:complementOf _:82beabebf8460a8af5174d4f3e83854d .

_:82beabebf8460a8af5174d4f3e83854d a owl:Restriction ;
	owl:onProperty wdt:P136 ;
	owl:someValuesFrom owl:Thing .

wd:Q40831 a wikibase:Item ;
	rdfs:label "comedy"@en ;
	skos:prefLabel "comedy"@en ;
	schema:name "comedy"@en ;
	schema:description "genre of dramatic works intended to be humorous"@en .

wd:Q128758 a wikibase:Item ;
	rdfs:label "satire"@en ;
	skos:prefLabel "satire"@en ;
	schema:name "satire"@en ;
	schema:description "genre of arts and literature in the form of humor or ridicule"@en .

wd:P4431 a wikibase:Property ;
	rdfs:label "Google Doodle"@en ;
	skos:prefLabel "Google Doodle"@en ;
	schema:name "Google Doodle"@en ;
	schema:description "Google Doodle celebrating this entity or event"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4431 ;
	wikibase:claim p:P4431 ;
	wikibase:statementProperty ps:P4431 ;
	wikibase:statementValue psv:P4431 ;
	wikibase:qualifier pq:P4431 ;
	wikibase:qualifierValue pqv:P4431 ;
	wikibase:reference pr:P4431 ;
	wikibase:referenceValue prv:P4431 ;
	wikibase:novalue wdno:P4431 ;
	wikibase:directClaimNormalized wdtn:P4431 ;
	wikibase:statementValueNormalized psn:P4431 ;
	wikibase:qualifierValueNormalized pqn:P4431 ;
	wikibase:referenceValueNormalized prn:P4431 .

p:P4431 a owl:ObjectProperty .

psv:P4431 a owl:ObjectProperty .

pqv:P4431 a owl:ObjectProperty .

prv:P4431 a owl:ObjectProperty .

wdt:P4431 a owl:DatatypeProperty .

ps:P4431 a owl:DatatypeProperty .

pq:P4431 a owl:DatatypeProperty .

pr:P4431 a owl:DatatypeProperty .

psn:P4431 a owl:ObjectProperty .

pqn:P4431 a owl:ObjectProperty .

prn:P4431 a owl:ObjectProperty .

wdtn:P4431 a owl:ObjectProperty .

wdno:P4431 a owl:Class ;
	owl:complementOf _:87ea51c01bfa549b7fd55a10512bd9da .

_:87ea51c01bfa549b7fd55a10512bd9da a owl:Restriction ;
	owl:onProperty wdt:P4431 ;
	owl:someValuesFrom owl:Thing .

wd:P2607 a wikibase:Property ;
	rdfs:label "BookBrainz author ID"@en ;
	skos:prefLabel "BookBrainz author ID"@en ;
	schema:name "BookBrainz author ID"@en ;
	schema:description "identifier for a creator per the BookBrainz open book encyclopedia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2607 ;
	wikibase:claim p:P2607 ;
	wikibase:statementProperty ps:P2607 ;
	wikibase:statementValue psv:P2607 ;
	wikibase:qualifier pq:P2607 ;
	wikibase:qualifierValue pqv:P2607 ;
	wikibase:reference pr:P2607 ;
	wikibase:referenceValue prv:P2607 ;
	wikibase:novalue wdno:P2607 ;
	wikibase:directClaimNormalized wdtn:P2607 ;
	wikibase:statementValueNormalized psn:P2607 ;
	wikibase:qualifierValueNormalized pqn:P2607 ;
	wikibase:referenceValueNormalized prn:P2607 .

p:P2607 a owl:ObjectProperty .

psv:P2607 a owl:ObjectProperty .

pqv:P2607 a owl:ObjectProperty .

prv:P2607 a owl:ObjectProperty .

wdt:P2607 a owl:DatatypeProperty .

ps:P2607 a owl:DatatypeProperty .

pq:P2607 a owl:DatatypeProperty .

pr:P2607 a owl:DatatypeProperty .

psn:P2607 a owl:ObjectProperty .

pqn:P2607 a owl:ObjectProperty .

prn:P2607 a owl:ObjectProperty .

wdtn:P2607 a owl:ObjectProperty .

wdno:P2607 a owl:Class ;
	owl:complementOf _:6e046fb42b8677d56bc25e4eee90ad82 .

_:6e046fb42b8677d56bc25e4eee90ad82 a owl:Restriction ;
	owl:onProperty wdt:P2607 ;
	owl:someValuesFrom owl:Thing .

wd:P1415 a wikibase:Property ;
	rdfs:label "Oxford Dictionary of National Biography ID"@en ;
	skos:prefLabel "Oxford Dictionary of National Biography ID"@en ;
	schema:name "Oxford Dictionary of National Biography ID"@en ;
	schema:description "identifier used by the Oxford Dictionary of National Biography"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1415 ;
	wikibase:claim p:P1415 ;
	wikibase:statementProperty ps:P1415 ;
	wikibase:statementValue psv:P1415 ;
	wikibase:qualifier pq:P1415 ;
	wikibase:qualifierValue pqv:P1415 ;
	wikibase:reference pr:P1415 ;
	wikibase:referenceValue prv:P1415 ;
	wikibase:novalue wdno:P1415 ;
	wikibase:directClaimNormalized wdtn:P1415 ;
	wikibase:statementValueNormalized psn:P1415 ;
	wikibase:qualifierValueNormalized pqn:P1415 ;
	wikibase:referenceValueNormalized prn:P1415 .

p:P1415 a owl:ObjectProperty .

psv:P1415 a owl:ObjectProperty .

pqv:P1415 a owl:ObjectProperty .

prv:P1415 a owl:ObjectProperty .

wdt:P1415 a owl:DatatypeProperty .

ps:P1415 a owl:DatatypeProperty .

pq:P1415 a owl:DatatypeProperty .

pr:P1415 a owl:DatatypeProperty .

psn:P1415 a owl:ObjectProperty .

pqn:P1415 a owl:ObjectProperty .

prn:P1415 a owl:ObjectProperty .

wdtn:P1415 a owl:ObjectProperty .

wdno:P1415 a owl:Class ;
	owl:complementOf _:c25eddb7380a667f934f6e9d57f948e2 .

_:c25eddb7380a667f934f6e9d57f948e2 a owl:Restriction ;
	owl:onProperty wdt:P1415 ;
	owl:someValuesFrom owl:Thing .

wd:P2949 a wikibase:Property ;
	rdfs:label "WikiTree person ID"@en ;
	skos:prefLabel "WikiTree person ID"@en ;
	schema:name "WikiTree person ID"@en ;
	schema:description "identifier for a person in the WikiTree genealogy website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2949 ;
	wikibase:claim p:P2949 ;
	wikibase:statementProperty ps:P2949 ;
	wikibase:statementValue psv:P2949 ;
	wikibase:qualifier pq:P2949 ;
	wikibase:qualifierValue pqv:P2949 ;
	wikibase:reference pr:P2949 ;
	wikibase:referenceValue prv:P2949 ;
	wikibase:novalue wdno:P2949 ;
	wikibase:directClaimNormalized wdtn:P2949 ;
	wikibase:statementValueNormalized psn:P2949 ;
	wikibase:qualifierValueNormalized pqn:P2949 ;
	wikibase:referenceValueNormalized prn:P2949 .

p:P2949 a owl:ObjectProperty .

psv:P2949 a owl:ObjectProperty .

pqv:P2949 a owl:ObjectProperty .

prv:P2949 a owl:ObjectProperty .

wdt:P2949 a owl:DatatypeProperty .

ps:P2949 a owl:DatatypeProperty .

pq:P2949 a owl:DatatypeProperty .

pr:P2949 a owl:DatatypeProperty .

psn:P2949 a owl:ObjectProperty .

pqn:P2949 a owl:ObjectProperty .

prn:P2949 a owl:ObjectProperty .

wdtn:P2949 a owl:ObjectProperty .

wdno:P2949 a owl:Class ;
	owl:complementOf _:13009834bc64a0e1b21f662dd1cae0e6 .

_:13009834bc64a0e1b21f662dd1cae0e6 a owl:Restriction ;
	owl:onProperty wdt:P2949 ;
	owl:someValuesFrom owl:Thing .

wd:P3154 a wikibase:Property ;
	rdfs:label "Runeberg author ID"@en ;
	skos:prefLabel "Runeberg author ID"@en ;
	schema:name "Runeberg author ID"@en ;
	schema:description "identifier for an author in the Runeberg digital library"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3154 ;
	wikibase:claim p:P3154 ;
	wikibase:statementProperty ps:P3154 ;
	wikibase:statementValue psv:P3154 ;
	wikibase:qualifier pq:P3154 ;
	wikibase:qualifierValue pqv:P3154 ;
	wikibase:reference pr:P3154 ;
	wikibase:referenceValue prv:P3154 ;
	wikibase:novalue wdno:P3154 ;
	wikibase:directClaimNormalized wdtn:P3154 ;
	wikibase:statementValueNormalized psn:P3154 ;
	wikibase:qualifierValueNormalized pqn:P3154 ;
	wikibase:referenceValueNormalized prn:P3154 .

p:P3154 a owl:ObjectProperty .

psv:P3154 a owl:ObjectProperty .

pqv:P3154 a owl:ObjectProperty .

prv:P3154 a owl:ObjectProperty .

wdt:P3154 a owl:DatatypeProperty .

ps:P3154 a owl:DatatypeProperty .

pq:P3154 a owl:DatatypeProperty .

pr:P3154 a owl:DatatypeProperty .

psn:P3154 a owl:ObjectProperty .

pqn:P3154 a owl:ObjectProperty .

prn:P3154 a owl:ObjectProperty .

wdtn:P3154 a owl:ObjectProperty .

wdno:P3154 a owl:Class ;
	owl:complementOf _:db791a76850b6f9f22b9d2c2663e5118 .

_:db791a76850b6f9f22b9d2c2663e5118 a owl:Restriction ;
	owl:onProperty wdt:P3154 ;
	owl:someValuesFrom owl:Thing .

wd:P3630 a wikibase:Property ;
	rdfs:label "Babelio author ID"@en ;
	skos:prefLabel "Babelio author ID"@en ;
	schema:name "Babelio author ID"@en ;
	schema:description "identifier for an author on the literature website Babelio"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3630 ;
	wikibase:claim p:P3630 ;
	wikibase:statementProperty ps:P3630 ;
	wikibase:statementValue psv:P3630 ;
	wikibase:qualifier pq:P3630 ;
	wikibase:qualifierValue pqv:P3630 ;
	wikibase:reference pr:P3630 ;
	wikibase:referenceValue prv:P3630 ;
	wikibase:novalue wdno:P3630 ;
	wikibase:directClaimNormalized wdtn:P3630 ;
	wikibase:statementValueNormalized psn:P3630 ;
	wikibase:qualifierValueNormalized pqn:P3630 ;
	wikibase:referenceValueNormalized prn:P3630 .

p:P3630 a owl:ObjectProperty .

psv:P3630 a owl:ObjectProperty .

pqv:P3630 a owl:ObjectProperty .

prv:P3630 a owl:ObjectProperty .

wdt:P3630 a owl:DatatypeProperty .

ps:P3630 a owl:DatatypeProperty .

pq:P3630 a owl:DatatypeProperty .

pr:P3630 a owl:DatatypeProperty .

psn:P3630 a owl:ObjectProperty .

pqn:P3630 a owl:ObjectProperty .

prn:P3630 a owl:ObjectProperty .

wdtn:P3630 a owl:ObjectProperty .

wdno:P3630 a owl:Class ;
	owl:complementOf _:24594fa1f2d1e5172248c41914d21bb7 .

_:24594fa1f2d1e5172248c41914d21bb7 a owl:Restriction ;
	owl:onProperty wdt:P3630 ;
	owl:someValuesFrom owl:Thing .

wd:P1280 a wikibase:Property ;
	rdfs:label "CONOR.SI ID"@en ;
	skos:prefLabel "CONOR.SI ID"@en ;
	schema:name "CONOR.SI ID"@en ;
	schema:description "identifier in the National and University Library, Ljubljana database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1280 ;
	wikibase:claim p:P1280 ;
	wikibase:statementProperty ps:P1280 ;
	wikibase:statementValue psv:P1280 ;
	wikibase:qualifier pq:P1280 ;
	wikibase:qualifierValue pqv:P1280 ;
	wikibase:reference pr:P1280 ;
	wikibase:referenceValue prv:P1280 ;
	wikibase:novalue wdno:P1280 ;
	wikibase:directClaimNormalized wdtn:P1280 ;
	wikibase:statementValueNormalized psn:P1280 ;
	wikibase:qualifierValueNormalized pqn:P1280 ;
	wikibase:referenceValueNormalized prn:P1280 .

p:P1280 a owl:ObjectProperty .

psv:P1280 a owl:ObjectProperty .

pqv:P1280 a owl:ObjectProperty .

prv:P1280 a owl:ObjectProperty .

wdt:P1280 a owl:DatatypeProperty .

ps:P1280 a owl:DatatypeProperty .

pq:P1280 a owl:DatatypeProperty .

pr:P1280 a owl:DatatypeProperty .

psn:P1280 a owl:ObjectProperty .

pqn:P1280 a owl:ObjectProperty .

prn:P1280 a owl:ObjectProperty .

wdtn:P1280 a owl:ObjectProperty .

wdno:P1280 a owl:Class ;
	owl:complementOf _:80b4eb258d14a23c226a399a423bb197 .

_:80b4eb258d14a23c226a399a423bb197 a owl:Restriction ;
	owl:onProperty wdt:P1280 ;
	owl:someValuesFrom owl:Thing .

wd:P2734 a wikibase:Property ;
	rdfs:label "Unz Review author ID"@en ;
	skos:prefLabel "Unz Review author ID"@en ;
	schema:name "Unz Review author ID"@en ;
	schema:description "author identifier at The Unz Review (unz.org), a content-archiving website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2734 ;
	wikibase:claim p:P2734 ;
	wikibase:statementProperty ps:P2734 ;
	wikibase:statementValue psv:P2734 ;
	wikibase:qualifier pq:P2734 ;
	wikibase:qualifierValue pqv:P2734 ;
	wikibase:reference pr:P2734 ;
	wikibase:referenceValue prv:P2734 ;
	wikibase:novalue wdno:P2734 ;
	wikibase:directClaimNormalized wdtn:P2734 ;
	wikibase:statementValueNormalized psn:P2734 ;
	wikibase:qualifierValueNormalized pqn:P2734 ;
	wikibase:referenceValueNormalized prn:P2734 .

p:P2734 a owl:ObjectProperty .

psv:P2734 a owl:ObjectProperty .

pqv:P2734 a owl:ObjectProperty .

prv:P2734 a owl:ObjectProperty .

wdt:P2734 a owl:DatatypeProperty .

ps:P2734 a owl:DatatypeProperty .

pq:P2734 a owl:DatatypeProperty .

pr:P2734 a owl:DatatypeProperty .

psn:P2734 a owl:ObjectProperty .

pqn:P2734 a owl:ObjectProperty .

prn:P2734 a owl:ObjectProperty .

wdtn:P2734 a owl:ObjectProperty .

wdno:P2734 a owl:Class ;
	owl:complementOf _:9cc184b4798513575b85b1c13891bc76 .

_:9cc184b4798513575b85b1c13891bc76 a owl:Restriction ;
	owl:onProperty wdt:P2734 ;
	owl:someValuesFrom owl:Thing .

wd:Q14623681 a wikibase:Item ;
	rdfs:label "Jane Belson"@en ;
	skos:prefLabel "Jane Belson"@en ;
	schema:name "Jane Belson"@en ;
	schema:description "Barrister, wife of science-fiction author Douglas Adams"@en .

wd:P26 a wikibase:Property ;
	rdfs:label "spouse"@en ;
	skos:prefLabel "spouse"@en ;
	schema:name "spouse"@en ;
	schema:description "the subject has the object as their spouse (husband, wife, partner, etc.). Use \"unmarried partner\" (P451) for non-married companions"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P26 ;
	wikibase:claim p:P26 ;
	wikibase:statementProperty ps:P26 ;
	wikibase:statementValue psv:P26 ;
	wikibase:qualifier pq:P26 ;
	wikibase:qualifierValue pqv:P26 ;
	wikibase:reference pr:P26 ;
	wikibase:referenceValue prv:P26 ;
	wikibase:novalue wdno:P26 .

p:P26 a owl:ObjectProperty .

psv:P26 a owl:ObjectProperty .

pqv:P26 a owl:ObjectProperty .

prv:P26 a owl:ObjectProperty .

wdt:P26 a owl:ObjectProperty .

ps:P26 a owl:ObjectProperty .

pq:P26 a owl:ObjectProperty .

pr:P26 a owl:ObjectProperty .

wdno:P26 a owl:Class ;
	owl:complementOf _:243c53df77c77a7835e19a2fc67efaea .

_:243c53df77c77a7835e19a2fc67efaea a owl:Restriction ;
	owl:onProperty wdt:P26 ;
	owl:someValuesFrom owl:Thing .

wd:P5019 a wikibase:Property ;
	rdfs:label "Brockhaus Enzyklopädie online ID"@en ;
	skos:prefLabel "Brockhaus Enzyklopädie online ID"@en ;
	schema:name "Brockhaus Enzyklopädie online ID"@en ;
	schema:description "identifier for an article in the online version of Brockhaus Enzyklopädie"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5019 ;
	wikibase:claim p:P5019 ;
	wikibase:statementProperty ps:P5019 ;
	wikibase:statementValue psv:P5019 ;
	wikibase:qualifier pq:P5019 ;
	wikibase:qualifierValue pqv:P5019 ;
	wikibase:reference pr:P5019 ;
	wikibase:referenceValue prv:P5019 ;
	wikibase:novalue wdno:P5019 ;
	wikibase:directClaimNormalized wdtn:P5019 ;
	wikibase:statementValueNormalized psn:P5019 ;
	wikibase:qualifierValueNormalized pqn:P5019 ;
	wikibase:referenceValueNormalized prn:P5019 .

p:P5019 a owl:ObjectProperty .

psv:P5019 a owl:ObjectProperty .

pqv:P5019 a owl:ObjectProperty .

prv:P5019 a owl:ObjectProperty .

wdt:P5019 a owl:DatatypeProperty .

ps:P5019 a owl:DatatypeProperty .

pq:P5019 a owl:DatatypeProperty .

pr:P5019 a owl:DatatypeProperty .

psn:P5019 a owl:ObjectProperty .

pqn:P5019 a owl:ObjectProperty .

prn:P5019 a owl:ObjectProperty .

wdtn:P5019 a owl:ObjectProperty .

wdno:P5019 a owl:Class ;
	owl:complementOf _:8f2e067276b7b0125a88b1cdcccdf2ae .

_:8f2e067276b7b0125a88b1cdcccdf2ae a owl:Restriction ;
	owl:onProperty wdt:P5019 ;
	owl:someValuesFrom owl:Thing .

wd:Q857679 a wikibase:Item ;
	rdfs:label "Footlights"@en ;
	skos:prefLabel "Footlights"@en ;
	schema:name "Footlights"@en ;
	schema:description "amateur theatrical club in Cambridge"@en .

wd:P463 a wikibase:Property ;
	rdfs:label "member of"@en ;
	skos:prefLabel "member of"@en ;
	schema:name "member of"@en ;
	schema:description "organization, club or musical group to which the subject belongs. Do not use for membership in ethnic or social groups, nor for holding a political position, such as a member of parliament (use P39 for that)."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P463 ;
	wikibase:claim p:P463 ;
	wikibase:statementProperty ps:P463 ;
	wikibase:statementValue psv:P463 ;
	wikibase:qualifier pq:P463 ;
	wikibase:qualifierValue pqv:P463 ;
	wikibase:reference pr:P463 ;
	wikibase:referenceValue prv:P463 ;
	wikibase:novalue wdno:P463 .

p:P463 a owl:ObjectProperty .

psv:P463 a owl:ObjectProperty .

pqv:P463 a owl:ObjectProperty .

prv:P463 a owl:ObjectProperty .

wdt:P463 a owl:ObjectProperty .

ps:P463 a owl:ObjectProperty .

pq:P463 a owl:ObjectProperty .

pr:P463 a owl:ObjectProperty .

wdno:P463 a owl:Class ;
	owl:complementOf _:cb328db7723625d6d9a3c3f586e3098b .

_:cb328db7723625d6d9a3c3f586e3098b a owl:Restriction ;
	owl:onProperty wdt:P463 ;
	owl:someValuesFrom owl:Thing .

wd:Q5610831 a wikibase:Item ;
	rdfs:label "Groucho Club"@en ;
	skos:prefLabel "Groucho Club"@en ;
	schema:name "Groucho Club"@en ;
	schema:description "private members' club in Soho, London"@en .

wd:P2600 a wikibase:Property ;
	rdfs:label "Geni.com profile ID"@en ;
	skos:prefLabel "Geni.com profile ID"@en ;
	schema:name "Geni.com profile ID"@en ;
	schema:description "profile on the Geni.com genealogy website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2600 ;
	wikibase:claim p:P2600 ;
	wikibase:statementProperty ps:P2600 ;
	wikibase:statementValue psv:P2600 ;
	wikibase:qualifier pq:P2600 ;
	wikibase:qualifierValue pqv:P2600 ;
	wikibase:reference pr:P2600 ;
	wikibase:referenceValue prv:P2600 ;
	wikibase:novalue wdno:P2600 ;
	wikibase:directClaimNormalized wdtn:P2600 ;
	wikibase:statementValueNormalized psn:P2600 ;
	wikibase:qualifierValueNormalized pqn:P2600 ;
	wikibase:referenceValueNormalized prn:P2600 .

p:P2600 a owl:ObjectProperty .

psv:P2600 a owl:ObjectProperty .

pqv:P2600 a owl:ObjectProperty .

prv:P2600 a owl:ObjectProperty .

wdt:P2600 a owl:DatatypeProperty .

ps:P2600 a owl:DatatypeProperty .

pq:P2600 a owl:DatatypeProperty .

pr:P2600 a owl:DatatypeProperty .

psn:P2600 a owl:ObjectProperty .

pqn:P2600 a owl:ObjectProperty .

prn:P2600 a owl:ObjectProperty .

wdtn:P2600 a owl:ObjectProperty .

wdno:P2600 a owl:Class ;
	owl:complementOf _:d6fa81ee7b6497d7df625fa217d89ea8 .

_:d6fa81ee7b6497d7df625fa217d89ea8 a owl:Restriction ;
	owl:onProperty wdt:P2600 ;
	owl:someValuesFrom owl:Thing .

wd:P5337 a wikibase:Property ;
	rdfs:label "Google News topics ID"@en ;
	skos:prefLabel "Google News topics ID"@en ;
	schema:name "Google News topics ID"@en ;
	schema:description "identifier for a subject in the news on Google News"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5337 ;
	wikibase:claim p:P5337 ;
	wikibase:statementProperty ps:P5337 ;
	wikibase:statementValue psv:P5337 ;
	wikibase:qualifier pq:P5337 ;
	wikibase:qualifierValue pqv:P5337 ;
	wikibase:reference pr:P5337 ;
	wikibase:referenceValue prv:P5337 ;
	wikibase:novalue wdno:P5337 ;
	wikibase:directClaimNormalized wdtn:P5337 ;
	wikibase:statementValueNormalized psn:P5337 ;
	wikibase:qualifierValueNormalized pqn:P5337 ;
	wikibase:referenceValueNormalized prn:P5337 .

p:P5337 a owl:ObjectProperty .

psv:P5337 a owl:ObjectProperty .

pqv:P5337 a owl:ObjectProperty .

prv:P5337 a owl:ObjectProperty .

wdt:P5337 a owl:DatatypeProperty .

ps:P5337 a owl:DatatypeProperty .

pq:P5337 a owl:DatatypeProperty .

pr:P5337 a owl:DatatypeProperty .

psn:P5337 a owl:ObjectProperty .

pqn:P5337 a owl:ObjectProperty .

prn:P5337 a owl:ObjectProperty .

wdtn:P5337 a owl:ObjectProperty .

wdno:P5337 a owl:Class ;
	owl:complementOf _:20afe0be5378fd81b1a56e8c9bb639a6 .

_:20afe0be5378fd81b1a56e8c9bb639a6 a owl:Restriction ;
	owl:onProperty wdt:P5337 ;
	owl:someValuesFrom owl:Thing .

wd:P5357 a wikibase:Property ;
	rdfs:label "The Encyclopedia of Science Fiction ID"@en ;
	skos:prefLabel "The Encyclopedia of Science Fiction ID"@en ;
	schema:name "The Encyclopedia of Science Fiction ID"@en ;
	schema:description "identifier for an entry on the Encyclopedia of Science Fiction website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5357 ;
	wikibase:claim p:P5357 ;
	wikibase:statementProperty ps:P5357 ;
	wikibase:statementValue psv:P5357 ;
	wikibase:qualifier pq:P5357 ;
	wikibase:qualifierValue pqv:P5357 ;
	wikibase:reference pr:P5357 ;
	wikibase:referenceValue prv:P5357 ;
	wikibase:novalue wdno:P5357 ;
	wikibase:directClaimNormalized wdtn:P5357 ;
	wikibase:statementValueNormalized psn:P5357 ;
	wikibase:qualifierValueNormalized pqn:P5357 ;
	wikibase:referenceValueNormalized prn:P5357 .

p:P5357 a owl:ObjectProperty .

psv:P5357 a owl:ObjectProperty .

pqv:P5357 a owl:ObjectProperty .

prv:P5357 a owl:ObjectProperty .

wdt:P5357 a owl:DatatypeProperty .

ps:P5357 a owl:DatatypeProperty .

pq:P5357 a owl:DatatypeProperty .

pr:P5357 a owl:DatatypeProperty .

psn:P5357 a owl:ObjectProperty .

pqn:P5357 a owl:ObjectProperty .

prn:P5357 a owl:ObjectProperty .

wdtn:P5357 a owl:ObjectProperty .

wdno:P5357 a owl:Class ;
	owl:complementOf _:0bed4737dc8c885c40ab065a85dd2d43 .

_:0bed4737dc8c885c40ab065a85dd2d43 a owl:Restriction ;
	owl:onProperty wdt:P5357 ;
	owl:someValuesFrom owl:Thing .

wd:P5361 a wikibase:Property ;
	rdfs:label "BNB person ID"@en ;
	skos:prefLabel "BNB person ID"@en ;
	schema:name "BNB person ID"@en ;
	schema:description "identifier of a person in the British National Bibliography (bnb.data.bl.uk)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5361 ;
	wikibase:claim p:P5361 ;
	wikibase:statementProperty ps:P5361 ;
	wikibase:statementValue psv:P5361 ;
	wikibase:qualifier pq:P5361 ;
	wikibase:qualifierValue pqv:P5361 ;
	wikibase:reference pr:P5361 ;
	wikibase:referenceValue prv:P5361 ;
	wikibase:novalue wdno:P5361 ;
	wikibase:directClaimNormalized wdtn:P5361 ;
	wikibase:statementValueNormalized psn:P5361 ;
	wikibase:qualifierValueNormalized pqn:P5361 ;
	wikibase:referenceValueNormalized prn:P5361 .

p:P5361 a owl:ObjectProperty .

psv:P5361 a owl:ObjectProperty .

pqv:P5361 a owl:ObjectProperty .

prv:P5361 a owl:ObjectProperty .

wdt:P5361 a owl:DatatypeProperty .

ps:P5361 a owl:DatatypeProperty .

pq:P5361 a owl:DatatypeProperty .

pr:P5361 a owl:DatatypeProperty .

psn:P5361 a owl:ObjectProperty .

pqn:P5361 a owl:ObjectProperty .

prn:P5361 a owl:ObjectProperty .

wdtn:P5361 a owl:ObjectProperty .

wdno:P5361 a owl:Class ;
	owl:complementOf _:75d064607e3aeee48ce34855d3da5749 .

_:75d064607e3aeee48ce34855d3da5749 a owl:Restriction ;
	owl:onProperty wdt:P5361 ;
	owl:someValuesFrom owl:Thing .

wd:P5365 a wikibase:Property ;
	rdfs:label "Internet Book Database of Fiction writer ID"@en ;
	skos:prefLabel "Internet Book Database of Fiction writer ID"@en ;
	schema:name "Internet Book Database of Fiction writer ID"@en ;
	schema:description "identifier for a writer on the Internet Book Database of Fiction website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5365 ;
	wikibase:claim p:P5365 ;
	wikibase:statementProperty ps:P5365 ;
	wikibase:statementValue psv:P5365 ;
	wikibase:qualifier pq:P5365 ;
	wikibase:qualifierValue pqv:P5365 ;
	wikibase:reference pr:P5365 ;
	wikibase:referenceValue prv:P5365 ;
	wikibase:novalue wdno:P5365 ;
	wikibase:directClaimNormalized wdtn:P5365 ;
	wikibase:statementValueNormalized psn:P5365 ;
	wikibase:qualifierValueNormalized pqn:P5365 ;
	wikibase:referenceValueNormalized prn:P5365 .

p:P5365 a owl:ObjectProperty .

psv:P5365 a owl:ObjectProperty .

pqv:P5365 a owl:ObjectProperty .

prv:P5365 a owl:ObjectProperty .

wdt:P5365 a owl:DatatypeProperty .

ps:P5365 a owl:DatatypeProperty .

pq:P5365 a owl:DatatypeProperty .

pr:P5365 a owl:DatatypeProperty .

psn:P5365 a owl:ObjectProperty .

pqn:P5365 a owl:ObjectProperty .

prn:P5365 a owl:ObjectProperty .

wdtn:P5365 a owl:ObjectProperty .

wdno:P5365 a owl:Class ;
	owl:complementOf _:1a2bf3db176a393386c2e49f6b86ee58 .

_:1a2bf3db176a393386c2e49f6b86ee58 a owl:Restriction ;
	owl:onProperty wdt:P5365 ;
	owl:someValuesFrom owl:Thing .

wd:P5408 a wikibase:Property ;
	rdfs:label "Fantastic Fiction author ID"@en ;
	skos:prefLabel "Fantastic Fiction author ID"@en ;
	schema:name "Fantastic Fiction author ID"@en ;
	schema:description "identifier for an author on the Fantastic Fiction website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5408 ;
	wikibase:claim p:P5408 ;
	wikibase:statementProperty ps:P5408 ;
	wikibase:statementValue psv:P5408 ;
	wikibase:qualifier pq:P5408 ;
	wikibase:qualifierValue pqv:P5408 ;
	wikibase:reference pr:P5408 ;
	wikibase:referenceValue prv:P5408 ;
	wikibase:novalue wdno:P5408 ;
	wikibase:directClaimNormalized wdtn:P5408 ;
	wikibase:statementValueNormalized psn:P5408 ;
	wikibase:qualifierValueNormalized pqn:P5408 ;
	wikibase:referenceValueNormalized prn:P5408 .

p:P5408 a owl:ObjectProperty .

psv:P5408 a owl:ObjectProperty .

pqv:P5408 a owl:ObjectProperty .

prv:P5408 a owl:ObjectProperty .

wdt:P5408 a owl:DatatypeProperty .

ps:P5408 a owl:DatatypeProperty .

pq:P5408 a owl:DatatypeProperty .

pr:P5408 a owl:DatatypeProperty .

psn:P5408 a owl:ObjectProperty .

pqn:P5408 a owl:ObjectProperty .

prn:P5408 a owl:ObjectProperty .

wdtn:P5408 a owl:ObjectProperty .

wdno:P5408 a owl:Class ;
	owl:complementOf _:1ffbfafb245b73c09a7d395d89acc95c .

_:1ffbfafb245b73c09a7d395d89acc95c a owl:Restriction ;
	owl:onProperty wdt:P5408 ;
	owl:someValuesFrom owl:Thing .

wd:P5570 a wikibase:Property ;
	rdfs:label "NooSFere author ID"@en ;
	skos:prefLabel "NooSFere author ID"@en ;
	schema:name "NooSFere author ID"@en ;
	schema:description "identifier for a person in the NooSFere database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5570 ;
	wikibase:claim p:P5570 ;
	wikibase:statementProperty ps:P5570 ;
	wikibase:statementValue psv:P5570 ;
	wikibase:qualifier pq:P5570 ;
	wikibase:qualifierValue pqv:P5570 ;
	wikibase:reference pr:P5570 ;
	wikibase:referenceValue prv:P5570 ;
	wikibase:novalue wdno:P5570 ;
	wikibase:directClaimNormalized wdtn:P5570 ;
	wikibase:statementValueNormalized psn:P5570 ;
	wikibase:qualifierValueNormalized pqn:P5570 ;
	wikibase:referenceValueNormalized prn:P5570 .

p:P5570 a owl:ObjectProperty .

psv:P5570 a owl:ObjectProperty .

pqv:P5570 a owl:ObjectProperty .

prv:P5570 a owl:ObjectProperty .

wdt:P5570 a owl:DatatypeProperty .

ps:P5570 a owl:DatatypeProperty .

pq:P5570 a owl:DatatypeProperty .

pr:P5570 a owl:DatatypeProperty .

psn:P5570 a owl:ObjectProperty .

pqn:P5570 a owl:ObjectProperty .

prn:P5570 a owl:ObjectProperty .

wdtn:P5570 a owl:ObjectProperty .

wdno:P5570 a owl:Class ;
	owl:complementOf _:ef056acf6876233aec277c266c47bcb2 .

_:ef056acf6876233aec277c266c47bcb2 a owl:Restriction ;
	owl:onProperty wdt:P5570 ;
	owl:someValuesFrom owl:Thing .

wd:P1580 a wikibase:Property ;
	rdfs:label "University of Barcelona authority ID (obsolete)"@en ;
	skos:prefLabel "University of Barcelona authority ID (obsolete)"@en ;
	schema:name "University of Barcelona authority ID (obsolete)"@en ;
	schema:description "register of authorities of the University of Barcelona"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1580 ;
	wikibase:claim p:P1580 ;
	wikibase:statementProperty ps:P1580 ;
	wikibase:statementValue psv:P1580 ;
	wikibase:qualifier pq:P1580 ;
	wikibase:qualifierValue pqv:P1580 ;
	wikibase:reference pr:P1580 ;
	wikibase:referenceValue prv:P1580 ;
	wikibase:novalue wdno:P1580 ;
	wikibase:directClaimNormalized wdtn:P1580 ;
	wikibase:statementValueNormalized psn:P1580 ;
	wikibase:qualifierValueNormalized pqn:P1580 ;
	wikibase:referenceValueNormalized prn:P1580 .

p:P1580 a owl:ObjectProperty .

psv:P1580 a owl:ObjectProperty .

pqv:P1580 a owl:ObjectProperty .

prv:P1580 a owl:ObjectProperty .

wdt:P1580 a owl:DatatypeProperty .

ps:P1580 a owl:DatatypeProperty .

pq:P1580 a owl:DatatypeProperty .

pr:P1580 a owl:DatatypeProperty .

psn:P1580 a owl:ObjectProperty .

pqn:P1580 a owl:ObjectProperty .

prn:P1580 a owl:ObjectProperty .

wdtn:P1580 a owl:ObjectProperty .

wdno:P1580 a owl:Class ;
	owl:complementOf _:2c18119dfb764c21781474382cef87f9 .

_:2c18119dfb764c21781474382cef87f9 a owl:Restriction ;
	owl:onProperty wdt:P1580 ;
	owl:someValuesFrom owl:Thing .

wd:P5587 a wikibase:Property ;
	rdfs:label "Libris-URI"@en ;
	skos:prefLabel "Libris-URI"@en ;
	schema:name "Libris-URI"@en ;
	schema:description "identifier for an item in the catalogue of the Swedish National Library"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5587 ;
	wikibase:claim p:P5587 ;
	wikibase:statementProperty ps:P5587 ;
	wikibase:statementValue psv:P5587 ;
	wikibase:qualifier pq:P5587 ;
	wikibase:qualifierValue pqv:P5587 ;
	wikibase:reference pr:P5587 ;
	wikibase:referenceValue prv:P5587 ;
	wikibase:novalue wdno:P5587 ;
	wikibase:directClaimNormalized wdtn:P5587 ;
	wikibase:statementValueNormalized psn:P5587 ;
	wikibase:qualifierValueNormalized pqn:P5587 ;
	wikibase:referenceValueNormalized prn:P5587 .

p:P5587 a owl:ObjectProperty .

psv:P5587 a owl:ObjectProperty .

pqv:P5587 a owl:ObjectProperty .

prv:P5587 a owl:ObjectProperty .

wdt:P5587 a owl:DatatypeProperty .

ps:P5587 a owl:DatatypeProperty .

pq:P5587 a owl:DatatypeProperty .

pr:P5587 a owl:DatatypeProperty .

psn:P5587 a owl:ObjectProperty .

pqn:P5587 a owl:ObjectProperty .

prn:P5587 a owl:ObjectProperty .

wdtn:P5587 a owl:ObjectProperty .

wdno:P5587 a owl:Class ;
	owl:complementOf _:53e4027f1b2af0acaabec6f044f83450 .

_:53e4027f1b2af0acaabec6f044f83450 a owl:Restriction ;
	owl:onProperty wdt:P5587 ;
	owl:someValuesFrom owl:Thing .

wd:P3365 a wikibase:Property ;
	rdfs:label "Treccani ID"@en ;
	skos:prefLabel "Treccani ID"@en ;
	schema:name "Treccani ID"@en ;
	schema:description "identifier for the Treccani website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3365 ;
	wikibase:claim p:P3365 ;
	wikibase:statementProperty ps:P3365 ;
	wikibase:statementValue psv:P3365 ;
	wikibase:qualifier pq:P3365 ;
	wikibase:qualifierValue pqv:P3365 ;
	wikibase:reference pr:P3365 ;
	wikibase:referenceValue prv:P3365 ;
	wikibase:novalue wdno:P3365 ;
	wikibase:directClaimNormalized wdtn:P3365 ;
	wikibase:statementValueNormalized psn:P3365 ;
	wikibase:qualifierValueNormalized pqn:P3365 ;
	wikibase:referenceValueNormalized prn:P3365 .

p:P3365 a owl:ObjectProperty .

psv:P3365 a owl:ObjectProperty .

pqv:P3365 a owl:ObjectProperty .

prv:P3365 a owl:ObjectProperty .

wdt:P3365 a owl:DatatypeProperty .

ps:P3365 a owl:DatatypeProperty .

pq:P3365 a owl:DatatypeProperty .

pr:P3365 a owl:DatatypeProperty .

psn:P3365 a owl:ObjectProperty .

pqn:P3365 a owl:ObjectProperty .

prn:P3365 a owl:ObjectProperty .

wdtn:P3365 a owl:ObjectProperty .

wdno:P3365 a owl:Class ;
	owl:complementOf _:af88ccb1df88d926d3fd729824e729a3 .

_:af88ccb1df88d926d3fd729824e729a3 a owl:Restriction ;
	owl:onProperty wdt:P3365 ;
	owl:someValuesFrom owl:Thing .

wd:P269 a wikibase:Property ;
	rdfs:label "IdRef ID"@en ;
	skos:prefLabel "IdRef ID"@en ;
	schema:name "IdRef ID"@en ;
	schema:description "identifier for authority control in the French collaborative library catalog (see also P1025). Format: 8 digits followed by a digit or \"X\""@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P269 ;
	wikibase:claim p:P269 ;
	wikibase:statementProperty ps:P269 ;
	wikibase:statementValue psv:P269 ;
	wikibase:qualifier pq:P269 ;
	wikibase:qualifierValue pqv:P269 ;
	wikibase:reference pr:P269 ;
	wikibase:referenceValue prv:P269 ;
	wikibase:novalue wdno:P269 ;
	wikibase:directClaimNormalized wdtn:P269 ;
	wikibase:statementValueNormalized psn:P269 ;
	wikibase:qualifierValueNormalized pqn:P269 ;
	wikibase:referenceValueNormalized prn:P269 .

p:P269 a owl:ObjectProperty .

psv:P269 a owl:ObjectProperty .

pqv:P269 a owl:ObjectProperty .

prv:P269 a owl:ObjectProperty .

wdt:P269 a owl:DatatypeProperty .

ps:P269 a owl:DatatypeProperty .

pq:P269 a owl:DatatypeProperty .

pr:P269 a owl:DatatypeProperty .

psn:P269 a owl:ObjectProperty .

pqn:P269 a owl:ObjectProperty .

prn:P269 a owl:ObjectProperty .

wdtn:P269 a owl:ObjectProperty .

wdno:P269 a owl:Class ;
	owl:complementOf _:1402c30f0c43a923194197839d7dfd0e .

_:1402c30f0c43a923194197839d7dfd0e a owl:Restriction ;
	owl:onProperty wdt:P269 ;
	owl:someValuesFrom owl:Thing .

wd:P213 a wikibase:Property ;
	rdfs:label "ISNI"@en ;
	skos:prefLabel "ISNI"@en ;
	schema:name "ISNI"@en ;
	schema:description "International Standard Name Identifier for an identity. Format: 4 blocks of 4 digits separated by a space, first block is 0000"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P213 ;
	wikibase:claim p:P213 ;
	wikibase:statementProperty ps:P213 ;
	wikibase:statementValue psv:P213 ;
	wikibase:qualifier pq:P213 ;
	wikibase:qualifierValue pqv:P213 ;
	wikibase:reference pr:P213 ;
	wikibase:referenceValue prv:P213 ;
	wikibase:novalue wdno:P213 ;
	wikibase:directClaimNormalized wdtn:P213 ;
	wikibase:statementValueNormalized psn:P213 ;
	wikibase:qualifierValueNormalized pqn:P213 ;
	wikibase:referenceValueNormalized prn:P213 .

p:P213 a owl:ObjectProperty .

psv:P213 a owl:ObjectProperty .

pqv:P213 a owl:ObjectProperty .

prv:P213 a owl:ObjectProperty .

wdt:P213 a owl:DatatypeProperty .

ps:P213 a owl:DatatypeProperty .

pq:P213 a owl:DatatypeProperty .

pr:P213 a owl:DatatypeProperty .

psn:P213 a owl:ObjectProperty .

pqn:P213 a owl:ObjectProperty .

prn:P213 a owl:ObjectProperty .

wdtn:P213 a owl:ObjectProperty .

wdno:P213 a owl:Class ;
	owl:complementOf _:9dde9e6391665130494638d5c078994a .

_:9dde9e6391665130494638d5c078994a a owl:Restriction ;
	owl:onProperty wdt:P213 ;
	owl:someValuesFrom owl:Thing .

wd:P691 a wikibase:Property ;
	rdfs:label "NKCR AUT ID"@en ;
	skos:prefLabel "NKCR AUT ID"@en ;
	schema:name "NKCR AUT ID"@en ;
	schema:description "identifier in the Czech National Authority Database (National Library of Czech Republic)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P691 ;
	wikibase:claim p:P691 ;
	wikibase:statementProperty ps:P691 ;
	wikibase:statementValue psv:P691 ;
	wikibase:qualifier pq:P691 ;
	wikibase:qualifierValue pqv:P691 ;
	wikibase:reference pr:P691 ;
	wikibase:referenceValue prv:P691 ;
	wikibase:novalue wdno:P691 ;
	wikibase:directClaimNormalized wdtn:P691 ;
	wikibase:statementValueNormalized psn:P691 ;
	wikibase:qualifierValueNormalized pqn:P691 ;
	wikibase:referenceValueNormalized prn:P691 .

p:P691 a owl:ObjectProperty .

psv:P691 a owl:ObjectProperty .

pqv:P691 a owl:ObjectProperty .

prv:P691 a owl:ObjectProperty .

wdt:P691 a owl:DatatypeProperty .

ps:P691 a owl:DatatypeProperty .

pq:P691 a owl:DatatypeProperty .

pr:P691 a owl:DatatypeProperty .

psn:P691 a owl:ObjectProperty .

pqn:P691 a owl:ObjectProperty .

prn:P691 a owl:ObjectProperty .

wdtn:P691 a owl:ObjectProperty .

wdno:P691 a owl:Class ;
	owl:complementOf _:eee17ba34d3dca4b3bf5b23f68ca71b1 .

_:eee17ba34d3dca4b3bf5b23f68ca71b1 a owl:Restriction ;
	owl:onProperty wdt:P691 ;
	owl:someValuesFrom owl:Thing .

wd:P950 a wikibase:Property ;
	rdfs:label "Biblioteca Nacional de España ID"@en ;
	skos:prefLabel "Biblioteca Nacional de España ID"@en ;
	schema:name "Biblioteca Nacional de España ID"@en ;
	schema:description "identifier from the authority file of the Biblioteca Nacional de España. Format for persons: \"XX\" followed by 4 to 7 digits"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P950 ;
	wikibase:claim p:P950 ;
	wikibase:statementProperty ps:P950 ;
	wikibase:statementValue psv:P950 ;
	wikibase:qualifier pq:P950 ;
	wikibase:qualifierValue pqv:P950 ;
	wikibase:reference pr:P950 ;
	wikibase:referenceValue prv:P950 ;
	wikibase:novalue wdno:P950 ;
	wikibase:directClaimNormalized wdtn:P950 ;
	wikibase:statementValueNormalized psn:P950 ;
	wikibase:qualifierValueNormalized pqn:P950 ;
	wikibase:referenceValueNormalized prn:P950 .

p:P950 a owl:ObjectProperty .

psv:P950 a owl:ObjectProperty .

pqv:P950 a owl:ObjectProperty .

prv:P950 a owl:ObjectProperty .

wdt:P950 a owl:DatatypeProperty .

ps:P950 a owl:DatatypeProperty .

pq:P950 a owl:DatatypeProperty .

pr:P950 a owl:DatatypeProperty .

psn:P950 a owl:ObjectProperty .

pqn:P950 a owl:ObjectProperty .

prn:P950 a owl:ObjectProperty .

wdtn:P950 a owl:ObjectProperty .

wdno:P950 a owl:Class ;
	owl:complementOf _:0e43a71fd2ee37bb1404cdf948a29f86 .

_:0e43a71fd2ee37bb1404cdf948a29f86 a owl:Restriction ;
	owl:onProperty wdt:P950 ;
	owl:someValuesFrom owl:Thing .

wd:P1670 a wikibase:Property ;
	rdfs:label "Canadiana Authorities ID (former scheme)"@en ;
	skos:prefLabel "Canadiana Authorities ID (former scheme)"@en ;
	schema:name "Canadiana Authorities ID (former scheme)"@en ;
	schema:description "obsolete identifier for authority control per the Library and Archives Canada. Format: 4 digits + 1 letter + 4 digits + optional F"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1670 ;
	wikibase:claim p:P1670 ;
	wikibase:statementProperty ps:P1670 ;
	wikibase:statementValue psv:P1670 ;
	wikibase:qualifier pq:P1670 ;
	wikibase:qualifierValue pqv:P1670 ;
	wikibase:reference pr:P1670 ;
	wikibase:referenceValue prv:P1670 ;
	wikibase:novalue wdno:P1670 ;
	wikibase:directClaimNormalized wdtn:P1670 ;
	wikibase:statementValueNormalized psn:P1670 ;
	wikibase:qualifierValueNormalized pqn:P1670 ;
	wikibase:referenceValueNormalized prn:P1670 .

p:P1670 a owl:ObjectProperty .

psv:P1670 a owl:ObjectProperty .

pqv:P1670 a owl:ObjectProperty .

prv:P1670 a owl:ObjectProperty .

wdt:P1670 a owl:DatatypeProperty .

ps:P1670 a owl:DatatypeProperty .

pq:P1670 a owl:DatatypeProperty .

pr:P1670 a owl:DatatypeProperty .

psn:P1670 a owl:ObjectProperty .

pqn:P1670 a owl:ObjectProperty .

prn:P1670 a owl:ObjectProperty .

wdtn:P1670 a owl:ObjectProperty .

wdno:P1670 a owl:Class ;
	owl:complementOf _:c6f5db0d582f0a992ea002dc731e082c .

_:c6f5db0d582f0a992ea002dc731e082c a owl:Restriction ;
	owl:onProperty wdt:P1670 ;
	owl:someValuesFrom owl:Thing .

wd:P409 a wikibase:Property ;
	rdfs:label "Libraries Australia ID"@en ;
	skos:prefLabel "Libraries Australia ID"@en ;
	schema:name "Libraries Australia ID"@en ;
	schema:description "identifier issued by the National Library of Australia (see also P1315 for the newer People Australia identifier). VIAF component. Format: 1-12 digits, removing leading zero-padding."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P409 ;
	wikibase:claim p:P409 ;
	wikibase:statementProperty ps:P409 ;
	wikibase:statementValue psv:P409 ;
	wikibase:qualifier pq:P409 ;
	wikibase:qualifierValue pqv:P409 ;
	wikibase:reference pr:P409 ;
	wikibase:referenceValue prv:P409 ;
	wikibase:novalue wdno:P409 ;
	wikibase:directClaimNormalized wdtn:P409 ;
	wikibase:statementValueNormalized psn:P409 ;
	wikibase:qualifierValueNormalized pqn:P409 ;
	wikibase:referenceValueNormalized prn:P409 .

p:P409 a owl:ObjectProperty .

psv:P409 a owl:ObjectProperty .

pqv:P409 a owl:ObjectProperty .

prv:P409 a owl:ObjectProperty .

wdt:P409 a owl:DatatypeProperty .

ps:P409 a owl:DatatypeProperty .

pq:P409 a owl:DatatypeProperty .

pr:P409 a owl:DatatypeProperty .

psn:P409 a owl:ObjectProperty .

pqn:P409 a owl:ObjectProperty .

prn:P409 a owl:ObjectProperty .

wdtn:P409 a owl:ObjectProperty .

wdno:P409 a owl:Class ;
	owl:complementOf _:ddff2734031848db16fefb0b09442e18 .

_:ddff2734031848db16fefb0b09442e18 a owl:Restriction ;
	owl:onProperty wdt:P409 ;
	owl:someValuesFrom owl:Thing .

wd:P396 a wikibase:Property ;
	rdfs:label "SBN author ID"@en ;
	skos:prefLabel "SBN author ID"@en ;
	schema:name "SBN author ID"@en ;
	schema:description "identifier issued by National Library Service (SBN) of Italy"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P396 ;
	wikibase:claim p:P396 ;
	wikibase:statementProperty ps:P396 ;
	wikibase:statementValue psv:P396 ;
	wikibase:qualifier pq:P396 ;
	wikibase:qualifierValue pqv:P396 ;
	wikibase:reference pr:P396 ;
	wikibase:referenceValue prv:P396 ;
	wikibase:novalue wdno:P396 ;
	wikibase:directClaimNormalized wdtn:P396 ;
	wikibase:statementValueNormalized psn:P396 ;
	wikibase:qualifierValueNormalized pqn:P396 ;
	wikibase:referenceValueNormalized prn:P396 .

p:P396 a owl:ObjectProperty .

psv:P396 a owl:ObjectProperty .

pqv:P396 a owl:ObjectProperty .

prv:P396 a owl:ObjectProperty .

wdt:P396 a owl:DatatypeProperty .

ps:P396 a owl:DatatypeProperty .

pq:P396 a owl:DatatypeProperty .

pr:P396 a owl:DatatypeProperty .

psn:P396 a owl:ObjectProperty .

pqn:P396 a owl:ObjectProperty .

prn:P396 a owl:ObjectProperty .

wdtn:P396 a owl:ObjectProperty .

wdno:P396 a owl:Class ;
	owl:complementOf _:b793eade6779eed21c20a3e5f40ffff3 .

_:b793eade6779eed21c20a3e5f40ffff3 a owl:Restriction ;
	owl:onProperty wdt:P396 ;
	owl:someValuesFrom owl:Thing .

wd:P1207 a wikibase:Property ;
	rdfs:label "NUKAT ID"@en ;
	skos:prefLabel "NUKAT ID"@en ;
	schema:name "NUKAT ID"@en ;
	schema:description "identifier for authority control in the Center of Warsaw University Library catalog"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1207 ;
	wikibase:claim p:P1207 ;
	wikibase:statementProperty ps:P1207 ;
	wikibase:statementValue psv:P1207 ;
	wikibase:qualifier pq:P1207 ;
	wikibase:qualifierValue pqv:P1207 ;
	wikibase:reference pr:P1207 ;
	wikibase:referenceValue prv:P1207 ;
	wikibase:novalue wdno:P1207 ;
	wikibase:directClaimNormalized wdtn:P1207 ;
	wikibase:statementValueNormalized psn:P1207 ;
	wikibase:qualifierValueNormalized pqn:P1207 ;
	wikibase:referenceValueNormalized prn:P1207 .

p:P1207 a owl:ObjectProperty .

psv:P1207 a owl:ObjectProperty .

pqv:P1207 a owl:ObjectProperty .

prv:P1207 a owl:ObjectProperty .

wdt:P1207 a owl:DatatypeProperty .

ps:P1207 a owl:DatatypeProperty .

pq:P1207 a owl:DatatypeProperty .

pr:P1207 a owl:DatatypeProperty .

psn:P1207 a owl:ObjectProperty .

pqn:P1207 a owl:ObjectProperty .

prn:P1207 a owl:ObjectProperty .

wdtn:P1207 a owl:ObjectProperty .

wdno:P1207 a owl:Class ;
	owl:complementOf _:098a27635a1b5476433fc39621626158 .

_:098a27635a1b5476433fc39621626158 a owl:Restriction ;
	owl:onProperty wdt:P1207 ;
	owl:someValuesFrom owl:Thing .

wd:P1005 a wikibase:Property ;
	rdfs:label "Portuguese National Library ID"@en ;
	skos:prefLabel "Portuguese National Library ID"@en ;
	schema:name "Portuguese National Library ID"@en ;
	schema:description "identifier for the Biblioteca Nacional de Portugal"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1005 ;
	wikibase:claim p:P1005 ;
	wikibase:statementProperty ps:P1005 ;
	wikibase:statementValue psv:P1005 ;
	wikibase:qualifier pq:P1005 ;
	wikibase:qualifierValue pqv:P1005 ;
	wikibase:reference pr:P1005 ;
	wikibase:referenceValue prv:P1005 ;
	wikibase:novalue wdno:P1005 ;
	wikibase:directClaimNormalized wdtn:P1005 ;
	wikibase:statementValueNormalized psn:P1005 ;
	wikibase:qualifierValueNormalized pqn:P1005 ;
	wikibase:referenceValueNormalized prn:P1005 .

p:P1005 a owl:ObjectProperty .

psv:P1005 a owl:ObjectProperty .

pqv:P1005 a owl:ObjectProperty .

prv:P1005 a owl:ObjectProperty .

wdt:P1005 a owl:DatatypeProperty .

ps:P1005 a owl:DatatypeProperty .

pq:P1005 a owl:DatatypeProperty .

pr:P1005 a owl:DatatypeProperty .

psn:P1005 a owl:ObjectProperty .

pqn:P1005 a owl:ObjectProperty .

prn:P1005 a owl:ObjectProperty .

wdtn:P1005 a owl:ObjectProperty .

wdno:P1005 a owl:Class ;
	owl:complementOf _:c12a9c4f574f0f217014678a49b07bd2 .

_:c12a9c4f574f0f217014678a49b07bd2 a owl:Restriction ;
	owl:onProperty wdt:P1005 ;
	owl:someValuesFrom owl:Thing .

wd:P1375 a wikibase:Property ;
	rdfs:label "NSK ID"@en ;
	skos:prefLabel "NSK ID"@en ;
	schema:name "NSK ID"@en ;
	schema:description "identifier for an item in the National and University Library in Zagreb (including leading zeroes)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1375 ;
	wikibase:claim p:P1375 ;
	wikibase:statementProperty ps:P1375 ;
	wikibase:statementValue psv:P1375 ;
	wikibase:qualifier pq:P1375 ;
	wikibase:qualifierValue pqv:P1375 ;
	wikibase:reference pr:P1375 ;
	wikibase:referenceValue prv:P1375 ;
	wikibase:novalue wdno:P1375 ;
	wikibase:directClaimNormalized wdtn:P1375 ;
	wikibase:statementValueNormalized psn:P1375 ;
	wikibase:qualifierValueNormalized pqn:P1375 ;
	wikibase:referenceValueNormalized prn:P1375 .

p:P1375 a owl:ObjectProperty .

psv:P1375 a owl:ObjectProperty .

pqv:P1375 a owl:ObjectProperty .

prv:P1375 a owl:ObjectProperty .

wdt:P1375 a owl:DatatypeProperty .

ps:P1375 a owl:DatatypeProperty .

pq:P1375 a owl:DatatypeProperty .

pr:P1375 a owl:DatatypeProperty .

psn:P1375 a owl:ObjectProperty .

pqn:P1375 a owl:ObjectProperty .

prn:P1375 a owl:ObjectProperty .

wdtn:P1375 a owl:ObjectProperty .

wdno:P1375 a owl:Class ;
	owl:complementOf _:f1aabf4526d9bbba25125f92deb12180 .

_:f1aabf4526d9bbba25125f92deb12180 a owl:Restriction ;
	owl:onProperty wdt:P1375 ;
	owl:someValuesFrom owl:Thing .

wd:P1412 a wikibase:Property ;
	rdfs:label "languages spoken, written or signed"@en ;
	skos:prefLabel "languages spoken, written or signed"@en ;
	schema:name "languages spoken, written or signed"@en ;
	schema:description "language(s) that a person or a people speaks, writes or signs, including the native language(s)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1412 ;
	wikibase:claim p:P1412 ;
	wikibase:statementProperty ps:P1412 ;
	wikibase:statementValue psv:P1412 ;
	wikibase:qualifier pq:P1412 ;
	wikibase:qualifierValue pqv:P1412 ;
	wikibase:reference pr:P1412 ;
	wikibase:referenceValue prv:P1412 ;
	wikibase:novalue wdno:P1412 .

p:P1412 a owl:ObjectProperty .

psv:P1412 a owl:ObjectProperty .

pqv:P1412 a owl:ObjectProperty .

prv:P1412 a owl:ObjectProperty .

wdt:P1412 a owl:ObjectProperty .

ps:P1412 a owl:ObjectProperty .

pq:P1412 a owl:ObjectProperty .

pr:P1412 a owl:ObjectProperty .

wdno:P1412 a owl:Class ;
	owl:complementOf _:b7c055c5647997a192eb82c65f0eb69b .

_:b7c055c5647997a192eb82c65f0eb69b a owl:Restriction ;
	owl:onProperty wdt:P1412 ;
	owl:someValuesFrom owl:Thing .

wd:P5247 a wikibase:Property ;
	rdfs:label "Giant Bomb ID"@en ;
	skos:prefLabel "Giant Bomb ID"@en ;
	schema:name "Giant Bomb ID"@en ;
	schema:description "identifier at the Giant Bomb database of video games, fictional characters and voice actors"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5247 ;
	wikibase:claim p:P5247 ;
	wikibase:statementProperty ps:P5247 ;
	wikibase:statementValue psv:P5247 ;
	wikibase:qualifier pq:P5247 ;
	wikibase:qualifierValue pqv:P5247 ;
	wikibase:reference pr:P5247 ;
	wikibase:referenceValue prv:P5247 ;
	wikibase:novalue wdno:P5247 ;
	wikibase:directClaimNormalized wdtn:P5247 ;
	wikibase:statementValueNormalized psn:P5247 ;
	wikibase:qualifierValueNormalized pqn:P5247 ;
	wikibase:referenceValueNormalized prn:P5247 .

p:P5247 a owl:ObjectProperty .

psv:P5247 a owl:ObjectProperty .

pqv:P5247 a owl:ObjectProperty .

prv:P5247 a owl:ObjectProperty .

wdt:P5247 a owl:DatatypeProperty .

ps:P5247 a owl:DatatypeProperty .

pq:P5247 a owl:DatatypeProperty .

pr:P5247 a owl:DatatypeProperty .

psn:P5247 a owl:ObjectProperty .

pqn:P5247 a owl:ObjectProperty .

prn:P5247 a owl:ObjectProperty .

wdtn:P5247 a owl:ObjectProperty .

wdno:P5247 a owl:Class ;
	owl:complementOf _:805e875898989efd64d1dfd6ee1ec07c .

_:805e875898989efd64d1dfd6ee1ec07c a owl:Restriction ;
	owl:onProperty wdt:P5247 ;
	owl:someValuesFrom owl:Thing .

wd:P5905 a wikibase:Property ;
	rdfs:label "Comic Vine ID"@en ;
	skos:prefLabel "Comic Vine ID"@en ;
	schema:name "Comic Vine ID"@en ;
	schema:description "identifier at the Comic Vine database of comic books, fictional characters, people, films and television series/episodes"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5905 ;
	wikibase:claim p:P5905 ;
	wikibase:statementProperty ps:P5905 ;
	wikibase:statementValue psv:P5905 ;
	wikibase:qualifier pq:P5905 ;
	wikibase:qualifierValue pqv:P5905 ;
	wikibase:reference pr:P5905 ;
	wikibase:referenceValue prv:P5905 ;
	wikibase:novalue wdno:P5905 ;
	wikibase:directClaimNormalized wdtn:P5905 ;
	wikibase:statementValueNormalized psn:P5905 ;
	wikibase:qualifierValueNormalized pqn:P5905 ;
	wikibase:referenceValueNormalized prn:P5905 .

p:P5905 a owl:ObjectProperty .

psv:P5905 a owl:ObjectProperty .

pqv:P5905 a owl:ObjectProperty .

prv:P5905 a owl:ObjectProperty .

wdt:P5905 a owl:DatatypeProperty .

ps:P5905 a owl:DatatypeProperty .

pq:P5905 a owl:DatatypeProperty .

pr:P5905 a owl:DatatypeProperty .

psn:P5905 a owl:ObjectProperty .

pqn:P5905 a owl:ObjectProperty .

prn:P5905 a owl:ObjectProperty .

wdtn:P5905 a owl:ObjectProperty .

wdno:P5905 a owl:Class ;
	owl:complementOf _:43dbe4cf449e1ec4b84eaab188092c4a .

_:43dbe4cf449e1ec4b84eaab188092c4a a owl:Restriction ;
	owl:onProperty wdt:P5905 ;
	owl:someValuesFrom owl:Thing .

wd:P6839 a wikibase:Property ;
	rdfs:label "TV Tropes identifier"@en ;
	skos:prefLabel "TV Tropes identifier"@en ;
	schema:name "TV Tropes identifier"@en ;
	schema:description "identifier in the TV Tropes online wiki"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6839 ;
	wikibase:claim p:P6839 ;
	wikibase:statementProperty ps:P6839 ;
	wikibase:statementValue psv:P6839 ;
	wikibase:qualifier pq:P6839 ;
	wikibase:qualifierValue pqv:P6839 ;
	wikibase:reference pr:P6839 ;
	wikibase:referenceValue prv:P6839 ;
	wikibase:novalue wdno:P6839 ;
	wikibase:directClaimNormalized wdtn:P6839 ;
	wikibase:statementValueNormalized psn:P6839 ;
	wikibase:qualifierValueNormalized pqn:P6839 ;
	wikibase:referenceValueNormalized prn:P6839 .

p:P6839 a owl:ObjectProperty .

psv:P6839 a owl:ObjectProperty .

pqv:P6839 a owl:ObjectProperty .

prv:P6839 a owl:ObjectProperty .

wdt:P6839 a owl:DatatypeProperty .

ps:P6839 a owl:DatatypeProperty .

pq:P6839 a owl:DatatypeProperty .

pr:P6839 a owl:DatatypeProperty .

psn:P6839 a owl:ObjectProperty .

pqn:P6839 a owl:ObjectProperty .

prn:P6839 a owl:ObjectProperty .

wdtn:P6839 a owl:ObjectProperty .

wdno:P6839 a owl:Class ;
	owl:complementOf _:09b0cc20dd3fd6c6c547053794b61317 .

_:09b0cc20dd3fd6c6c547053794b61317 a owl:Restriction ;
	owl:onProperty wdt:P6839 ;
	owl:someValuesFrom owl:Thing .

wd:P4342 a wikibase:Property ;
	rdfs:label "Store norske leksikon ID"@en ;
	skos:prefLabel "Store norske leksikon ID"@en ;
	schema:name "Store norske leksikon ID"@en ;
	schema:description "identifier of an article in the online encyclopedia snl.no"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4342 ;
	wikibase:claim p:P4342 ;
	wikibase:statementProperty ps:P4342 ;
	wikibase:statementValue psv:P4342 ;
	wikibase:qualifier pq:P4342 ;
	wikibase:qualifierValue pqv:P4342 ;
	wikibase:reference pr:P4342 ;
	wikibase:referenceValue prv:P4342 ;
	wikibase:novalue wdno:P4342 ;
	wikibase:directClaimNormalized wdtn:P4342 ;
	wikibase:statementValueNormalized psn:P4342 ;
	wikibase:qualifierValueNormalized pqn:P4342 ;
	wikibase:referenceValueNormalized prn:P4342 .

p:P4342 a owl:ObjectProperty .

psv:P4342 a owl:ObjectProperty .

pqv:P4342 a owl:ObjectProperty .

prv:P4342 a owl:ObjectProperty .

wdt:P4342 a owl:DatatypeProperty .

ps:P4342 a owl:DatatypeProperty .

pq:P4342 a owl:DatatypeProperty .

pr:P4342 a owl:DatatypeProperty .

psn:P4342 a owl:ObjectProperty .

pqn:P4342 a owl:ObjectProperty .

prn:P4342 a owl:ObjectProperty .

wdtn:P4342 a owl:ObjectProperty .

wdno:P4342 a owl:Class ;
	owl:complementOf _:798f6d589e42f1b7a13b07c18239c1c6 .

_:798f6d589e42f1b7a13b07c18239c1c6 a owl:Restriction ;
	owl:onProperty wdt:P4342 ;
	owl:someValuesFrom owl:Thing .

wd:P4785 a wikibase:Property ;
	rdfs:label "MYmovies name ID (former scheme)"@en ;
	skos:prefLabel "MYmovies name ID (former scheme)"@en ;
	schema:name "MYmovies name ID (former scheme)"@en ;
	schema:description "identifier for producer, cinematographer, screenwriter and company in MYmovies.it"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4785 ;
	wikibase:claim p:P4785 ;
	wikibase:statementProperty ps:P4785 ;
	wikibase:statementValue psv:P4785 ;
	wikibase:qualifier pq:P4785 ;
	wikibase:qualifierValue pqv:P4785 ;
	wikibase:reference pr:P4785 ;
	wikibase:referenceValue prv:P4785 ;
	wikibase:novalue wdno:P4785 ;
	wikibase:directClaimNormalized wdtn:P4785 ;
	wikibase:statementValueNormalized psn:P4785 ;
	wikibase:qualifierValueNormalized pqn:P4785 ;
	wikibase:referenceValueNormalized prn:P4785 .

p:P4785 a owl:ObjectProperty .

psv:P4785 a owl:ObjectProperty .

pqv:P4785 a owl:ObjectProperty .

prv:P4785 a owl:ObjectProperty .

wdt:P4785 a owl:DatatypeProperty .

ps:P4785 a owl:DatatypeProperty .

pq:P4785 a owl:DatatypeProperty .

pr:P4785 a owl:DatatypeProperty .

psn:P4785 a owl:ObjectProperty .

pqn:P4785 a owl:ObjectProperty .

prn:P4785 a owl:ObjectProperty .

wdtn:P4785 a owl:ObjectProperty .

wdno:P4785 a owl:Class ;
	owl:complementOf _:984fd48810690768872d5ecb268aa198 .

_:984fd48810690768872d5ecb268aa198 a owl:Restriction ;
	owl:onProperty wdt:P4785 ;
	owl:someValuesFrom owl:Thing .

wd:Q67074906 a wikibase:Item ;
	rdfs:label "St John's College Library"@en ;
	skos:prefLabel "St John's College Library"@en ;
	schema:name "St John's College Library"@en ;
	schema:description "library and archive at St John's College, Cambridge"@en .

wd:P485 a wikibase:Property ;
	rdfs:label "archives at"@en ;
	skos:prefLabel "archives at"@en ;
	schema:name "archives at"@en ;
	schema:description "the institution holding the subject's archives"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P485 ;
	wikibase:claim p:P485 ;
	wikibase:statementProperty ps:P485 ;
	wikibase:statementValue psv:P485 ;
	wikibase:qualifier pq:P485 ;
	wikibase:qualifierValue pqv:P485 ;
	wikibase:reference pr:P485 ;
	wikibase:referenceValue prv:P485 ;
	wikibase:novalue wdno:P485 .

p:P485 a owl:ObjectProperty .

psv:P485 a owl:ObjectProperty .

pqv:P485 a owl:ObjectProperty .

prv:P485 a owl:ObjectProperty .

wdt:P485 a owl:ObjectProperty .

ps:P485 a owl:ObjectProperty .

pq:P485 a owl:ObjectProperty .

pr:P485 a owl:ObjectProperty .

wdno:P485 a owl:Class ;
	owl:complementOf _:d1e00b1503aebf05f4293c12199f5974 .

_:d1e00b1503aebf05f4293c12199f5974 a owl:Restriction ;
	owl:onProperty wdt:P485 ;
	owl:someValuesFrom owl:Thing .

wd:P7029 a wikibase:Property ;
	rdfs:label "National Library of Russia ID"@en ;
	skos:prefLabel "National Library of Russia ID"@en ;
	schema:name "National Library of Russia ID"@en ;
	schema:description "identifier for authority control used by the National Library of Russia, Saint-Petersburg"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7029 ;
	wikibase:claim p:P7029 ;
	wikibase:statementProperty ps:P7029 ;
	wikibase:statementValue psv:P7029 ;
	wikibase:qualifier pq:P7029 ;
	wikibase:qualifierValue pqv:P7029 ;
	wikibase:reference pr:P7029 ;
	wikibase:referenceValue prv:P7029 ;
	wikibase:novalue wdno:P7029 ;
	wikibase:directClaimNormalized wdtn:P7029 ;
	wikibase:statementValueNormalized psn:P7029 ;
	wikibase:qualifierValueNormalized pqn:P7029 ;
	wikibase:referenceValueNormalized prn:P7029 .

p:P7029 a owl:ObjectProperty .

psv:P7029 a owl:ObjectProperty .

pqv:P7029 a owl:ObjectProperty .

prv:P7029 a owl:ObjectProperty .

wdt:P7029 a owl:DatatypeProperty .

ps:P7029 a owl:DatatypeProperty .

pq:P7029 a owl:DatatypeProperty .

pr:P7029 a owl:DatatypeProperty .

psn:P7029 a owl:ObjectProperty .

pqn:P7029 a owl:ObjectProperty .

prn:P7029 a owl:ObjectProperty .

wdtn:P7029 a owl:ObjectProperty .

wdno:P7029 a owl:Class ;
	owl:complementOf _:c99164bdb274e3ae1a2928e96f114c4c .

_:c99164bdb274e3ae1a2928e96f114c4c a owl:Restriction ;
	owl:onProperty wdt:P7029 ;
	owl:someValuesFrom owl:Thing .

wd:Q67311526 a wikibase:Item ;
	rdfs:label "Obalky knih.cz"@en ;
	skos:prefLabel "Obalky knih.cz"@en ;
	schema:name "Obalky knih.cz"@en ;
	schema:description "Czech book cover database"@en .

wd:P1343 a wikibase:Property ;
	rdfs:label "described by source"@en ;
	skos:prefLabel "described by source"@en ;
	schema:name "described by source"@en ;
	schema:description "work where this item is described"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1343 ;
	wikibase:claim p:P1343 ;
	wikibase:statementProperty ps:P1343 ;
	wikibase:statementValue psv:P1343 ;
	wikibase:qualifier pq:P1343 ;
	wikibase:qualifierValue pqv:P1343 ;
	wikibase:reference pr:P1343 ;
	wikibase:referenceValue prv:P1343 ;
	wikibase:novalue wdno:P1343 .

p:P1343 a owl:ObjectProperty .

psv:P1343 a owl:ObjectProperty .

pqv:P1343 a owl:ObjectProperty .

prv:P1343 a owl:ObjectProperty .

wdt:P1343 a owl:ObjectProperty .

ps:P1343 a owl:ObjectProperty .

pq:P1343 a owl:ObjectProperty .

pr:P1343 a owl:ObjectProperty .

wdno:P1343 a owl:Class ;
	owl:complementOf _:9c5978c46703ed90be57b769a8622d59 .

_:9c5978c46703ed90be57b769a8622d59 a owl:Restriction ;
	owl:onProperty wdt:P1343 ;
	owl:someValuesFrom owl:Thing .

wd:P5034 a wikibase:Property ;
	rdfs:label "National Library of Korea ID"@en ;
	skos:prefLabel "National Library of Korea ID"@en ;
	schema:name "National Library of Korea ID"@en ;
	schema:description "identifier for name and subject authority in the database of the National Library of Korea"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5034 ;
	wikibase:claim p:P5034 ;
	wikibase:statementProperty ps:P5034 ;
	wikibase:statementValue psv:P5034 ;
	wikibase:qualifier pq:P5034 ;
	wikibase:qualifierValue pqv:P5034 ;
	wikibase:reference pr:P5034 ;
	wikibase:referenceValue prv:P5034 ;
	wikibase:novalue wdno:P5034 ;
	wikibase:directClaimNormalized wdtn:P5034 ;
	wikibase:statementValueNormalized psn:P5034 ;
	wikibase:qualifierValueNormalized pqn:P5034 ;
	wikibase:referenceValueNormalized prn:P5034 .

p:P5034 a owl:ObjectProperty .

psv:P5034 a owl:ObjectProperty .

pqv:P5034 a owl:ObjectProperty .

prv:P5034 a owl:ObjectProperty .

wdt:P5034 a owl:DatatypeProperty .

ps:P5034 a owl:DatatypeProperty .

pq:P5034 a owl:DatatypeProperty .

pr:P5034 a owl:DatatypeProperty .

psn:P5034 a owl:ObjectProperty .

pqn:P5034 a owl:ObjectProperty .

prn:P5034 a owl:ObjectProperty .

wdtn:P5034 a owl:ObjectProperty .

wdno:P5034 a owl:Class ;
	owl:complementOf _:50047421dad173f05f4ea73daa272848 .

_:50047421dad173f05f4ea73daa272848 a owl:Restriction ;
	owl:onProperty wdt:P5034 ;
	owl:someValuesFrom owl:Thing .

wd:P7433 a wikibase:Property ;
	rdfs:label "FantLab author ID"@en ;
	skos:prefLabel "FantLab author ID"@en ;
	schema:name "FantLab author ID"@en ;
	schema:description "identifier for the author in FantLab"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7433 ;
	wikibase:claim p:P7433 ;
	wikibase:statementProperty ps:P7433 ;
	wikibase:statementValue psv:P7433 ;
	wikibase:qualifier pq:P7433 ;
	wikibase:qualifierValue pqv:P7433 ;
	wikibase:reference pr:P7433 ;
	wikibase:referenceValue prv:P7433 ;
	wikibase:novalue wdno:P7433 ;
	wikibase:directClaimNormalized wdtn:P7433 ;
	wikibase:statementValueNormalized psn:P7433 ;
	wikibase:qualifierValueNormalized pqn:P7433 ;
	wikibase:referenceValueNormalized prn:P7433 .

p:P7433 a owl:ObjectProperty .

psv:P7433 a owl:ObjectProperty .

pqv:P7433 a owl:ObjectProperty .

prv:P7433 a owl:ObjectProperty .

wdt:P7433 a owl:DatatypeProperty .

ps:P7433 a owl:DatatypeProperty .

pq:P7433 a owl:DatatypeProperty .

pr:P7433 a owl:DatatypeProperty .

psn:P7433 a owl:ObjectProperty .

pqn:P7433 a owl:ObjectProperty .

prn:P7433 a owl:ObjectProperty .

wdtn:P7433 a owl:ObjectProperty .

wdno:P7433 a owl:Class ;
	owl:complementOf _:7ea5477e7d2886a3f07c0f6adb685f5a .

_:7ea5477e7d2886a3f07c0f6adb685f5a a owl:Restriction ;
	owl:onProperty wdt:P7433 ;
	owl:someValuesFrom owl:Thing .

wd:P7400 a wikibase:Property ;
	rdfs:label "LibraryThing author ID"@en ;
	skos:prefLabel "LibraryThing author ID"@en ;
	schema:name "LibraryThing author ID"@en ;
	schema:description "identifier for an author on the LibraryThing website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7400 ;
	wikibase:claim p:P7400 ;
	wikibase:statementProperty ps:P7400 ;
	wikibase:statementValue psv:P7400 ;
	wikibase:qualifier pq:P7400 ;
	wikibase:qualifierValue pqv:P7400 ;
	wikibase:reference pr:P7400 ;
	wikibase:referenceValue prv:P7400 ;
	wikibase:novalue wdno:P7400 ;
	wikibase:directClaimNormalized wdtn:P7400 ;
	wikibase:statementValueNormalized psn:P7400 ;
	wikibase:qualifierValueNormalized pqn:P7400 ;
	wikibase:referenceValueNormalized prn:P7400 .

p:P7400 a owl:ObjectProperty .

psv:P7400 a owl:ObjectProperty .

pqv:P7400 a owl:ObjectProperty .

prv:P7400 a owl:ObjectProperty .

wdt:P7400 a owl:DatatypeProperty .

ps:P7400 a owl:DatatypeProperty .

pq:P7400 a owl:DatatypeProperty .

pr:P7400 a owl:DatatypeProperty .

psn:P7400 a owl:ObjectProperty .

pqn:P7400 a owl:ObjectProperty .

prn:P7400 a owl:ObjectProperty .

wdtn:P7400 a owl:ObjectProperty .

wdno:P7400 a owl:Class ;
	owl:complementOf _:ae1edb045e70fb6cd373c4bd139b8a2f .

_:ae1edb045e70fb6cd373c4bd139b8a2f a owl:Restriction ;
	owl:onProperty wdt:P7400 ;
	owl:someValuesFrom owl:Thing .

wd:P7704 a wikibase:Property ;
	rdfs:label "Europeana entity"@en ;
	skos:prefLabel "Europeana entity"@en ;
	schema:name "Europeana entity"@en ;
	schema:description "identifier for persons, places and topics at Europeana"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7704 ;
	wikibase:claim p:P7704 ;
	wikibase:statementProperty ps:P7704 ;
	wikibase:statementValue psv:P7704 ;
	wikibase:qualifier pq:P7704 ;
	wikibase:qualifierValue pqv:P7704 ;
	wikibase:reference pr:P7704 ;
	wikibase:referenceValue prv:P7704 ;
	wikibase:novalue wdno:P7704 ;
	wikibase:directClaimNormalized wdtn:P7704 ;
	wikibase:statementValueNormalized psn:P7704 ;
	wikibase:qualifierValueNormalized pqn:P7704 ;
	wikibase:referenceValueNormalized prn:P7704 .

p:P7704 a owl:ObjectProperty .

psv:P7704 a owl:ObjectProperty .

pqv:P7704 a owl:ObjectProperty .

prv:P7704 a owl:ObjectProperty .

wdt:P7704 a owl:DatatypeProperty .

ps:P7704 a owl:DatatypeProperty .

pq:P7704 a owl:DatatypeProperty .

pr:P7704 a owl:DatatypeProperty .

psn:P7704 a owl:ObjectProperty .

pqn:P7704 a owl:ObjectProperty .

prn:P7704 a owl:ObjectProperty .

wdtn:P7704 a owl:ObjectProperty .

wdno:P7704 a owl:Class ;
	owl:complementOf _:c997d4905083a77f4060baad1e9a8ba8 .

_:c997d4905083a77f4060baad1e9a8ba8 a owl:Restriction ;
	owl:onProperty wdt:P7704 ;
	owl:someValuesFrom owl:Thing .

wd:P7859 a wikibase:Property ;
	rdfs:label "WorldCat Identities ID"@en ;
	skos:prefLabel "WorldCat Identities ID"@en ;
	schema:name "WorldCat Identities ID"@en ;
	schema:description "Id for a bibliographic page of an entity on WorldCat. Use P243 OCLC control number for books"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7859 ;
	wikibase:claim p:P7859 ;
	wikibase:statementProperty ps:P7859 ;
	wikibase:statementValue psv:P7859 ;
	wikibase:qualifier pq:P7859 ;
	wikibase:qualifierValue pqv:P7859 ;
	wikibase:reference pr:P7859 ;
	wikibase:referenceValue prv:P7859 ;
	wikibase:novalue wdno:P7859 ;
	wikibase:directClaimNormalized wdtn:P7859 ;
	wikibase:statementValueNormalized psn:P7859 ;
	wikibase:qualifierValueNormalized pqn:P7859 ;
	wikibase:referenceValueNormalized prn:P7859 .

p:P7859 a owl:ObjectProperty .

psv:P7859 a owl:ObjectProperty .

pqv:P7859 a owl:ObjectProperty .

prv:P7859 a owl:ObjectProperty .

wdt:P7859 a owl:DatatypeProperty .

ps:P7859 a owl:DatatypeProperty .

pq:P7859 a owl:DatatypeProperty .

pr:P7859 a owl:DatatypeProperty .

psn:P7859 a owl:ObjectProperty .

pqn:P7859 a owl:ObjectProperty .

prn:P7859 a owl:ObjectProperty .

wdtn:P7859 a owl:ObjectProperty .

wdno:P7859 a owl:Class ;
	owl:complementOf _:14e32ccfc87dd0c16155859b25e37d30 .

_:14e32ccfc87dd0c16155859b25e37d30 a owl:Restriction ;
	owl:onProperty wdt:P7859 ;
	owl:someValuesFrom owl:Thing .

wd:P3762 a wikibase:Property ;
	rdfs:label "openMLOL author ID"@en ;
	skos:prefLabel "openMLOL author ID"@en ;
	schema:name "openMLOL author ID"@en ;
	schema:description "identifier of an author in the openMLOL digital library of cultural resources"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3762 ;
	wikibase:claim p:P3762 ;
	wikibase:statementProperty ps:P3762 ;
	wikibase:statementValue psv:P3762 ;
	wikibase:qualifier pq:P3762 ;
	wikibase:qualifierValue pqv:P3762 ;
	wikibase:reference pr:P3762 ;
	wikibase:referenceValue prv:P3762 ;
	wikibase:novalue wdno:P3762 ;
	wikibase:directClaimNormalized wdtn:P3762 ;
	wikibase:statementValueNormalized psn:P3762 ;
	wikibase:qualifierValueNormalized pqn:P3762 ;
	wikibase:referenceValueNormalized prn:P3762 .

p:P3762 a owl:ObjectProperty .

psv:P3762 a owl:ObjectProperty .

pqv:P3762 a owl:ObjectProperty .

prv:P3762 a owl:ObjectProperty .

wdt:P3762 a owl:DatatypeProperty .

ps:P3762 a owl:DatatypeProperty .

pq:P3762 a owl:DatatypeProperty .

pr:P3762 a owl:DatatypeProperty .

psn:P3762 a owl:ObjectProperty .

pqn:P3762 a owl:ObjectProperty .

prn:P3762 a owl:ObjectProperty .

wdtn:P3762 a owl:ObjectProperty .

wdno:P3762 a owl:Class ;
	owl:complementOf _:df213f8a33d9a502c28d5f7c7987b6e4 .

_:df213f8a33d9a502c28d5f7c7987b6e4 a owl:Restriction ;
	owl:onProperty wdt:P3762 ;
	owl:someValuesFrom owl:Thing .

wd:P3065 a wikibase:Property ;
	rdfs:label "RERO ID"@en ;
	skos:prefLabel "RERO ID"@en ;
	schema:name "RERO ID"@en ;
	schema:description "identifier in the Library network of Western Switzerland's RERO database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3065 ;
	wikibase:claim p:P3065 ;
	wikibase:statementProperty ps:P3065 ;
	wikibase:statementValue psv:P3065 ;
	wikibase:qualifier pq:P3065 ;
	wikibase:qualifierValue pqv:P3065 ;
	wikibase:reference pr:P3065 ;
	wikibase:referenceValue prv:P3065 ;
	wikibase:novalue wdno:P3065 ;
	wikibase:directClaimNormalized wdtn:P3065 ;
	wikibase:statementValueNormalized psn:P3065 ;
	wikibase:qualifierValueNormalized pqn:P3065 ;
	wikibase:referenceValueNormalized prn:P3065 .

p:P3065 a owl:ObjectProperty .

psv:P3065 a owl:ObjectProperty .

pqv:P3065 a owl:ObjectProperty .

prv:P3065 a owl:ObjectProperty .

wdt:P3065 a owl:DatatypeProperty .

ps:P3065 a owl:DatatypeProperty .

pq:P3065 a owl:DatatypeProperty .

pr:P3065 a owl:DatatypeProperty .

psn:P3065 a owl:ObjectProperty .

pqn:P3065 a owl:ObjectProperty .

prn:P3065 a owl:ObjectProperty .

wdtn:P3065 a owl:ObjectProperty .

wdno:P3065 a owl:Class ;
	owl:complementOf _:cfc178ed89c1469fbfad6cdca71f1be3 .

_:cfc178ed89c1469fbfad6cdca71f1be3 a owl:Restriction ;
	owl:onProperty wdt:P3065 ;
	owl:someValuesFrom owl:Thing .

wd:P3846 a wikibase:Property ;
	rdfs:label "DBC author ID"@en ;
	skos:prefLabel "DBC author ID"@en ;
	schema:name "DBC author ID"@en ;
	schema:description "identifier for authors set by the Danish Bibliographic Centre"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3846 ;
	wikibase:claim p:P3846 ;
	wikibase:statementProperty ps:P3846 ;
	wikibase:statementValue psv:P3846 ;
	wikibase:qualifier pq:P3846 ;
	wikibase:qualifierValue pqv:P3846 ;
	wikibase:reference pr:P3846 ;
	wikibase:referenceValue prv:P3846 ;
	wikibase:novalue wdno:P3846 ;
	wikibase:directClaimNormalized wdtn:P3846 ;
	wikibase:statementValueNormalized psn:P3846 ;
	wikibase:qualifierValueNormalized pqn:P3846 ;
	wikibase:referenceValueNormalized prn:P3846 .

p:P3846 a owl:ObjectProperty .

psv:P3846 a owl:ObjectProperty .

pqv:P3846 a owl:ObjectProperty .

prv:P3846 a owl:ObjectProperty .

wdt:P3846 a owl:DatatypeProperty .

ps:P3846 a owl:DatatypeProperty .

pq:P3846 a owl:DatatypeProperty .

pr:P3846 a owl:DatatypeProperty .

psn:P3846 a owl:ObjectProperty .

pqn:P3846 a owl:ObjectProperty .

prn:P3846 a owl:ObjectProperty .

wdtn:P3846 a owl:ObjectProperty .

wdno:P3846 a owl:Class ;
	owl:complementOf _:ec771a0a2f5567325e11413488584606 .

_:ec771a0a2f5567325e11413488584606 a owl:Restriction ;
	owl:onProperty wdt:P3846 ;
	owl:someValuesFrom owl:Thing .

wd:P7293 a wikibase:Property ;
	rdfs:label "PLWABN ID"@en ;
	skos:prefLabel "PLWABN ID"@en ;
	schema:name "PLWABN ID"@en ;
	schema:description "National Library of Poland record no. identifier. Format: \"98\", followed by 10 digits, then ending with \"5606\""@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7293 ;
	wikibase:claim p:P7293 ;
	wikibase:statementProperty ps:P7293 ;
	wikibase:statementValue psv:P7293 ;
	wikibase:qualifier pq:P7293 ;
	wikibase:qualifierValue pqv:P7293 ;
	wikibase:reference pr:P7293 ;
	wikibase:referenceValue prv:P7293 ;
	wikibase:novalue wdno:P7293 ;
	wikibase:directClaimNormalized wdtn:P7293 ;
	wikibase:statementValueNormalized psn:P7293 ;
	wikibase:qualifierValueNormalized pqn:P7293 ;
	wikibase:referenceValueNormalized prn:P7293 .

p:P7293 a owl:ObjectProperty .

psv:P7293 a owl:ObjectProperty .

pqv:P7293 a owl:ObjectProperty .

prv:P7293 a owl:ObjectProperty .

wdt:P7293 a owl:DatatypeProperty .

ps:P7293 a owl:DatatypeProperty .

pq:P7293 a owl:DatatypeProperty .

pr:P7293 a owl:DatatypeProperty .

psn:P7293 a owl:ObjectProperty .

pqn:P7293 a owl:ObjectProperty .

prn:P7293 a owl:ObjectProperty .

wdtn:P7293 a owl:ObjectProperty .

wdno:P7293 a owl:Class ;
	owl:complementOf _:5e85eb03cc3c6a76b4cda6a2f44ca361 .

_:5e85eb03cc3c6a76b4cda6a2f44ca361 a owl:Restriction ;
	owl:onProperty wdt:P7293 ;
	owl:someValuesFrom owl:Thing .

wd:P7700 a wikibase:Property ;
	rdfs:label "Slovak National Library ID (VIAF)"@en ;
	skos:prefLabel "Slovak National Library ID (VIAF)"@en ;
	schema:name "Slovak National Library ID (VIAF)"@en ;
	schema:description "authority id in Slovak National Library, a VIAF component (code SKMASNL)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7700 ;
	wikibase:claim p:P7700 ;
	wikibase:statementProperty ps:P7700 ;
	wikibase:statementValue psv:P7700 ;
	wikibase:qualifier pq:P7700 ;
	wikibase:qualifierValue pqv:P7700 ;
	wikibase:reference pr:P7700 ;
	wikibase:referenceValue prv:P7700 ;
	wikibase:novalue wdno:P7700 ;
	wikibase:directClaimNormalized wdtn:P7700 ;
	wikibase:statementValueNormalized psn:P7700 ;
	wikibase:qualifierValueNormalized pqn:P7700 ;
	wikibase:referenceValueNormalized prn:P7700 .

p:P7700 a owl:ObjectProperty .

psv:P7700 a owl:ObjectProperty .

pqv:P7700 a owl:ObjectProperty .

prv:P7700 a owl:ObjectProperty .

wdt:P7700 a owl:DatatypeProperty .

ps:P7700 a owl:DatatypeProperty .

pq:P7700 a owl:DatatypeProperty .

pr:P7700 a owl:DatatypeProperty .

psn:P7700 a owl:ObjectProperty .

pqn:P7700 a owl:ObjectProperty .

prn:P7700 a owl:ObjectProperty .

wdtn:P7700 a owl:ObjectProperty .

wdno:P7700 a owl:Class ;
	owl:complementOf _:aa465bb54f4c71c25bf62e5110fdb216 .

_:aa465bb54f4c71c25bf62e5110fdb216 a owl:Restriction ;
	owl:onProperty wdt:P7700 ;
	owl:someValuesFrom owl:Thing .

wd:P1890 a wikibase:Property ;
	rdfs:label "CCAB ID"@en ;
	skos:prefLabel "CCAB ID"@en ;
	schema:name "CCAB ID"@en ;
	schema:description "Collective Catalog of Bibliographic Authorities of Chile ID"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1890 ;
	wikibase:claim p:P1890 ;
	wikibase:statementProperty ps:P1890 ;
	wikibase:statementValue psv:P1890 ;
	wikibase:qualifier pq:P1890 ;
	wikibase:qualifierValue pqv:P1890 ;
	wikibase:reference pr:P1890 ;
	wikibase:referenceValue prv:P1890 ;
	wikibase:novalue wdno:P1890 ;
	wikibase:directClaimNormalized wdtn:P1890 ;
	wikibase:statementValueNormalized psn:P1890 ;
	wikibase:qualifierValueNormalized pqn:P1890 ;
	wikibase:referenceValueNormalized prn:P1890 .

p:P1890 a owl:ObjectProperty .

psv:P1890 a owl:ObjectProperty .

pqv:P1890 a owl:ObjectProperty .

prv:P1890 a owl:ObjectProperty .

wdt:P1890 a owl:DatatypeProperty .

ps:P1890 a owl:DatatypeProperty .

pq:P1890 a owl:DatatypeProperty .

pr:P1890 a owl:DatatypeProperty .

psn:P1890 a owl:ObjectProperty .

pqn:P1890 a owl:ObjectProperty .

prn:P1890 a owl:ObjectProperty .

wdtn:P1890 a owl:ObjectProperty .

wdno:P1890 a owl:Class ;
	owl:complementOf _:5e9ebf427f3489ba4990732b1f6273d2 .

_:5e9ebf427f3489ba4990732b1f6273d2 a owl:Restriction ;
	owl:onProperty wdt:P1890 ;
	owl:someValuesFrom owl:Thing .

wd:P4619 a wikibase:Property ;
	rdfs:label "National Library of Brazil ID"@en ;
	skos:prefLabel "National Library of Brazil ID"@en ;
	schema:name "National Library of Brazil ID"@en ;
	schema:description "identifier for an element in the database of the National Library of Brazil"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4619 ;
	wikibase:claim p:P4619 ;
	wikibase:statementProperty ps:P4619 ;
	wikibase:statementValue psv:P4619 ;
	wikibase:qualifier pq:P4619 ;
	wikibase:qualifierValue pqv:P4619 ;
	wikibase:reference pr:P4619 ;
	wikibase:referenceValue prv:P4619 ;
	wikibase:novalue wdno:P4619 ;
	wikibase:directClaimNormalized wdtn:P4619 ;
	wikibase:statementValueNormalized psn:P4619 ;
	wikibase:qualifierValueNormalized pqn:P4619 ;
	wikibase:referenceValueNormalized prn:P4619 .

p:P4619 a owl:ObjectProperty .

psv:P4619 a owl:ObjectProperty .

pqv:P4619 a owl:ObjectProperty .

prv:P4619 a owl:ObjectProperty .

wdt:P4619 a owl:DatatypeProperty .

ps:P4619 a owl:DatatypeProperty .

pq:P4619 a owl:DatatypeProperty .

pr:P4619 a owl:DatatypeProperty .

psn:P4619 a owl:ObjectProperty .

pqn:P4619 a owl:ObjectProperty .

prn:P4619 a owl:ObjectProperty .

wdtn:P4619 a owl:ObjectProperty .

wdno:P4619 a owl:Class ;
	owl:complementOf _:2dc80f1e650639eb18df9f6592ec0e15 .

_:2dc80f1e650639eb18df9f6592ec0e15 a owl:Restriction ;
	owl:onProperty wdt:P4619 ;
	owl:someValuesFrom owl:Thing .

wd:P6394 a wikibase:Property ;
	rdfs:label "ELNET ID"@en ;
	skos:prefLabel "ELNET ID"@en ;
	schema:name "ELNET ID"@en ;
	schema:description "identifier assigned by the ELNET consortium of Estonian libraries. Format: \"a\", 7 digits, \"x\" or another digit."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6394 ;
	wikibase:claim p:P6394 ;
	wikibase:statementProperty ps:P6394 ;
	wikibase:statementValue psv:P6394 ;
	wikibase:qualifier pq:P6394 ;
	wikibase:qualifierValue pqv:P6394 ;
	wikibase:reference pr:P6394 ;
	wikibase:referenceValue prv:P6394 ;
	wikibase:novalue wdno:P6394 ;
	wikibase:directClaimNormalized wdtn:P6394 ;
	wikibase:statementValueNormalized psn:P6394 ;
	wikibase:qualifierValueNormalized pqn:P6394 ;
	wikibase:referenceValueNormalized prn:P6394 .

p:P6394 a owl:ObjectProperty .

psv:P6394 a owl:ObjectProperty .

pqv:P6394 a owl:ObjectProperty .

prv:P6394 a owl:ObjectProperty .

wdt:P6394 a owl:DatatypeProperty .

ps:P6394 a owl:DatatypeProperty .

pq:P6394 a owl:DatatypeProperty .

pr:P6394 a owl:DatatypeProperty .

psn:P6394 a owl:ObjectProperty .

pqn:P6394 a owl:ObjectProperty .

prn:P6394 a owl:ObjectProperty .

wdtn:P6394 a owl:ObjectProperty .

wdno:P6394 a owl:Class ;
	owl:complementOf _:895af35ecf11bc4a394d28b6939fe65f .

_:895af35ecf11bc4a394d28b6939fe65f a owl:Restriction ;
	owl:onProperty wdt:P6394 ;
	owl:someValuesFrom owl:Thing .

wd:P4839 a wikibase:Property ;
	rdfs:label "Wolfram Language entity code"@en ;
	skos:prefLabel "Wolfram Language entity code"@en ;
	schema:name "Wolfram Language entity code"@en ;
	schema:description "input form for an entity in Wolfram Language"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4839 ;
	wikibase:claim p:P4839 ;
	wikibase:statementProperty ps:P4839 ;
	wikibase:statementValue psv:P4839 ;
	wikibase:qualifier pq:P4839 ;
	wikibase:qualifierValue pqv:P4839 ;
	wikibase:reference pr:P4839 ;
	wikibase:referenceValue prv:P4839 ;
	wikibase:novalue wdno:P4839 ;
	wikibase:directClaimNormalized wdtn:P4839 ;
	wikibase:statementValueNormalized psn:P4839 ;
	wikibase:qualifierValueNormalized pqn:P4839 ;
	wikibase:referenceValueNormalized prn:P4839 .

p:P4839 a owl:ObjectProperty .

psv:P4839 a owl:ObjectProperty .

pqv:P4839 a owl:ObjectProperty .

prv:P4839 a owl:ObjectProperty .

wdt:P4839 a owl:DatatypeProperty .

ps:P4839 a owl:DatatypeProperty .

pq:P4839 a owl:DatatypeProperty .

pr:P4839 a owl:DatatypeProperty .

psn:P4839 a owl:ObjectProperty .

pqn:P4839 a owl:ObjectProperty .

prn:P4839 a owl:ObjectProperty .

wdtn:P4839 a owl:ObjectProperty .

wdno:P4839 a owl:Class ;
	owl:complementOf _:156c94b47a61c30c4cbc9a089e97f3b9 .

_:156c94b47a61c30c4cbc9a089e97f3b9 a owl:Restriction ;
	owl:onProperty wdt:P4839 ;
	owl:someValuesFrom owl:Thing .

wd:P2581 a wikibase:Property ;
	rdfs:label "BabelNet ID"@en ;
	skos:prefLabel "BabelNet ID"@en ;
	schema:name "BabelNet ID"@en ;
	schema:description "ID in BabelNet encyclopedic dictionary"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2581 ;
	wikibase:claim p:P2581 ;
	wikibase:statementProperty ps:P2581 ;
	wikibase:statementValue psv:P2581 ;
	wikibase:qualifier pq:P2581 ;
	wikibase:qualifierValue pqv:P2581 ;
	wikibase:reference pr:P2581 ;
	wikibase:referenceValue prv:P2581 ;
	wikibase:novalue wdno:P2581 ;
	wikibase:directClaimNormalized wdtn:P2581 ;
	wikibase:statementValueNormalized psn:P2581 ;
	wikibase:qualifierValueNormalized pqn:P2581 ;
	wikibase:referenceValueNormalized prn:P2581 .

p:P2581 a owl:ObjectProperty .

psv:P2581 a owl:ObjectProperty .

pqv:P2581 a owl:ObjectProperty .

prv:P2581 a owl:ObjectProperty .

wdt:P2581 a owl:DatatypeProperty .

ps:P2581 a owl:DatatypeProperty .

pq:P2581 a owl:DatatypeProperty .

pr:P2581 a owl:DatatypeProperty .

psn:P2581 a owl:ObjectProperty .

pqn:P2581 a owl:ObjectProperty .

prn:P2581 a owl:ObjectProperty .

wdtn:P2581 a owl:ObjectProperty .

wdno:P2581 a owl:Class ;
	owl:complementOf _:bdd44b035df3e72593f3ac1acbd85353 .

_:bdd44b035df3e72593f3ac1acbd85353 a owl:Restriction ;
	owl:onProperty wdt:P2581 ;
	owl:someValuesFrom owl:Thing .

wd:P5284 a wikibase:Property ;
	rdfs:label "Douban movie celebrity ID"@en ;
	skos:prefLabel "Douban movie celebrity ID"@en ;
	schema:name "Douban movie celebrity ID"@en ;
	schema:description "identifier for a celebrity at the Douban movie website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5284 ;
	wikibase:claim p:P5284 ;
	wikibase:statementProperty ps:P5284 ;
	wikibase:statementValue psv:P5284 ;
	wikibase:qualifier pq:P5284 ;
	wikibase:qualifierValue pqv:P5284 ;
	wikibase:reference pr:P5284 ;
	wikibase:referenceValue prv:P5284 ;
	wikibase:novalue wdno:P5284 ;
	wikibase:directClaimNormalized wdtn:P5284 ;
	wikibase:statementValueNormalized psn:P5284 ;
	wikibase:qualifierValueNormalized pqn:P5284 ;
	wikibase:referenceValueNormalized prn:P5284 .

p:P5284 a owl:ObjectProperty .

psv:P5284 a owl:ObjectProperty .

pqv:P5284 a owl:ObjectProperty .

prv:P5284 a owl:ObjectProperty .

wdt:P5284 a owl:DatatypeProperty .

ps:P5284 a owl:DatatypeProperty .

pq:P5284 a owl:DatatypeProperty .

pr:P5284 a owl:DatatypeProperty .

psn:P5284 a owl:ObjectProperty .

pqn:P5284 a owl:ObjectProperty .

prn:P5284 a owl:ObjectProperty .

wdtn:P5284 a owl:ObjectProperty .

wdno:P5284 a owl:Class ;
	owl:complementOf _:d7758f6d2552a5f145e3f78a352b6688 .

_:d7758f6d2552a5f145e3f78a352b6688 a owl:Restriction ;
	owl:onProperty wdt:P5284 ;
	owl:someValuesFrom owl:Thing .

wd:P4862 a wikibase:Property ;
	rdfs:label "Amazon author ID"@en ;
	skos:prefLabel "Amazon author ID"@en ;
	schema:name "Amazon author ID"@en ;
	schema:description "author identifier on Amazon.com"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4862 ;
	wikibase:claim p:P4862 ;
	wikibase:statementProperty ps:P4862 ;
	wikibase:statementValue psv:P4862 ;
	wikibase:qualifier pq:P4862 ;
	wikibase:qualifierValue pqv:P4862 ;
	wikibase:reference pr:P4862 ;
	wikibase:referenceValue prv:P4862 ;
	wikibase:novalue wdno:P4862 ;
	wikibase:directClaimNormalized wdtn:P4862 ;
	wikibase:statementValueNormalized psn:P4862 ;
	wikibase:qualifierValueNormalized pqn:P4862 ;
	wikibase:referenceValueNormalized prn:P4862 .

p:P4862 a owl:ObjectProperty .

psv:P4862 a owl:ObjectProperty .

pqv:P4862 a owl:ObjectProperty .

prv:P4862 a owl:ObjectProperty .

wdt:P4862 a owl:DatatypeProperty .

ps:P4862 a owl:DatatypeProperty .

pq:P4862 a owl:DatatypeProperty .

pr:P4862 a owl:DatatypeProperty .

psn:P4862 a owl:ObjectProperty .

pqn:P4862 a owl:ObjectProperty .

prn:P4862 a owl:ObjectProperty .

wdtn:P4862 a owl:ObjectProperty .

wdno:P4862 a owl:Class ;
	owl:complementOf _:ad7ceef1dcc60bc0d01af6520e5e21ba .

_:ad7ceef1dcc60bc0d01af6520e5e21ba a owl:Restriction ;
	owl:onProperty wdt:P4862 ;
	owl:someValuesFrom owl:Thing .

wd:P7661 a wikibase:Property ;
	rdfs:label "GameFAQs credit ID"@en ;
	skos:prefLabel "GameFAQs credit ID"@en ;
	schema:name "GameFAQs credit ID"@en ;
	schema:description "identifier of a game credit in the GameFAQs database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7661 ;
	wikibase:claim p:P7661 ;
	wikibase:statementProperty ps:P7661 ;
	wikibase:statementValue psv:P7661 ;
	wikibase:qualifier pq:P7661 ;
	wikibase:qualifierValue pqv:P7661 ;
	wikibase:reference pr:P7661 ;
	wikibase:referenceValue prv:P7661 ;
	wikibase:novalue wdno:P7661 ;
	wikibase:directClaimNormalized wdtn:P7661 ;
	wikibase:statementValueNormalized psn:P7661 ;
	wikibase:qualifierValueNormalized pqn:P7661 ;
	wikibase:referenceValueNormalized prn:P7661 .

p:P7661 a owl:ObjectProperty .

psv:P7661 a owl:ObjectProperty .

pqv:P7661 a owl:ObjectProperty .

prv:P7661 a owl:ObjectProperty .

wdt:P7661 a owl:DatatypeProperty .

ps:P7661 a owl:DatatypeProperty .

pq:P7661 a owl:DatatypeProperty .

pr:P7661 a owl:DatatypeProperty .

psn:P7661 a owl:ObjectProperty .

pqn:P7661 a owl:ObjectProperty .

prn:P7661 a owl:ObjectProperty .

wdtn:P7661 a owl:ObjectProperty .

wdno:P7661 a owl:Class ;
	owl:complementOf _:b8dff84d167710cab5f7bde0556ce931 .

_:b8dff84d167710cab5f7bde0556ce931 a owl:Restriction ;
	owl:onProperty wdt:P7661 ;
	owl:someValuesFrom owl:Thing .

wd:P3913 a wikibase:Property ;
	rdfs:label "MobyGames developer ID"@en ;
	skos:prefLabel "MobyGames developer ID"@en ;
	schema:name "MobyGames developer ID"@en ;
	schema:description "ID of person in the database at MobyGames"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3913 ;
	wikibase:claim p:P3913 ;
	wikibase:statementProperty ps:P3913 ;
	wikibase:statementValue psv:P3913 ;
	wikibase:qualifier pq:P3913 ;
	wikibase:qualifierValue pqv:P3913 ;
	wikibase:reference pr:P3913 ;
	wikibase:referenceValue prv:P3913 ;
	wikibase:novalue wdno:P3913 ;
	wikibase:directClaimNormalized wdtn:P3913 ;
	wikibase:statementValueNormalized psn:P3913 ;
	wikibase:qualifierValueNormalized pqn:P3913 ;
	wikibase:referenceValueNormalized prn:P3913 .

p:P3913 a owl:ObjectProperty .

psv:P3913 a owl:ObjectProperty .

pqv:P3913 a owl:ObjectProperty .

prv:P3913 a owl:ObjectProperty .

wdt:P3913 a owl:DatatypeProperty .

ps:P3913 a owl:DatatypeProperty .

pq:P3913 a owl:DatatypeProperty .

pr:P3913 a owl:DatatypeProperty .

psn:P3913 a owl:ObjectProperty .

pqn:P3913 a owl:ObjectProperty .

prn:P3913 a owl:ObjectProperty .

wdtn:P3913 a owl:ObjectProperty .

wdno:P3913 a owl:Class ;
	owl:complementOf _:13ba00668658b4f13fd9b4441c4e980a .

_:13ba00668658b4f13fd9b4441c4e980a a owl:Restriction ;
	owl:onProperty wdt:P3913 ;
	owl:someValuesFrom owl:Thing .

wd:P7214 a wikibase:Property ;
	rdfs:label "Allcinema person ID"@en ;
	skos:prefLabel "Allcinema person ID"@en ;
	schema:name "Allcinema person ID"@en ;
	schema:description "identifier of person on Allcinema database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7214 ;
	wikibase:claim p:P7214 ;
	wikibase:statementProperty ps:P7214 ;
	wikibase:statementValue psv:P7214 ;
	wikibase:qualifier pq:P7214 ;
	wikibase:qualifierValue pqv:P7214 ;
	wikibase:reference pr:P7214 ;
	wikibase:referenceValue prv:P7214 ;
	wikibase:novalue wdno:P7214 ;
	wikibase:directClaimNormalized wdtn:P7214 ;
	wikibase:statementValueNormalized psn:P7214 ;
	wikibase:qualifierValueNormalized pqn:P7214 ;
	wikibase:referenceValueNormalized prn:P7214 .

p:P7214 a owl:ObjectProperty .

psv:P7214 a owl:ObjectProperty .

pqv:P7214 a owl:ObjectProperty .

prv:P7214 a owl:ObjectProperty .

wdt:P7214 a owl:DatatypeProperty .

ps:P7214 a owl:DatatypeProperty .

pq:P7214 a owl:DatatypeProperty .

pr:P7214 a owl:DatatypeProperty .

psn:P7214 a owl:ObjectProperty .

pqn:P7214 a owl:ObjectProperty .

prn:P7214 a owl:ObjectProperty .

wdtn:P7214 a owl:ObjectProperty .

wdno:P7214 a owl:Class ;
	owl:complementOf _:2c6a7135ead743e43163f225e7477798 .

_:2c6a7135ead743e43163f225e7477798 a owl:Restriction ;
	owl:onProperty wdt:P7214 ;
	owl:someValuesFrom owl:Thing .

wd:P4666 a wikibase:Property ;
	rdfs:label "CineMagia person ID"@en ;
	skos:prefLabel "CineMagia person ID"@en ;
	schema:name "CineMagia person ID"@en ;
	schema:description "identifier for a person on the Cinemagia.ro website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4666 ;
	wikibase:claim p:P4666 ;
	wikibase:statementProperty ps:P4666 ;
	wikibase:statementValue psv:P4666 ;
	wikibase:qualifier pq:P4666 ;
	wikibase:qualifierValue pqv:P4666 ;
	wikibase:reference pr:P4666 ;
	wikibase:referenceValue prv:P4666 ;
	wikibase:novalue wdno:P4666 ;
	wikibase:directClaimNormalized wdtn:P4666 ;
	wikibase:statementValueNormalized psn:P4666 ;
	wikibase:qualifierValueNormalized pqn:P4666 ;
	wikibase:referenceValueNormalized prn:P4666 .

p:P4666 a owl:ObjectProperty .

psv:P4666 a owl:ObjectProperty .

pqv:P4666 a owl:ObjectProperty .

prv:P4666 a owl:ObjectProperty .

wdt:P4666 a owl:DatatypeProperty .

ps:P4666 a owl:DatatypeProperty .

pq:P4666 a owl:DatatypeProperty .

pr:P4666 a owl:DatatypeProperty .

psn:P4666 a owl:ObjectProperty .

pqn:P4666 a owl:ObjectProperty .

prn:P4666 a owl:ObjectProperty .

wdtn:P4666 a owl:ObjectProperty .

wdno:P4666 a owl:Class ;
	owl:complementOf _:90d9cf808c6abf754ad9e9f01cfb415e .

_:90d9cf808c6abf754ad9e9f01cfb415e a owl:Restriction ;
	owl:onProperty wdt:P4666 ;
	owl:someValuesFrom owl:Thing .

wd:P7215 a wikibase:Property ;
	rdfs:label "Eiga.com person ID"@en ;
	skos:prefLabel "Eiga.com person ID"@en ;
	schema:name "Eiga.com person ID"@en ;
	schema:description "identifier of person on Eiga.com database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7215 ;
	wikibase:claim p:P7215 ;
	wikibase:statementProperty ps:P7215 ;
	wikibase:statementValue psv:P7215 ;
	wikibase:qualifier pq:P7215 ;
	wikibase:qualifierValue pqv:P7215 ;
	wikibase:reference pr:P7215 ;
	wikibase:referenceValue prv:P7215 ;
	wikibase:novalue wdno:P7215 ;
	wikibase:directClaimNormalized wdtn:P7215 ;
	wikibase:statementValueNormalized psn:P7215 ;
	wikibase:qualifierValueNormalized pqn:P7215 ;
	wikibase:referenceValueNormalized prn:P7215 .

p:P7215 a owl:ObjectProperty .

psv:P7215 a owl:ObjectProperty .

pqv:P7215 a owl:ObjectProperty .

prv:P7215 a owl:ObjectProperty .

wdt:P7215 a owl:DatatypeProperty .

ps:P7215 a owl:DatatypeProperty .

pq:P7215 a owl:DatatypeProperty .

pr:P7215 a owl:DatatypeProperty .

psn:P7215 a owl:ObjectProperty .

pqn:P7215 a owl:ObjectProperty .

prn:P7215 a owl:ObjectProperty .

wdtn:P7215 a owl:ObjectProperty .

wdno:P7215 a owl:Class ;
	owl:complementOf _:9441f06f69ef3be5567ac3281d7b909d .

_:9441f06f69ef3be5567ac3281d7b909d a owl:Restriction ;
	owl:onProperty wdt:P7215 ;
	owl:someValuesFrom owl:Thing .

wd:P5233 a wikibase:Property ;
	rdfs:label "Filmow ID"@en ;
	skos:prefLabel "Filmow ID"@en ;
	schema:name "Filmow ID"@en ;
	schema:description "identifier at the Filmow database of films and TV shows"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5233 ;
	wikibase:claim p:P5233 ;
	wikibase:statementProperty ps:P5233 ;
	wikibase:statementValue psv:P5233 ;
	wikibase:qualifier pq:P5233 ;
	wikibase:qualifierValue pqv:P5233 ;
	wikibase:reference pr:P5233 ;
	wikibase:referenceValue prv:P5233 ;
	wikibase:novalue wdno:P5233 ;
	wikibase:directClaimNormalized wdtn:P5233 ;
	wikibase:statementValueNormalized psn:P5233 ;
	wikibase:qualifierValueNormalized pqn:P5233 ;
	wikibase:referenceValueNormalized prn:P5233 .

p:P5233 a owl:ObjectProperty .

psv:P5233 a owl:ObjectProperty .

pqv:P5233 a owl:ObjectProperty .

prv:P5233 a owl:ObjectProperty .

wdt:P5233 a owl:DatatypeProperty .

ps:P5233 a owl:DatatypeProperty .

pq:P5233 a owl:DatatypeProperty .

pr:P5233 a owl:DatatypeProperty .

psn:P5233 a owl:ObjectProperty .

pqn:P5233 a owl:ObjectProperty .

prn:P5233 a owl:ObjectProperty .

wdtn:P5233 a owl:ObjectProperty .

wdno:P5233 a owl:Class ;
	owl:complementOf _:f8a0809b5c4b3399d37253e1e3b38c9b .

_:f8a0809b5c4b3399d37253e1e3b38c9b a owl:Restriction ;
	owl:onProperty wdt:P5233 ;
	owl:someValuesFrom owl:Thing .

wd:P5033 a wikibase:Property ;
	rdfs:label "Filmweb.pl person ID"@en ;
	skos:prefLabel "Filmweb.pl person ID"@en ;
	schema:name "Filmweb.pl person ID"@en ;
	schema:description "identifier for a person at filmweb.pl"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5033 ;
	wikibase:claim p:P5033 ;
	wikibase:statementProperty ps:P5033 ;
	wikibase:statementValue psv:P5033 ;
	wikibase:qualifier pq:P5033 ;
	wikibase:qualifierValue pqv:P5033 ;
	wikibase:reference pr:P5033 ;
	wikibase:referenceValue prv:P5033 ;
	wikibase:novalue wdno:P5033 ;
	wikibase:directClaimNormalized wdtn:P5033 ;
	wikibase:statementValueNormalized psn:P5033 ;
	wikibase:qualifierValueNormalized pqn:P5033 ;
	wikibase:referenceValueNormalized prn:P5033 .

p:P5033 a owl:ObjectProperty .

psv:P5033 a owl:ObjectProperty .

pqv:P5033 a owl:ObjectProperty .

prv:P5033 a owl:ObjectProperty .

wdt:P5033 a owl:DatatypeProperty .

ps:P5033 a owl:DatatypeProperty .

pq:P5033 a owl:DatatypeProperty .

pr:P5033 a owl:DatatypeProperty .

psn:P5033 a owl:ObjectProperty .

pqn:P5033 a owl:ObjectProperty .

prn:P5033 a owl:ObjectProperty .

wdtn:P5033 a owl:ObjectProperty .

wdno:P5033 a owl:Class ;
	owl:complementOf _:23d83d5541f1e436c01da2e800c28005 .

_:23d83d5541f1e436c01da2e800c28005 a owl:Restriction ;
	owl:onProperty wdt:P5033 ;
	owl:someValuesFrom owl:Thing .

wd:P3305 a wikibase:Property ;
	rdfs:label "KINENOTE person ID"@en ;
	skos:prefLabel "KINENOTE person ID"@en ;
	schema:name "KINENOTE person ID"@en ;
	schema:description "identifier of a person in the KINENOTE movie database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3305 ;
	wikibase:claim p:P3305 ;
	wikibase:statementProperty ps:P3305 ;
	wikibase:statementValue psv:P3305 ;
	wikibase:qualifier pq:P3305 ;
	wikibase:qualifierValue pqv:P3305 ;
	wikibase:reference pr:P3305 ;
	wikibase:referenceValue prv:P3305 ;
	wikibase:novalue wdno:P3305 ;
	wikibase:directClaimNormalized wdtn:P3305 ;
	wikibase:statementValueNormalized psn:P3305 ;
	wikibase:qualifierValueNormalized pqn:P3305 ;
	wikibase:referenceValueNormalized prn:P3305 .

p:P3305 a owl:ObjectProperty .

psv:P3305 a owl:ObjectProperty .

pqv:P3305 a owl:ObjectProperty .

prv:P3305 a owl:ObjectProperty .

wdt:P3305 a owl:DatatypeProperty .

ps:P3305 a owl:DatatypeProperty .

pq:P3305 a owl:DatatypeProperty .

pr:P3305 a owl:DatatypeProperty .

psn:P3305 a owl:ObjectProperty .

pqn:P3305 a owl:ObjectProperty .

prn:P3305 a owl:ObjectProperty .

wdtn:P3305 a owl:ObjectProperty .

wdno:P3305 a owl:Class ;
	owl:complementOf _:e4ff0caf36a92efaf8bb383f524684b9 .

_:e4ff0caf36a92efaf8bb383f524684b9 a owl:Restriction ;
	owl:onProperty wdt:P3305 ;
	owl:someValuesFrom owl:Thing .

wd:P7745 a wikibase:Property ;
	rdfs:label "Movie Walker person ID"@en ;
	skos:prefLabel "Movie Walker person ID"@en ;
	schema:name "Movie Walker person ID"@en ;
	schema:description "identifier of person on the Movie Walker database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7745 ;
	wikibase:claim p:P7745 ;
	wikibase:statementProperty ps:P7745 ;
	wikibase:statementValue psv:P7745 ;
	wikibase:qualifier pq:P7745 ;
	wikibase:qualifierValue pqv:P7745 ;
	wikibase:reference pr:P7745 ;
	wikibase:referenceValue prv:P7745 ;
	wikibase:novalue wdno:P7745 ;
	wikibase:directClaimNormalized wdtn:P7745 ;
	wikibase:statementValueNormalized psn:P7745 ;
	wikibase:qualifierValueNormalized pqn:P7745 ;
	wikibase:referenceValueNormalized prn:P7745 .

p:P7745 a owl:ObjectProperty .

psv:P7745 a owl:ObjectProperty .

pqv:P7745 a owl:ObjectProperty .

prv:P7745 a owl:ObjectProperty .

wdt:P7745 a owl:DatatypeProperty .

ps:P7745 a owl:DatatypeProperty .

pq:P7745 a owl:DatatypeProperty .

pr:P7745 a owl:DatatypeProperty .

psn:P7745 a owl:ObjectProperty .

pqn:P7745 a owl:ObjectProperty .

prn:P7745 a owl:ObjectProperty .

wdtn:P7745 a owl:ObjectProperty .

wdno:P7745 a owl:Class ;
	owl:complementOf _:94910217a66c27dc560880b014c99eaa .

_:94910217a66c27dc560880b014c99eaa a owl:Restriction ;
	owl:onProperty wdt:P7745 ;
	owl:someValuesFrom owl:Thing .

wd:P6464 a wikibase:Property ;
	rdfs:label "Mtime people ID"@en ;
	skos:prefLabel "Mtime people ID"@en ;
	schema:name "Mtime people ID"@en ;
	schema:description "identifier for a movie/film maker at the website Mtime"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6464 ;
	wikibase:claim p:P6464 ;
	wikibase:statementProperty ps:P6464 ;
	wikibase:statementValue psv:P6464 ;
	wikibase:qualifier pq:P6464 ;
	wikibase:qualifierValue pqv:P6464 ;
	wikibase:reference pr:P6464 ;
	wikibase:referenceValue prv:P6464 ;
	wikibase:novalue wdno:P6464 ;
	wikibase:directClaimNormalized wdtn:P6464 ;
	wikibase:statementValueNormalized psn:P6464 ;
	wikibase:qualifierValueNormalized pqn:P6464 ;
	wikibase:referenceValueNormalized prn:P6464 .

p:P6464 a owl:ObjectProperty .

psv:P6464 a owl:ObjectProperty .

pqv:P6464 a owl:ObjectProperty .

prv:P6464 a owl:ObjectProperty .

wdt:P6464 a owl:DatatypeProperty .

ps:P6464 a owl:DatatypeProperty .

pq:P6464 a owl:DatatypeProperty .

pr:P6464 a owl:DatatypeProperty .

psn:P6464 a owl:ObjectProperty .

pqn:P6464 a owl:ObjectProperty .

prn:P6464 a owl:ObjectProperty .

wdtn:P6464 a owl:ObjectProperty .

wdno:P6464 a owl:Class ;
	owl:complementOf _:c8cb942c0a75c7650650ae4dc6068d18 .

_:c8cb942c0a75c7650650ae4dc6068d18 a owl:Restriction ;
	owl:onProperty wdt:P6464 ;
	owl:someValuesFrom owl:Thing .

wd:P7300 a wikibase:Property ;
	rdfs:label "MUBI person ID"@en ;
	skos:prefLabel "MUBI person ID"@en ;
	schema:name "MUBI person ID"@en ;
	schema:description "identifier for a person at MUBI"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7300 ;
	wikibase:claim p:P7300 ;
	wikibase:statementProperty ps:P7300 ;
	wikibase:statementValue psv:P7300 ;
	wikibase:qualifier pq:P7300 ;
	wikibase:qualifierValue pqv:P7300 ;
	wikibase:reference pr:P7300 ;
	wikibase:referenceValue prv:P7300 ;
	wikibase:novalue wdno:P7300 ;
	wikibase:directClaimNormalized wdtn:P7300 ;
	wikibase:statementValueNormalized psn:P7300 ;
	wikibase:qualifierValueNormalized pqn:P7300 ;
	wikibase:referenceValueNormalized prn:P7300 .

p:P7300 a owl:ObjectProperty .

psv:P7300 a owl:ObjectProperty .

pqv:P7300 a owl:ObjectProperty .

prv:P7300 a owl:ObjectProperty .

wdt:P7300 a owl:DatatypeProperty .

ps:P7300 a owl:DatatypeProperty .

pq:P7300 a owl:DatatypeProperty .

pr:P7300 a owl:DatatypeProperty .

psn:P7300 a owl:ObjectProperty .

pqn:P7300 a owl:ObjectProperty .

prn:P7300 a owl:ObjectProperty .

wdtn:P7300 a owl:ObjectProperty .

wdno:P7300 a owl:Class ;
	owl:complementOf _:049053f6f89f153e8f2b292737ddc5bf .

_:049053f6f89f153e8f2b292737ddc5bf a owl:Restriction ;
	owl:onProperty wdt:P7300 ;
	owl:someValuesFrom owl:Thing .

wd:P4657 a wikibase:Property ;
	rdfs:label "The Numbers person ID"@en ;
	skos:prefLabel "The Numbers person ID"@en ;
	schema:name "The Numbers person ID"@en ;
	schema:description "identifier of an actor at The Numbers"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4657 ;
	wikibase:claim p:P4657 ;
	wikibase:statementProperty ps:P4657 ;
	wikibase:statementValue psv:P4657 ;
	wikibase:qualifier pq:P4657 ;
	wikibase:qualifierValue pqv:P4657 ;
	wikibase:reference pr:P4657 ;
	wikibase:referenceValue prv:P4657 ;
	wikibase:novalue wdno:P4657 ;
	wikibase:directClaimNormalized wdtn:P4657 ;
	wikibase:statementValueNormalized psn:P4657 ;
	wikibase:qualifierValueNormalized pqn:P4657 ;
	wikibase:referenceValueNormalized prn:P4657 .

p:P4657 a owl:ObjectProperty .

psv:P4657 a owl:ObjectProperty .

pqv:P4657 a owl:ObjectProperty .

prv:P4657 a owl:ObjectProperty .

wdt:P4657 a owl:DatatypeProperty .

ps:P4657 a owl:DatatypeProperty .

pq:P4657 a owl:DatatypeProperty .

pr:P4657 a owl:DatatypeProperty .

psn:P4657 a owl:ObjectProperty .

pqn:P4657 a owl:ObjectProperty .

prn:P4657 a owl:ObjectProperty .

wdtn:P4657 a owl:ObjectProperty .

wdno:P4657 a owl:Class ;
	owl:complementOf _:2ab82820661840011bf6e785fcc3c58b .

_:2ab82820661840011bf6e785fcc3c58b a owl:Restriction ;
	owl:onProperty wdt:P4657 ;
	owl:someValuesFrom owl:Thing .

wd:P5534 a wikibase:Property ;
	rdfs:label "Open Media Database person ID"@en ;
	skos:prefLabel "Open Media Database person ID"@en ;
	schema:name "Open Media Database person ID"@en ;
	schema:description "identifier for a person in the Open Media Database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5534 ;
	wikibase:claim p:P5534 ;
	wikibase:statementProperty ps:P5534 ;
	wikibase:statementValue psv:P5534 ;
	wikibase:qualifier pq:P5534 ;
	wikibase:qualifierValue pqv:P5534 ;
	wikibase:reference pr:P5534 ;
	wikibase:referenceValue prv:P5534 ;
	wikibase:novalue wdno:P5534 ;
	wikibase:directClaimNormalized wdtn:P5534 ;
	wikibase:statementValueNormalized psn:P5534 ;
	wikibase:qualifierValueNormalized pqn:P5534 ;
	wikibase:referenceValueNormalized prn:P5534 .

p:P5534 a owl:ObjectProperty .

psv:P5534 a owl:ObjectProperty .

pqv:P5534 a owl:ObjectProperty .

prv:P5534 a owl:ObjectProperty .

wdt:P5534 a owl:DatatypeProperty .

ps:P5534 a owl:DatatypeProperty .

pq:P5534 a owl:DatatypeProperty .

pr:P5534 a owl:DatatypeProperty .

psn:P5534 a owl:ObjectProperty .

pqn:P5534 a owl:ObjectProperty .

prn:P5534 a owl:ObjectProperty .

wdtn:P5534 a owl:ObjectProperty .

wdno:P5534 a owl:Class ;
	owl:complementOf _:d17580ed5c0af565b28613811b2e1b23 .

_:d17580ed5c0af565b28613811b2e1b23 a owl:Restriction ;
	owl:onProperty wdt:P5534 ;
	owl:someValuesFrom owl:Thing .

wd:P4985 a wikibase:Property ;
	rdfs:label "TMDB person ID"@en ;
	skos:prefLabel "TMDB person ID"@en ;
	schema:name "TMDB person ID"@en ;
	schema:description "identifier for a person at The Movie Database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4985 ;
	wikibase:claim p:P4985 ;
	wikibase:statementProperty ps:P4985 ;
	wikibase:statementValue psv:P4985 ;
	wikibase:qualifier pq:P4985 ;
	wikibase:qualifierValue pqv:P4985 ;
	wikibase:reference pr:P4985 ;
	wikibase:referenceValue prv:P4985 ;
	wikibase:novalue wdno:P4985 ;
	wikibase:directClaimNormalized wdtn:P4985 ;
	wikibase:statementValueNormalized psn:P4985 ;
	wikibase:qualifierValueNormalized pqn:P4985 ;
	wikibase:referenceValueNormalized prn:P4985 .

p:P4985 a owl:ObjectProperty .

psv:P4985 a owl:ObjectProperty .

pqv:P4985 a owl:ObjectProperty .

prv:P4985 a owl:ObjectProperty .

wdt:P4985 a owl:DatatypeProperty .

ps:P4985 a owl:DatatypeProperty .

pq:P4985 a owl:DatatypeProperty .

pr:P4985 a owl:DatatypeProperty .

psn:P4985 a owl:ObjectProperty .

pqn:P4985 a owl:ObjectProperty .

prn:P4985 a owl:ObjectProperty .

wdtn:P4985 a owl:ObjectProperty .

wdno:P4985 a owl:Class ;
	owl:complementOf _:747680c9f44386c33d0aafd575fd157e .

_:747680c9f44386c33d0aafd575fd157e a owl:Restriction ;
	owl:onProperty wdt:P4985 ;
	owl:someValuesFrom owl:Thing .

wd:P3845 a wikibase:Property ;
	rdfs:label "TV Guide person ID (former scheme)"@en ;
	skos:prefLabel "TV Guide person ID (former scheme)"@en ;
	schema:name "TV Guide person ID (former scheme)"@en ;
	schema:description "ID of a person at TVGuide.com"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3845 ;
	wikibase:claim p:P3845 ;
	wikibase:statementProperty ps:P3845 ;
	wikibase:statementValue psv:P3845 ;
	wikibase:qualifier pq:P3845 ;
	wikibase:qualifierValue pqv:P3845 ;
	wikibase:reference pr:P3845 ;
	wikibase:referenceValue prv:P3845 ;
	wikibase:novalue wdno:P3845 ;
	wikibase:directClaimNormalized wdtn:P3845 ;
	wikibase:statementValueNormalized psn:P3845 ;
	wikibase:qualifierValueNormalized pqn:P3845 ;
	wikibase:referenceValueNormalized prn:P3845 .

p:P3845 a owl:ObjectProperty .

psv:P3845 a owl:ObjectProperty .

pqv:P3845 a owl:ObjectProperty .

prv:P3845 a owl:ObjectProperty .

wdt:P3845 a owl:DatatypeProperty .

ps:P3845 a owl:DatatypeProperty .

pq:P3845 a owl:DatatypeProperty .

pr:P3845 a owl:DatatypeProperty .

psn:P3845 a owl:ObjectProperty .

pqn:P3845 a owl:ObjectProperty .

prn:P3845 a owl:ObjectProperty .

wdtn:P3845 a owl:ObjectProperty .

wdno:P3845 a owl:Class ;
	owl:complementOf _:578ae817272705782bc6f5157a949aed .

_:578ae817272705782bc6f5157a949aed a owl:Restriction ;
	owl:onProperty wdt:P3845 ;
	owl:someValuesFrom owl:Thing .

wd:P2638 a wikibase:Property ;
	rdfs:label "TV.com ID"@en ;
	skos:prefLabel "TV.com ID"@en ;
	schema:name "TV.com ID"@en ;
	schema:description "identifier for an entry on TV.com for movies, people and TV series"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2638 ;
	wikibase:claim p:P2638 ;
	wikibase:statementProperty ps:P2638 ;
	wikibase:statementValue psv:P2638 ;
	wikibase:qualifier pq:P2638 ;
	wikibase:qualifierValue pqv:P2638 ;
	wikibase:reference pr:P2638 ;
	wikibase:referenceValue prv:P2638 ;
	wikibase:novalue wdno:P2638 ;
	wikibase:directClaimNormalized wdtn:P2638 ;
	wikibase:statementValueNormalized psn:P2638 ;
	wikibase:qualifierValueNormalized pqn:P2638 ;
	wikibase:referenceValueNormalized prn:P2638 .

p:P2638 a owl:ObjectProperty .

psv:P2638 a owl:ObjectProperty .

pqv:P2638 a owl:ObjectProperty .

prv:P2638 a owl:ObjectProperty .

wdt:P2638 a owl:DatatypeProperty .

ps:P2638 a owl:DatatypeProperty .

pq:P2638 a owl:DatatypeProperty .

pr:P2638 a owl:DatatypeProperty .

psn:P2638 a owl:ObjectProperty .

pqn:P2638 a owl:ObjectProperty .

prn:P2638 a owl:ObjectProperty .

wdtn:P2638 a owl:ObjectProperty .

wdno:P2638 a owl:Class ;
	owl:complementOf _:26d5ba1aa32c26fe21870a776ce1a19e .

_:26d5ba1aa32c26fe21870a776ce1a19e a owl:Restriction ;
	owl:onProperty wdt:P2638 ;
	owl:someValuesFrom owl:Thing .

wd:P1712 a wikibase:Property ;
	rdfs:label "Metacritic ID"@en ;
	skos:prefLabel "Metacritic ID"@en ;
	schema:name "Metacritic ID"@en ;
	schema:description "identifier for Metacritic"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1712 ;
	wikibase:claim p:P1712 ;
	wikibase:statementProperty ps:P1712 ;
	wikibase:statementValue psv:P1712 ;
	wikibase:qualifier pq:P1712 ;
	wikibase:qualifierValue pqv:P1712 ;
	wikibase:reference pr:P1712 ;
	wikibase:referenceValue prv:P1712 ;
	wikibase:novalue wdno:P1712 ;
	wikibase:directClaimNormalized wdtn:P1712 ;
	wikibase:statementValueNormalized psn:P1712 ;
	wikibase:qualifierValueNormalized pqn:P1712 ;
	wikibase:referenceValueNormalized prn:P1712 .

p:P1712 a owl:ObjectProperty .

psv:P1712 a owl:ObjectProperty .

pqv:P1712 a owl:ObjectProperty .

prv:P1712 a owl:ObjectProperty .

wdt:P1712 a owl:DatatypeProperty .

ps:P1712 a owl:DatatypeProperty .

pq:P1712 a owl:DatatypeProperty .

pr:P1712 a owl:DatatypeProperty .

psn:P1712 a owl:ObjectProperty .

pqn:P1712 a owl:ObjectProperty .

prn:P1712 a owl:ObjectProperty .

wdtn:P1712 a owl:ObjectProperty .

wdno:P1712 a owl:Class ;
	owl:complementOf _:369226ef412daf2d5f8922484d273521 .

_:369226ef412daf2d5f8922484d273521 a owl:Restriction ;
	owl:onProperty wdt:P1712 ;
	owl:someValuesFrom owl:Thing .

wd:P6119 a wikibase:Property ;
	rdfs:label "Letterboxd actor ID"@en ;
	skos:prefLabel "Letterboxd actor ID"@en ;
	schema:name "Letterboxd actor ID"@en ;
	schema:description "identifier for an actor on the website Letterboxd"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6119 ;
	wikibase:claim p:P6119 ;
	wikibase:statementProperty ps:P6119 ;
	wikibase:statementValue psv:P6119 ;
	wikibase:qualifier pq:P6119 ;
	wikibase:qualifierValue pqv:P6119 ;
	wikibase:reference pr:P6119 ;
	wikibase:referenceValue prv:P6119 ;
	wikibase:novalue wdno:P6119 ;
	wikibase:directClaimNormalized wdtn:P6119 ;
	wikibase:statementValueNormalized psn:P6119 ;
	wikibase:qualifierValueNormalized pqn:P6119 ;
	wikibase:referenceValueNormalized prn:P6119 .

p:P6119 a owl:ObjectProperty .

psv:P6119 a owl:ObjectProperty .

pqv:P6119 a owl:ObjectProperty .

prv:P6119 a owl:ObjectProperty .

wdt:P6119 a owl:DatatypeProperty .

ps:P6119 a owl:DatatypeProperty .

pq:P6119 a owl:DatatypeProperty .

pr:P6119 a owl:DatatypeProperty .

psn:P6119 a owl:ObjectProperty .

pqn:P6119 a owl:ObjectProperty .

prn:P6119 a owl:ObjectProperty .

wdtn:P6119 a owl:ObjectProperty .

wdno:P6119 a owl:Class ;
	owl:complementOf _:ad8114277186de634c086360b01dacd6 .

_:ad8114277186de634c086360b01dacd6 a owl:Restriction ;
	owl:onProperty wdt:P6119 ;
	owl:someValuesFrom owl:Thing .

wd:P5340 a wikibase:Property ;
	rdfs:label "American Film Institute person ID"@en ;
	skos:prefLabel "American Film Institute person ID"@en ;
	schema:name "American Film Institute person ID"@en ;
	schema:description "identifier for a person at American Film Institute"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5340 ;
	wikibase:claim p:P5340 ;
	wikibase:statementProperty ps:P5340 ;
	wikibase:statementValue psv:P5340 ;
	wikibase:qualifier pq:P5340 ;
	wikibase:qualifierValue pqv:P5340 ;
	wikibase:reference pr:P5340 ;
	wikibase:referenceValue prv:P5340 ;
	wikibase:novalue wdno:P5340 ;
	wikibase:directClaimNormalized wdtn:P5340 ;
	wikibase:statementValueNormalized psn:P5340 ;
	wikibase:qualifierValueNormalized pqn:P5340 ;
	wikibase:referenceValueNormalized prn:P5340 .

p:P5340 a owl:ObjectProperty .

psv:P5340 a owl:ObjectProperty .

pqv:P5340 a owl:ObjectProperty .

prv:P5340 a owl:ObjectProperty .

wdt:P5340 a owl:DatatypeProperty .

ps:P5340 a owl:DatatypeProperty .

pq:P5340 a owl:DatatypeProperty .

pr:P5340 a owl:DatatypeProperty .

psn:P5340 a owl:ObjectProperty .

pqn:P5340 a owl:ObjectProperty .

prn:P5340 a owl:ObjectProperty .

wdtn:P5340 a owl:ObjectProperty .

wdno:P5340 a owl:Class ;
	owl:complementOf _:1918fc47c2a785dd02f01452cd5dfd39 .

_:1918fc47c2a785dd02f01452cd5dfd39 a owl:Restriction ;
	owl:onProperty wdt:P5340 ;
	owl:someValuesFrom owl:Thing .

wd:P4438 a wikibase:Property ;
	rdfs:label "BFI Films, TV and people ID"@en ;
	skos:prefLabel "BFI Films, TV and people ID"@en ;
	schema:name "BFI Films, TV and people ID"@en ;
	schema:description "identifier for a person or movie at BFI Film & TV Database. Format: 13 digits and lowercase letters"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4438 ;
	wikibase:claim p:P4438 ;
	wikibase:statementProperty ps:P4438 ;
	wikibase:statementValue psv:P4438 ;
	wikibase:qualifier pq:P4438 ;
	wikibase:qualifierValue pqv:P4438 ;
	wikibase:reference pr:P4438 ;
	wikibase:referenceValue prv:P4438 ;
	wikibase:novalue wdno:P4438 ;
	wikibase:directClaimNormalized wdtn:P4438 ;
	wikibase:statementValueNormalized psn:P4438 ;
	wikibase:qualifierValueNormalized pqn:P4438 ;
	wikibase:referenceValueNormalized prn:P4438 .

p:P4438 a owl:ObjectProperty .

psv:P4438 a owl:ObjectProperty .

pqv:P4438 a owl:ObjectProperty .

prv:P4438 a owl:ObjectProperty .

wdt:P4438 a owl:DatatypeProperty .

ps:P4438 a owl:DatatypeProperty .

pq:P4438 a owl:DatatypeProperty .

pr:P4438 a owl:DatatypeProperty .

psn:P4438 a owl:ObjectProperty .

pqn:P4438 a owl:ObjectProperty .

prn:P4438 a owl:ObjectProperty .

wdtn:P4438 a owl:ObjectProperty .

wdno:P4438 a owl:Class ;
	owl:complementOf _:33f5c9babd5745d182296d9206cec60c .

_:33f5c9babd5745d182296d9206cec60c a owl:Restriction ;
	owl:onProperty wdt:P4438 ;
	owl:someValuesFrom owl:Thing .

wd:P4326 a wikibase:Property ;
	rdfs:label "BFI Filmography person ID"@en ;
	skos:prefLabel "BFI Filmography person ID"@en ;
	schema:name "BFI Filmography person ID"@en ;
	schema:description "identifier for a person in the British Film Institute (BFI) 'Filmography' database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4326 ;
	wikibase:claim p:P4326 ;
	wikibase:statementProperty ps:P4326 ;
	wikibase:statementValue psv:P4326 ;
	wikibase:qualifier pq:P4326 ;
	wikibase:qualifierValue pqv:P4326 ;
	wikibase:reference pr:P4326 ;
	wikibase:referenceValue prv:P4326 ;
	wikibase:novalue wdno:P4326 ;
	wikibase:directClaimNormalized wdtn:P4326 ;
	wikibase:statementValueNormalized psn:P4326 ;
	wikibase:qualifierValueNormalized pqn:P4326 ;
	wikibase:referenceValueNormalized prn:P4326 .

p:P4326 a owl:ObjectProperty .

psv:P4326 a owl:ObjectProperty .

pqv:P4326 a owl:ObjectProperty .

prv:P4326 a owl:ObjectProperty .

wdt:P4326 a owl:DatatypeProperty .

ps:P4326 a owl:DatatypeProperty .

pq:P4326 a owl:DatatypeProperty .

pr:P4326 a owl:DatatypeProperty .

psn:P4326 a owl:ObjectProperty .

pqn:P4326 a owl:ObjectProperty .

prn:P4326 a owl:ObjectProperty .

wdtn:P4326 a owl:ObjectProperty .

wdno:P4326 a owl:Class ;
	owl:complementOf _:49715f8589c0a8aad3627a1d198926a5 .

_:49715f8589c0a8aad3627a1d198926a5 a owl:Restriction ;
	owl:onProperty wdt:P4326 ;
	owl:someValuesFrom owl:Thing .

wd:P4768 a wikibase:Property ;
	rdfs:label "cinematografo.it name or company ID"@en ;
	skos:prefLabel "cinematografo.it name or company ID"@en ;
	schema:name "cinematografo.it name or company ID"@en ;
	schema:description "identifier for a person or company in cinematografo.it"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4768 ;
	wikibase:claim p:P4768 ;
	wikibase:statementProperty ps:P4768 ;
	wikibase:statementValue psv:P4768 ;
	wikibase:qualifier pq:P4768 ;
	wikibase:qualifierValue pqv:P4768 ;
	wikibase:reference pr:P4768 ;
	wikibase:referenceValue prv:P4768 ;
	wikibase:novalue wdno:P4768 ;
	wikibase:directClaimNormalized wdtn:P4768 ;
	wikibase:statementValueNormalized psn:P4768 ;
	wikibase:qualifierValueNormalized pqn:P4768 ;
	wikibase:referenceValueNormalized prn:P4768 .

p:P4768 a owl:ObjectProperty .

psv:P4768 a owl:ObjectProperty .

pqv:P4768 a owl:ObjectProperty .

prv:P4768 a owl:ObjectProperty .

wdt:P4768 a owl:DatatypeProperty .

ps:P4768 a owl:DatatypeProperty .

pq:P4768 a owl:DatatypeProperty .

pr:P4768 a owl:DatatypeProperty .

psn:P4768 a owl:ObjectProperty .

pqn:P4768 a owl:ObjectProperty .

prn:P4768 a owl:ObjectProperty .

wdtn:P4768 a owl:ObjectProperty .

wdno:P4768 a owl:Class ;
	owl:complementOf _:38f3617a751ff48a6589bdcaebe20b59 .

_:38f3617a751ff48a6589bdcaebe20b59 a owl:Restriction ;
	owl:onProperty wdt:P4768 ;
	owl:someValuesFrom owl:Thing .

wd:P3142 a wikibase:Property ;
	rdfs:label "EDb person ID"@en ;
	skos:prefLabel "EDb person ID"@en ;
	schema:name "EDb person ID"@en ;
	schema:description "identifier for a person at the Israeli movie database EDb"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3142 ;
	wikibase:claim p:P3142 ;
	wikibase:statementProperty ps:P3142 ;
	wikibase:statementValue psv:P3142 ;
	wikibase:qualifier pq:P3142 ;
	wikibase:qualifierValue pqv:P3142 ;
	wikibase:reference pr:P3142 ;
	wikibase:referenceValue prv:P3142 ;
	wikibase:novalue wdno:P3142 ;
	wikibase:directClaimNormalized wdtn:P3142 ;
	wikibase:statementValueNormalized psn:P3142 ;
	wikibase:qualifierValueNormalized pqn:P3142 ;
	wikibase:referenceValueNormalized prn:P3142 .

p:P3142 a owl:ObjectProperty .

psv:P3142 a owl:ObjectProperty .

pqv:P3142 a owl:ObjectProperty .

prv:P3142 a owl:ObjectProperty .

wdt:P3142 a owl:DatatypeProperty .

ps:P3142 a owl:DatatypeProperty .

pq:P3142 a owl:DatatypeProperty .

pr:P3142 a owl:DatatypeProperty .

psn:P3142 a owl:ObjectProperty .

pqn:P3142 a owl:ObjectProperty .

prn:P3142 a owl:ObjectProperty .

wdtn:P3142 a owl:ObjectProperty .

wdno:P3142 a owl:Class ;
	owl:complementOf _:bdd44f1640786fdd6b6f4c355f14c65f .

_:bdd44f1640786fdd6b6f4c355f14c65f a owl:Restriction ;
	owl:onProperty wdt:P3142 ;
	owl:someValuesFrom owl:Thing .

wd:P3136 a wikibase:Property ;
	rdfs:label "elCinema person ID"@en ;
	skos:prefLabel "elCinema person ID"@en ;
	schema:name "elCinema person ID"@en ;
	schema:description "identifier for a person at elCinema"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3136 ;
	wikibase:claim p:P3136 ;
	wikibase:statementProperty ps:P3136 ;
	wikibase:statementValue psv:P3136 ;
	wikibase:qualifier pq:P3136 ;
	wikibase:qualifierValue pqv:P3136 ;
	wikibase:reference pr:P3136 ;
	wikibase:referenceValue prv:P3136 ;
	wikibase:novalue wdno:P3136 ;
	wikibase:directClaimNormalized wdtn:P3136 ;
	wikibase:statementValueNormalized psn:P3136 ;
	wikibase:qualifierValueNormalized pqn:P3136 ;
	wikibase:referenceValueNormalized prn:P3136 .

p:P3136 a owl:ObjectProperty .

psv:P3136 a owl:ObjectProperty .

pqv:P3136 a owl:ObjectProperty .

prv:P3136 a owl:ObjectProperty .

wdt:P3136 a owl:DatatypeProperty .

ps:P3136 a owl:DatatypeProperty .

pq:P3136 a owl:DatatypeProperty .

pr:P3136 a owl:DatatypeProperty .

psn:P3136 a owl:ObjectProperty .

pqn:P3136 a owl:ObjectProperty .

prn:P3136 a owl:ObjectProperty .

wdtn:P3136 a owl:ObjectProperty .

wdno:P3136 a owl:Class ;
	owl:complementOf _:c8c816d81b87a26635f11970fbd4bfe1 .

_:c8c816d81b87a26635f11970fbd4bfe1 a owl:Restriction ;
	owl:onProperty wdt:P3136 ;
	owl:someValuesFrom owl:Thing .

wd:P4782 a wikibase:Property ;
	rdfs:label "Movieplayer person ID"@en ;
	skos:prefLabel "Movieplayer person ID"@en ;
	schema:name "Movieplayer person ID"@en ;
	schema:description "identifier for a person in movieplayer.it"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4782 ;
	wikibase:claim p:P4782 ;
	wikibase:statementProperty ps:P4782 ;
	wikibase:statementValue psv:P4782 ;
	wikibase:qualifier pq:P4782 ;
	wikibase:qualifierValue pqv:P4782 ;
	wikibase:reference pr:P4782 ;
	wikibase:referenceValue prv:P4782 ;
	wikibase:novalue wdno:P4782 ;
	wikibase:directClaimNormalized wdtn:P4782 ;
	wikibase:statementValueNormalized psn:P4782 ;
	wikibase:qualifierValueNormalized pqn:P4782 ;
	wikibase:referenceValueNormalized prn:P4782 .

p:P4782 a owl:ObjectProperty .

psv:P4782 a owl:ObjectProperty .

pqv:P4782 a owl:ObjectProperty .

prv:P4782 a owl:ObjectProperty .

wdt:P4782 a owl:DatatypeProperty .

ps:P4782 a owl:DatatypeProperty .

pq:P4782 a owl:DatatypeProperty .

pr:P4782 a owl:DatatypeProperty .

psn:P4782 a owl:ObjectProperty .

pqn:P4782 a owl:ObjectProperty .

prn:P4782 a owl:ObjectProperty .

wdtn:P4782 a owl:ObjectProperty .

wdno:P4782 a owl:Class ;
	owl:complementOf _:90deb7c10ce2a86e1aff82b3ca9a4aad .

_:90deb7c10ce2a86e1aff82b3ca9a4aad a owl:Restriction ;
	owl:onProperty wdt:P4782 ;
	owl:someValuesFrom owl:Thing .

wd:P3145 a wikibase:Property ;
	rdfs:label "Sratim ID"@en ;
	skos:prefLabel "Sratim ID"@en ;
	schema:name "Sratim ID"@en ;
	schema:description "identifier for a movie or person at the Israeli movie database Sratim (sratim.co.il)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3145 ;
	wikibase:claim p:P3145 ;
	wikibase:statementProperty ps:P3145 ;
	wikibase:statementValue psv:P3145 ;
	wikibase:qualifier pq:P3145 ;
	wikibase:qualifierValue pqv:P3145 ;
	wikibase:reference pr:P3145 ;
	wikibase:referenceValue prv:P3145 ;
	wikibase:novalue wdno:P3145 ;
	wikibase:directClaimNormalized wdtn:P3145 ;
	wikibase:statementValueNormalized psn:P3145 ;
	wikibase:qualifierValueNormalized pqn:P3145 ;
	wikibase:referenceValueNormalized prn:P3145 .

p:P3145 a owl:ObjectProperty .

psv:P3145 a owl:ObjectProperty .

pqv:P3145 a owl:ObjectProperty .

prv:P3145 a owl:ObjectProperty .

wdt:P3145 a owl:DatatypeProperty .

ps:P3145 a owl:DatatypeProperty .

pq:P3145 a owl:DatatypeProperty .

pr:P3145 a owl:DatatypeProperty .

psn:P3145 a owl:ObjectProperty .

pqn:P3145 a owl:ObjectProperty .

prn:P3145 a owl:ObjectProperty .

wdtn:P3145 a owl:ObjectProperty .

wdno:P3145 a owl:Class ;
	owl:complementOf _:0ce0ec61c772e0ff092cef54e4fbadb7 .

_:0ce0ec61c772e0ff092cef54e4fbadb7 a owl:Restriction ;
	owl:onProperty wdt:P3145 ;
	owl:someValuesFrom owl:Thing .

wd:P5882 a wikibase:Property ;
	rdfs:label "Muziekweb performer ID"@en ;
	skos:prefLabel "Muziekweb performer ID"@en ;
	schema:name "Muziekweb performer ID"@en ;
	schema:description "identifier for a performer, composer or band at Muziekweb"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5882 ;
	wikibase:claim p:P5882 ;
	wikibase:statementProperty ps:P5882 ;
	wikibase:statementValue psv:P5882 ;
	wikibase:qualifier pq:P5882 ;
	wikibase:qualifierValue pqv:P5882 ;
	wikibase:reference pr:P5882 ;
	wikibase:referenceValue prv:P5882 ;
	wikibase:novalue wdno:P5882 ;
	wikibase:directClaimNormalized wdtn:P5882 ;
	wikibase:statementValueNormalized psn:P5882 ;
	wikibase:qualifierValueNormalized pqn:P5882 ;
	wikibase:referenceValueNormalized prn:P5882 .

p:P5882 a owl:ObjectProperty .

psv:P5882 a owl:ObjectProperty .

pqv:P5882 a owl:ObjectProperty .

prv:P5882 a owl:ObjectProperty .

wdt:P5882 a owl:DatatypeProperty .

ps:P5882 a owl:DatatypeProperty .

pq:P5882 a owl:DatatypeProperty .

pr:P5882 a owl:DatatypeProperty .

psn:P5882 a owl:ObjectProperty .

pqn:P5882 a owl:ObjectProperty .

prn:P5882 a owl:ObjectProperty .

wdtn:P5882 a owl:ObjectProperty .

wdno:P5882 a owl:Class ;
	owl:complementOf _:f944ff18b7ee92b7b8b998faca9e874d .

_:f944ff18b7ee92b7b8b998faca9e874d a owl:Restriction ;
	owl:onProperty wdt:P5882 ;
	owl:someValuesFrom owl:Thing .

wd:P6327 a wikibase:Property ;
	rdfs:label "Goodreads character ID"@en ;
	skos:prefLabel "Goodreads character ID"@en ;
	schema:name "Goodreads character ID"@en ;
	schema:description "identifier for a fictional character on Goodreads"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6327 ;
	wikibase:claim p:P6327 ;
	wikibase:statementProperty ps:P6327 ;
	wikibase:statementValue psv:P6327 ;
	wikibase:qualifier pq:P6327 ;
	wikibase:qualifierValue pqv:P6327 ;
	wikibase:reference pr:P6327 ;
	wikibase:referenceValue prv:P6327 ;
	wikibase:novalue wdno:P6327 ;
	wikibase:directClaimNormalized wdtn:P6327 ;
	wikibase:statementValueNormalized psn:P6327 ;
	wikibase:qualifierValueNormalized pqn:P6327 ;
	wikibase:referenceValueNormalized prn:P6327 .

p:P6327 a owl:ObjectProperty .

psv:P6327 a owl:ObjectProperty .

pqv:P6327 a owl:ObjectProperty .

prv:P6327 a owl:ObjectProperty .

wdt:P6327 a owl:DatatypeProperty .

ps:P6327 a owl:DatatypeProperty .

pq:P6327 a owl:DatatypeProperty .

pr:P6327 a owl:DatatypeProperty .

psn:P6327 a owl:ObjectProperty .

pqn:P6327 a owl:ObjectProperty .

prn:P6327 a owl:ObjectProperty .

wdtn:P6327 a owl:ObjectProperty .

wdno:P6327 a owl:Class ;
	owl:complementOf _:145d2b9997fec0167d41ef14af9ea531 .

_:145d2b9997fec0167d41ef14af9ea531 a owl:Restriction ;
	owl:onProperty wdt:P6327 ;
	owl:someValuesFrom owl:Thing .

wd:P6517 a wikibase:Property ;
	rdfs:label "WhoSampled artist ID"@en ;
	skos:prefLabel "WhoSampled artist ID"@en ;
	schema:name "WhoSampled artist ID"@en ;
	schema:description "identifier for an artist on WhoSampled.com"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6517 ;
	wikibase:claim p:P6517 ;
	wikibase:statementProperty ps:P6517 ;
	wikibase:statementValue psv:P6517 ;
	wikibase:qualifier pq:P6517 ;
	wikibase:qualifierValue pqv:P6517 ;
	wikibase:reference pr:P6517 ;
	wikibase:referenceValue prv:P6517 ;
	wikibase:novalue wdno:P6517 ;
	wikibase:directClaimNormalized wdtn:P6517 ;
	wikibase:statementValueNormalized psn:P6517 ;
	wikibase:qualifierValueNormalized pqn:P6517 ;
	wikibase:referenceValueNormalized prn:P6517 .

p:P6517 a owl:ObjectProperty .

psv:P6517 a owl:ObjectProperty .

pqv:P6517 a owl:ObjectProperty .

prv:P6517 a owl:ObjectProperty .

wdt:P6517 a owl:DatatypeProperty .

ps:P6517 a owl:DatatypeProperty .

pq:P6517 a owl:DatatypeProperty .

pr:P6517 a owl:DatatypeProperty .

psn:P6517 a owl:ObjectProperty .

pqn:P6517 a owl:ObjectProperty .

prn:P6517 a owl:ObjectProperty .

wdtn:P6517 a owl:ObjectProperty .

wdno:P6517 a owl:Class ;
	owl:complementOf _:09d823b7ecd38c030038c357bdd07bac .

_:09d823b7ecd38c030038c357bdd07bac a owl:Restriction ;
	owl:onProperty wdt:P6517 ;
	owl:someValuesFrom owl:Thing .

wd:P1728 a wikibase:Property ;
	rdfs:label "AllMusic artist ID"@en ;
	skos:prefLabel "AllMusic artist ID"@en ;
	schema:name "AllMusic artist ID"@en ;
	schema:description "identifier for an artist, musical group, or record label in the AllMusic database (record labels are listed as \"artists\")"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1728 ;
	wikibase:claim p:P1728 ;
	wikibase:statementProperty ps:P1728 ;
	wikibase:statementValue psv:P1728 ;
	wikibase:qualifier pq:P1728 ;
	wikibase:qualifierValue pqv:P1728 ;
	wikibase:reference pr:P1728 ;
	wikibase:referenceValue prv:P1728 ;
	wikibase:novalue wdno:P1728 ;
	wikibase:directClaimNormalized wdtn:P1728 ;
	wikibase:statementValueNormalized psn:P1728 ;
	wikibase:qualifierValueNormalized pqn:P1728 ;
	wikibase:referenceValueNormalized prn:P1728 .

p:P1728 a owl:ObjectProperty .

psv:P1728 a owl:ObjectProperty .

pqv:P1728 a owl:ObjectProperty .

prv:P1728 a owl:ObjectProperty .

wdt:P1728 a owl:DatatypeProperty .

ps:P1728 a owl:DatatypeProperty .

pq:P1728 a owl:DatatypeProperty .

pr:P1728 a owl:DatatypeProperty .

psn:P1728 a owl:ObjectProperty .

pqn:P1728 a owl:ObjectProperty .

prn:P1728 a owl:ObjectProperty .

wdtn:P1728 a owl:ObjectProperty .

wdno:P1728 a owl:Class ;
	owl:complementOf _:489cc42513575b934001b55f6165017f .

_:489cc42513575b934001b55f6165017f a owl:Restriction ;
	owl:onProperty wdt:P1728 ;
	owl:someValuesFrom owl:Thing .

wd:P7195 a wikibase:Property ;
	rdfs:label "Bandsintown artist ID"@en ;
	skos:prefLabel "Bandsintown artist ID"@en ;
	schema:name "Bandsintown artist ID"@en ;
	schema:description "Identifier for an artist on Bandsintown site"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7195 ;
	wikibase:claim p:P7195 ;
	wikibase:statementProperty ps:P7195 ;
	wikibase:statementValue psv:P7195 ;
	wikibase:qualifier pq:P7195 ;
	wikibase:qualifierValue pqv:P7195 ;
	wikibase:reference pr:P7195 ;
	wikibase:referenceValue prv:P7195 ;
	wikibase:novalue wdno:P7195 ;
	wikibase:directClaimNormalized wdtn:P7195 ;
	wikibase:statementValueNormalized psn:P7195 ;
	wikibase:qualifierValueNormalized pqn:P7195 ;
	wikibase:referenceValueNormalized prn:P7195 .

p:P7195 a owl:ObjectProperty .

psv:P7195 a owl:ObjectProperty .

pqv:P7195 a owl:ObjectProperty .

prv:P7195 a owl:ObjectProperty .

wdt:P7195 a owl:DatatypeProperty .

ps:P7195 a owl:DatatypeProperty .

pq:P7195 a owl:DatatypeProperty .

pr:P7195 a owl:DatatypeProperty .

psn:P7195 a owl:ObjectProperty .

pqn:P7195 a owl:ObjectProperty .

prn:P7195 a owl:ObjectProperty .

wdtn:P7195 a owl:ObjectProperty .

wdno:P7195 a owl:Class ;
	owl:complementOf _:a6cc2d8cadc486207d96f60034a150b6 .

_:a6cc2d8cadc486207d96f60034a150b6 a owl:Restriction ;
	owl:onProperty wdt:P7195 ;
	owl:someValuesFrom owl:Thing .

wd:P2722 a wikibase:Property ;
	rdfs:label "Deezer artist ID"@en ;
	skos:prefLabel "Deezer artist ID"@en ;
	schema:name "Deezer artist ID"@en ;
	schema:description "identifier for an artist on Deezer"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2722 ;
	wikibase:claim p:P2722 ;
	wikibase:statementProperty ps:P2722 ;
	wikibase:statementValue psv:P2722 ;
	wikibase:qualifier pq:P2722 ;
	wikibase:qualifierValue pqv:P2722 ;
	wikibase:reference pr:P2722 ;
	wikibase:referenceValue prv:P2722 ;
	wikibase:novalue wdno:P2722 ;
	wikibase:directClaimNormalized wdtn:P2722 ;
	wikibase:statementValueNormalized psn:P2722 ;
	wikibase:qualifierValueNormalized pqn:P2722 ;
	wikibase:referenceValueNormalized prn:P2722 .

p:P2722 a owl:ObjectProperty .

psv:P2722 a owl:ObjectProperty .

pqv:P2722 a owl:ObjectProperty .

prv:P2722 a owl:ObjectProperty .

wdt:P2722 a owl:DatatypeProperty .

ps:P2722 a owl:DatatypeProperty .

pq:P2722 a owl:DatatypeProperty .

pr:P2722 a owl:DatatypeProperty .

psn:P2722 a owl:ObjectProperty .

pqn:P2722 a owl:ObjectProperty .

prn:P2722 a owl:ObjectProperty .

wdtn:P2722 a owl:ObjectProperty .

wdno:P2722 a owl:Class ;
	owl:complementOf _:66764795419cbc0be7a05ec5deff0921 .

_:66764795419cbc0be7a05ec5deff0921 a owl:Restriction ;
	owl:onProperty wdt:P2722 ;
	owl:someValuesFrom owl:Thing .

wd:P2373 a wikibase:Property ;
	rdfs:label "Genius artist ID"@en ;
	skos:prefLabel "Genius artist ID"@en ;
	schema:name "Genius artist ID"@en ;
	schema:description "identifier for an artist or label on Genius"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2373 ;
	wikibase:claim p:P2373 ;
	wikibase:statementProperty ps:P2373 ;
	wikibase:statementValue psv:P2373 ;
	wikibase:qualifier pq:P2373 ;
	wikibase:qualifierValue pqv:P2373 ;
	wikibase:reference pr:P2373 ;
	wikibase:referenceValue prv:P2373 ;
	wikibase:novalue wdno:P2373 ;
	wikibase:directClaimNormalized wdtn:P2373 ;
	wikibase:statementValueNormalized psn:P2373 ;
	wikibase:qualifierValueNormalized pqn:P2373 ;
	wikibase:referenceValueNormalized prn:P2373 .

p:P2373 a owl:ObjectProperty .

psv:P2373 a owl:ObjectProperty .

pqv:P2373 a owl:ObjectProperty .

prv:P2373 a owl:ObjectProperty .

wdt:P2373 a owl:DatatypeProperty .

ps:P2373 a owl:DatatypeProperty .

pq:P2373 a owl:DatatypeProperty .

pr:P2373 a owl:DatatypeProperty .

psn:P2373 a owl:ObjectProperty .

pqn:P2373 a owl:ObjectProperty .

prn:P2373 a owl:ObjectProperty .

wdtn:P2373 a owl:ObjectProperty .

wdno:P2373 a owl:Class ;
	owl:complementOf _:7434bd8ce8c09ed1675cfe3cc1259fff .

_:7434bd8ce8c09ed1675cfe3cc1259fff a owl:Restriction ;
	owl:onProperty wdt:P2373 ;
	owl:someValuesFrom owl:Thing .

wd:P6351 a wikibase:Property ;
	rdfs:label "Genius artist numeric ID"@en ;
	skos:prefLabel "Genius artist numeric ID"@en ;
	schema:name "Genius artist numeric ID"@en ;
	schema:description "numeric identifier for an artist on Genius"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6351 ;
	wikibase:claim p:P6351 ;
	wikibase:statementProperty ps:P6351 ;
	wikibase:statementValue psv:P6351 ;
	wikibase:qualifier pq:P6351 ;
	wikibase:qualifierValue pqv:P6351 ;
	wikibase:reference pr:P6351 ;
	wikibase:referenceValue prv:P6351 ;
	wikibase:novalue wdno:P6351 ;
	wikibase:directClaimNormalized wdtn:P6351 ;
	wikibase:statementValueNormalized psn:P6351 ;
	wikibase:qualifierValueNormalized pqn:P6351 ;
	wikibase:referenceValueNormalized prn:P6351 .

p:P6351 a owl:ObjectProperty .

psv:P6351 a owl:ObjectProperty .

pqv:P6351 a owl:ObjectProperty .

prv:P6351 a owl:ObjectProperty .

wdt:P6351 a owl:DatatypeProperty .

ps:P6351 a owl:DatatypeProperty .

pq:P6351 a owl:DatatypeProperty .

pr:P6351 a owl:DatatypeProperty .

psn:P6351 a owl:ObjectProperty .

pqn:P6351 a owl:ObjectProperty .

prn:P6351 a owl:ObjectProperty .

wdtn:P6351 a owl:ObjectProperty .

wdno:P6351 a owl:Class ;
	owl:complementOf _:399cfc2dea07306b98385df0fc8d5d9a .

_:399cfc2dea07306b98385df0fc8d5d9a a owl:Restriction ;
	owl:onProperty wdt:P6351 ;
	owl:someValuesFrom owl:Thing .

wd:P2850 a wikibase:Property ;
	rdfs:label "Apple Music artist ID (U.S. version)"@en ;
	skos:prefLabel "Apple Music artist ID (U.S. version)"@en ;
	schema:name "Apple Music artist ID (U.S. version)"@en ;
	schema:description "identifier for a musical artist or author in the U.S. version of Apple Music"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2850 ;
	wikibase:claim p:P2850 ;
	wikibase:statementProperty ps:P2850 ;
	wikibase:statementValue psv:P2850 ;
	wikibase:qualifier pq:P2850 ;
	wikibase:qualifierValue pqv:P2850 ;
	wikibase:reference pr:P2850 ;
	wikibase:referenceValue prv:P2850 ;
	wikibase:novalue wdno:P2850 ;
	wikibase:directClaimNormalized wdtn:P2850 ;
	wikibase:statementValueNormalized psn:P2850 ;
	wikibase:qualifierValueNormalized pqn:P2850 ;
	wikibase:referenceValueNormalized prn:P2850 .

p:P2850 a owl:ObjectProperty .

psv:P2850 a owl:ObjectProperty .

pqv:P2850 a owl:ObjectProperty .

prv:P2850 a owl:ObjectProperty .

wdt:P2850 a owl:DatatypeProperty .

ps:P2850 a owl:DatatypeProperty .

pq:P2850 a owl:DatatypeProperty .

pr:P2850 a owl:DatatypeProperty .

psn:P2850 a owl:ObjectProperty .

pqn:P2850 a owl:ObjectProperty .

prn:P2850 a owl:ObjectProperty .

wdtn:P2850 a owl:ObjectProperty .

wdno:P2850 a owl:Class ;
	owl:complementOf _:2f0ff69beb872d4ba45f69551e3b2c85 .

_:2f0ff69beb872d4ba45f69551e3b2c85 a owl:Restriction ;
	owl:onProperty wdt:P2850 ;
	owl:someValuesFrom owl:Thing .

wd:P3192 a wikibase:Property ;
	rdfs:label "Last.fm ID"@en ;
	skos:prefLabel "Last.fm ID"@en ;
	schema:name "Last.fm ID"@en ;
	schema:description "identifier for an artist, group or work, on Last.fm"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3192 ;
	wikibase:claim p:P3192 ;
	wikibase:statementProperty ps:P3192 ;
	wikibase:statementValue psv:P3192 ;
	wikibase:qualifier pq:P3192 ;
	wikibase:qualifierValue pqv:P3192 ;
	wikibase:reference pr:P3192 ;
	wikibase:referenceValue prv:P3192 ;
	wikibase:novalue wdno:P3192 ;
	wikibase:directClaimNormalized wdtn:P3192 ;
	wikibase:statementValueNormalized psn:P3192 ;
	wikibase:qualifierValueNormalized pqn:P3192 ;
	wikibase:referenceValueNormalized prn:P3192 .

p:P3192 a owl:ObjectProperty .

psv:P3192 a owl:ObjectProperty .

pqv:P3192 a owl:ObjectProperty .

prv:P3192 a owl:ObjectProperty .

wdt:P3192 a owl:DatatypeProperty .

ps:P3192 a owl:DatatypeProperty .

pq:P3192 a owl:DatatypeProperty .

pr:P3192 a owl:DatatypeProperty .

psn:P3192 a owl:ObjectProperty .

pqn:P3192 a owl:ObjectProperty .

prn:P3192 a owl:ObjectProperty .

wdtn:P3192 a owl:ObjectProperty .

wdno:P3192 a owl:Class ;
	owl:complementOf _:50322c5d85927ada00a721217a3840f3 .

_:50322c5d85927ada00a721217a3840f3 a owl:Restriction ;
	owl:onProperty wdt:P3192 ;
	owl:someValuesFrom owl:Thing .

wd:P6874 a wikibase:Property ;
	rdfs:label "Musixmatch artist ID"@en ;
	skos:prefLabel "Musixmatch artist ID"@en ;
	schema:name "Musixmatch artist ID"@en ;
	schema:description "identifier for an artist on Musixmatch"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6874 ;
	wikibase:claim p:P6874 ;
	wikibase:statementProperty ps:P6874 ;
	wikibase:statementValue psv:P6874 ;
	wikibase:qualifier pq:P6874 ;
	wikibase:qualifierValue pqv:P6874 ;
	wikibase:reference pr:P6874 ;
	wikibase:referenceValue prv:P6874 ;
	wikibase:novalue wdno:P6874 ;
	wikibase:directClaimNormalized wdtn:P6874 ;
	wikibase:statementValueNormalized psn:P6874 ;
	wikibase:qualifierValueNormalized pqn:P6874 ;
	wikibase:referenceValueNormalized prn:P6874 .

p:P6874 a owl:ObjectProperty .

psv:P6874 a owl:ObjectProperty .

pqv:P6874 a owl:ObjectProperty .

prv:P6874 a owl:ObjectProperty .

wdt:P6874 a owl:DatatypeProperty .

ps:P6874 a owl:DatatypeProperty .

pq:P6874 a owl:DatatypeProperty .

pr:P6874 a owl:DatatypeProperty .

psn:P6874 a owl:ObjectProperty .

pqn:P6874 a owl:ObjectProperty .

prn:P6874 a owl:ObjectProperty .

wdtn:P6874 a owl:ObjectProperty .

wdno:P6874 a owl:Class ;
	owl:complementOf _:a5b8663e6d6c276be14770a91561237f .

_:a5b8663e6d6c276be14770a91561237f a owl:Restriction ;
	owl:onProperty wdt:P6874 ;
	owl:someValuesFrom owl:Thing .

wd:P5404 a wikibase:Property ;
	rdfs:label "Rate Your Music artist ID"@en ;
	skos:prefLabel "Rate Your Music artist ID"@en ;
	schema:name "Rate Your Music artist ID"@en ;
	schema:description "identifier for an artist or group on the website Rate Your Music"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5404 ;
	wikibase:claim p:P5404 ;
	wikibase:statementProperty ps:P5404 ;
	wikibase:statementValue psv:P5404 ;
	wikibase:qualifier pq:P5404 ;
	wikibase:qualifierValue pqv:P5404 ;
	wikibase:reference pr:P5404 ;
	wikibase:referenceValue prv:P5404 ;
	wikibase:novalue wdno:P5404 ;
	wikibase:directClaimNormalized wdtn:P5404 ;
	wikibase:statementValueNormalized psn:P5404 ;
	wikibase:qualifierValueNormalized pqn:P5404 ;
	wikibase:referenceValueNormalized prn:P5404 .

p:P5404 a owl:ObjectProperty .

psv:P5404 a owl:ObjectProperty .

pqv:P5404 a owl:ObjectProperty .

prv:P5404 a owl:ObjectProperty .

wdt:P5404 a owl:DatatypeProperty .

ps:P5404 a owl:DatatypeProperty .

pq:P5404 a owl:DatatypeProperty .

pr:P5404 a owl:DatatypeProperty .

psn:P5404 a owl:ObjectProperty .

pqn:P5404 a owl:ObjectProperty .

prn:P5404 a owl:ObjectProperty .

wdtn:P5404 a owl:ObjectProperty .

wdno:P5404 a owl:Class ;
	owl:complementOf _:ad78f88660b4be6b625d7a76400c0cfb .

_:ad78f88660b4be6b625d7a76400c0cfb a owl:Restriction ;
	owl:onProperty wdt:P5404 ;
	owl:someValuesFrom owl:Thing .

wd:P1828 a wikibase:Property ;
	rdfs:label "IPI name number"@en ;
	skos:prefLabel "IPI name number"@en ;
	schema:name "IPI name number"@en ;
	schema:description "identifier for names of a composer, author and other relevant parties"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1828 ;
	wikibase:claim p:P1828 ;
	wikibase:statementProperty ps:P1828 ;
	wikibase:statementValue psv:P1828 ;
	wikibase:qualifier pq:P1828 ;
	wikibase:qualifierValue pqv:P1828 ;
	wikibase:reference pr:P1828 ;
	wikibase:referenceValue prv:P1828 ;
	wikibase:novalue wdno:P1828 ;
	wikibase:directClaimNormalized wdtn:P1828 ;
	wikibase:statementValueNormalized psn:P1828 ;
	wikibase:qualifierValueNormalized pqn:P1828 ;
	wikibase:referenceValueNormalized prn:P1828 .

p:P1828 a owl:ObjectProperty .

psv:P1828 a owl:ObjectProperty .

pqv:P1828 a owl:ObjectProperty .

prv:P1828 a owl:ObjectProperty .

wdt:P1828 a owl:DatatypeProperty .

ps:P1828 a owl:DatatypeProperty .

pq:P1828 a owl:DatatypeProperty .

pr:P1828 a owl:DatatypeProperty .

psn:P1828 a owl:ObjectProperty .

pqn:P1828 a owl:ObjectProperty .

prn:P1828 a owl:ObjectProperty .

wdtn:P1828 a owl:ObjectProperty .

wdno:P1828 a owl:Class ;
	owl:complementOf _:2d2a633345bbc18c61c7512cc0887c53 .

_:2d2a633345bbc18c61c7512cc0887c53 a owl:Restriction ;
	owl:onProperty wdt:P1828 ;
	owl:someValuesFrom owl:Thing .

wd:P7154 a wikibase:Property ;
	rdfs:label "Empik author ID"@en ;
	skos:prefLabel "Empik author ID"@en ;
	schema:name "Empik author ID"@en ;
	schema:description "identifier for an author on Empik site"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7154 ;
	wikibase:claim p:P7154 ;
	wikibase:statementProperty ps:P7154 ;
	wikibase:statementValue psv:P7154 ;
	wikibase:qualifier pq:P7154 ;
	wikibase:qualifierValue pqv:P7154 ;
	wikibase:reference pr:P7154 ;
	wikibase:referenceValue prv:P7154 ;
	wikibase:novalue wdno:P7154 ;
	wikibase:directClaimNormalized wdtn:P7154 ;
	wikibase:statementValueNormalized psn:P7154 ;
	wikibase:qualifierValueNormalized pqn:P7154 ;
	wikibase:referenceValueNormalized prn:P7154 .

p:P7154 a owl:ObjectProperty .

psv:P7154 a owl:ObjectProperty .

pqv:P7154 a owl:ObjectProperty .

prv:P7154 a owl:ObjectProperty .

wdt:P7154 a owl:DatatypeProperty .

ps:P7154 a owl:DatatypeProperty .

pq:P7154 a owl:DatatypeProperty .

pr:P7154 a owl:DatatypeProperty .

psn:P7154 a owl:ObjectProperty .

pqn:P7154 a owl:ObjectProperty .

prn:P7154 a owl:ObjectProperty .

wdtn:P7154 a owl:ObjectProperty .

wdno:P7154 a owl:Class ;
	owl:complementOf _:b48baebc2e3d0c69c080e920c232cf22 .

_:b48baebc2e3d0c69c080e920c232cf22 a owl:Restriction ;
	owl:onProperty wdt:P7154 ;
	owl:someValuesFrom owl:Thing .

wd:P4198 a wikibase:Property ;
	rdfs:label "Google Play Music artist ID (former scheme)"@en ;
	skos:prefLabel "Google Play Music artist ID (former scheme)"@en ;
	schema:name "Google Play Music artist ID (former scheme)"@en ;
	schema:description "identifier of an artist on the Google Play Music website. Obsolete starting December 2020"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4198 ;
	wikibase:claim p:P4198 ;
	wikibase:statementProperty ps:P4198 ;
	wikibase:statementValue psv:P4198 ;
	wikibase:qualifier pq:P4198 ;
	wikibase:qualifierValue pqv:P4198 ;
	wikibase:reference pr:P4198 ;
	wikibase:referenceValue prv:P4198 ;
	wikibase:novalue wdno:P4198 ;
	wikibase:directClaimNormalized wdtn:P4198 ;
	wikibase:statementValueNormalized psn:P4198 ;
	wikibase:qualifierValueNormalized pqn:P4198 ;
	wikibase:referenceValueNormalized prn:P4198 .

p:P4198 a owl:ObjectProperty .

psv:P4198 a owl:ObjectProperty .

pqv:P4198 a owl:ObjectProperty .

prv:P4198 a owl:ObjectProperty .

wdt:P4198 a owl:DatatypeProperty .

ps:P4198 a owl:DatatypeProperty .

pq:P4198 a owl:DatatypeProperty .

pr:P4198 a owl:DatatypeProperty .

psn:P4198 a owl:ObjectProperty .

pqn:P4198 a owl:ObjectProperty .

prn:P4198 a owl:ObjectProperty .

wdtn:P4198 a owl:ObjectProperty .

wdno:P4198 a owl:Class ;
	owl:complementOf _:f40fe5b7d65cc0ea1f543b4b14569878 .

_:f40fe5b7d65cc0ea1f543b4b14569878 a owl:Restriction ;
	owl:onProperty wdt:P4198 ;
	owl:someValuesFrom owl:Thing .

wd:P6972 a wikibase:Property ;
	rdfs:label "Napster artist ID (U.S. version)"@en ;
	skos:prefLabel "Napster artist ID (U.S. version)"@en ;
	schema:name "Napster artist ID (U.S. version)"@en ;
	schema:description "identifier for an artist in the U.S. version of Napster Music"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6972 ;
	wikibase:claim p:P6972 ;
	wikibase:statementProperty ps:P6972 ;
	wikibase:statementValue psv:P6972 ;
	wikibase:qualifier pq:P6972 ;
	wikibase:qualifierValue pqv:P6972 ;
	wikibase:reference pr:P6972 ;
	wikibase:referenceValue prv:P6972 ;
	wikibase:novalue wdno:P6972 ;
	wikibase:directClaimNormalized wdtn:P6972 ;
	wikibase:statementValueNormalized psn:P6972 ;
	wikibase:qualifierValueNormalized pqn:P6972 ;
	wikibase:referenceValueNormalized prn:P6972 .

p:P6972 a owl:ObjectProperty .

psv:P6972 a owl:ObjectProperty .

pqv:P6972 a owl:ObjectProperty .

prv:P6972 a owl:ObjectProperty .

wdt:P6972 a owl:DatatypeProperty .

ps:P6972 a owl:DatatypeProperty .

pq:P6972 a owl:DatatypeProperty .

pr:P6972 a owl:DatatypeProperty .

psn:P6972 a owl:ObjectProperty .

pqn:P6972 a owl:ObjectProperty .

prn:P6972 a owl:ObjectProperty .

wdtn:P6972 a owl:ObjectProperty .

wdno:P6972 a owl:Class ;
	owl:complementOf _:0e05006cfe2664da4c17671163d0befc .

_:0e05006cfe2664da4c17671163d0befc a owl:Restriction ;
	owl:onProperty wdt:P6972 ;
	owl:someValuesFrom owl:Thing .

wd:P7071 a wikibase:Property ;
	rdfs:label "Qobuz artist ID"@en ;
	skos:prefLabel "Qobuz artist ID"@en ;
	schema:name "Qobuz artist ID"@en ;
	schema:description "identifier for an artist on Qobuz music site"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7071 ;
	wikibase:claim p:P7071 ;
	wikibase:statementProperty ps:P7071 ;
	wikibase:statementValue psv:P7071 ;
	wikibase:qualifier pq:P7071 ;
	wikibase:qualifierValue pqv:P7071 ;
	wikibase:reference pr:P7071 ;
	wikibase:referenceValue prv:P7071 ;
	wikibase:novalue wdno:P7071 ;
	wikibase:directClaimNormalized wdtn:P7071 ;
	wikibase:statementValueNormalized psn:P7071 ;
	wikibase:qualifierValueNormalized pqn:P7071 ;
	wikibase:referenceValueNormalized prn:P7071 .

p:P7071 a owl:ObjectProperty .

psv:P7071 a owl:ObjectProperty .

pqv:P7071 a owl:ObjectProperty .

prv:P7071 a owl:ObjectProperty .

wdt:P7071 a owl:DatatypeProperty .

ps:P7071 a owl:DatatypeProperty .

pq:P7071 a owl:DatatypeProperty .

pr:P7071 a owl:DatatypeProperty .

psn:P7071 a owl:ObjectProperty .

pqn:P7071 a owl:ObjectProperty .

prn:P7071 a owl:ObjectProperty .

wdtn:P7071 a owl:ObjectProperty .

wdno:P7071 a owl:Class ;
	owl:complementOf _:65139050163ace9fa41e94010bcbde4d .

_:65139050163ace9fa41e94010bcbde4d a owl:Restriction ;
	owl:onProperty wdt:P7071 ;
	owl:someValuesFrom owl:Thing .

wd:P3479 a wikibase:Property ;
	rdfs:label "Omni topic ID"@en ;
	skos:prefLabel "Omni topic ID"@en ;
	schema:name "Omni topic ID"@en ;
	schema:description "identifier for a topic, used by Omni and Aftonbladet"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3479 ;
	wikibase:claim p:P3479 ;
	wikibase:statementProperty ps:P3479 ;
	wikibase:statementValue psv:P3479 ;
	wikibase:qualifier pq:P3479 ;
	wikibase:qualifierValue pqv:P3479 ;
	wikibase:reference pr:P3479 ;
	wikibase:referenceValue prv:P3479 ;
	wikibase:novalue wdno:P3479 ;
	wikibase:directClaimNormalized wdtn:P3479 ;
	wikibase:statementValueNormalized psn:P3479 ;
	wikibase:qualifierValueNormalized pqn:P3479 ;
	wikibase:referenceValueNormalized prn:P3479 .

p:P3479 a owl:ObjectProperty .

psv:P3479 a owl:ObjectProperty .

pqv:P3479 a owl:ObjectProperty .

prv:P3479 a owl:ObjectProperty .

wdt:P3479 a owl:DatatypeProperty .

ps:P3479 a owl:DatatypeProperty .

pq:P3479 a owl:DatatypeProperty .

pr:P3479 a owl:DatatypeProperty .

psn:P3479 a owl:ObjectProperty .

pqn:P3479 a owl:ObjectProperty .

prn:P3479 a owl:ObjectProperty .

wdtn:P3479 a owl:ObjectProperty .

wdno:P3479 a owl:Class ;
	owl:complementOf _:c33e1194e5e963f896e044ac4b0640e0 .

_:c33e1194e5e963f896e044ac4b0640e0 a owl:Restriction ;
	owl:onProperty wdt:P3479 ;
	owl:someValuesFrom owl:Thing .

wd:P7284 a wikibase:Property ;
	rdfs:label "The Independent topic ID"@en ;
	skos:prefLabel "The Independent topic ID"@en ;
	schema:name "The Independent topic ID"@en ;
	schema:description "identifier for an topic on The Independent site"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7284 ;
	wikibase:claim p:P7284 ;
	wikibase:statementProperty ps:P7284 ;
	wikibase:statementValue psv:P7284 ;
	wikibase:qualifier pq:P7284 ;
	wikibase:qualifierValue pqv:P7284 ;
	wikibase:reference pr:P7284 ;
	wikibase:referenceValue prv:P7284 ;
	wikibase:novalue wdno:P7284 ;
	wikibase:directClaimNormalized wdtn:P7284 ;
	wikibase:statementValueNormalized psn:P7284 ;
	wikibase:qualifierValueNormalized pqn:P7284 ;
	wikibase:referenceValueNormalized prn:P7284 .

p:P7284 a owl:ObjectProperty .

psv:P7284 a owl:ObjectProperty .

pqv:P7284 a owl:ObjectProperty .

prv:P7284 a owl:ObjectProperty .

wdt:P7284 a owl:DatatypeProperty .

ps:P7284 a owl:DatatypeProperty .

pq:P7284 a owl:DatatypeProperty .

pr:P7284 a owl:DatatypeProperty .

psn:P7284 a owl:ObjectProperty .

pqn:P7284 a owl:ObjectProperty .

prn:P7284 a owl:ObjectProperty .

wdtn:P7284 a owl:ObjectProperty .

wdno:P7284 a owl:Class ;
	owl:complementOf _:ebd85a674c7331e97532115228339747 .

_:ebd85a674c7331e97532115228339747 a owl:Restriction ;
	owl:onProperty wdt:P7284 ;
	owl:someValuesFrom owl:Thing .

wd:P6620 a wikibase:Property ;
	rdfs:label "L'Express person ID"@en ;
	skos:prefLabel "L'Express person ID"@en ;
	schema:name "L'Express person ID"@en ;
	schema:description "identifier for a person on the website of L'Express"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6620 ;
	wikibase:claim p:P6620 ;
	wikibase:statementProperty ps:P6620 ;
	wikibase:statementValue psv:P6620 ;
	wikibase:qualifier pq:P6620 ;
	wikibase:qualifierValue pqv:P6620 ;
	wikibase:reference pr:P6620 ;
	wikibase:referenceValue prv:P6620 ;
	wikibase:novalue wdno:P6620 ;
	wikibase:directClaimNormalized wdtn:P6620 ;
	wikibase:statementValueNormalized psn:P6620 ;
	wikibase:qualifierValueNormalized pqn:P6620 ;
	wikibase:referenceValueNormalized prn:P6620 .

p:P6620 a owl:ObjectProperty .

psv:P6620 a owl:ObjectProperty .

pqv:P6620 a owl:ObjectProperty .

prv:P6620 a owl:ObjectProperty .

wdt:P6620 a owl:DatatypeProperty .

ps:P6620 a owl:DatatypeProperty .

pq:P6620 a owl:DatatypeProperty .

pr:P6620 a owl:DatatypeProperty .

psn:P6620 a owl:ObjectProperty .

pqn:P6620 a owl:ObjectProperty .

prn:P6620 a owl:ObjectProperty .

wdtn:P6620 a owl:ObjectProperty .

wdno:P6620 a owl:Class ;
	owl:complementOf _:84997396e34b3a3b6569ceb8953d7632 .

_:84997396e34b3a3b6569ceb8953d7632 a owl:Restriction ;
	owl:onProperty wdt:P6620 ;
	owl:someValuesFrom owl:Thing .

wd:P4204 a wikibase:Property ;
	rdfs:label "The Times of India topic ID"@en ;
	skos:prefLabel "The Times of India topic ID"@en ;
	schema:name "The Times of India topic ID"@en ;
	schema:description "identifier for a topic for news and information aggregation on The Times of India website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4204 ;
	wikibase:claim p:P4204 ;
	wikibase:statementProperty ps:P4204 ;
	wikibase:statementValue psv:P4204 ;
	wikibase:qualifier pq:P4204 ;
	wikibase:qualifierValue pqv:P4204 ;
	wikibase:reference pr:P4204 ;
	wikibase:referenceValue prv:P4204 ;
	wikibase:novalue wdno:P4204 ;
	wikibase:directClaimNormalized wdtn:P4204 ;
	wikibase:statementValueNormalized psn:P4204 ;
	wikibase:qualifierValueNormalized pqn:P4204 ;
	wikibase:referenceValueNormalized prn:P4204 .

p:P4204 a owl:ObjectProperty .

psv:P4204 a owl:ObjectProperty .

pqv:P4204 a owl:ObjectProperty .

prv:P4204 a owl:ObjectProperty .

wdt:P4204 a owl:DatatypeProperty .

ps:P4204 a owl:DatatypeProperty .

pq:P4204 a owl:DatatypeProperty .

pr:P4204 a owl:DatatypeProperty .

psn:P4204 a owl:ObjectProperty .

pqn:P4204 a owl:ObjectProperty .

prn:P4204 a owl:ObjectProperty .

wdtn:P4204 a owl:ObjectProperty .

wdno:P4204 a owl:Class ;
	owl:complementOf _:9f76924f7e140a10a6c2de2b73adfd56 .

_:9f76924f7e140a10a6c2de2b73adfd56 a owl:Restriction ;
	owl:onProperty wdt:P4204 ;
	owl:someValuesFrom owl:Thing .

wd:P7506 a wikibase:Property ;
	rdfs:label "Naver Encyclopedia ID"@en ;
	skos:prefLabel "Naver Encyclopedia ID"@en ;
	schema:name "Naver Encyclopedia ID"@en ;
	schema:description "ID of an document in Naver Encyclopedia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7506 ;
	wikibase:claim p:P7506 ;
	wikibase:statementProperty ps:P7506 ;
	wikibase:statementValue psv:P7506 ;
	wikibase:qualifier pq:P7506 ;
	wikibase:qualifierValue pqv:P7506 ;
	wikibase:reference pr:P7506 ;
	wikibase:referenceValue prv:P7506 ;
	wikibase:novalue wdno:P7506 ;
	wikibase:directClaimNormalized wdtn:P7506 ;
	wikibase:statementValueNormalized psn:P7506 ;
	wikibase:qualifierValueNormalized pqn:P7506 ;
	wikibase:referenceValueNormalized prn:P7506 .

p:P7506 a owl:ObjectProperty .

psv:P7506 a owl:ObjectProperty .

pqv:P7506 a owl:ObjectProperty .

prv:P7506 a owl:ObjectProperty .

wdt:P7506 a owl:DatatypeProperty .

ps:P7506 a owl:DatatypeProperty .

pq:P7506 a owl:DatatypeProperty .

pr:P7506 a owl:DatatypeProperty .

psn:P7506 a owl:ObjectProperty .

pqn:P7506 a owl:ObjectProperty .

prn:P7506 a owl:ObjectProperty .

wdtn:P7506 a owl:ObjectProperty .

wdno:P7506 a owl:Class ;
	owl:complementOf _:476585adfc3c48aa81ec686453c7f755 .

_:476585adfc3c48aa81ec686453c7f755 a owl:Restriction ;
	owl:onProperty wdt:P7506 ;
	owl:someValuesFrom owl:Thing .

wd:P3341 a wikibase:Property ;
	rdfs:label "Kvikmyndir person ID"@en ;
	skos:prefLabel "Kvikmyndir person ID"@en ;
	schema:name "Kvikmyndir person ID"@en ;
	schema:description "identifier of a person in the Icelandic film database kvikmyndir.is"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3341 ;
	wikibase:claim p:P3341 ;
	wikibase:statementProperty ps:P3341 ;
	wikibase:statementValue psv:P3341 ;
	wikibase:qualifier pq:P3341 ;
	wikibase:qualifierValue pqv:P3341 ;
	wikibase:reference pr:P3341 ;
	wikibase:referenceValue prv:P3341 ;
	wikibase:novalue wdno:P3341 ;
	wikibase:directClaimNormalized wdtn:P3341 ;
	wikibase:statementValueNormalized psn:P3341 ;
	wikibase:qualifierValueNormalized pqn:P3341 ;
	wikibase:referenceValueNormalized prn:P3341 .

p:P3341 a owl:ObjectProperty .

psv:P3341 a owl:ObjectProperty .

pqv:P3341 a owl:ObjectProperty .

prv:P3341 a owl:ObjectProperty .

wdt:P3341 a owl:DatatypeProperty .

ps:P3341 a owl:DatatypeProperty .

pq:P3341 a owl:DatatypeProperty .

pr:P3341 a owl:DatatypeProperty .

psn:P3341 a owl:ObjectProperty .

pqn:P3341 a owl:ObjectProperty .

prn:P3341 a owl:ObjectProperty .

wdtn:P3341 a owl:ObjectProperty .

wdno:P3341 a owl:Class ;
	owl:complementOf _:fdd6a51a429f93c4a5bbe9c7c8694c67 .

_:fdd6a51a429f93c4a5bbe9c7c8694c67 a owl:Restriction ;
	owl:onProperty wdt:P3341 ;
	owl:someValuesFrom owl:Thing .

wd:P7803 a wikibase:Property ;
	rdfs:label "Decine21 person ID"@en ;
	skos:prefLabel "Decine21 person ID"@en ;
	schema:name "Decine21 person ID"@en ;
	schema:description "identifier for a person on the website decine21.com"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7803 ;
	wikibase:claim p:P7803 ;
	wikibase:statementProperty ps:P7803 ;
	wikibase:statementValue psv:P7803 ;
	wikibase:qualifier pq:P7803 ;
	wikibase:qualifierValue pqv:P7803 ;
	wikibase:reference pr:P7803 ;
	wikibase:referenceValue prv:P7803 ;
	wikibase:novalue wdno:P7803 ;
	wikibase:directClaimNormalized wdtn:P7803 ;
	wikibase:statementValueNormalized psn:P7803 ;
	wikibase:qualifierValueNormalized pqn:P7803 ;
	wikibase:referenceValueNormalized prn:P7803 .

p:P7803 a owl:ObjectProperty .

psv:P7803 a owl:ObjectProperty .

pqv:P7803 a owl:ObjectProperty .

prv:P7803 a owl:ObjectProperty .

wdt:P7803 a owl:DatatypeProperty .

ps:P7803 a owl:DatatypeProperty .

pq:P7803 a owl:DatatypeProperty .

pr:P7803 a owl:DatatypeProperty .

psn:P7803 a owl:ObjectProperty .

pqn:P7803 a owl:ObjectProperty .

prn:P7803 a owl:ObjectProperty .

wdtn:P7803 a owl:ObjectProperty .

wdno:P7803 a owl:Class ;
	owl:complementOf _:ede972ea1115405062a87d4c36fe2218 .

_:ede972ea1115405062a87d4c36fe2218 a owl:Restriction ;
	owl:onProperty wdt:P7803 ;
	owl:someValuesFrom owl:Thing .

wd:P3388 a wikibase:Property ;
	rdfs:label "LittleSis people ID"@en ;
	skos:prefLabel "LittleSis people ID"@en ;
	schema:name "LittleSis people ID"@en ;
	schema:description "entry in the LittleSis who-knows-who of government and business database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3388 ;
	wikibase:claim p:P3388 ;
	wikibase:statementProperty ps:P3388 ;
	wikibase:statementValue psv:P3388 ;
	wikibase:qualifier pq:P3388 ;
	wikibase:qualifierValue pqv:P3388 ;
	wikibase:reference pr:P3388 ;
	wikibase:referenceValue prv:P3388 ;
	wikibase:novalue wdno:P3388 ;
	wikibase:directClaimNormalized wdtn:P3388 ;
	wikibase:statementValueNormalized psn:P3388 ;
	wikibase:qualifierValueNormalized pqn:P3388 ;
	wikibase:referenceValueNormalized prn:P3388 .

p:P3388 a owl:ObjectProperty .

psv:P3388 a owl:ObjectProperty .

pqv:P3388 a owl:ObjectProperty .

prv:P3388 a owl:ObjectProperty .

wdt:P3388 a owl:DatatypeProperty .

ps:P3388 a owl:DatatypeProperty .

pq:P3388 a owl:DatatypeProperty .

pr:P3388 a owl:DatatypeProperty .

psn:P3388 a owl:ObjectProperty .

pqn:P3388 a owl:ObjectProperty .

prn:P3388 a owl:ObjectProperty .

wdtn:P3388 a owl:ObjectProperty .

wdno:P3388 a owl:Class ;
	owl:complementOf _:055a04978e22efa1c6f15eca35f52306 .

_:055a04978e22efa1c6f15eca35f52306 a owl:Restriction ;
	owl:onProperty wdt:P3388 ;
	owl:someValuesFrom owl:Thing .

wd:P2087 a wikibase:Property ;
	rdfs:label "Crunchbase person ID"@en ;
	skos:prefLabel "Crunchbase person ID"@en ;
	schema:name "Crunchbase person ID"@en ;
	schema:description "Identifier for a person, in the Crunchbase database of companies and start-ups, operated by TechCrunch"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2087 ;
	wikibase:claim p:P2087 ;
	wikibase:statementProperty ps:P2087 ;
	wikibase:statementValue psv:P2087 ;
	wikibase:qualifier pq:P2087 ;
	wikibase:qualifierValue pqv:P2087 ;
	wikibase:reference pr:P2087 ;
	wikibase:referenceValue prv:P2087 ;
	wikibase:novalue wdno:P2087 ;
	wikibase:directClaimNormalized wdtn:P2087 ;
	wikibase:statementValueNormalized psn:P2087 ;
	wikibase:qualifierValueNormalized pqn:P2087 ;
	wikibase:referenceValueNormalized prn:P2087 .

p:P2087 a owl:ObjectProperty .

psv:P2087 a owl:ObjectProperty .

pqv:P2087 a owl:ObjectProperty .

prv:P2087 a owl:ObjectProperty .

wdt:P2087 a owl:DatatypeProperty .

ps:P2087 a owl:DatatypeProperty .

pq:P2087 a owl:DatatypeProperty .

pr:P2087 a owl:DatatypeProperty .

psn:P2087 a owl:ObjectProperty .

pqn:P2087 a owl:ObjectProperty .

prn:P2087 a owl:ObjectProperty .

wdtn:P2087 a owl:ObjectProperty .

wdno:P2087 a owl:Class ;
	owl:complementOf _:1a0e0fbd3051e853dd92596ecae8e972 .

_:1a0e0fbd3051e853dd92596ecae8e972 a owl:Restriction ;
	owl:onProperty wdt:P2087 ;
	owl:someValuesFrom owl:Thing .

wd:P7369 a wikibase:Property ;
	rdfs:label "National Library of Chile ID"@en ;
	skos:prefLabel "National Library of Chile ID"@en ;
	schema:name "National Library of Chile ID"@en ;
	schema:description "identifier for authority control managed by the National Library of Chile"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7369 ;
	wikibase:claim p:P7369 ;
	wikibase:statementProperty ps:P7369 ;
	wikibase:statementValue psv:P7369 ;
	wikibase:qualifier pq:P7369 ;
	wikibase:qualifierValue pqv:P7369 ;
	wikibase:reference pr:P7369 ;
	wikibase:referenceValue prv:P7369 ;
	wikibase:novalue wdno:P7369 ;
	wikibase:directClaimNormalized wdtn:P7369 ;
	wikibase:statementValueNormalized psn:P7369 ;
	wikibase:qualifierValueNormalized pqn:P7369 ;
	wikibase:referenceValueNormalized prn:P7369 .

p:P7369 a owl:ObjectProperty .

psv:P7369 a owl:ObjectProperty .

pqv:P7369 a owl:ObjectProperty .

prv:P7369 a owl:ObjectProperty .

wdt:P7369 a owl:DatatypeProperty .

ps:P7369 a owl:DatatypeProperty .

pq:P7369 a owl:DatatypeProperty .

pr:P7369 a owl:DatatypeProperty .

psn:P7369 a owl:ObjectProperty .

pqn:P7369 a owl:ObjectProperty .

prn:P7369 a owl:ObjectProperty .

wdtn:P7369 a owl:ObjectProperty .

wdno:P7369 a owl:Class ;
	owl:complementOf _:4fae1ec1048d29ea07f598cd30fb39e9 .

_:4fae1ec1048d29ea07f598cd30fb39e9 a owl:Restriction ;
	owl:onProperty wdt:P7369 ;
	owl:someValuesFrom owl:Thing .

wd:P6298 a wikibase:Property ;
	rdfs:label "bgm.tv person ID"@en ;
	skos:prefLabel "bgm.tv person ID"@en ;
	schema:name "bgm.tv person ID"@en ;
	schema:description "identifier for a person or group of people on bgm.tv (Bangumi/Chobits)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6298 ;
	wikibase:claim p:P6298 ;
	wikibase:statementProperty ps:P6298 ;
	wikibase:statementValue psv:P6298 ;
	wikibase:qualifier pq:P6298 ;
	wikibase:qualifierValue pqv:P6298 ;
	wikibase:reference pr:P6298 ;
	wikibase:referenceValue prv:P6298 ;
	wikibase:novalue wdno:P6298 ;
	wikibase:directClaimNormalized wdtn:P6298 ;
	wikibase:statementValueNormalized psn:P6298 ;
	wikibase:qualifierValueNormalized pqn:P6298 ;
	wikibase:referenceValueNormalized prn:P6298 .

p:P6298 a owl:ObjectProperty .

psv:P6298 a owl:ObjectProperty .

pqv:P6298 a owl:ObjectProperty .

prv:P6298 a owl:ObjectProperty .

wdt:P6298 a owl:DatatypeProperty .

ps:P6298 a owl:DatatypeProperty .

pq:P6298 a owl:DatatypeProperty .

pr:P6298 a owl:DatatypeProperty .

psn:P6298 a owl:ObjectProperty .

pqn:P6298 a owl:ObjectProperty .

prn:P6298 a owl:ObjectProperty .

wdtn:P6298 a owl:ObjectProperty .

wdno:P6298 a owl:Class ;
	owl:complementOf _:dd16fda87de0033c0a53ec95bf78f4fc .

_:dd16fda87de0033c0a53ec95bf78f4fc a owl:Restriction ;
	owl:onProperty wdt:P6298 ;
	owl:someValuesFrom owl:Thing .

wd:P2889 a wikibase:Property ;
	rdfs:label "FamilySearch person ID"@en ;
	skos:prefLabel "FamilySearch person ID"@en ;
	schema:name "FamilySearch person ID"@en ;
	schema:description "ID of a person in familysearch.org"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P2889 ;
	wikibase:claim p:P2889 ;
	wikibase:statementProperty ps:P2889 ;
	wikibase:statementValue psv:P2889 ;
	wikibase:qualifier pq:P2889 ;
	wikibase:qualifierValue pqv:P2889 ;
	wikibase:reference pr:P2889 ;
	wikibase:referenceValue prv:P2889 ;
	wikibase:novalue wdno:P2889 ;
	wikibase:directClaimNormalized wdtn:P2889 ;
	wikibase:statementValueNormalized psn:P2889 ;
	wikibase:qualifierValueNormalized pqn:P2889 ;
	wikibase:referenceValueNormalized prn:P2889 .

p:P2889 a owl:ObjectProperty .

psv:P2889 a owl:ObjectProperty .

pqv:P2889 a owl:ObjectProperty .

prv:P2889 a owl:ObjectProperty .

wdt:P2889 a owl:DatatypeProperty .

ps:P2889 a owl:DatatypeProperty .

pq:P2889 a owl:DatatypeProperty .

pr:P2889 a owl:DatatypeProperty .

psn:P2889 a owl:ObjectProperty .

pqn:P2889 a owl:ObjectProperty .

prn:P2889 a owl:ObjectProperty .

wdtn:P2889 a owl:ObjectProperty .

wdno:P2889 a owl:Class ;
	owl:complementOf _:5797c75c92a87ccef0e877e2d301b759 .

_:5797c75c92a87ccef0e877e2d301b759 a owl:Restriction ;
	owl:onProperty wdt:P2889 ;
	owl:someValuesFrom owl:Thing .

wd:P6886 a wikibase:Property ;
	rdfs:label "writing language"@en ;
	skos:prefLabel "writing language"@en ;
	schema:name "writing language"@en ;
	schema:description "language in which the writer has written their work"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P6886 ;
	wikibase:claim p:P6886 ;
	wikibase:statementProperty ps:P6886 ;
	wikibase:statementValue psv:P6886 ;
	wikibase:qualifier pq:P6886 ;
	wikibase:qualifierValue pqv:P6886 ;
	wikibase:reference pr:P6886 ;
	wikibase:referenceValue prv:P6886 ;
	wikibase:novalue wdno:P6886 .

p:P6886 a owl:ObjectProperty .

psv:P6886 a owl:ObjectProperty .

pqv:P6886 a owl:ObjectProperty .

prv:P6886 a owl:ObjectProperty .

wdt:P6886 a owl:ObjectProperty .

ps:P6886 a owl:ObjectProperty .

pq:P6886 a owl:ObjectProperty .

pr:P6886 a owl:ObjectProperty .

wdno:P6886 a owl:Class ;
	owl:complementOf _:6fff4a6a35c48928ca6be204a3dd5aea .

_:6fff4a6a35c48928ca6be204a3dd5aea a owl:Restriction ;
	owl:onProperty wdt:P6886 ;
	owl:someValuesFrom owl:Thing .

wd:Q22898962 a wikibase:Item ;
	rdfs:label "Template:Douglas Adams"@en ;
	skos:prefLabel "Template:Douglas Adams"@en ;
	schema:name "Template:Douglas Adams"@en ;
	schema:description "Wikimedia template"@en .

wd:P1424 a wikibase:Property ;
	rdfs:label "topic's main template"@en ;
	skos:prefLabel "topic's main template"@en ;
	schema:name "topic's main template"@en ;
	schema:description "the main template relating to a topic"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1424 ;
	wikibase:claim p:P1424 ;
	wikibase:statementProperty ps:P1424 ;
	wikibase:statementValue psv:P1424 ;
	wikibase:qualifier pq:P1424 ;
	wikibase:qualifierValue pqv:P1424 ;
	wikibase:reference pr:P1424 ;
	wikibase:referenceValue prv:P1424 ;
	wikibase:novalue wdno:P1424 .

p:P1424 a owl:ObjectProperty .

psv:P1424 a owl:ObjectProperty .

pqv:P1424 a owl:ObjectProperty .

prv:P1424 a owl:ObjectProperty .

wdt:P1424 a owl:ObjectProperty .

ps:P1424 a owl:ObjectProperty .

pq:P1424 a owl:ObjectProperty .

pr:P1424 a owl:ObjectProperty .

wdno:P1424 a owl:Class ;
	owl:complementOf _:2ee7d5920addccfd2f71cd7cf239a7d9 .

_:2ee7d5920addccfd2f71cd7cf239a7d9 a owl:Restriction ;
	owl:onProperty wdt:P1424 ;
	owl:someValuesFrom owl:Thing .

wd:P7902 a wikibase:Property ;
	rdfs:label "Deutsche Biographie (GND) ID"@en ;
	skos:prefLabel "Deutsche Biographie (GND) ID"@en ;
	schema:name "Deutsche Biographie (GND) ID"@en ;
	schema:description "GND identifier for an item in the Deutsche Biographie"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7902 ;
	wikibase:claim p:P7902 ;
	wikibase:statementProperty ps:P7902 ;
	wikibase:statementValue psv:P7902 ;
	wikibase:qualifier pq:P7902 ;
	wikibase:qualifierValue pqv:P7902 ;
	wikibase:reference pr:P7902 ;
	wikibase:referenceValue prv:P7902 ;
	wikibase:novalue wdno:P7902 ;
	wikibase:directClaimNormalized wdtn:P7902 ;
	wikibase:statementValueNormalized psn:P7902 ;
	wikibase:qualifierValueNormalized pqn:P7902 ;
	wikibase:referenceValueNormalized prn:P7902 .

p:P7902 a owl:ObjectProperty .

psv:P7902 a owl:ObjectProperty .

pqv:P7902 a owl:ObjectProperty .

prv:P7902 a owl:ObjectProperty .

wdt:P7902 a owl:DatatypeProperty .

ps:P7902 a owl:DatatypeProperty .

pq:P7902 a owl:DatatypeProperty .

pr:P7902 a owl:DatatypeProperty .

psn:P7902 a owl:ObjectProperty .

pqn:P7902 a owl:ObjectProperty .

prn:P7902 a owl:ObjectProperty .

wdtn:P7902 a owl:ObjectProperty .

wdno:P7902 a owl:Class ;
	owl:complementOf _:50b3d215821e2ebc0acb3b15fccdfde1 .

_:50b3d215821e2ebc0acb3b15fccdfde1 a owl:Restriction ;
	owl:onProperty wdt:P7902 ;
	owl:someValuesFrom owl:Thing .

wd:P8179 a wikibase:Property ;
	rdfs:label "Canadiana Name Authority ID"@en ;
	skos:prefLabel "Canadiana Name Authority ID"@en ;
	schema:name "Canadiana Name Authority ID"@en ;
	schema:description "system control number used in the Canadiana Name Authority File, format: \"ncf\" followed by 8 digits"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8179 ;
	wikibase:claim p:P8179 ;
	wikibase:statementProperty ps:P8179 ;
	wikibase:statementValue psv:P8179 ;
	wikibase:qualifier pq:P8179 ;
	wikibase:qualifierValue pqv:P8179 ;
	wikibase:reference pr:P8179 ;
	wikibase:referenceValue prv:P8179 ;
	wikibase:novalue wdno:P8179 ;
	wikibase:directClaimNormalized wdtn:P8179 ;
	wikibase:statementValueNormalized psn:P8179 ;
	wikibase:qualifierValueNormalized pqn:P8179 ;
	wikibase:referenceValueNormalized prn:P8179 .

p:P8179 a owl:ObjectProperty .

psv:P8179 a owl:ObjectProperty .

pqv:P8179 a owl:ObjectProperty .

prv:P8179 a owl:ObjectProperty .

wdt:P8179 a owl:DatatypeProperty .

ps:P8179 a owl:DatatypeProperty .

pq:P8179 a owl:DatatypeProperty .

pr:P8179 a owl:DatatypeProperty .

psn:P8179 a owl:ObjectProperty .

pqn:P8179 a owl:ObjectProperty .

prn:P8179 a owl:ObjectProperty .

wdtn:P8179 a owl:ObjectProperty .

wdno:P8179 a owl:Class ;
	owl:complementOf _:98bb6fabbee9c99d1141c422e787a4a0 .

_:98bb6fabbee9c99d1141c422e787a4a0 a owl:Restriction ;
	owl:onProperty wdt:P8179 ;
	owl:someValuesFrom owl:Thing .

wd:P3348 a wikibase:Property ;
	rdfs:label "National Library of Greece ID"@en ;
	skos:prefLabel "National Library of Greece ID"@en ;
	schema:name "National Library of Greece ID"@en ;
	schema:description "authority ID from the National Library of Greece Authority Records"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3348 ;
	wikibase:claim p:P3348 ;
	wikibase:statementProperty ps:P3348 ;
	wikibase:statementValue psv:P3348 ;
	wikibase:qualifier pq:P3348 ;
	wikibase:qualifierValue pqv:P3348 ;
	wikibase:reference pr:P3348 ;
	wikibase:referenceValue prv:P3348 ;
	wikibase:novalue wdno:P3348 ;
	wikibase:directClaimNormalized wdtn:P3348 ;
	wikibase:statementValueNormalized psn:P3348 ;
	wikibase:qualifierValueNormalized pqn:P3348 ;
	wikibase:referenceValueNormalized prn:P3348 .

p:P3348 a owl:ObjectProperty .

psv:P3348 a owl:ObjectProperty .

pqv:P3348 a owl:ObjectProperty .

prv:P3348 a owl:ObjectProperty .

wdt:P3348 a owl:DatatypeProperty .

ps:P3348 a owl:DatatypeProperty .

pq:P3348 a owl:DatatypeProperty .

pr:P3348 a owl:DatatypeProperty .

psn:P3348 a owl:ObjectProperty .

pqn:P3348 a owl:ObjectProperty .

prn:P3348 a owl:ObjectProperty .

wdtn:P3348 a owl:ObjectProperty .

wdno:P3348 a owl:Class ;
	owl:complementOf _:c386b08d607addc0067df974cd036028 .

_:c386b08d607addc0067df974cd036028 a owl:Restriction ;
	owl:onProperty wdt:P3348 ;
	owl:someValuesFrom owl:Thing .

wd:P8189 a wikibase:Property ;
	rdfs:label "National Library of Israel J9U ID"@en ;
	skos:prefLabel "National Library of Israel J9U ID"@en ;
	schema:name "National Library of Israel J9U ID"@en ;
	schema:description "identifier used by the National Library of Israel"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8189 ;
	wikibase:claim p:P8189 ;
	wikibase:statementProperty ps:P8189 ;
	wikibase:statementValue psv:P8189 ;
	wikibase:qualifier pq:P8189 ;
	wikibase:qualifierValue pqv:P8189 ;
	wikibase:reference pr:P8189 ;
	wikibase:referenceValue prv:P8189 ;
	wikibase:novalue wdno:P8189 ;
	wikibase:directClaimNormalized wdtn:P8189 ;
	wikibase:statementValueNormalized psn:P8189 ;
	wikibase:qualifierValueNormalized pqn:P8189 ;
	wikibase:referenceValueNormalized prn:P8189 .

p:P8189 a owl:ObjectProperty .

psv:P8189 a owl:ObjectProperty .

pqv:P8189 a owl:ObjectProperty .

prv:P8189 a owl:ObjectProperty .

wdt:P8189 a owl:DatatypeProperty .

ps:P8189 a owl:DatatypeProperty .

pq:P8189 a owl:DatatypeProperty .

pr:P8189 a owl:DatatypeProperty .

psn:P8189 a owl:ObjectProperty .

pqn:P8189 a owl:ObjectProperty .

prn:P8189 a owl:ObjectProperty .

wdtn:P8189 a owl:ObjectProperty .

wdno:P8189 a owl:Class ;
	owl:complementOf _:92bc7d972c1bed2e801eb42a65bd6c0a .

_:92bc7d972c1bed2e801eb42a65bd6c0a a owl:Restriction ;
	owl:onProperty wdt:P8189 ;
	owl:someValuesFrom owl:Thing .

wd:P7699 a wikibase:Property ;
	rdfs:label "National Library of Lithuania ID"@en ;
	skos:prefLabel "National Library of Lithuania ID"@en ;
	schema:name "National Library of Lithuania ID"@en ;
	schema:description "authority id at the National Library of Lithuania, part of VIAF (code LIH)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7699 ;
	wikibase:claim p:P7699 ;
	wikibase:statementProperty ps:P7699 ;
	wikibase:statementValue psv:P7699 ;
	wikibase:qualifier pq:P7699 ;
	wikibase:qualifierValue pqv:P7699 ;
	wikibase:reference pr:P7699 ;
	wikibase:referenceValue prv:P7699 ;
	wikibase:novalue wdno:P7699 ;
	wikibase:directClaimNormalized wdtn:P7699 ;
	wikibase:statementValueNormalized psn:P7699 ;
	wikibase:qualifierValueNormalized pqn:P7699 ;
	wikibase:referenceValueNormalized prn:P7699 .

p:P7699 a owl:ObjectProperty .

psv:P7699 a owl:ObjectProperty .

pqv:P7699 a owl:ObjectProperty .

prv:P7699 a owl:ObjectProperty .

wdt:P7699 a owl:DatatypeProperty .

ps:P7699 a owl:DatatypeProperty .

pq:P7699 a owl:DatatypeProperty .

pr:P7699 a owl:DatatypeProperty .

psn:P7699 a owl:ObjectProperty .

pqn:P7699 a owl:ObjectProperty .

prn:P7699 a owl:ObjectProperty .

wdtn:P7699 a owl:ObjectProperty .

wdno:P7699 a owl:Class ;
	owl:complementOf _:a3ac9ae3dd016936acf7a1078e55b7ee .

_:a3ac9ae3dd016936acf7a1078e55b7ee a owl:Restriction ;
	owl:onProperty wdt:P7699 ;
	owl:someValuesFrom owl:Thing .

wd:P3984 a wikibase:Property ;
	rdfs:label "subreddit"@en ;
	skos:prefLabel "subreddit"@en ;
	schema:name "subreddit"@en ;
	schema:description "name of the Reddit forum associated to this subject"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3984 ;
	wikibase:claim p:P3984 ;
	wikibase:statementProperty ps:P3984 ;
	wikibase:statementValue psv:P3984 ;
	wikibase:qualifier pq:P3984 ;
	wikibase:qualifierValue pqv:P3984 ;
	wikibase:reference pr:P3984 ;
	wikibase:referenceValue prv:P3984 ;
	wikibase:novalue wdno:P3984 ;
	wikibase:directClaimNormalized wdtn:P3984 ;
	wikibase:statementValueNormalized psn:P3984 ;
	wikibase:qualifierValueNormalized pqn:P3984 ;
	wikibase:referenceValueNormalized prn:P3984 .

p:P3984 a owl:ObjectProperty .

psv:P3984 a owl:ObjectProperty .

pqv:P3984 a owl:ObjectProperty .

prv:P3984 a owl:ObjectProperty .

wdt:P3984 a owl:DatatypeProperty .

ps:P3984 a owl:DatatypeProperty .

pq:P3984 a owl:DatatypeProperty .

pr:P3984 a owl:DatatypeProperty .

psn:P3984 a owl:ObjectProperty .

pqn:P3984 a owl:ObjectProperty .

prn:P3984 a owl:ObjectProperty .

wdtn:P3984 a owl:ObjectProperty .

wdno:P3984 a owl:Class ;
	owl:complementOf _:ced9987b2802f4ea5a958eceaa94012a .

_:ced9987b2802f4ea5a958eceaa94012a a owl:Restriction ;
	owl:onProperty wdt:P3984 ;
	owl:someValuesFrom owl:Thing .

wd:P8287 a wikibase:Property ;
	rdfs:label "Worlds Without End author ID"@en ;
	skos:prefLabel "Worlds Without End author ID"@en ;
	schema:name "Worlds Without End author ID"@en ;
	schema:description "identifier for authors at the website Worlds Without End"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8287 ;
	wikibase:claim p:P8287 ;
	wikibase:statementProperty ps:P8287 ;
	wikibase:statementValue psv:P8287 ;
	wikibase:qualifier pq:P8287 ;
	wikibase:qualifierValue pqv:P8287 ;
	wikibase:reference pr:P8287 ;
	wikibase:referenceValue prv:P8287 ;
	wikibase:novalue wdno:P8287 ;
	wikibase:directClaimNormalized wdtn:P8287 ;
	wikibase:statementValueNormalized psn:P8287 ;
	wikibase:qualifierValueNormalized pqn:P8287 ;
	wikibase:referenceValueNormalized prn:P8287 .

p:P8287 a owl:ObjectProperty .

psv:P8287 a owl:ObjectProperty .

pqv:P8287 a owl:ObjectProperty .

prv:P8287 a owl:ObjectProperty .

wdt:P8287 a owl:DatatypeProperty .

ps:P8287 a owl:DatatypeProperty .

pq:P8287 a owl:DatatypeProperty .

pr:P8287 a owl:DatatypeProperty .

psn:P8287 a owl:ObjectProperty .

pqn:P8287 a owl:ObjectProperty .

prn:P8287 a owl:ObjectProperty .

wdtn:P8287 a owl:ObjectProperty .

wdno:P8287 a owl:Class ;
	owl:complementOf _:491c11e837680f4c9952606a2ea93b60 .

_:491c11e837680f4c9952606a2ea93b60 a owl:Restriction ;
	owl:onProperty wdt:P8287 ;
	owl:someValuesFrom owl:Thing .

wd:P8125 a wikibase:Property ;
	rdfs:label "Fandango person ID"@en ;
	skos:prefLabel "Fandango person ID"@en ;
	schema:name "Fandango person ID"@en ;
	schema:description "identifier for a person in the Fandango film database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8125 ;
	wikibase:claim p:P8125 ;
	wikibase:statementProperty ps:P8125 ;
	wikibase:statementValue psv:P8125 ;
	wikibase:qualifier pq:P8125 ;
	wikibase:qualifierValue pqv:P8125 ;
	wikibase:reference pr:P8125 ;
	wikibase:referenceValue prv:P8125 ;
	wikibase:novalue wdno:P8125 ;
	wikibase:directClaimNormalized wdtn:P8125 ;
	wikibase:statementValueNormalized psn:P8125 ;
	wikibase:qualifierValueNormalized pqn:P8125 ;
	wikibase:referenceValueNormalized prn:P8125 .

p:P8125 a owl:ObjectProperty .

psv:P8125 a owl:ObjectProperty .

pqv:P8125 a owl:ObjectProperty .

prv:P8125 a owl:ObjectProperty .

wdt:P8125 a owl:DatatypeProperty .

ps:P8125 a owl:DatatypeProperty .

pq:P8125 a owl:DatatypeProperty .

pr:P8125 a owl:DatatypeProperty .

psn:P8125 a owl:ObjectProperty .

pqn:P8125 a owl:ObjectProperty .

prn:P8125 a owl:ObjectProperty .

wdtn:P8125 a owl:ObjectProperty .

wdno:P8125 a owl:Class ;
	owl:complementOf _:c22a2b0e2cd9649c673592f414d17de5 .

_:c22a2b0e2cd9649c673592f414d17de5 a owl:Restriction ;
	owl:onProperty wdt:P8125 ;
	owl:someValuesFrom owl:Thing .

wd:P4359 a wikibase:Property ;
	rdfs:label "gravsted.dk ID"@en ;
	skos:prefLabel "gravsted.dk ID"@en ;
	schema:name "gravsted.dk ID"@en ;
	schema:description "identifier for a person giving their burial place, in gravsted.dk"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4359 ;
	wikibase:claim p:P4359 ;
	wikibase:statementProperty ps:P4359 ;
	wikibase:statementValue psv:P4359 ;
	wikibase:qualifier pq:P4359 ;
	wikibase:qualifierValue pqv:P4359 ;
	wikibase:reference pr:P4359 ;
	wikibase:referenceValue prv:P4359 ;
	wikibase:novalue wdno:P4359 ;
	wikibase:directClaimNormalized wdtn:P4359 ;
	wikibase:statementValueNormalized psn:P4359 ;
	wikibase:qualifierValueNormalized pqn:P4359 ;
	wikibase:referenceValueNormalized prn:P4359 .

p:P4359 a owl:ObjectProperty .

psv:P4359 a owl:ObjectProperty .

pqv:P4359 a owl:ObjectProperty .

prv:P4359 a owl:ObjectProperty .

wdt:P4359 a owl:DatatypeProperty .

ps:P4359 a owl:DatatypeProperty .

pq:P4359 a owl:DatatypeProperty .

pr:P4359 a owl:DatatypeProperty .

psn:P4359 a owl:ObjectProperty .

pqn:P4359 a owl:ObjectProperty .

prn:P4359 a owl:ObjectProperty .

wdtn:P4359 a owl:ObjectProperty .

wdno:P4359 a owl:Class ;
	owl:complementOf _:6cff5c4218eb1bcc4683a84ea8abdab7 .

_:6cff5c4218eb1bcc4683a84ea8abdab7 a owl:Restriction ;
	owl:onProperty wdt:P4359 ;
	owl:someValuesFrom owl:Thing .

wd:P8408 a wikibase:Property ;
	rdfs:label "KBpedia ID"@en ;
	skos:prefLabel "KBpedia ID"@en ;
	schema:name "KBpedia ID"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8408 ;
	wikibase:claim p:P8408 ;
	wikibase:statementProperty ps:P8408 ;
	wikibase:statementValue psv:P8408 ;
	wikibase:qualifier pq:P8408 ;
	wikibase:qualifierValue pqv:P8408 ;
	wikibase:reference pr:P8408 ;
	wikibase:referenceValue prv:P8408 ;
	wikibase:novalue wdno:P8408 ;
	wikibase:directClaimNormalized wdtn:P8408 ;
	wikibase:statementValueNormalized psn:P8408 ;
	wikibase:qualifierValueNormalized pqn:P8408 ;
	wikibase:referenceValueNormalized prn:P8408 .

p:P8408 a owl:ObjectProperty .

psv:P8408 a owl:ObjectProperty .

pqv:P8408 a owl:ObjectProperty .

prv:P8408 a owl:ObjectProperty .

wdt:P8408 a owl:DatatypeProperty .

ps:P8408 a owl:DatatypeProperty .

pq:P8408 a owl:DatatypeProperty .

pr:P8408 a owl:DatatypeProperty .

psn:P8408 a owl:ObjectProperty .

pqn:P8408 a owl:ObjectProperty .

prn:P8408 a owl:ObjectProperty .

wdtn:P8408 a owl:ObjectProperty .

wdno:P8408 a owl:Class ;
	owl:complementOf _:a5c6b2a39aa8787e5b2a55612fc3d63e .

_:a5c6b2a39aa8787e5b2a55612fc3d63e a owl:Restriction ;
	owl:onProperty wdt:P8408 ;
	owl:someValuesFrom owl:Thing .

wd:P6262 a wikibase:Property ;
	rdfs:label "Fandom article ID"@en ;
	skos:prefLabel "Fandom article ID"@en ;
	schema:name "Fandom article ID"@en ;
	schema:description "identifier of an article on Fandom (Wikia). Format: subdomain:Page_title"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6262 ;
	wikibase:claim p:P6262 ;
	wikibase:statementProperty ps:P6262 ;
	wikibase:statementValue psv:P6262 ;
	wikibase:qualifier pq:P6262 ;
	wikibase:qualifierValue pqv:P6262 ;
	wikibase:reference pr:P6262 ;
	wikibase:referenceValue prv:P6262 ;
	wikibase:novalue wdno:P6262 ;
	wikibase:directClaimNormalized wdtn:P6262 ;
	wikibase:statementValueNormalized psn:P6262 ;
	wikibase:qualifierValueNormalized pqn:P6262 ;
	wikibase:referenceValueNormalized prn:P6262 .

p:P6262 a owl:ObjectProperty .

psv:P6262 a owl:ObjectProperty .

pqv:P6262 a owl:ObjectProperty .

prv:P6262 a owl:ObjectProperty .

wdt:P6262 a owl:DatatypeProperty .

ps:P6262 a owl:DatatypeProperty .

pq:P6262 a owl:DatatypeProperty .

pr:P6262 a owl:DatatypeProperty .

psn:P6262 a owl:ObjectProperty .

pqn:P6262 a owl:ObjectProperty .

prn:P6262 a owl:ObjectProperty .

wdtn:P6262 a owl:ObjectProperty .

wdno:P6262 a owl:Class ;
	owl:complementOf _:478870f14670f8deabe6c4bffb27a907 .

_:478870f14670f8deabe6c4bffb27a907 a owl:Restriction ;
	owl:onProperty wdt:P6262 ;
	owl:someValuesFrom owl:Thing .

wd:P4789 a wikibase:Property ;
	rdfs:label "Who's Who UK ID"@en ;
	skos:prefLabel "Who's Who UK ID"@en ;
	schema:name "Who's Who UK ID"@en ;
	schema:description "identifier in \"Who's Who\" or \"Who Was Who\", UK edition"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P4789 ;
	wikibase:claim p:P4789 ;
	wikibase:statementProperty ps:P4789 ;
	wikibase:statementValue psv:P4789 ;
	wikibase:qualifier pq:P4789 ;
	wikibase:qualifierValue pqv:P4789 ;
	wikibase:reference pr:P4789 ;
	wikibase:referenceValue prv:P4789 ;
	wikibase:novalue wdno:P4789 ;
	wikibase:directClaimNormalized wdtn:P4789 ;
	wikibase:statementValueNormalized psn:P4789 ;
	wikibase:qualifierValueNormalized pqn:P4789 ;
	wikibase:referenceValueNormalized prn:P4789 .

p:P4789 a owl:ObjectProperty .

psv:P4789 a owl:ObjectProperty .

pqv:P4789 a owl:ObjectProperty .

prv:P4789 a owl:ObjectProperty .

wdt:P4789 a owl:DatatypeProperty .

ps:P4789 a owl:DatatypeProperty .

pq:P4789 a owl:DatatypeProperty .

pr:P4789 a owl:DatatypeProperty .

psn:P4789 a owl:ObjectProperty .

pqn:P4789 a owl:ObjectProperty .

prn:P4789 a owl:ObjectProperty .

wdtn:P4789 a owl:ObjectProperty .

wdno:P4789 a owl:Class ;
	owl:complementOf _:e26a656303580beb7de2a9e322f38bfd .

_:e26a656303580beb7de2a9e322f38bfd a owl:Restriction ;
	owl:onProperty wdt:P4789 ;
	owl:someValuesFrom owl:Thing .

wd:P6868 a wikibase:Property ;
	rdfs:label "Hoopla artist ID"@en ;
	skos:prefLabel "Hoopla artist ID"@en ;
	schema:name "Hoopla artist ID"@en ;
	schema:description "identifier for an individual on Hoopla"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6868 ;
	wikibase:claim p:P6868 ;
	wikibase:statementProperty ps:P6868 ;
	wikibase:statementValue psv:P6868 ;
	wikibase:qualifier pq:P6868 ;
	wikibase:qualifierValue pqv:P6868 ;
	wikibase:reference pr:P6868 ;
	wikibase:referenceValue prv:P6868 ;
	wikibase:novalue wdno:P6868 ;
	wikibase:directClaimNormalized wdtn:P6868 ;
	wikibase:statementValueNormalized psn:P6868 ;
	wikibase:qualifierValueNormalized pqn:P6868 ;
	wikibase:referenceValueNormalized prn:P6868 .

p:P6868 a owl:ObjectProperty .

psv:P6868 a owl:ObjectProperty .

pqv:P6868 a owl:ObjectProperty .

prv:P6868 a owl:ObjectProperty .

wdt:P6868 a owl:DatatypeProperty .

ps:P6868 a owl:DatatypeProperty .

pq:P6868 a owl:DatatypeProperty .

pr:P6868 a owl:DatatypeProperty .

psn:P6868 a owl:ObjectProperty .

pqn:P6868 a owl:ObjectProperty .

prn:P6868 a owl:ObjectProperty .

wdtn:P6868 a owl:ObjectProperty .

wdno:P6868 a owl:Class ;
	owl:complementOf _:0b9583877f8b6fdf71b090ea07aa05eb .

_:0b9583877f8b6fdf71b090ea07aa05eb a owl:Restriction ;
	owl:onProperty wdt:P6868 ;
	owl:someValuesFrom owl:Thing .

wd:P8849 a wikibase:Property ;
	rdfs:label "CONOR.BG ID"@en ;
	skos:prefLabel "CONOR.BG ID"@en ;
	schema:name "CONOR.BG ID"@en ;
	schema:description "authority control ID in CONOR.BG (authority control of Bulgarian libraries)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8849 ;
	wikibase:claim p:P8849 ;
	wikibase:statementProperty ps:P8849 ;
	wikibase:statementValue psv:P8849 ;
	wikibase:qualifier pq:P8849 ;
	wikibase:qualifierValue pqv:P8849 ;
	wikibase:reference pr:P8849 ;
	wikibase:referenceValue prv:P8849 ;
	wikibase:novalue wdno:P8849 ;
	wikibase:directClaimNormalized wdtn:P8849 ;
	wikibase:statementValueNormalized psn:P8849 ;
	wikibase:qualifierValueNormalized pqn:P8849 ;
	wikibase:referenceValueNormalized prn:P8849 .

p:P8849 a owl:ObjectProperty .

psv:P8849 a owl:ObjectProperty .

pqv:P8849 a owl:ObjectProperty .

prv:P8849 a owl:ObjectProperty .

wdt:P8849 a owl:DatatypeProperty .

ps:P8849 a owl:DatatypeProperty .

pq:P8849 a owl:DatatypeProperty .

pr:P8849 a owl:DatatypeProperty .

psn:P8849 a owl:ObjectProperty .

pqn:P8849 a owl:ObjectProperty .

prn:P8849 a owl:ObjectProperty .

wdtn:P8849 a owl:ObjectProperty .

wdno:P8849 a owl:Class ;
	owl:complementOf _:25b8002056dfc393f6e70a0cb6b9aa84 .

_:25b8002056dfc393f6e70a0cb6b9aa84 a owl:Restriction ;
	owl:onProperty wdt:P8849 ;
	owl:someValuesFrom owl:Thing .

wd:P8851 a wikibase:Property ;
	rdfs:label "CONOR.SR ID"@en ;
	skos:prefLabel "CONOR.SR ID"@en ;
	schema:name "CONOR.SR ID"@en ;
	schema:description "authority control ID in CONOR.SR (authority control of Serbian libraries)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8851 ;
	wikibase:claim p:P8851 ;
	wikibase:statementProperty ps:P8851 ;
	wikibase:statementValue psv:P8851 ;
	wikibase:qualifier pq:P8851 ;
	wikibase:qualifierValue pqv:P8851 ;
	wikibase:reference pr:P8851 ;
	wikibase:referenceValue prv:P8851 ;
	wikibase:novalue wdno:P8851 ;
	wikibase:directClaimNormalized wdtn:P8851 ;
	wikibase:statementValueNormalized psn:P8851 ;
	wikibase:qualifierValueNormalized pqn:P8851 ;
	wikibase:referenceValueNormalized prn:P8851 .

p:P8851 a owl:ObjectProperty .

psv:P8851 a owl:ObjectProperty .

pqv:P8851 a owl:ObjectProperty .

prv:P8851 a owl:ObjectProperty .

wdt:P8851 a owl:DatatypeProperty .

ps:P8851 a owl:DatatypeProperty .

pq:P8851 a owl:DatatypeProperty .

pr:P8851 a owl:DatatypeProperty .

psn:P8851 a owl:ObjectProperty .

pqn:P8851 a owl:ObjectProperty .

prn:P8851 a owl:ObjectProperty .

wdtn:P8851 a owl:ObjectProperty .

wdno:P8851 a owl:Class ;
	owl:complementOf _:5831967d133dd456b1f13bda349681ec .

_:5831967d133dd456b1f13bda349681ec a owl:Restriction ;
	owl:onProperty wdt:P8851 ;
	owl:someValuesFrom owl:Thing .

wd:P5297 a wikibase:Property ;
	rdfs:label "Companies House officer ID"@en ;
	skos:prefLabel "Companies House officer ID"@en ;
	schema:name "Companies House officer ID"@en ;
	schema:description "identifier for an officer (natural person or legal person) of companies registered with Companies House in the United Kingdom"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P5297 ;
	wikibase:claim p:P5297 ;
	wikibase:statementProperty ps:P5297 ;
	wikibase:statementValue psv:P5297 ;
	wikibase:qualifier pq:P5297 ;
	wikibase:qualifierValue pqv:P5297 ;
	wikibase:reference pr:P5297 ;
	wikibase:referenceValue prv:P5297 ;
	wikibase:novalue wdno:P5297 ;
	wikibase:directClaimNormalized wdtn:P5297 ;
	wikibase:statementValueNormalized psn:P5297 ;
	wikibase:qualifierValueNormalized pqn:P5297 ;
	wikibase:referenceValueNormalized prn:P5297 .

p:P5297 a owl:ObjectProperty .

psv:P5297 a owl:ObjectProperty .

pqv:P5297 a owl:ObjectProperty .

prv:P5297 a owl:ObjectProperty .

wdt:P5297 a owl:DatatypeProperty .

ps:P5297 a owl:DatatypeProperty .

pq:P5297 a owl:DatatypeProperty .

pr:P5297 a owl:DatatypeProperty .

psn:P5297 a owl:ObjectProperty .

pqn:P5297 a owl:ObjectProperty .

prn:P5297 a owl:ObjectProperty .

wdtn:P5297 a owl:ObjectProperty .

wdno:P5297 a owl:Class ;
	owl:complementOf _:59f9ca3b898f4295d1cb25cab8bce76e .

_:59f9ca3b898f4295d1cb25cab8bce76e a owl:Restriction ;
	owl:onProperty wdt:P5297 ;
	owl:someValuesFrom owl:Thing .

wd:P8895 a wikibase:Property ;
	rdfs:label "All the Tropes identifier"@en ;
	skos:prefLabel "All the Tropes identifier"@en ;
	schema:name "All the Tropes identifier"@en ;
	schema:description "identifier in All the Tropes"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8895 ;
	wikibase:claim p:P8895 ;
	wikibase:statementProperty ps:P8895 ;
	wikibase:statementValue psv:P8895 ;
	wikibase:qualifier pq:P8895 ;
	wikibase:qualifierValue pqv:P8895 ;
	wikibase:reference pr:P8895 ;
	wikibase:referenceValue prv:P8895 ;
	wikibase:novalue wdno:P8895 ;
	wikibase:directClaimNormalized wdtn:P8895 ;
	wikibase:statementValueNormalized psn:P8895 ;
	wikibase:qualifierValueNormalized pqn:P8895 ;
	wikibase:referenceValueNormalized prn:P8895 .

p:P8895 a owl:ObjectProperty .

psv:P8895 a owl:ObjectProperty .

pqv:P8895 a owl:ObjectProperty .

prv:P8895 a owl:ObjectProperty .

wdt:P8895 a owl:DatatypeProperty .

ps:P8895 a owl:DatatypeProperty .

pq:P8895 a owl:DatatypeProperty .

pr:P8895 a owl:DatatypeProperty .

psn:P8895 a owl:ObjectProperty .

pqn:P8895 a owl:ObjectProperty .

prn:P8895 a owl:ObjectProperty .

wdtn:P8895 a owl:ObjectProperty .

wdno:P8895 a owl:Class ;
	owl:complementOf _:e64df87eb5b73cd4705f34db8a61e8f7 .

_:e64df87eb5b73cd4705f34db8a61e8f7 a owl:Restriction ;
	owl:onProperty wdt:P8895 ;
	owl:someValuesFrom owl:Thing .

wd:Q73555012 a wikibase:Item ;
	rdfs:label "works protected by copyrights"@en ;
	skos:prefLabel "works protected by copyrights"@en ;
	schema:name "works protected by copyrights"@en ;
	schema:description "literary and artistic works by creator protected by copyrights (author's rights)"@en .

wd:P7763 a wikibase:Property ;
	rdfs:label "copyright status as a creator"@en ;
	skos:prefLabel "copyright status as a creator"@en ;
	schema:name "copyright status as a creator"@en ;
	schema:description "states if the body of work published during the lifetime of this creator is still copyrighted or in the public domain"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P7763 ;
	wikibase:claim p:P7763 ;
	wikibase:statementProperty ps:P7763 ;
	wikibase:statementValue psv:P7763 ;
	wikibase:qualifier pq:P7763 ;
	wikibase:qualifierValue pqv:P7763 ;
	wikibase:reference pr:P7763 ;
	wikibase:referenceValue prv:P7763 ;
	wikibase:novalue wdno:P7763 .

p:P7763 a owl:ObjectProperty .

psv:P7763 a owl:ObjectProperty .

pqv:P7763 a owl:ObjectProperty .

prv:P7763 a owl:ObjectProperty .

wdt:P7763 a owl:ObjectProperty .

ps:P7763 a owl:ObjectProperty .

pq:P7763 a owl:ObjectProperty .

pr:P7763 a owl:ObjectProperty .

wdno:P7763 a owl:Class ;
	owl:complementOf _:411e90e0f4b16b1692b8335a565dac46 .

_:411e90e0f4b16b1692b8335a565dac46 a owl:Restriction ;
	owl:onProperty wdt:P7763 ;
	owl:someValuesFrom owl:Thing .

wd:Q21454969 a wikibase:Item ;
	rdfs:label "Douglas Adams"@en ;
	skos:prefLabel "Douglas Adams"@en ;
	schema:name "Douglas Adams"@en ;
	schema:description "British painter (1853-1920)"@en .

wd:P1889 a wikibase:Property ;
	rdfs:label "different from"@en ;
	skos:prefLabel "different from"@en ;
	schema:name "different from"@en ;
	schema:description "item that is different from another item, with which it may be confused"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1889 ;
	wikibase:claim p:P1889 ;
	wikibase:statementProperty ps:P1889 ;
	wikibase:statementValue psv:P1889 ;
	wikibase:qualifier pq:P1889 ;
	wikibase:qualifierValue pqv:P1889 ;
	wikibase:reference pr:P1889 ;
	wikibase:referenceValue prv:P1889 ;
	wikibase:novalue wdno:P1889 .

p:P1889 a owl:ObjectProperty .

psv:P1889 a owl:ObjectProperty .

pqv:P1889 a owl:ObjectProperty .

prv:P1889 a owl:ObjectProperty .

wdt:P1889 a owl:ObjectProperty .

ps:P1889 a owl:ObjectProperty .

pq:P1889 a owl:ObjectProperty .

pr:P1889 a owl:ObjectProperty .

wdno:P1889 a owl:Class ;
	owl:complementOf _:4fcc9ce770ae6fe14cb8672fb35a8bc9 .

_:4fcc9ce770ae6fe14cb8672fb35a8bc9 a owl:Restriction ;
	owl:onProperty wdt:P1889 ;
	owl:someValuesFrom owl:Thing .

wd:Q7994501 a wikibase:Item ;
	rdfs:label "White British"@en ;
	skos:prefLabel "White British"@en ;
	schema:name "White British"@en ;
	schema:description "ethnicity classification used in the 2011 United Kingdom Census"@en .

wd:P172 a wikibase:Property ;
	rdfs:label "ethnic group"@en ;
	skos:prefLabel "ethnic group"@en ;
	schema:name "ethnic group"@en ;
	schema:description "subject's ethnicity (consensus is that a VERY high standard of proof is needed for this field to be used. In general this means 1) the subject claims it themselves, or 2) it is widely agreed on by scholars, or 3) is fictional and portrayed as such)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P172 ;
	wikibase:claim p:P172 ;
	wikibase:statementProperty ps:P172 ;
	wikibase:statementValue psv:P172 ;
	wikibase:qualifier pq:P172 ;
	wikibase:qualifierValue pqv:P172 ;
	wikibase:reference pr:P172 ;
	wikibase:referenceValue prv:P172 ;
	wikibase:novalue wdno:P172 .

p:P172 a owl:ObjectProperty .

psv:P172 a owl:ObjectProperty .

pqv:P172 a owl:ObjectProperty .

prv:P172 a owl:ObjectProperty .

wdt:P172 a owl:ObjectProperty .

ps:P172 a owl:ObjectProperty .

pq:P172 a owl:ObjectProperty .

pr:P172 a owl:ObjectProperty .

wdno:P172 a owl:Class ;
	owl:complementOf _:1d5dd9615da4f91a82228c528a0f7cae .

_:1d5dd9615da4f91a82228c528a0f7cae a owl:Restriction ;
	owl:onProperty wdt:P172 ;
	owl:someValuesFrom owl:Thing .

wd:P937 a wikibase:Property ;
	rdfs:label "work location"@en ;
	skos:prefLabel "work location"@en ;
	schema:name "work location"@en ;
	schema:description "location where persons or organisations were actively participating in employment, business or other work"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P937 ;
	wikibase:claim p:P937 ;
	wikibase:statementProperty ps:P937 ;
	wikibase:statementValue psv:P937 ;
	wikibase:qualifier pq:P937 ;
	wikibase:qualifierValue pqv:P937 ;
	wikibase:reference pr:P937 ;
	wikibase:referenceValue prv:P937 ;
	wikibase:novalue wdno:P937 .

p:P937 a owl:ObjectProperty .

psv:P937 a owl:ObjectProperty .

pqv:P937 a owl:ObjectProperty .

prv:P937 a owl:ObjectProperty .

wdt:P937 a owl:ObjectProperty .

ps:P937 a owl:ObjectProperty .

pq:P937 a owl:ObjectProperty .

pr:P937 a owl:ObjectProperty .

wdno:P937 a owl:Class ;
	owl:complementOf _:ec6310960840e34847a25ffe4b3c10ec .

_:ec6310960840e34847a25ffe4b3c10ec a owl:Restriction ;
	owl:onProperty wdt:P937 ;
	owl:someValuesFrom owl:Thing .

wd:P742 a wikibase:Property ;
	rdfs:label "pseudonym"@en ;
	skos:prefLabel "pseudonym"@en ;
	schema:name "pseudonym"@en ;
	schema:description "alias used by someone (for nickname use P1449)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P742 ;
	wikibase:claim p:P742 ;
	wikibase:statementProperty ps:P742 ;
	wikibase:statementValue psv:P742 ;
	wikibase:qualifier pq:P742 ;
	wikibase:qualifierValue pqv:P742 ;
	wikibase:reference pr:P742 ;
	wikibase:referenceValue prv:P742 ;
	wikibase:novalue wdno:P742 .

p:P742 a owl:ObjectProperty .

psv:P742 a owl:ObjectProperty .

pqv:P742 a owl:ObjectProperty .

prv:P742 a owl:ObjectProperty .

wdt:P742 a owl:DatatypeProperty .

ps:P742 a owl:DatatypeProperty .

pq:P742 a owl:DatatypeProperty .

pr:P742 a owl:DatatypeProperty .

wdno:P742 a owl:Class ;
	owl:complementOf _:b389cd42eff1360c71b8a4fb6ed9492b .

_:b389cd42eff1360c71b8a4fb6ed9492b a owl:Restriction ;
	owl:onProperty wdt:P742 ;
	owl:someValuesFrom owl:Thing .

wd:P8385 a wikibase:Property ;
	rdfs:label "IDU person ID"@en ;
	skos:prefLabel "IDU person ID"@en ;
	schema:name "IDU person ID"@en ;
	schema:description "personal identifier for artists in Czechia in Theatre Institute database (IDU)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8385 ;
	wikibase:claim p:P8385 ;
	wikibase:statementProperty ps:P8385 ;
	wikibase:statementValue psv:P8385 ;
	wikibase:qualifier pq:P8385 ;
	wikibase:qualifierValue pqv:P8385 ;
	wikibase:reference pr:P8385 ;
	wikibase:referenceValue prv:P8385 ;
	wikibase:novalue wdno:P8385 ;
	wikibase:directClaimNormalized wdtn:P8385 ;
	wikibase:statementValueNormalized psn:P8385 ;
	wikibase:qualifierValueNormalized pqn:P8385 ;
	wikibase:referenceValueNormalized prn:P8385 .

p:P8385 a owl:ObjectProperty .

psv:P8385 a owl:ObjectProperty .

pqv:P8385 a owl:ObjectProperty .

prv:P8385 a owl:ObjectProperty .

wdt:P8385 a owl:DatatypeProperty .

ps:P8385 a owl:DatatypeProperty .

pq:P8385 a owl:DatatypeProperty .

pr:P8385 a owl:DatatypeProperty .

psn:P8385 a owl:ObjectProperty .

pqn:P8385 a owl:ObjectProperty .

prn:P8385 a owl:ObjectProperty .

wdtn:P8385 a owl:ObjectProperty .

wdno:P8385 a owl:Class ;
	owl:complementOf _:83df3cff30cd7a94280400b0ee8e7322 .

_:83df3cff30cd7a94280400b0ee8e7322 a owl:Restriction ;
	owl:onProperty wdt:P8385 ;
	owl:someValuesFrom owl:Thing .

wd:P9100 a wikibase:Property ;
	rdfs:label "GitHub topic"@en ;
	skos:prefLabel "GitHub topic"@en ;
	schema:name "GitHub topic"@en ;
	schema:description "GitHub topic for a repository or subject"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9100 ;
	wikibase:claim p:P9100 ;
	wikibase:statementProperty ps:P9100 ;
	wikibase:statementValue psv:P9100 ;
	wikibase:qualifier pq:P9100 ;
	wikibase:qualifierValue pqv:P9100 ;
	wikibase:reference pr:P9100 ;
	wikibase:referenceValue prv:P9100 ;
	wikibase:novalue wdno:P9100 ;
	wikibase:directClaimNormalized wdtn:P9100 ;
	wikibase:statementValueNormalized psn:P9100 ;
	wikibase:qualifierValueNormalized pqn:P9100 ;
	wikibase:referenceValueNormalized prn:P9100 .

p:P9100 a owl:ObjectProperty .

psv:P9100 a owl:ObjectProperty .

pqv:P9100 a owl:ObjectProperty .

prv:P9100 a owl:ObjectProperty .

wdt:P9100 a owl:DatatypeProperty .

ps:P9100 a owl:DatatypeProperty .

pq:P9100 a owl:DatatypeProperty .

pr:P9100 a owl:DatatypeProperty .

psn:P9100 a owl:ObjectProperty .

pqn:P9100 a owl:ObjectProperty .

prn:P9100 a owl:ObjectProperty .

wdtn:P9100 a owl:ObjectProperty .

wdno:P9100 a owl:Class ;
	owl:complementOf _:d1c0be2fa2529e0205b38303541ef4b4 .

_:d1c0be2fa2529e0205b38303541ef4b4 a owl:Restriction ;
	owl:onProperty wdt:P9100 ;
	owl:someValuesFrom owl:Thing .

wd:P9196 a wikibase:Property ;
	rdfs:label "BookBub author ID"@en ;
	skos:prefLabel "BookBub author ID"@en ;
	schema:name "BookBub author ID"@en ;
	schema:description "author identifier on BookBub website"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9196 ;
	wikibase:claim p:P9196 ;
	wikibase:statementProperty ps:P9196 ;
	wikibase:statementValue psv:P9196 ;
	wikibase:qualifier pq:P9196 ;
	wikibase:qualifierValue pqv:P9196 ;
	wikibase:reference pr:P9196 ;
	wikibase:referenceValue prv:P9196 ;
	wikibase:novalue wdno:P9196 ;
	wikibase:directClaimNormalized wdtn:P9196 ;
	wikibase:statementValueNormalized psn:P9196 ;
	wikibase:qualifierValueNormalized pqn:P9196 ;
	wikibase:referenceValueNormalized prn:P9196 .

p:P9196 a owl:ObjectProperty .

psv:P9196 a owl:ObjectProperty .

pqv:P9196 a owl:ObjectProperty .

prv:P9196 a owl:ObjectProperty .

wdt:P9196 a owl:DatatypeProperty .

ps:P9196 a owl:DatatypeProperty .

pq:P9196 a owl:DatatypeProperty .

pr:P9196 a owl:DatatypeProperty .

psn:P9196 a owl:ObjectProperty .

pqn:P9196 a owl:ObjectProperty .

prn:P9196 a owl:ObjectProperty .

wdtn:P9196 a owl:ObjectProperty .

wdno:P9196 a owl:Class ;
	owl:complementOf _:b850a3864d7b2db6096d7bf97facbde7 .

_:b850a3864d7b2db6096d7bf97facbde7 a owl:Restriction ;
	owl:onProperty wdt:P9196 ;
	owl:someValuesFrom owl:Thing .

wd:P9251 a wikibase:Property ;
	rdfs:label "Cyprus University of Technology ID"@en ;
	skos:prefLabel "Cyprus University of Technology ID"@en ;
	schema:name "Cyprus University of Technology ID"@en ;
	schema:description "identifier for an authority in the catalogue of the library of the Cyprus University of Technology"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9251 ;
	wikibase:claim p:P9251 ;
	wikibase:statementProperty ps:P9251 ;
	wikibase:statementValue psv:P9251 ;
	wikibase:qualifier pq:P9251 ;
	wikibase:qualifierValue pqv:P9251 ;
	wikibase:reference pr:P9251 ;
	wikibase:referenceValue prv:P9251 ;
	wikibase:novalue wdno:P9251 ;
	wikibase:directClaimNormalized wdtn:P9251 ;
	wikibase:statementValueNormalized psn:P9251 ;
	wikibase:qualifierValueNormalized pqn:P9251 ;
	wikibase:referenceValueNormalized prn:P9251 .

p:P9251 a owl:ObjectProperty .

psv:P9251 a owl:ObjectProperty .

pqv:P9251 a owl:ObjectProperty .

prv:P9251 a owl:ObjectProperty .

wdt:P9251 a owl:DatatypeProperty .

ps:P9251 a owl:DatatypeProperty .

pq:P9251 a owl:DatatypeProperty .

pr:P9251 a owl:DatatypeProperty .

psn:P9251 a owl:ObjectProperty .

pqn:P9251 a owl:ObjectProperty .

prn:P9251 a owl:ObjectProperty .

wdtn:P9251 a owl:ObjectProperty .

wdno:P9251 a owl:Class ;
	owl:complementOf _:0320c5cc9995360ccab743307729e7bd .

_:0320c5cc9995360ccab743307729e7bd a owl:Restriction ;
	owl:onProperty wdt:P9251 ;
	owl:someValuesFrom owl:Thing .

wd:P9307 a wikibase:Property ;
	rdfs:label "Fancyclopedia 3 ID"@en ;
	skos:prefLabel "Fancyclopedia 3 ID"@en ;
	schema:name "Fancyclopedia 3 ID"@en ;
	schema:description "identifier for a page on Fancyclopedia 3"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9307 ;
	wikibase:claim p:P9307 ;
	wikibase:statementProperty ps:P9307 ;
	wikibase:statementValue psv:P9307 ;
	wikibase:qualifier pq:P9307 ;
	wikibase:qualifierValue pqv:P9307 ;
	wikibase:reference pr:P9307 ;
	wikibase:referenceValue prv:P9307 ;
	wikibase:novalue wdno:P9307 ;
	wikibase:directClaimNormalized wdtn:P9307 ;
	wikibase:statementValueNormalized psn:P9307 ;
	wikibase:qualifierValueNormalized pqn:P9307 ;
	wikibase:referenceValueNormalized prn:P9307 .

p:P9307 a owl:ObjectProperty .

psv:P9307 a owl:ObjectProperty .

pqv:P9307 a owl:ObjectProperty .

prv:P9307 a owl:ObjectProperty .

wdt:P9307 a owl:DatatypeProperty .

ps:P9307 a owl:DatatypeProperty .

pq:P9307 a owl:DatatypeProperty .

pr:P9307 a owl:DatatypeProperty .

psn:P9307 a owl:ObjectProperty .

pqn:P9307 a owl:ObjectProperty .

prn:P9307 a owl:ObjectProperty .

wdtn:P9307 a owl:ObjectProperty .

wdno:P9307 a owl:Class ;
	owl:complementOf _:76860747ed404e7e4082021cdac1bf04 .

_:76860747ed404e7e4082021cdac1bf04 a owl:Restriction ;
	owl:onProperty wdt:P9307 ;
	owl:someValuesFrom owl:Thing .

wd:Q17122705 a wikibase:Item ;
	rdfs:label "brown"@en ;
	skos:prefLabel "brown"@en ;
	schema:name "brown"@en ;
	schema:description "eye color"@en .

wd:P1340 a wikibase:Property ;
	rdfs:label "eye color"@en ;
	skos:prefLabel "eye color"@en ;
	schema:name "eye color"@en ;
	schema:description "color of the irises of a person's eyes"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1340 ;
	wikibase:claim p:P1340 ;
	wikibase:statementProperty ps:P1340 ;
	wikibase:statementValue psv:P1340 ;
	wikibase:qualifier pq:P1340 ;
	wikibase:qualifierValue pqv:P1340 ;
	wikibase:reference pr:P1340 ;
	wikibase:referenceValue prv:P1340 ;
	wikibase:novalue wdno:P1340 .

p:P1340 a owl:ObjectProperty .

psv:P1340 a owl:ObjectProperty .

pqv:P1340 a owl:ObjectProperty .

prv:P1340 a owl:ObjectProperty .

wdt:P1340 a owl:ObjectProperty .

ps:P1340 a owl:ObjectProperty .

pq:P1340 a owl:ObjectProperty .

pr:P1340 a owl:ObjectProperty .

wdno:P1340 a owl:Class ;
	owl:complementOf _:0c7917ec73a49ec5dc8e46cbcb90fc23 .

_:0c7917ec73a49ec5dc8e46cbcb90fc23 a owl:Restriction ;
	owl:onProperty wdt:P1340 ;
	owl:someValuesFrom owl:Thing .

wd:Q3238422 a wikibase:Item ;
	rdfs:label "science fiction literature"@en ;
	skos:prefLabel "science fiction literature"@en ;
	schema:name "science fiction literature"@en ;
	schema:description "literary genre"@en .

wd:P101 a wikibase:Property ;
	rdfs:label "field of work"@en ;
	skos:prefLabel "field of work"@en ;
	schema:name "field of work"@en ;
	schema:description "specialization of a person or organization; see P106 for the occupation"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P101 ;
	wikibase:claim p:P101 ;
	wikibase:statementProperty ps:P101 ;
	wikibase:statementValue psv:P101 ;
	wikibase:qualifier pq:P101 ;
	wikibase:qualifierValue pqv:P101 ;
	wikibase:reference pr:P101 ;
	wikibase:referenceValue prv:P101 ;
	wikibase:novalue wdno:P101 .

p:P101 a owl:ObjectProperty .

psv:P101 a owl:ObjectProperty .

pqv:P101 a owl:ObjectProperty .

prv:P101 a owl:ObjectProperty .

wdt:P101 a owl:ObjectProperty .

ps:P101 a owl:ObjectProperty .

pq:P101 a owl:ObjectProperty .

pr:P101 a owl:ObjectProperty .

wdno:P101 a owl:Class ;
	owl:complementOf _:cbb504a009ed02903f241add7373826c .

_:cbb504a009ed02903f241add7373826c a owl:Restriction ;
	owl:onProperty wdt:P101 ;
	owl:someValuesFrom owl:Thing .

wd:P1813 a wikibase:Property ;
	rdfs:label "short name"@en ;
	skos:prefLabel "short name"@en ;
	schema:name "short name"@en ;
	schema:description "short name of a place, organisation, person, journal, Wikidata property, etc."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Monolingualtext> ;
	wikibase:directClaim wdt:P1813 ;
	wikibase:claim p:P1813 ;
	wikibase:statementProperty ps:P1813 ;
	wikibase:statementValue psv:P1813 ;
	wikibase:qualifier pq:P1813 ;
	wikibase:qualifierValue pqv:P1813 ;
	wikibase:reference pr:P1813 ;
	wikibase:referenceValue prv:P1813 ;
	wikibase:novalue wdno:P1813 .

p:P1813 a owl:ObjectProperty .

psv:P1813 a owl:ObjectProperty .

pqv:P1813 a owl:ObjectProperty .

prv:P1813 a owl:ObjectProperty .

wdt:P1813 a owl:DatatypeProperty .

ps:P1813 a owl:DatatypeProperty .

pq:P1813 a owl:DatatypeProperty .

pr:P1813 a owl:DatatypeProperty .

wdno:P1813 a owl:Class ;
	owl:complementOf _:4a7b6a517307eeaf8a892e11937a0f7f .

_:4a7b6a517307eeaf8a892e11937a0f7f a owl:Restriction ;
	owl:onProperty wdt:P1813 ;
	owl:someValuesFrom owl:Thing .

wd:Q2687578 a wikibase:Item ;
	rdfs:label "Inkpot Award"@en ;
	skos:prefLabel "Inkpot Award"@en ;
	schema:name "Inkpot Award"@en ;
	schema:description "comics award"@en .

wd:P166 a wikibase:Property ;
	rdfs:label "award received"@en ;
	skos:prefLabel "award received"@en ;
	schema:name "award received"@en ;
	schema:description "award or recognition received by a person, organization or creative work"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P166 ;
	wikibase:claim p:P166 ;
	wikibase:statementProperty ps:P166 ;
	wikibase:statementValue psv:P166 ;
	wikibase:qualifier pq:P166 ;
	wikibase:qualifierValue pqv:P166 ;
	wikibase:reference pr:P166 ;
	wikibase:referenceValue prv:P166 ;
	wikibase:novalue wdno:P166 .

p:P166 a owl:ObjectProperty .

psv:P166 a owl:ObjectProperty .

pqv:P166 a owl:ObjectProperty .

prv:P166 a owl:ObjectProperty .

wdt:P166 a owl:ObjectProperty .

ps:P166 a owl:ObjectProperty .

pq:P166 a owl:ObjectProperty .

pr:P166 a owl:ObjectProperty .

wdno:P166 a owl:Class ;
	owl:complementOf _:7d9248d3103ddecb66c1e5cdef1c87b5 .

_:7d9248d3103ddecb66c1e5cdef1c87b5 a owl:Restriction ;
	owl:onProperty wdt:P166 ;
	owl:someValuesFrom owl:Thing .

wd:P9807 a wikibase:Property ;
	rdfs:label "SNK ID"@en ;
	skos:prefLabel "SNK ID"@en ;
	schema:name "SNK ID"@en ;
	schema:description "authority control for the Slovak National Library, used in its catalog"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9807 ;
	wikibase:claim p:P9807 ;
	wikibase:statementProperty ps:P9807 ;
	wikibase:statementValue psv:P9807 ;
	wikibase:qualifier pq:P9807 ;
	wikibase:qualifierValue pqv:P9807 ;
	wikibase:reference pr:P9807 ;
	wikibase:referenceValue prv:P9807 ;
	wikibase:novalue wdno:P9807 ;
	wikibase:directClaimNormalized wdtn:P9807 ;
	wikibase:statementValueNormalized psn:P9807 ;
	wikibase:qualifierValueNormalized pqn:P9807 ;
	wikibase:referenceValueNormalized prn:P9807 .

p:P9807 a owl:ObjectProperty .

psv:P9807 a owl:ObjectProperty .

pqv:P9807 a owl:ObjectProperty .

prv:P9807 a owl:ObjectProperty .

wdt:P9807 a owl:DatatypeProperty .

ps:P9807 a owl:DatatypeProperty .

pq:P9807 a owl:DatatypeProperty .

pr:P9807 a owl:DatatypeProperty .

psn:P9807 a owl:ObjectProperty .

pqn:P9807 a owl:ObjectProperty .

prn:P9807 a owl:ObjectProperty .

wdtn:P9807 a owl:ObjectProperty .

wdno:P9807 a owl:Class ;
	owl:complementOf _:6dffc0a07c03f75ccb43b6967aa3d2cb .

_:6dffc0a07c03f75ccb43b6967aa3d2cb a owl:Restriction ;
	owl:onProperty wdt:P9807 ;
	owl:someValuesFrom owl:Thing .

wd:P9743 a wikibase:Property ;
	rdfs:label "Podchaser creator ID"@en ;
	skos:prefLabel "Podchaser creator ID"@en ;
	schema:name "Podchaser creator ID"@en ;
	schema:description "identifier of a person in the Podchaser database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9743 ;
	wikibase:claim p:P9743 ;
	wikibase:statementProperty ps:P9743 ;
	wikibase:statementValue psv:P9743 ;
	wikibase:qualifier pq:P9743 ;
	wikibase:qualifierValue pqv:P9743 ;
	wikibase:reference pr:P9743 ;
	wikibase:referenceValue prv:P9743 ;
	wikibase:novalue wdno:P9743 ;
	wikibase:directClaimNormalized wdtn:P9743 ;
	wikibase:statementValueNormalized psn:P9743 ;
	wikibase:qualifierValueNormalized pqn:P9743 ;
	wikibase:referenceValueNormalized prn:P9743 .

p:P9743 a owl:ObjectProperty .

psv:P9743 a owl:ObjectProperty .

pqv:P9743 a owl:ObjectProperty .

prv:P9743 a owl:ObjectProperty .

wdt:P9743 a owl:DatatypeProperty .

ps:P9743 a owl:DatatypeProperty .

pq:P9743 a owl:DatatypeProperty .

pr:P9743 a owl:DatatypeProperty .

psn:P9743 a owl:ObjectProperty .

pqn:P9743 a owl:ObjectProperty .

prn:P9743 a owl:ObjectProperty .

wdtn:P9743 a owl:ObjectProperty .

wdno:P9743 a owl:Class ;
	owl:complementOf _:842a6c5bee59a2dded99b544555bd972 .

_:842a6c5bee59a2dded99b544555bd972 a owl:Restriction ;
	owl:onProperty wdt:P9743 ;
	owl:someValuesFrom owl:Thing .

wd:P1149 a wikibase:Property ;
	rdfs:label "Library of Congress Classification"@en ;
	skos:prefLabel "Library of Congress Classification"@en ;
	schema:name "Library of Congress Classification"@en ;
	schema:description "subject classification identifier used in the Library of Congress Classification system"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P1149 ;
	wikibase:claim p:P1149 ;
	wikibase:statementProperty ps:P1149 ;
	wikibase:statementValue psv:P1149 ;
	wikibase:qualifier pq:P1149 ;
	wikibase:qualifierValue pqv:P1149 ;
	wikibase:reference pr:P1149 ;
	wikibase:referenceValue prv:P1149 ;
	wikibase:novalue wdno:P1149 ;
	wikibase:directClaimNormalized wdtn:P1149 ;
	wikibase:statementValueNormalized psn:P1149 ;
	wikibase:qualifierValueNormalized pqn:P1149 ;
	wikibase:referenceValueNormalized prn:P1149 .

p:P1149 a owl:ObjectProperty .

psv:P1149 a owl:ObjectProperty .

pqv:P1149 a owl:ObjectProperty .

prv:P1149 a owl:ObjectProperty .

wdt:P1149 a owl:DatatypeProperty .

ps:P1149 a owl:DatatypeProperty .

pq:P1149 a owl:DatatypeProperty .

pr:P1149 a owl:DatatypeProperty .

psn:P1149 a owl:ObjectProperty .

pqn:P1149 a owl:ObjectProperty .

prn:P1149 a owl:ObjectProperty .

wdtn:P1149 a owl:ObjectProperty .

wdno:P1149 a owl:Class ;
	owl:complementOf _:4cbe5124d45d6d2ed4d007e2a6f22828 .

_:4cbe5124d45d6d2ed4d007e2a6f22828 a owl:Restriction ;
	owl:onProperty wdt:P1149 ;
	owl:someValuesFrom owl:Thing .

wd:P9918 a wikibase:Property ;
	rdfs:label "Kallías ID"@en ;
	skos:prefLabel "Kallías ID"@en ;
	schema:name "Kallías ID"@en ;
	schema:description "identifier in Kallías, the catalog of the German Literature Archive Marbach (DLA Marbach)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9918 ;
	wikibase:claim p:P9918 ;
	wikibase:statementProperty ps:P9918 ;
	wikibase:statementValue psv:P9918 ;
	wikibase:qualifier pq:P9918 ;
	wikibase:qualifierValue pqv:P9918 ;
	wikibase:reference pr:P9918 ;
	wikibase:referenceValue prv:P9918 ;
	wikibase:novalue wdno:P9918 ;
	wikibase:directClaimNormalized wdtn:P9918 ;
	wikibase:statementValueNormalized psn:P9918 ;
	wikibase:qualifierValueNormalized pqn:P9918 ;
	wikibase:referenceValueNormalized prn:P9918 .

p:P9918 a owl:ObjectProperty .

psv:P9918 a owl:ObjectProperty .

pqv:P9918 a owl:ObjectProperty .

prv:P9918 a owl:ObjectProperty .

wdt:P9918 a owl:DatatypeProperty .

ps:P9918 a owl:DatatypeProperty .

pq:P9918 a owl:DatatypeProperty .

pr:P9918 a owl:DatatypeProperty .

psn:P9918 a owl:ObjectProperty .

pqn:P9918 a owl:ObjectProperty .

prn:P9918 a owl:ObjectProperty .

wdtn:P9918 a owl:ObjectProperty .

wdno:P9918 a owl:Class ;
	owl:complementOf _:3a830f1b05371046d5386f2381fc59e2 .

_:3a830f1b05371046d5386f2381fc59e2 a owl:Restriction ;
	owl:onProperty wdt:P9918 ;
	owl:someValuesFrom owl:Thing .

wd:P9995 a wikibase:Property ;
	rdfs:label "MYmovies person ID"@en ;
	skos:prefLabel "MYmovies person ID"@en ;
	schema:name "MYmovies person ID"@en ;
	schema:description "identifier for a person on the MYmovies film database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9995 ;
	wikibase:claim p:P9995 ;
	wikibase:statementProperty ps:P9995 ;
	wikibase:statementValue psv:P9995 ;
	wikibase:qualifier pq:P9995 ;
	wikibase:qualifierValue pqv:P9995 ;
	wikibase:reference pr:P9995 ;
	wikibase:referenceValue prv:P9995 ;
	wikibase:novalue wdno:P9995 ;
	wikibase:directClaimNormalized wdtn:P9995 ;
	wikibase:statementValueNormalized psn:P9995 ;
	wikibase:qualifierValueNormalized pqn:P9995 ;
	wikibase:referenceValueNormalized prn:P9995 .

p:P9995 a owl:ObjectProperty .

psv:P9995 a owl:ObjectProperty .

pqv:P9995 a owl:ObjectProperty .

prv:P9995 a owl:ObjectProperty .

wdt:P9995 a owl:DatatypeProperty .

ps:P9995 a owl:DatatypeProperty .

pq:P9995 a owl:DatatypeProperty .

pr:P9995 a owl:DatatypeProperty .

psn:P9995 a owl:ObjectProperty .

pqn:P9995 a owl:ObjectProperty .

prn:P9995 a owl:ObjectProperty .

wdtn:P9995 a owl:ObjectProperty .

wdno:P9995 a owl:Class ;
	owl:complementOf _:629752abb445ec4e7624b466b25ad991 .

_:629752abb445ec4e7624b466b25ad991 a owl:Restriction ;
	owl:onProperty wdt:P9995 ;
	owl:someValuesFrom owl:Thing .

wd:P9984 a wikibase:Property ;
	rdfs:label "CANTIC ID"@en ;
	skos:prefLabel "CANTIC ID"@en ;
	schema:name "CANTIC ID"@en ;
	schema:description "identifier for authority control managed by the Library of Catalonia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9984 ;
	wikibase:claim p:P9984 ;
	wikibase:statementProperty ps:P9984 ;
	wikibase:statementValue psv:P9984 ;
	wikibase:qualifier pq:P9984 ;
	wikibase:qualifierValue pqv:P9984 ;
	wikibase:reference pr:P9984 ;
	wikibase:referenceValue prv:P9984 ;
	wikibase:novalue wdno:P9984 ;
	wikibase:directClaimNormalized wdtn:P9984 ;
	wikibase:statementValueNormalized psn:P9984 ;
	wikibase:qualifierValueNormalized pqn:P9984 ;
	wikibase:referenceValueNormalized prn:P9984 .

p:P9984 a owl:ObjectProperty .

psv:P9984 a owl:ObjectProperty .

pqv:P9984 a owl:ObjectProperty .

prv:P9984 a owl:ObjectProperty .

wdt:P9984 a owl:DatatypeProperty .

ps:P9984 a owl:DatatypeProperty .

pq:P9984 a owl:DatatypeProperty .

pr:P9984 a owl:DatatypeProperty .

psn:P9984 a owl:ObjectProperty .

pqn:P9984 a owl:ObjectProperty .

prn:P9984 a owl:ObjectProperty .

wdtn:P9984 a owl:ObjectProperty .

wdno:P9984 a owl:Class ;
	owl:complementOf _:28cc59dfbf79a72a3b68613fe71b6c85 .

_:28cc59dfbf79a72a3b68613fe71b6c85 a owl:Restriction ;
	owl:onProperty wdt:P9984 ;
	owl:someValuesFrom owl:Thing .

wd:Q8722666 a wikibase:Item ;
	rdfs:label "Category:Films with screenplays by Douglas Adams"@en ;
	skos:prefLabel "Category:Films with screenplays by Douglas Adams"@en ;
	schema:name "Category:Films with screenplays by Douglas Adams"@en ;
	schema:description "Wikimedia category"@en .

wd:P7084 a wikibase:Property ;
	rdfs:label "related category"@en ;
	skos:prefLabel "related category"@en ;
	schema:name "related category"@en ;
	schema:description "Wikimedia category is related to this item"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P7084 ;
	wikibase:claim p:P7084 ;
	wikibase:statementProperty ps:P7084 ;
	wikibase:statementValue psv:P7084 ;
	wikibase:qualifier pq:P7084 ;
	wikibase:qualifierValue pqv:P7084 ;
	wikibase:reference pr:P7084 ;
	wikibase:referenceValue prv:P7084 ;
	wikibase:novalue wdno:P7084 .

p:P7084 a owl:ObjectProperty .

psv:P7084 a owl:ObjectProperty .

pqv:P7084 a owl:ObjectProperty .

prv:P7084 a owl:ObjectProperty .

wdt:P7084 a owl:ObjectProperty .

ps:P7084 a owl:ObjectProperty .

pq:P7084 a owl:ObjectProperty .

pr:P7084 a owl:ObjectProperty .

wdno:P7084 a owl:Class ;
	owl:complementOf _:2e6b7b5c4919ba32e901455d65c4ec70 .

_:2e6b7b5c4919ba32e901455d65c4ec70 a owl:Restriction ;
	owl:onProperty wdt:P7084 ;
	owl:someValuesFrom owl:Thing .

wd:P6173 a wikibase:Property ;
	rdfs:label "Bitraga author ID"@en ;
	skos:prefLabel "Bitraga author ID"@en ;
	schema:name "Bitraga author ID"@en ;
	schema:description "identifier for an author in the Digital Library of Galician Literary Translation database (Bitraga) of the University of Vigo"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P6173 ;
	wikibase:claim p:P6173 ;
	wikibase:statementProperty ps:P6173 ;
	wikibase:statementValue psv:P6173 ;
	wikibase:qualifier pq:P6173 ;
	wikibase:qualifierValue pqv:P6173 ;
	wikibase:reference pr:P6173 ;
	wikibase:referenceValue prv:P6173 ;
	wikibase:novalue wdno:P6173 ;
	wikibase:directClaimNormalized wdtn:P6173 ;
	wikibase:statementValueNormalized psn:P6173 ;
	wikibase:qualifierValueNormalized pqn:P6173 ;
	wikibase:referenceValueNormalized prn:P6173 .

p:P6173 a owl:ObjectProperty .

psv:P6173 a owl:ObjectProperty .

pqv:P6173 a owl:ObjectProperty .

prv:P6173 a owl:ObjectProperty .

wdt:P6173 a owl:DatatypeProperty .

ps:P6173 a owl:DatatypeProperty .

pq:P6173 a owl:DatatypeProperty .

pr:P6173 a owl:DatatypeProperty .

psn:P6173 a owl:ObjectProperty .

pqn:P6173 a owl:ObjectProperty .

prn:P6173 a owl:ObjectProperty .

wdtn:P6173 a owl:ObjectProperty .

wdno:P6173 a owl:Class ;
	owl:complementOf _:cccb09b3354e52e386f274c5234ac9c2 .

_:cccb09b3354e52e386f274c5234ac9c2 a owl:Restriction ;
	owl:onProperty wdt:P6173 ;
	owl:someValuesFrom owl:Thing .

wd:P18 a wikibase:Property ;
	rdfs:label "image"@en ;
	skos:prefLabel "image"@en ;
	schema:name "image"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#CommonsMedia> ;
	wikibase:directClaim wdt:P18 ;
	wikibase:claim p:P18 ;
	wikibase:statementProperty ps:P18 ;
	wikibase:statementValue psv:P18 ;
	wikibase:qualifier pq:P18 ;
	wikibase:qualifierValue pqv:P18 ;
	wikibase:reference pr:P18 ;
	wikibase:referenceValue prv:P18 ;
	wikibase:novalue wdno:P18 .

p:P18 a owl:ObjectProperty .

psv:P18 a owl:ObjectProperty .

pqv:P18 a owl:ObjectProperty .

prv:P18 a owl:ObjectProperty .

wdt:P18 a owl:ObjectProperty .

ps:P18 a owl:ObjectProperty .

pq:P18 a owl:ObjectProperty .

pr:P18 a owl:ObjectProperty .

wdno:P18 a owl:Class ;
	owl:complementOf _:90353c5ec33a5dc569985590a17a3551 .

_:90353c5ec33a5dc569985590a17a3551 a owl:Restriction ;
	owl:onProperty wdt:P18 ;
	owl:someValuesFrom owl:Thing .

wd:P7775 a wikibase:Property ;
	rdfs:label "RationalWiki ID"@en ;
	skos:prefLabel "RationalWiki ID"@en ;
	schema:name "RationalWiki ID"@en ;
	schema:description "identifier for an item at RationalWiki"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7775 ;
	wikibase:claim p:P7775 ;
	wikibase:statementProperty ps:P7775 ;
	wikibase:statementValue psv:P7775 ;
	wikibase:qualifier pq:P7775 ;
	wikibase:qualifierValue pqv:P7775 ;
	wikibase:reference pr:P7775 ;
	wikibase:referenceValue prv:P7775 ;
	wikibase:novalue wdno:P7775 ;
	wikibase:directClaimNormalized wdtn:P7775 ;
	wikibase:statementValueNormalized psn:P7775 ;
	wikibase:qualifierValueNormalized pqn:P7775 ;
	wikibase:referenceValueNormalized prn:P7775 .

p:P7775 a owl:ObjectProperty .

psv:P7775 a owl:ObjectProperty .

pqv:P7775 a owl:ObjectProperty .

prv:P7775 a owl:ObjectProperty .

wdt:P7775 a owl:DatatypeProperty .

ps:P7775 a owl:DatatypeProperty .

pq:P7775 a owl:DatatypeProperty .

pr:P7775 a owl:DatatypeProperty .

psn:P7775 a owl:ObjectProperty .

pqn:P7775 a owl:ObjectProperty .

prn:P7775 a owl:ObjectProperty .

wdtn:P7775 a owl:ObjectProperty .

wdno:P7775 a owl:Class ;
	owl:complementOf _:ddcde3a28b30cbe80b2ff0eb0ecf1a82 .

_:ddcde3a28b30cbe80b2ff0eb0ecf1a82 a owl:Restriction ;
	owl:onProperty wdt:P7775 ;
	owl:someValuesFrom owl:Thing .

wd:P10069 a wikibase:Property ;
	rdfs:label "Tabakalera ID"@en ;
	skos:prefLabel "Tabakalera ID"@en ;
	schema:name "Tabakalera ID"@en ;
	schema:description "identifier for an authority in the catalogue of Tabakalera, contemporary culture centre in Donostia"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10069 ;
	wikibase:claim p:P10069 ;
	wikibase:statementProperty ps:P10069 ;
	wikibase:statementValue psv:P10069 ;
	wikibase:qualifier pq:P10069 ;
	wikibase:qualifierValue pqv:P10069 ;
	wikibase:reference pr:P10069 ;
	wikibase:referenceValue prv:P10069 ;
	wikibase:novalue wdno:P10069 ;
	wikibase:directClaimNormalized wdtn:P10069 ;
	wikibase:statementValueNormalized psn:P10069 ;
	wikibase:qualifierValueNormalized pqn:P10069 ;
	wikibase:referenceValueNormalized prn:P10069 .

p:P10069 a owl:ObjectProperty .

psv:P10069 a owl:ObjectProperty .

pqv:P10069 a owl:ObjectProperty .

prv:P10069 a owl:ObjectProperty .

wdt:P10069 a owl:DatatypeProperty .

ps:P10069 a owl:DatatypeProperty .

pq:P10069 a owl:DatatypeProperty .

pr:P10069 a owl:DatatypeProperty .

psn:P10069 a owl:ObjectProperty .

pqn:P10069 a owl:ObjectProperty .

prn:P10069 a owl:ObjectProperty .

wdtn:P10069 a owl:ObjectProperty .

wdno:P10069 a owl:Class ;
	owl:complementOf _:28f7b9ecb45bba1f0bf23de900de0ec3 .

_:28f7b9ecb45bba1f0bf23de900de0ec3 a owl:Restriction ;
	owl:onProperty wdt:P10069 ;
	owl:someValuesFrom owl:Thing .

wd:P8292 a wikibase:Property ;
	rdfs:label "AusStage person ID"@en ;
	skos:prefLabel "AusStage person ID"@en ;
	schema:name "AusStage person ID"@en ;
	schema:description "identifier for a person at AusStage"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8292 ;
	wikibase:claim p:P8292 ;
	wikibase:statementProperty ps:P8292 ;
	wikibase:statementValue psv:P8292 ;
	wikibase:qualifier pq:P8292 ;
	wikibase:qualifierValue pqv:P8292 ;
	wikibase:reference pr:P8292 ;
	wikibase:referenceValue prv:P8292 ;
	wikibase:novalue wdno:P8292 ;
	wikibase:directClaimNormalized wdtn:P8292 ;
	wikibase:statementValueNormalized psn:P8292 ;
	wikibase:qualifierValueNormalized pqn:P8292 ;
	wikibase:referenceValueNormalized prn:P8292 .

p:P8292 a owl:ObjectProperty .

psv:P8292 a owl:ObjectProperty .

pqv:P8292 a owl:ObjectProperty .

prv:P8292 a owl:ObjectProperty .

wdt:P8292 a owl:DatatypeProperty .

ps:P8292 a owl:DatatypeProperty .

pq:P8292 a owl:DatatypeProperty .

pr:P8292 a owl:DatatypeProperty .

psn:P8292 a owl:ObjectProperty .

pqn:P8292 a owl:ObjectProperty .

prn:P8292 a owl:ObjectProperty .

wdtn:P8292 a owl:ObjectProperty .

wdno:P8292 a owl:Class ;
	owl:complementOf _:eb02089a00ac21fcff3b293aebc0de4e .

_:eb02089a00ac21fcff3b293aebc0de4e a owl:Restriction ;
	owl:onProperty wdt:P8292 ;
	owl:someValuesFrom owl:Thing .

wd:P10266 a wikibase:Property ;
	rdfs:label "AdoroCinema person ID"@en ;
	skos:prefLabel "AdoroCinema person ID"@en ;
	schema:name "AdoroCinema person ID"@en ;
	schema:description "identifier for a person in AdoroCinema database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10266 ;
	wikibase:claim p:P10266 ;
	wikibase:statementProperty ps:P10266 ;
	wikibase:statementValue psv:P10266 ;
	wikibase:qualifier pq:P10266 ;
	wikibase:qualifierValue pqv:P10266 ;
	wikibase:reference pr:P10266 ;
	wikibase:referenceValue prv:P10266 ;
	wikibase:novalue wdno:P10266 ;
	wikibase:directClaimNormalized wdtn:P10266 ;
	wikibase:statementValueNormalized psn:P10266 ;
	wikibase:qualifierValueNormalized pqn:P10266 ;
	wikibase:referenceValueNormalized prn:P10266 .

p:P10266 a owl:ObjectProperty .

psv:P10266 a owl:ObjectProperty .

pqv:P10266 a owl:ObjectProperty .

prv:P10266 a owl:ObjectProperty .

wdt:P10266 a owl:DatatypeProperty .

ps:P10266 a owl:DatatypeProperty .

pq:P10266 a owl:DatatypeProperty .

pr:P10266 a owl:DatatypeProperty .

psn:P10266 a owl:ObjectProperty .

pqn:P10266 a owl:ObjectProperty .

prn:P10266 a owl:ObjectProperty .

wdtn:P10266 a owl:ObjectProperty .

wdno:P10266 a owl:Class ;
	owl:complementOf _:a4f219a5b755f583fdf7c7f8b5fe6e9f .

_:a4f219a5b755f583fdf7c7f8b5fe6e9f a owl:Restriction ;
	owl:onProperty wdt:P10266 ;
	owl:someValuesFrom owl:Thing .

wd:P8313 a wikibase:Property ;
	rdfs:label "Den Store Danske ID"@en ;
	skos:prefLabel "Den Store Danske ID"@en ;
	schema:name "Den Store Danske ID"@en ;
	schema:description "identifier of an article in the online encyclopedia denstoredanske.lex.dk"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8313 ;
	wikibase:claim p:P8313 ;
	wikibase:statementProperty ps:P8313 ;
	wikibase:statementValue psv:P8313 ;
	wikibase:qualifier pq:P8313 ;
	wikibase:qualifierValue pqv:P8313 ;
	wikibase:reference pr:P8313 ;
	wikibase:referenceValue prv:P8313 ;
	wikibase:novalue wdno:P8313 ;
	wikibase:directClaimNormalized wdtn:P8313 ;
	wikibase:statementValueNormalized psn:P8313 ;
	wikibase:qualifierValueNormalized pqn:P8313 ;
	wikibase:referenceValueNormalized prn:P8313 .

p:P8313 a owl:ObjectProperty .

psv:P8313 a owl:ObjectProperty .

pqv:P8313 a owl:ObjectProperty .

prv:P8313 a owl:ObjectProperty .

wdt:P8313 a owl:DatatypeProperty .

ps:P8313 a owl:DatatypeProperty .

pq:P8313 a owl:DatatypeProperty .

pr:P8313 a owl:DatatypeProperty .

psn:P8313 a owl:ObjectProperty .

pqn:P8313 a owl:ObjectProperty .

prn:P8313 a owl:ObjectProperty .

wdtn:P8313 a owl:ObjectProperty .

wdno:P8313 a owl:Class ;
	owl:complementOf _:5ce4742f42f26afe436b747d2437666d .

_:5ce4742f42f26afe436b747d2437666d a owl:Restriction ;
	owl:onProperty wdt:P8313 ;
	owl:someValuesFrom owl:Thing .

wd:P10291 a wikibase:Property ;
	rdfs:label "Wikisimpsons ID"@en ;
	skos:prefLabel "Wikisimpsons ID"@en ;
	schema:name "Wikisimpsons ID"@en ;
	schema:description "identifier for a Wikisimpsons article"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10291 ;
	wikibase:claim p:P10291 ;
	wikibase:statementProperty ps:P10291 ;
	wikibase:statementValue psv:P10291 ;
	wikibase:qualifier pq:P10291 ;
	wikibase:qualifierValue pqv:P10291 ;
	wikibase:reference pr:P10291 ;
	wikibase:referenceValue prv:P10291 ;
	wikibase:novalue wdno:P10291 ;
	wikibase:directClaimNormalized wdtn:P10291 ;
	wikibase:statementValueNormalized psn:P10291 ;
	wikibase:qualifierValueNormalized pqn:P10291 ;
	wikibase:referenceValueNormalized prn:P10291 .

p:P10291 a owl:ObjectProperty .

psv:P10291 a owl:ObjectProperty .

pqv:P10291 a owl:ObjectProperty .

prv:P10291 a owl:ObjectProperty .

wdt:P10291 a owl:DatatypeProperty .

ps:P10291 a owl:DatatypeProperty .

pq:P10291 a owl:DatatypeProperty .

pr:P10291 a owl:DatatypeProperty .

psn:P10291 a owl:ObjectProperty .

pqn:P10291 a owl:ObjectProperty .

prn:P10291 a owl:ObjectProperty .

wdtn:P10291 a owl:ObjectProperty .

wdno:P10291 a owl:Class ;
	owl:complementOf _:bd24a8cb34114f442b0c7ad45d0c48ec .

_:bd24a8cb34114f442b0c7ad45d0c48ec a owl:Restriction ;
	owl:onProperty wdt:P10291 ;
	owl:someValuesFrom owl:Thing .

wd:P3368 a wikibase:Property ;
	rdfs:label "Prabook ID"@en ;
	skos:prefLabel "Prabook ID"@en ;
	schema:name "Prabook ID"@en ;
	schema:description "identifier of a person in the Prabook database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P3368 ;
	wikibase:claim p:P3368 ;
	wikibase:statementProperty ps:P3368 ;
	wikibase:statementValue psv:P3368 ;
	wikibase:qualifier pq:P3368 ;
	wikibase:qualifierValue pqv:P3368 ;
	wikibase:reference pr:P3368 ;
	wikibase:referenceValue prv:P3368 ;
	wikibase:novalue wdno:P3368 ;
	wikibase:directClaimNormalized wdtn:P3368 ;
	wikibase:statementValueNormalized psn:P3368 ;
	wikibase:qualifierValueNormalized pqn:P3368 ;
	wikibase:referenceValueNormalized prn:P3368 .

p:P3368 a owl:ObjectProperty .

psv:P3368 a owl:ObjectProperty .

pqv:P3368 a owl:ObjectProperty .

prv:P3368 a owl:ObjectProperty .

wdt:P3368 a owl:DatatypeProperty .

ps:P3368 a owl:DatatypeProperty .

pq:P3368 a owl:DatatypeProperty .

pr:P3368 a owl:DatatypeProperty .

psn:P3368 a owl:ObjectProperty .

pqn:P3368 a owl:ObjectProperty .

prn:P3368 a owl:ObjectProperty .

wdtn:P3368 a owl:ObjectProperty .

wdno:P3368 a owl:Class ;
	owl:complementOf _:87aa8d31d9d03853d5fda8175dacf620 .

_:87aa8d31d9d03853d5fda8175dacf620 a owl:Restriction ;
	owl:onProperty wdt:P3368 ;
	owl:someValuesFrom owl:Thing .

wd:P10387 a wikibase:Property ;
	rdfs:label "Databazeknih.cz author ID"@en ;
	skos:prefLabel "Databazeknih.cz author ID"@en ;
	schema:name "Databazeknih.cz author ID"@en ;
	schema:description "numeric ID of author in Databáze knih"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10387 ;
	wikibase:claim p:P10387 ;
	wikibase:statementProperty ps:P10387 ;
	wikibase:statementValue psv:P10387 ;
	wikibase:qualifier pq:P10387 ;
	wikibase:qualifierValue pqv:P10387 ;
	wikibase:reference pr:P10387 ;
	wikibase:referenceValue prv:P10387 ;
	wikibase:novalue wdno:P10387 ;
	wikibase:directClaimNormalized wdtn:P10387 ;
	wikibase:statementValueNormalized psn:P10387 ;
	wikibase:qualifierValueNormalized pqn:P10387 ;
	wikibase:referenceValueNormalized prn:P10387 .

p:P10387 a owl:ObjectProperty .

psv:P10387 a owl:ObjectProperty .

pqv:P10387 a owl:ObjectProperty .

prv:P10387 a owl:ObjectProperty .

wdt:P10387 a owl:DatatypeProperty .

ps:P10387 a owl:DatatypeProperty .

pq:P10387 a owl:DatatypeProperty .

pr:P10387 a owl:DatatypeProperty .

psn:P10387 a owl:ObjectProperty .

pqn:P10387 a owl:ObjectProperty .

prn:P10387 a owl:ObjectProperty .

wdtn:P10387 a owl:ObjectProperty .

wdno:P10387 a owl:Class ;
	owl:complementOf _:87f9b7fd85f92799cc01bdd80931e8ec .

_:87f9b7fd85f92799cc01bdd80931e8ec a owl:Restriction ;
	owl:onProperty wdt:P10387 ;
	owl:someValuesFrom owl:Thing .

wd:P10553 a wikibase:Property ;
	rdfs:label "IxTheo authority ID"@en ;
	skos:prefLabel "IxTheo authority ID"@en ;
	schema:name "IxTheo authority ID"@en ;
	schema:description "identifier for a person or an organization in the Index Theologicus (IxTheo)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10553 ;
	wikibase:claim p:P10553 ;
	wikibase:statementProperty ps:P10553 ;
	wikibase:statementValue psv:P10553 ;
	wikibase:qualifier pq:P10553 ;
	wikibase:qualifierValue pqv:P10553 ;
	wikibase:reference pr:P10553 ;
	wikibase:referenceValue prv:P10553 ;
	wikibase:novalue wdno:P10553 ;
	wikibase:directClaimNormalized wdtn:P10553 ;
	wikibase:statementValueNormalized psn:P10553 ;
	wikibase:qualifierValueNormalized pqn:P10553 ;
	wikibase:referenceValueNormalized prn:P10553 .

p:P10553 a owl:ObjectProperty .

psv:P10553 a owl:ObjectProperty .

pqv:P10553 a owl:ObjectProperty .

prv:P10553 a owl:ObjectProperty .

wdt:P10553 a owl:DatatypeProperty .

ps:P10553 a owl:DatatypeProperty .

pq:P10553 a owl:DatatypeProperty .

pr:P10553 a owl:DatatypeProperty .

psn:P10553 a owl:ObjectProperty .

pqn:P10553 a owl:ObjectProperty .

prn:P10553 a owl:ObjectProperty .

wdtn:P10553 a owl:ObjectProperty .

wdno:P10553 a owl:Class ;
	owl:complementOf _:5e95bbbff6dd0000831a1817a5ff1b68 .

_:5e95bbbff6dd0000831a1817a5ff1b68 a owl:Restriction ;
	owl:onProperty wdt:P10553 ;
	owl:someValuesFrom owl:Thing .

wd:P9965 a wikibase:Property ;
	rdfs:label "Musik-Sammler.de artist ID"@en ;
	skos:prefLabel "Musik-Sammler.de artist ID"@en ;
	schema:name "Musik-Sammler.de artist ID"@en ;
	schema:description "numeric identifier for an artist (person, group) in the Musik-Sammler.de database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P9965 ;
	wikibase:claim p:P9965 ;
	wikibase:statementProperty ps:P9965 ;
	wikibase:statementValue psv:P9965 ;
	wikibase:qualifier pq:P9965 ;
	wikibase:qualifierValue pqv:P9965 ;
	wikibase:reference pr:P9965 ;
	wikibase:referenceValue prv:P9965 ;
	wikibase:novalue wdno:P9965 ;
	wikibase:directClaimNormalized wdtn:P9965 ;
	wikibase:statementValueNormalized psn:P9965 ;
	wikibase:qualifierValueNormalized pqn:P9965 ;
	wikibase:referenceValueNormalized prn:P9965 .

p:P9965 a owl:ObjectProperty .

psv:P9965 a owl:ObjectProperty .

pqv:P9965 a owl:ObjectProperty .

prv:P9965 a owl:ObjectProperty .

wdt:P9965 a owl:DatatypeProperty .

ps:P9965 a owl:DatatypeProperty .

pq:P9965 a owl:DatatypeProperty .

pr:P9965 a owl:DatatypeProperty .

psn:P9965 a owl:ObjectProperty .

pqn:P9965 a owl:ObjectProperty .

prn:P9965 a owl:ObjectProperty .

wdtn:P9965 a owl:ObjectProperty .

wdno:P9965 a owl:Class ;
	owl:complementOf _:ee06fe9065455de2722534d79da89b10 .

_:ee06fe9065455de2722534d79da89b10 a owl:Restriction ;
	owl:onProperty wdt:P9965 ;
	owl:someValuesFrom owl:Thing .

wd:P10337 a wikibase:Property ;
	rdfs:label "doollee.com playwright ID"@en ;
	skos:prefLabel "doollee.com playwright ID"@en ;
	schema:name "doollee.com playwright ID"@en ;
	schema:description "identifier for a playwright on doollee.com"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P10337 ;
	wikibase:claim p:P10337 ;
	wikibase:statementProperty ps:P10337 ;
	wikibase:statementValue psv:P10337 ;
	wikibase:qualifier pq:P10337 ;
	wikibase:qualifierValue pqv:P10337 ;
	wikibase:reference pr:P10337 ;
	wikibase:referenceValue prv:P10337 ;
	wikibase:novalue wdno:P10337 ;
	wikibase:directClaimNormalized wdtn:P10337 ;
	wikibase:statementValueNormalized psn:P10337 ;
	wikibase:qualifierValueNormalized pqn:P10337 ;
	wikibase:referenceValueNormalized prn:P10337 .

p:P10337 a owl:ObjectProperty .

psv:P10337 a owl:ObjectProperty .

pqv:P10337 a owl:ObjectProperty .

prv:P10337 a owl:ObjectProperty .

wdt:P10337 a owl:DatatypeProperty .

ps:P10337 a owl:DatatypeProperty .

pq:P10337 a owl:DatatypeProperty .

pr:P10337 a owl:DatatypeProperty .

psn:P10337 a owl:ObjectProperty .

pqn:P10337 a owl:ObjectProperty .

prn:P10337 a owl:ObjectProperty .

wdtn:P10337 a owl:ObjectProperty .

wdno:P10337 a owl:Class ;
	owl:complementOf _:50e30077e3432b43b220183a80f5b966 .

_:50e30077e3432b43b220183a80f5b966 a owl:Restriction ;
	owl:onProperty wdt:P10337 ;
	owl:someValuesFrom owl:Thing .

wd:P7502 a wikibase:Property ;
	rdfs:label "Golden ID"@en ;
	skos:prefLabel "Golden ID"@en ;
	schema:name "Golden ID"@en ;
	schema:description "page ID for the Golden knowledge base"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P7502 ;
	wikibase:claim p:P7502 ;
	wikibase:statementProperty ps:P7502 ;
	wikibase:statementValue psv:P7502 ;
	wikibase:qualifier pq:P7502 ;
	wikibase:qualifierValue pqv:P7502 ;
	wikibase:reference pr:P7502 ;
	wikibase:referenceValue prv:P7502 ;
	wikibase:novalue wdno:P7502 ;
	wikibase:directClaimNormalized wdtn:P7502 ;
	wikibase:statementValueNormalized psn:P7502 ;
	wikibase:qualifierValueNormalized pqn:P7502 ;
	wikibase:referenceValueNormalized prn:P7502 .

p:P7502 a owl:ObjectProperty .

psv:P7502 a owl:ObjectProperty .

pqv:P7502 a owl:ObjectProperty .

prv:P7502 a owl:ObjectProperty .

wdt:P7502 a owl:DatatypeProperty .

ps:P7502 a owl:DatatypeProperty .

pq:P7502 a owl:DatatypeProperty .

pr:P7502 a owl:DatatypeProperty .

psn:P7502 a owl:ObjectProperty .

pqn:P7502 a owl:ObjectProperty .

prn:P7502 a owl:ObjectProperty .

wdtn:P7502 a owl:ObjectProperty .

wdno:P7502 a owl:Class ;
	owl:complementOf _:e4c93b5c9c70a948cef90c96cc544a76 .

_:e4c93b5c9c70a948cef90c96cc544a76 a owl:Restriction ;
	owl:onProperty wdt:P7502 ;
	owl:someValuesFrom owl:Thing .

wd:P1477 a wikibase:Property ;
	rdfs:label "birth name"@en ;
	skos:prefLabel "birth name"@en ;
	schema:name "birth name"@en ;
	schema:description "full name of a person at birth, if different from their current, generally used name"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Monolingualtext> ;
	wikibase:directClaim wdt:P1477 ;
	wikibase:claim p:P1477 ;
	wikibase:statementProperty ps:P1477 ;
	wikibase:statementValue psv:P1477 ;
	wikibase:qualifier pq:P1477 ;
	wikibase:qualifierValue pqv:P1477 ;
	wikibase:reference pr:P1477 ;
	wikibase:referenceValue prv:P1477 ;
	wikibase:novalue wdno:P1477 .

p:P1477 a owl:ObjectProperty .

psv:P1477 a owl:ObjectProperty .

pqv:P1477 a owl:ObjectProperty .

prv:P1477 a owl:ObjectProperty .

wdt:P1477 a owl:DatatypeProperty .

ps:P1477 a owl:DatatypeProperty .

pq:P1477 a owl:DatatypeProperty .

pr:P1477 a owl:DatatypeProperty .

wdno:P1477 a owl:Class ;
	owl:complementOf _:181933ff5f682f9559057d62c24ead56 .

_:181933ff5f682f9559057d62c24ead56 a owl:Restriction ;
	owl:onProperty wdt:P1477 ;
	owl:someValuesFrom owl:Thing .

wd:P1559 a wikibase:Property ;
	rdfs:label "name in native language"@en ;
	skos:prefLabel "name in native language"@en ;
	schema:name "name in native language"@en ;
	schema:description "name of a person in their native language"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Monolingualtext> ;
	wikibase:directClaim wdt:P1559 ;
	wikibase:claim p:P1559 ;
	wikibase:statementProperty ps:P1559 ;
	wikibase:statementValue psv:P1559 ;
	wikibase:qualifier pq:P1559 ;
	wikibase:qualifierValue pqv:P1559 ;
	wikibase:reference pr:P1559 ;
	wikibase:referenceValue prv:P1559 ;
	wikibase:novalue wdno:P1559 .

p:P1559 a owl:ObjectProperty .

psv:P1559 a owl:ObjectProperty .

pqv:P1559 a owl:ObjectProperty .

prv:P1559 a owl:ObjectProperty .

wdt:P1559 a owl:DatatypeProperty .

ps:P1559 a owl:DatatypeProperty .

pq:P1559 a owl:DatatypeProperty .

pr:P1559 a owl:DatatypeProperty .

wdno:P1559 a owl:Class ;
	owl:complementOf _:10797c27ae4368790f83843fcd7206c2 .

_:10797c27ae4368790f83843fcd7206c2 a owl:Restriction ;
	owl:onProperty wdt:P1559 ;
	owl:someValuesFrom owl:Thing .

wd:Q19938912 a wikibase:Item ;
	rdfs:label "BnF authorities"@en ;
	skos:prefLabel "BnF authorities"@en ;
	schema:name "BnF authorities"@en ;
	schema:description "authority file for persons, organisations, works, topics, and geographic places, of the French National Library"@en .

wd:P248 a wikibase:Property ;
	rdfs:label "stated in"@en ;
	skos:prefLabel "stated in"@en ;
	schema:name "stated in"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P248 ;
	wikibase:claim p:P248 ;
	wikibase:statementProperty ps:P248 ;
	wikibase:statementValue psv:P248 ;
	wikibase:qualifier pq:P248 ;
	wikibase:qualifierValue pqv:P248 ;
	wikibase:reference pr:P248 ;
	wikibase:referenceValue prv:P248 ;
	wikibase:novalue wdno:P248 .

p:P248 a owl:ObjectProperty .

psv:P248 a owl:ObjectProperty .

pqv:P248 a owl:ObjectProperty .

prv:P248 a owl:ObjectProperty .

wdt:P248 a owl:ObjectProperty .

ps:P248 a owl:ObjectProperty .

pq:P248 a owl:ObjectProperty .

pr:P248 a owl:ObjectProperty .

wdno:P248 a owl:Class ;
	owl:complementOf _:a2b31078afaf5caae811f4ac846f5f35 .

_:a2b31078afaf5caae811f4ac846f5f35 a owl:Restriction ;
	owl:onProperty wdt:P248 ;
	owl:someValuesFrom owl:Thing .

wd:Q150 a wikibase:Item ;
	rdfs:label "French"@en ;
	skos:prefLabel "French"@en ;
	schema:name "French"@en ;
	schema:description "Romance language"@en .

wd:P407 a wikibase:Property ;
	rdfs:label "language of work or name"@en ;
	skos:prefLabel "language of work or name"@en ;
	schema:name "language of work or name"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P407 ;
	wikibase:claim p:P407 ;
	wikibase:statementProperty ps:P407 ;
	wikibase:statementValue psv:P407 ;
	wikibase:qualifier pq:P407 ;
	wikibase:qualifierValue pqv:P407 ;
	wikibase:reference pr:P407 ;
	wikibase:referenceValue prv:P407 ;
	wikibase:novalue wdno:P407 .

p:P407 a owl:ObjectProperty .

psv:P407 a owl:ObjectProperty .

pqv:P407 a owl:ObjectProperty .

prv:P407 a owl:ObjectProperty .

wdt:P407 a owl:ObjectProperty .

ps:P407 a owl:ObjectProperty .

pq:P407 a owl:ObjectProperty .

pr:P407 a owl:ObjectProperty .

wdno:P407 a owl:Class ;
	owl:complementOf _:7ecb658fb35d6b90057eeb2a2a932c62 .

_:7ecb658fb35d6b90057eeb2a2a932c62 a owl:Restriction ;
	owl:onProperty wdt:P407 ;
	owl:someValuesFrom owl:Thing .

wd:P813 a wikibase:Property ;
	rdfs:label "retrieved"@en ;
	skos:prefLabel "retrieved"@en ;
	schema:name "retrieved"@en ;
	schema:description "date or point in time that information was retrieved from a database or website (for use in online sources)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P813 ;
	wikibase:claim p:P813 ;
	wikibase:statementProperty ps:P813 ;
	wikibase:statementValue psv:P813 ;
	wikibase:qualifier pq:P813 ;
	wikibase:qualifierValue pqv:P813 ;
	wikibase:reference pr:P813 ;
	wikibase:referenceValue prv:P813 ;
	wikibase:novalue wdno:P813 .

p:P813 a owl:ObjectProperty .

psv:P813 a owl:ObjectProperty .

pqv:P813 a owl:ObjectProperty .

prv:P813 a owl:ObjectProperty .

wdt:P813 a owl:DatatypeProperty .

ps:P813 a owl:DatatypeProperty .

pq:P813 a owl:DatatypeProperty .

pr:P813 a owl:DatatypeProperty .

wdno:P813 a owl:Class ;
	owl:complementOf _:a84dea0fd38ed74f926ea4bdef778770 .

_:a84dea0fd38ed74f926ea4bdef778770 a owl:Restriction ;
	owl:onProperty wdt:P813 ;
	owl:someValuesFrom owl:Thing .

wd:Q36578 a wikibase:Item ;
	rdfs:label "Gemeinsame Normdatei"@en ;
	skos:prefLabel "Gemeinsame Normdatei"@en ;
	schema:name "Gemeinsame Normdatei"@en ;
	schema:description "German National Library authority file for personal names, subject headings and corporate bodies"@en .

wd:Q188 a wikibase:Item ;
	rdfs:label "German"@en ;
	skos:prefLabel "German"@en ;
	schema:name "German"@en ;
	schema:description "West Germanic language spoken mainly in Central Europe"@en .

wd:Q47757534 a wikibase:Item ;
	rdfs:label "IdRef"@en ;
	skos:prefLabel "IdRef"@en ;
	schema:name "IdRef"@en ;
	schema:description "SUDOC authority control site"@en .

wd:Q193563 a wikibase:Item ;
	rdfs:label "Bibliothèque nationale de France"@en ;
	skos:prefLabel "Bibliothèque nationale de France"@en ;
	schema:name "Bibliothèque nationale de France"@en ;
	schema:description "National Library of France"@en .

wd:P854 a wikibase:Property ;
	rdfs:label "reference URL"@en ;
	skos:prefLabel "reference URL"@en ;
	schema:name "reference URL"@en ;
	schema:description "should be used for Internet URLs as references. Use \"Wikimedia import URL\" (P4656) for imports from WMF sites"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P854 ;
	wikibase:claim p:P854 ;
	wikibase:statementProperty ps:P854 ;
	wikibase:statementValue psv:P854 ;
	wikibase:qualifier pq:P854 ;
	wikibase:qualifierValue pqv:P854 ;
	wikibase:reference pr:P854 ;
	wikibase:referenceValue prv:P854 ;
	wikibase:novalue wdno:P854 .

p:P854 a owl:ObjectProperty .

psv:P854 a owl:ObjectProperty .

pqv:P854 a owl:ObjectProperty .

prv:P854 a owl:ObjectProperty .

wdt:P854 a owl:ObjectProperty .

ps:P854 a owl:ObjectProperty .

pq:P854 a owl:ObjectProperty .

pr:P854 a owl:ObjectProperty .

wdno:P854 a owl:Class ;
	owl:complementOf _:7317e7e5a3edc1980ecfe7616bb5fa1d .

_:7317e7e5a3edc1980ecfe7616bb5fa1d a owl:Restriction ;
	owl:onProperty wdt:P854 ;
	owl:someValuesFrom owl:Thing .

wd:P580 a wikibase:Property ;
	rdfs:label "start time"@en ;
	skos:prefLabel "start time"@en ;
	schema:name "start time"@en ;
	schema:description "time a time period starts"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P580 ;
	wikibase:claim p:P580 ;
	wikibase:statementProperty ps:P580 ;
	wikibase:statementValue psv:P580 ;
	wikibase:qualifier pq:P580 ;
	wikibase:qualifierValue pqv:P580 ;
	wikibase:reference pr:P580 ;
	wikibase:referenceValue prv:P580 ;
	wikibase:novalue wdno:P580 .

p:P580 a owl:ObjectProperty .

psv:P580 a owl:ObjectProperty .

pqv:P580 a owl:ObjectProperty .

prv:P580 a owl:ObjectProperty .

wdt:P580 a owl:DatatypeProperty .

ps:P580 a owl:DatatypeProperty .

pq:P580 a owl:DatatypeProperty .

pr:P580 a owl:DatatypeProperty .

wdno:P580 a owl:Class ;
	owl:complementOf _:a4f53844ef049c00e67a7c9b973324e1 .

_:a4f53844ef049c00e67a7c9b973324e1 a owl:Restriction ;
	owl:onProperty wdt:P580 ;
	owl:someValuesFrom owl:Thing .

wd:Q2567271 a wikibase:Item ;
	rdfs:label "Who's Who"@en ;
	skos:prefLabel "Who's Who"@en ;
	schema:name "Who's Who"@en ;
	schema:description "British autobiographical dictionary"@en .

wd:Q15222191 a wikibase:Item ;
	rdfs:label "general catalog of BnF"@en ;
	skos:prefLabel "general catalog of BnF"@en ;
	schema:name "general catalog of BnF"@en ;
	schema:description "bibliographic descriptions of the holdings of the Bibliothèque nationale de France and the authority files"@en .

wd:Q5375741 a wikibase:Item ;
	rdfs:label "Encyclopædia Britannica Online"@en ;
	skos:prefLabel "Encyclopædia Britannica Online"@en ;
	schema:name "Encyclopædia Britannica Online"@en ;
	schema:description "online edition of the Encyclopædia Britannica"@en .

wd:Q1139587 a wikibase:Item ;
	rdfs:label "Swedish Film Database"@en ;
	skos:prefLabel "Swedish Film Database"@en ;
	schema:name "Swedish Film Database"@en ;
	schema:description "Internate database of the Swedish Film Institute"@en .

wd:Q29861311 a wikibase:Item ;
	rdfs:label "SNAC"@en ;
	skos:prefLabel "SNAC"@en ;
	schema:name "SNAC"@en ;
	schema:description "online resource that helps users discover biographical and historical information about persons, families, and organizations that created or are documented in historical resources (primary source documents) and their connections to one another"@en .

wd:P1810 a wikibase:Property ;
	rdfs:label "subject named as"@en ;
	skos:prefLabel "subject named as"@en ;
	schema:name "subject named as"@en ;
	schema:description "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 ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P1810 ;
	wikibase:claim p:P1810 ;
	wikibase:statementProperty ps:P1810 ;
	wikibase:statementValue psv:P1810 ;
	wikibase:qualifier pq:P1810 ;
	wikibase:qualifierValue pqv:P1810 ;
	wikibase:reference pr:P1810 ;
	wikibase:referenceValue prv:P1810 ;
	wikibase:novalue wdno:P1810 .

p:P1810 a owl:ObjectProperty .

psv:P1810 a owl:ObjectProperty .

pqv:P1810 a owl:ObjectProperty .

prv:P1810 a owl:ObjectProperty .

wdt:P1810 a owl:DatatypeProperty .

ps:P1810 a owl:DatatypeProperty .

pq:P1810 a owl:DatatypeProperty .

pr:P1810 a owl:DatatypeProperty .

wdno:P1810 a owl:Class ;
	owl:complementOf _:1d6e1ecf4f0164f6a3471dd66d38c9d8 .

_:1d6e1ecf4f0164f6a3471dd66d38c9d8 a owl:Restriction ;
	owl:onProperty wdt:P1810 ;
	owl:someValuesFrom owl:Thing .

wd:Q2629164 a wikibase:Item ;
	rdfs:label "Internet Speculative Fiction Database"@en ;
	skos:prefLabel "Internet Speculative Fiction Database"@en ;
	schema:name "Internet Speculative Fiction Database"@en ;
	schema:description "Online database of written speculative fiction and its creators"@en .

wd:Q63056 a wikibase:Item ;
	rdfs:label "Find a Grave"@en ;
	skos:prefLabel "Find a Grave"@en ;
	schema:name "Find a Grave"@en ;
	schema:description "online database of burials"@en .

wd:Q3343389 a wikibase:Item ;
	rdfs:label "NooSFere"@en ;
	skos:prefLabel "NooSFere"@en ;
	schema:name "NooSFere"@en ;
	schema:description "association whose goal is the promotion of French science fiction and fantasy"@en .

wd:Q237227 a wikibase:Item ;
	rdfs:label "Brockhaus Enzyklopädie"@en ;
	skos:prefLabel "Brockhaus Enzyklopädie"@en ;
	schema:name "Brockhaus Enzyklopädie"@en ;
	schema:description "German-language encyclopedia"@en .

wd:Q2877812 a wikibase:Item ;
	rdfs:label "Babelio"@en ;
	skos:prefLabel "Babelio"@en ;
	schema:name "Babelio"@en ;
	schema:description "French social cataloging and book website"@en .

wd:Q107343683 a wikibase:Item ;
	rdfs:label "Munzinger Personen"@en ;
	skos:prefLabel "Munzinger Personen"@en ;
	schema:name "Munzinger Personen"@en .

wd:P577 a wikibase:Property ;
	rdfs:label "publication date"@en ;
	skos:prefLabel "publication date"@en ;
	schema:name "publication date"@en ;
	schema:description "date or point in time when a work was first published or released"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P577 ;
	wikibase:claim p:P577 ;
	wikibase:statementProperty ps:P577 ;
	wikibase:statementValue psv:P577 ;
	wikibase:qualifier pq:P577 ;
	wikibase:qualifierValue pqv:P577 ;
	wikibase:reference pr:P577 ;
	wikibase:referenceValue prv:P577 ;
	wikibase:novalue wdno:P577 .

p:P577 a owl:ObjectProperty .

psv:P577 a owl:ObjectProperty .

pqv:P577 a owl:ObjectProperty .

prv:P577 a owl:ObjectProperty .

wdt:P577 a owl:DatatypeProperty .

ps:P577 a owl:DatatypeProperty .

pq:P577 a owl:DatatypeProperty .

pr:P577 a owl:DatatypeProperty .

wdno:P577 a owl:Class ;
	owl:complementOf _:eca5fcd2c546d0e0c20e05f61e0aa797 .

_:eca5fcd2c546d0e0c20e05f61e0aa797 a owl:Restriction ;
	owl:onProperty wdt:P577 ;
	owl:someValuesFrom owl:Thing .

wd:Q11148 a wikibase:Item ;
	rdfs:label "The Guardian"@en ;
	skos:prefLabel "The Guardian"@en ;
	schema:name "The Guardian"@en ;
	schema:description "British national daily newspaper"@en .

wd:P1433 a wikibase:Property ;
	rdfs:label "published in"@en ;
	skos:prefLabel "published in"@en ;
	schema:name "published in"@en ;
	schema:description "larger work that a given work was published in, like a book, journal or music album"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1433 ;
	wikibase:claim p:P1433 ;
	wikibase:statementProperty ps:P1433 ;
	wikibase:statementValue psv:P1433 ;
	wikibase:qualifier pq:P1433 ;
	wikibase:qualifierValue pqv:P1433 ;
	wikibase:reference pr:P1433 ;
	wikibase:referenceValue prv:P1433 ;
	wikibase:novalue wdno:P1433 .

p:P1433 a owl:ObjectProperty .

psv:P1433 a owl:ObjectProperty .

pqv:P1433 a owl:ObjectProperty .

prv:P1433 a owl:ObjectProperty .

wdt:P1433 a owl:ObjectProperty .

ps:P1433 a owl:ObjectProperty .

pq:P1433 a owl:ObjectProperty .

pr:P1433 a owl:ObjectProperty .

wdno:P1433 a owl:Class ;
	owl:complementOf _:09408396cd1a84b5f9b50a2480f24728 .

_:09408396cd1a84b5f9b50a2480f24728 a owl:Restriction ;
	owl:onProperty wdt:P1433 ;
	owl:someValuesFrom owl:Thing .

wd:Q18145749 a wikibase:Item ;
	rdfs:label "Nicholas Wroe"@en ;
	skos:prefLabel "Nicholas Wroe"@en ;
	schema:name "Nicholas Wroe"@en ;
	schema:description "writer and editor on the Guardian Review"@en .

wd:P50 a wikibase:Property ;
	rdfs:label "author"@en ;
	skos:prefLabel "author"@en ;
	schema:name "author"@en ;
	schema:description "main creator(s) of a written work (use on works, not humans); use P2093 when Wikidata item is unknown or does not exist"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P50 ;
	wikibase:claim p:P50 ;
	wikibase:statementProperty ps:P50 ;
	wikibase:statementValue psv:P50 ;
	wikibase:qualifier pq:P50 ;
	wikibase:qualifierValue pqv:P50 ;
	wikibase:reference pr:P50 ;
	wikibase:referenceValue prv:P50 ;
	wikibase:novalue wdno:P50 .

p:P50 a owl:ObjectProperty .

psv:P50 a owl:ObjectProperty .

pqv:P50 a owl:ObjectProperty .

prv:P50 a owl:ObjectProperty .

wdt:P50 a owl:ObjectProperty .

ps:P50 a owl:ObjectProperty .

pq:P50 a owl:ObjectProperty .

pr:P50 a owl:ObjectProperty .

wdno:P50 a owl:Class ;
	owl:complementOf _:b031acc4c46aca4c83feb5878a7c4a6a .

_:b031acc4c46aca4c83feb5878a7c4a6a a owl:Restriction ;
	owl:onProperty wdt:P50 ;
	owl:someValuesFrom owl:Thing .

wd:P1476 a wikibase:Property ;
	rdfs:label "title"@en ;
	skos:prefLabel "title"@en ;
	schema:name "title"@en ;
	schema:description "published name of a work, such as a newspaper article, a literary work, piece of music, a website, or a performance work"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Monolingualtext> ;
	wikibase:directClaim wdt:P1476 ;
	wikibase:claim p:P1476 ;
	wikibase:statementProperty ps:P1476 ;
	wikibase:statementValue psv:P1476 ;
	wikibase:qualifier pq:P1476 ;
	wikibase:qualifierValue pqv:P1476 ;
	wikibase:reference pr:P1476 ;
	wikibase:referenceValue prv:P1476 ;
	wikibase:novalue wdno:P1476 .

p:P1476 a owl:ObjectProperty .

psv:P1476 a owl:ObjectProperty .

pqv:P1476 a owl:ObjectProperty .

prv:P1476 a owl:ObjectProperty .

wdt:P1476 a owl:DatatypeProperty .

ps:P1476 a owl:DatatypeProperty .

pq:P1476 a owl:DatatypeProperty .

pr:P1476 a owl:DatatypeProperty .

wdno:P1476 a owl:Class ;
	owl:complementOf _:d280eacd08390593b606f11be98380c0 .

_:d280eacd08390593b606f11be98380c0 a owl:Restriction ;
	owl:onProperty wdt:P1476 ;
	owl:someValuesFrom owl:Thing .

wd:P2093 a wikibase:Property ;
	rdfs:label "author name string"@en ;
	skos:prefLabel "author name string"@en ;
	schema:name "author name string"@en ;
	schema:description "stores unspecified author or editor name for publications; use if Wikidata item for author (P50) or editor (P98) does not exist or is not known. do not use both."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P2093 ;
	wikibase:claim p:P2093 ;
	wikibase:statementProperty ps:P2093 ;
	wikibase:statementValue psv:P2093 ;
	wikibase:qualifier pq:P2093 ;
	wikibase:qualifierValue pqv:P2093 ;
	wikibase:reference pr:P2093 ;
	wikibase:referenceValue prv:P2093 ;
	wikibase:novalue wdno:P2093 .

p:P2093 a owl:ObjectProperty .

psv:P2093 a owl:ObjectProperty .

pqv:P2093 a owl:ObjectProperty .

prv:P2093 a owl:ObjectProperty .

wdt:P2093 a owl:DatatypeProperty .

ps:P2093 a owl:DatatypeProperty .

pq:P2093 a owl:DatatypeProperty .

pr:P2093 a owl:DatatypeProperty .

wdno:P2093 a owl:Class ;
	owl:complementOf _:e2221084d358cd9264ccc9b14e2b1f04 .

_:e2221084d358cd9264ccc9b14e2b1f04 a owl:Restriction ;
	owl:onProperty wdt:P2093 ;
	owl:someValuesFrom owl:Thing .

wd:Q192621 a wikibase:Item ;
	rdfs:label "The Daily Telegraph"@en ;
	skos:prefLabel "The Daily Telegraph"@en ;
	schema:name "The Daily Telegraph"@en ;
	schema:description "British daily broadsheet newspaper"@en .

wd:Q23023088 a wikibase:Item ;
	rdfs:label "Vegetti Catalog of Fantastic Literature"@en ;
	skos:prefLabel "Vegetti Catalog of Fantastic Literature"@en ;
	schema:name "Vegetti Catalog of Fantastic Literature"@en ;
	schema:description "Italian bibliographic index of fantastic literature"@en .

wd:Q15290366 a wikibase:Item ;
	rdfs:label "HistoryOrb.com"@en ;
	skos:prefLabel "HistoryOrb.com"@en ;
	schema:name "HistoryOrb.com"@en ;
	schema:description "online database of  history articles"@en .

wd:P1065 a wikibase:Property ;
	rdfs:label "archive URL"@en ;
	skos:prefLabel "archive URL"@en ;
	schema:name "archive URL"@en ;
	schema:description "URL to the archived web page specified with URL property"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P1065 ;
	wikibase:claim p:P1065 ;
	wikibase:statementProperty ps:P1065 ;
	wikibase:statementValue psv:P1065 ;
	wikibase:qualifier pq:P1065 ;
	wikibase:qualifierValue pqv:P1065 ;
	wikibase:reference pr:P1065 ;
	wikibase:referenceValue prv:P1065 ;
	wikibase:novalue wdno:P1065 .

p:P1065 a owl:ObjectProperty .

psv:P1065 a owl:ObjectProperty .

pqv:P1065 a owl:ObjectProperty .

prv:P1065 a owl:ObjectProperty .

wdt:P1065 a owl:ObjectProperty .

ps:P1065 a owl:ObjectProperty .

pq:P1065 a owl:ObjectProperty .

pr:P1065 a owl:ObjectProperty .

wdno:P1065 a owl:Class ;
	owl:complementOf _:03a90254ec54e448bc2aaf8d845e29f8 .

_:03a90254ec54e448bc2aaf8d845e29f8 a owl:Restriction ;
	owl:onProperty wdt:P1065 ;
	owl:someValuesFrom owl:Thing .

wd:P2960 a wikibase:Property ;
	rdfs:label "archive date"@en ;
	skos:prefLabel "archive date"@en ;
	schema:name "archive date"@en ;
	schema:description "date a document was archived"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P2960 ;
	wikibase:claim p:P2960 ;
	wikibase:statementProperty ps:P2960 ;
	wikibase:statementValue psv:P2960 ;
	wikibase:qualifier pq:P2960 ;
	wikibase:qualifierValue pqv:P2960 ;
	wikibase:reference pr:P2960 ;
	wikibase:referenceValue prv:P2960 ;
	wikibase:novalue wdno:P2960 .

p:P2960 a owl:ObjectProperty .

psv:P2960 a owl:ObjectProperty .

pqv:P2960 a owl:ObjectProperty .

prv:P2960 a owl:ObjectProperty .

wdt:P2960 a owl:DatatypeProperty .

ps:P2960 a owl:DatatypeProperty .

pq:P2960 a owl:DatatypeProperty .

pr:P2960 a owl:DatatypeProperty .

wdno:P2960 a owl:Class ;
	owl:complementOf _:e8842935d39a233def3d267ae3737d8c .

_:e8842935d39a233def3d267ae3737d8c a owl:Restriction ;
	owl:onProperty wdt:P2960 ;
	owl:someValuesFrom owl:Thing .

wd:Q26724169 a wikibase:Item ;
	rdfs:label "Jill Lawless"@en ;
	skos:prefLabel "Jill Lawless"@en ;
	schema:name "Jill Lawless"@en ;
	schema:description "journalist"@en .

wd:Q9684 a wikibase:Item ;
	rdfs:label "The New York Times"@en ;
	skos:prefLabel "The New York Times"@en ;
	schema:name "The New York Times"@en ;
	schema:description "American daily newspaper"@en .

wd:P625 a wikibase:Property ;
	rdfs:label "coordinate location"@en ;
	skos:prefLabel "coordinate location"@en ;
	schema:name "coordinate location"@en ;
	schema:description "geocoordinates of the subject. For Earth, please note that only WGS84 coordinating system is supported at the moment"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#GlobeCoordinate> ;
	wikibase:directClaim wdt:P625 ;
	wikibase:claim p:P625 ;
	wikibase:statementProperty ps:P625 ;
	wikibase:statementValue psv:P625 ;
	wikibase:qualifier pq:P625 ;
	wikibase:qualifierValue pqv:P625 ;
	wikibase:reference pr:P625 ;
	wikibase:referenceValue prv:P625 ;
	wikibase:novalue wdno:P625 .

p:P625 a owl:ObjectProperty .

psv:P625 a owl:ObjectProperty .

pqv:P625 a owl:ObjectProperty .

prv:P625 a owl:ObjectProperty .

wdt:P625 a owl:DatatypeProperty .

ps:P625 a owl:DatatypeProperty .

pq:P625 a owl:DatatypeProperty .

pr:P625 a owl:DatatypeProperty .

wdno:P625 a owl:Class ;
	owl:complementOf _:098a7705e988116e3a454eda03aef6ad .

_:098a7705e988116e3a454eda03aef6ad a owl:Restriction ;
	owl:onProperty wdt:P625 ;
	owl:someValuesFrom owl:Thing .

wd:Q565 a wikibase:Item ;
	rdfs:label "Wikimedia Commons"@en ;
	skos:prefLabel "Wikimedia Commons"@en ;
	schema:name "Wikimedia Commons"@en ;
	schema:description "online repository of free-use image, sound, and other media files; part of the Wikimedia ecosystem"@en .

wd:P143 a wikibase:Property ;
	rdfs:label "imported from Wikimedia project"@en ;
	skos:prefLabel "imported from Wikimedia project"@en ;
	schema:name "imported from Wikimedia project"@en ;
	schema:description "source of this claim's value; used in references section by bots or humans importing data from Wikimedia projects"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P143 ;
	wikibase:claim p:P143 ;
	wikibase:statementProperty ps:P143 ;
	wikibase:statementValue psv:P143 ;
	wikibase:qualifier pq:P143 ;
	wikibase:qualifierValue pqv:P143 ;
	wikibase:reference pr:P143 ;
	wikibase:referenceValue prv:P143 ;
	wikibase:novalue wdno:P143 .

p:P143 a owl:ObjectProperty .

psv:P143 a owl:ObjectProperty .

pqv:P143 a owl:ObjectProperty .

prv:P143 a owl:ObjectProperty .

wdt:P143 a owl:ObjectProperty .

ps:P143 a owl:ObjectProperty .

pq:P143 a owl:ObjectProperty .

pr:P143 a owl:ObjectProperty .

wdno:P143 a owl:Class ;
	owl:complementOf _:66a2156e9cbfe8d655274b862fca1b59 .

_:66a2156e9cbfe8d655274b862fca1b59 a owl:Restriction ;
	owl:onProperty wdt:P143 ;
	owl:someValuesFrom owl:Thing .

wd:P585 a wikibase:Property ;
	rdfs:label "point in time"@en ;
	skos:prefLabel "point in time"@en ;
	schema:name "point in time"@en ;
	schema:description "time and date something took place, existed or a statement was true"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P585 ;
	wikibase:claim p:P585 ;
	wikibase:statementProperty ps:P585 ;
	wikibase:statementValue psv:P585 ;
	wikibase:qualifier pq:P585 ;
	wikibase:qualifierValue pqv:P585 ;
	wikibase:reference pr:P585 ;
	wikibase:referenceValue prv:P585 ;
	wikibase:novalue wdno:P585 .

p:P585 a owl:ObjectProperty .

psv:P585 a owl:ObjectProperty .

pqv:P585 a owl:ObjectProperty .

prv:P585 a owl:ObjectProperty .

wdt:P585 a owl:DatatypeProperty .

ps:P585 a owl:DatatypeProperty .

pq:P585 a owl:DatatypeProperty .

pr:P585 a owl:DatatypeProperty .

wdno:P585 a owl:Class ;
	owl:complementOf _:dd1c08307a09e1466ce90c482ad42ea9 .

_:dd1c08307a09e1466ce90c482ad42ea9 a owl:Restriction ;
	owl:onProperty wdt:P585 ;
	owl:someValuesFrom owl:Thing .

wd:P2096 a wikibase:Property ;
	rdfs:label "media legend"@en ;
	skos:prefLabel "media legend"@en ;
	schema:name "media legend"@en ;
	schema:description "qualifier to describe the media of the statement. This avoids legend storage in the local infobox when the media is defined at Wikidata. For the date, use P585 instead."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Monolingualtext> ;
	wikibase:directClaim wdt:P2096 ;
	wikibase:claim p:P2096 ;
	wikibase:statementProperty ps:P2096 ;
	wikibase:statementValue psv:P2096 ;
	wikibase:qualifier pq:P2096 ;
	wikibase:qualifierValue pqv:P2096 ;
	wikibase:reference pr:P2096 ;
	wikibase:referenceValue prv:P2096 ;
	wikibase:novalue wdno:P2096 .

p:P2096 a owl:ObjectProperty .

psv:P2096 a owl:ObjectProperty .

pqv:P2096 a owl:ObjectProperty .

prv:P2096 a owl:ObjectProperty .

wdt:P2096 a owl:DatatypeProperty .

ps:P2096 a owl:DatatypeProperty .

pq:P2096 a owl:DatatypeProperty .

pr:P2096 a owl:DatatypeProperty .

wdno:P2096 a owl:Class ;
	owl:complementOf _:eee70990effb4cdc5825fadd13ba0aaa .

_:eee70990effb4cdc5825fadd13ba0aaa a owl:Restriction ;
	owl:onProperty wdt:P2096 ;
	owl:someValuesFrom owl:Thing .

wd:P1545 a wikibase:Property ;
	rdfs:label "series ordinal"@en ;
	skos:prefLabel "series ordinal"@en ;
	schema:name "series ordinal"@en ;
	schema:description "position of an item in its parent series (most frequently a 1-based index), generally to be used as a qualifier (different from \"rank\" defined as a class, and from \"ranking\" defined as a property for evaluating a quality)."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P1545 ;
	wikibase:claim p:P1545 ;
	wikibase:statementProperty ps:P1545 ;
	wikibase:statementValue psv:P1545 ;
	wikibase:qualifier pq:P1545 ;
	wikibase:qualifierValue pqv:P1545 ;
	wikibase:reference pr:P1545 ;
	wikibase:referenceValue prv:P1545 ;
	wikibase:novalue wdno:P1545 .

p:P1545 a owl:ObjectProperty .

psv:P1545 a owl:ObjectProperty .

pqv:P1545 a owl:ObjectProperty .

prv:P1545 a owl:ObjectProperty .

wdt:P1545 a owl:DatatypeProperty .

ps:P1545 a owl:DatatypeProperty .

pq:P1545 a owl:DatatypeProperty .

pr:P1545 a owl:DatatypeProperty .

wdno:P1545 a owl:Class ;
	owl:complementOf _:85ef66947fb62ff87e243e582e862fe4 .

_:85ef66947fb62ff87e243e582e862fe4 a owl:Restriction ;
	owl:onProperty wdt:P1545 ;
	owl:someValuesFrom owl:Thing .

wd:Q3409033 a wikibase:Item ;
	rdfs:label "usual first name"@en ;
	skos:prefLabel "usual first name"@en ;
	schema:name "usual first name"@en ;
	schema:description "one or more of a person's given names which in addition to their surname is used to address them"@en .

wd:P3831 a wikibase:Property ;
	rdfs:label "object has role"@en ;
	skos:prefLabel "object has role"@en ;
	schema:name "object has role"@en ;
	schema:description "(qualifier) role or generic identity of the value of a statement (\"object\") in the context of that statement; for the role of the item the statement is on (\"subject\"), use P2868"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P3831 ;
	wikibase:claim p:P3831 ;
	wikibase:statementProperty ps:P3831 ;
	wikibase:statementValue psv:P3831 ;
	wikibase:qualifier pq:P3831 ;
	wikibase:qualifierValue pqv:P3831 ;
	wikibase:reference pr:P3831 ;
	wikibase:referenceValue prv:P3831 ;
	wikibase:novalue wdno:P3831 .

p:P3831 a owl:ObjectProperty .

psv:P3831 a owl:ObjectProperty .

pqv:P3831 a owl:ObjectProperty .

prv:P3831 a owl:ObjectProperty .

wdt:P3831 a owl:ObjectProperty .

ps:P3831 a owl:ObjectProperty .

pq:P3831 a owl:ObjectProperty .

pr:P3831 a owl:ObjectProperty .

wdno:P3831 a owl:Class ;
	owl:complementOf _:4941dbdb9a38c5a500b05366e45fe45d .

_:4941dbdb9a38c5a500b05366e45fe45d a owl:Restriction ;
	owl:onProperty wdt:P3831 ;
	owl:someValuesFrom owl:Thing .

wd:Q19688263 a wikibase:Item ;
	rdfs:label "Noël"@en ;
	skos:prefLabel "Noël"@en ;
	schema:name "Noël"@en ;
	schema:description "male given name"@en .

wd:P582 a wikibase:Property ;
	rdfs:label "end time"@en ;
	skos:prefLabel "end time"@en ;
	schema:name "end time"@en ;
	schema:description "time a time period ends"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Time> ;
	wikibase:directClaim wdt:P582 ;
	wikibase:claim p:P582 ;
	wikibase:statementProperty ps:P582 ;
	wikibase:statementValue psv:P582 ;
	wikibase:qualifier pq:P582 ;
	wikibase:qualifierValue pqv:P582 ;
	wikibase:reference pr:P582 ;
	wikibase:referenceValue prv:P582 ;
	wikibase:novalue wdno:P582 .

p:P582 a owl:ObjectProperty .

psv:P582 a owl:ObjectProperty .

pqv:P582 a owl:ObjectProperty .

prv:P582 a owl:ObjectProperty .

wdt:P582 a owl:DatatypeProperty .

ps:P582 a owl:DatatypeProperty .

pq:P582 a owl:DatatypeProperty .

pr:P582 a owl:DatatypeProperty .

wdno:P582 a owl:Class ;
	owl:complementOf _:e66c426b3b6d50da03204dbba7b68a2b .

_:e66c426b3b6d50da03204dbba7b68a2b a owl:Restriction ;
	owl:onProperty wdt:P582 ;
	owl:someValuesFrom owl:Thing .

wd:Q328 a wikibase:Item ;
	rdfs:label "English Wikipedia"@en ;
	skos:prefLabel "English Wikipedia"@en ;
	schema:name "English Wikipedia"@en ;
	schema:description "English-language edition of Wikipedia"@en .

wd:P4970 a wikibase:Property ;
	rdfs:label "alternative name"@en ;
	skos:prefLabel "alternative name"@en ;
	schema:name "alternative name"@en ;
	schema:description "qualifier for alternative name(s) given for a subject in a database entry"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P4970 ;
	wikibase:claim p:P4970 ;
	wikibase:statementProperty ps:P4970 ;
	wikibase:statementValue psv:P4970 ;
	wikibase:qualifier pq:P4970 ;
	wikibase:qualifierValue pqv:P4970 ;
	wikibase:reference pr:P4970 ;
	wikibase:referenceValue prv:P4970 ;
	wikibase:novalue wdno:P4970 .

p:P4970 a owl:ObjectProperty .

psv:P4970 a owl:ObjectProperty .

pqv:P4970 a owl:ObjectProperty .

prv:P4970 a owl:ObjectProperty .

wdt:P4970 a owl:DatatypeProperty .

ps:P4970 a owl:DatatypeProperty .

pq:P4970 a owl:DatatypeProperty .

pr:P4970 a owl:DatatypeProperty .

wdno:P4970 a owl:Class ;
	owl:complementOf _:484844be197aed8f0c5a4453371c0807 .

_:484844be197aed8f0c5a4453371c0807 a owl:Restriction ;
	owl:onProperty wdt:P4970 ;
	owl:someValuesFrom owl:Thing .

wd:Q1551807 a wikibase:Item ;
	rdfs:label "Polish Wikipedia"@en ;
	skos:prefLabel "Polish Wikipedia"@en ;
	schema:name "Polish Wikipedia"@en ;
	schema:description "Polish-language edition of Wikipedia"@en .

wd:Q8447 a wikibase:Item ;
	rdfs:label "French Wikipedia"@en ;
	skos:prefLabel "French Wikipedia"@en ;
	schema:name "French Wikipedia"@en ;
	schema:description "French-language edition of Wikipedia"@en .

wd:P123 a wikibase:Property ;
	rdfs:label "publisher"@en ;
	skos:prefLabel "publisher"@en ;
	schema:name "publisher"@en ;
	schema:description "organization or person responsible for publishing books, periodicals, printed music, podcasts, games or software"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P123 ;
	wikibase:claim p:P123 ;
	wikibase:statementProperty ps:P123 ;
	wikibase:statementValue psv:P123 ;
	wikibase:qualifier pq:P123 ;
	wikibase:qualifierValue pqv:P123 ;
	wikibase:reference pr:P123 ;
	wikibase:referenceValue prv:P123 ;
	wikibase:novalue wdno:P123 .

p:P123 a owl:ObjectProperty .

psv:P123 a owl:ObjectProperty .

pqv:P123 a owl:ObjectProperty .

prv:P123 a owl:ObjectProperty .

wdt:P123 a owl:ObjectProperty .

ps:P123 a owl:ObjectProperty .

pq:P123 a owl:ObjectProperty .

pr:P123 a owl:ObjectProperty .

wdno:P123 a owl:Class ;
	owl:complementOf _:920b66a59b0d9c7fcb39820893f26e8a .

_:920b66a59b0d9c7fcb39820893f26e8a a owl:Restriction ;
	owl:onProperty wdt:P123 ;
	owl:someValuesFrom owl:Thing .

wd:Q1373513 a wikibase:Item ;
	rdfs:label "NNDB"@en ;
	skos:prefLabel "NNDB"@en ;
	schema:name "NNDB"@en ;
	schema:description "database of famous people"@en .

wd:Q54919 a wikibase:Item ;
	rdfs:label "Virtual International Authority File"@en ;
	skos:prefLabel "Virtual International Authority File"@en ;
	schema:name "Virtual International Authority File"@en ;
	schema:description "OCLC dataset and service that virtually combines multiple name authority files into a single name authority service"@en .

wd:Q15241312 a wikibase:Item ;
	rdfs:label "Freebase Data Dumps"@en ;
	skos:prefLabel "Freebase Data Dumps"@en ;
	schema:name "Freebase Data Dumps"@en ;
	schema:description "dumps of the public part of Google's Knowledge Graph"@en .

wd:Q186579 a wikibase:Item ;
	rdfs:label "English literature"@en ;
	skos:prefLabel "English literature"@en ;
	schema:name "English literature"@en ;
	schema:description "literary works written in the English language"@en .

wd:P812 a wikibase:Property ;
	rdfs:label "academic major"@en ;
	skos:prefLabel "academic major"@en ;
	schema:name "academic major"@en ;
	schema:description "major someone studied at college/university"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P812 ;
	wikibase:claim p:P812 ;
	wikibase:statementProperty ps:P812 ;
	wikibase:statementValue psv:P812 ;
	wikibase:qualifier pq:P812 ;
	wikibase:qualifierValue pqv:P812 ;
	wikibase:reference pr:P812 ;
	wikibase:referenceValue prv:P812 ;
	wikibase:novalue wdno:P812 .

p:P812 a owl:ObjectProperty .

psv:P812 a owl:ObjectProperty .

pqv:P812 a owl:ObjectProperty .

prv:P812 a owl:ObjectProperty .

wdt:P812 a owl:ObjectProperty .

ps:P812 a owl:ObjectProperty .

pq:P812 a owl:ObjectProperty .

pr:P812 a owl:ObjectProperty .

wdno:P812 a owl:Class ;
	owl:complementOf _:91bb63de82eb5848ed291cc59e45b5fa .

_:91bb63de82eb5848ed291cc59e45b5fa a owl:Restriction ;
	owl:onProperty wdt:P812 ;
	owl:someValuesFrom owl:Thing .

wd:Q1765120 a wikibase:Item ;
	rdfs:label "Bachelor of Arts"@en ;
	skos:prefLabel "Bachelor of Arts"@en ;
	schema:name "Bachelor of Arts"@en ;
	schema:description "bachelor's degree awarded for undergraduate study in liberal arts, the sciences or both"@en .

wd:P512 a wikibase:Property ;
	rdfs:label "academic degree"@en ;
	skos:prefLabel "academic degree"@en ;
	schema:name "academic degree"@en ;
	schema:description "academic degree that the person holds"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P512 ;
	wikibase:claim p:P512 ;
	wikibase:statementProperty ps:P512 ;
	wikibase:statementValue psv:P512 ;
	wikibase:qualifier pq:P512 ;
	wikibase:qualifierValue pqv:P512 ;
	wikibase:reference pr:P512 ;
	wikibase:referenceValue prv:P512 ;
	wikibase:novalue wdno:P512 .

p:P512 a owl:ObjectProperty .

psv:P512 a owl:ObjectProperty .

pqv:P512 a owl:ObjectProperty .

prv:P512 a owl:ObjectProperty .

wdt:P512 a owl:ObjectProperty .

ps:P512 a owl:ObjectProperty .

pq:P512 a owl:ObjectProperty .

pr:P512 a owl:ObjectProperty .

wdno:P512 a owl:Class ;
	owl:complementOf _:ba0d56e6b4c7888a7b14b159e88b45d3 .

_:ba0d56e6b4c7888a7b14b159e88b45d3 a owl:Restriction ;
	owl:onProperty wdt:P512 ;
	owl:someValuesFrom owl:Thing .

wd:Q9035 a wikibase:Item ;
	rdfs:label "Danish"@en ;
	skos:prefLabel "Danish"@en ;
	schema:name "Danish"@en ;
	schema:description "North Germanic language"@en .

wd:Q652 a wikibase:Item ;
	rdfs:label "Italian"@en ;
	skos:prefLabel "Italian"@en ;
	schema:name "Italian"@en ;
	schema:description "Romance language"@en .

wd:Q9027 a wikibase:Item ;
	rdfs:label "Swedish"@en ;
	skos:prefLabel "Swedish"@en ;
	schema:name "Swedish"@en ;
	schema:description "North Germanic language spoken in Sweden and Finland"@en .

wd:Q3521267 a wikibase:Item ;
	rdfs:label "The Hitchhiker's Guide to the Galaxy"@en ;
	skos:prefLabel "The Hitchhiker's Guide to the Galaxy"@en ;
	schema:name "The Hitchhiker's Guide to the Galaxy"@en ;
	schema:description "science fiction comedy radio series"@en .

wd:P1686 a wikibase:Property ;
	rdfs:label "for work"@en ;
	skos:prefLabel "for work"@en ;
	schema:name "for work"@en ;
	schema:description "qualifier of award received (P166) to specify the work that an award was given to the creator for"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1686 ;
	wikibase:claim p:P1686 ;
	wikibase:statementProperty ps:P1686 ;
	wikibase:statementValue psv:P1686 ;
	wikibase:qualifier pq:P1686 ;
	wikibase:qualifierValue pqv:P1686 ;
	wikibase:reference pr:P1686 ;
	wikibase:referenceValue prv:P1686 ;
	wikibase:novalue wdno:P1686 .

p:P1686 a owl:ObjectProperty .

psv:P1686 a owl:ObjectProperty .

pqv:P1686 a owl:ObjectProperty .

prv:P1686 a owl:ObjectProperty .

wdt:P1686 a owl:ObjectProperty .

ps:P1686 a owl:ObjectProperty .

pq:P1686 a owl:ObjectProperty .

pr:P1686 a owl:ObjectProperty .

wdno:P1686 a owl:Class ;
	owl:complementOf _:09c60e050e7e84b7380ef456e5f237e1 .

_:09c60e050e7e84b7380ef456e5f237e1 a owl:Restriction ;
	owl:onProperty wdt:P1686 ;
	owl:someValuesFrom owl:Thing .

wd:Q721 a wikibase:Item ;
	rdfs:label "Life, the Universe and Everything"@en ;
	skos:prefLabel "Life, the Universe and Everything"@en ;
	schema:name "Life, the Universe and Everything"@en ;
	schema:description "1982 book by Douglas Adams"@en .

wd:P3744 a wikibase:Property ;
	rdfs:label "number of subscribers"@en ;
	skos:prefLabel "number of subscribers"@en ;
	schema:name "number of subscribers"@en ;
	schema:description "number of subscribers for subscription-based companies, e.g. telecommunication companies, newspapers, pay-TV channels, software, etc."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Quantity> ;
	wikibase:directClaim wdt:P3744 ;
	wikibase:claim p:P3744 ;
	wikibase:statementProperty ps:P3744 ;
	wikibase:statementValue psv:P3744 ;
	wikibase:qualifier pq:P3744 ;
	wikibase:qualifierValue pqv:P3744 ;
	wikibase:reference pr:P3744 ;
	wikibase:referenceValue prv:P3744 ;
	wikibase:novalue wdno:P3744 ;
	wikibase:directClaimNormalized wdtn:P3744 ;
	wikibase:statementValueNormalized psn:P3744 ;
	wikibase:qualifierValueNormalized pqn:P3744 ;
	wikibase:referenceValueNormalized prn:P3744 .

p:P3744 a owl:ObjectProperty .

psv:P3744 a owl:ObjectProperty .

pqv:P3744 a owl:ObjectProperty .

prv:P3744 a owl:ObjectProperty .

wdt:P3744 a owl:DatatypeProperty .

ps:P3744 a owl:DatatypeProperty .

pq:P3744 a owl:DatatypeProperty .

pr:P3744 a owl:DatatypeProperty .

psn:P3744 a owl:ObjectProperty .

pqn:P3744 a owl:ObjectProperty .

prn:P3744 a owl:ObjectProperty .

wdtn:P3744 a owl:DatatypeProperty .

wdno:P3744 a owl:Class ;
	owl:complementOf _:227e42cdd167c376ee1e02ace7092ab2 .

_:227e42cdd167c376ee1e02ace7092ab2 a owl:Restriction ;
	owl:onProperty wdt:P3744 ;
	owl:someValuesFrom owl:Thing .

wd:Q5614018 a wikibase:Item ;
	rdfs:label "TheGuardian.com"@en ;
	skos:prefLabel "TheGuardian.com"@en ;
	schema:name "TheGuardian.com"@en ;
	schema:description "news website"@en .

wd:Q10943095 a wikibase:Item ;
	rdfs:label "younger sister"@en ;
	skos:prefLabel "younger sister"@en ;
	schema:name "younger sister"@en ;
	schema:description "female younger sibling"@en .

wd:P1039 a wikibase:Property ;
	rdfs:label "kinship to subject"@en ;
	skos:prefLabel "kinship to subject"@en ;
	schema:name "kinship to subject"@en ;
	schema:description "qualifier of \"relative\" (P1038) to indicate less usual family relationships (ancestor, son-in-law, adoptions, etc). Indicate how the qualificator item is related to the main item."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1039 ;
	wikibase:claim p:P1039 ;
	wikibase:statementProperty ps:P1039 ;
	wikibase:statementValue psv:P1039 ;
	wikibase:qualifier pq:P1039 ;
	wikibase:qualifierValue pqv:P1039 ;
	wikibase:reference pr:P1039 ;
	wikibase:referenceValue prv:P1039 ;
	wikibase:novalue wdno:P1039 .

p:P1039 a owl:ObjectProperty .

psv:P1039 a owl:ObjectProperty .

pqv:P1039 a owl:ObjectProperty .

prv:P1039 a owl:ObjectProperty .

wdt:P1039 a owl:ObjectProperty .

ps:P1039 a owl:ObjectProperty .

pq:P1039 a owl:ObjectProperty .

pr:P1039 a owl:ObjectProperty .

wdno:P1039 a owl:Class ;
	owl:complementOf _:6f6b5e66dfc08ffc78b0a492eb1e0099 .

_:6f6b5e66dfc08ffc78b0a492eb1e0099 a owl:Restriction ;
	owl:onProperty wdt:P1039 ;
	owl:someValuesFrom owl:Thing .

wd:P957 a wikibase:Property ;
	rdfs:label "ISBN-10"@en ;
	skos:prefLabel "ISBN-10"@en ;
	schema:name "ISBN-10"@en ;
	schema:description "former identifier for a book (edition), ten digits. Used for all publications up to 2006 (convertible to ISBN-13 for some online catalogs; useful for old books or fac-similes not reedited since 2007)"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P957 ;
	wikibase:claim p:P957 ;
	wikibase:statementProperty ps:P957 ;
	wikibase:statementValue psv:P957 ;
	wikibase:qualifier pq:P957 ;
	wikibase:qualifierValue pqv:P957 ;
	wikibase:reference pr:P957 ;
	wikibase:referenceValue prv:P957 ;
	wikibase:novalue wdno:P957 ;
	wikibase:directClaimNormalized wdtn:P957 ;
	wikibase:statementValueNormalized psn:P957 ;
	wikibase:qualifierValueNormalized pqn:P957 ;
	wikibase:referenceValueNormalized prn:P957 .

p:P957 a owl:ObjectProperty .

psv:P957 a owl:ObjectProperty .

pqv:P957 a owl:ObjectProperty .

prv:P957 a owl:ObjectProperty .

wdt:P957 a owl:DatatypeProperty .

ps:P957 a owl:DatatypeProperty .

pq:P957 a owl:DatatypeProperty .

pr:P957 a owl:DatatypeProperty .

psn:P957 a owl:ObjectProperty .

pqn:P957 a owl:ObjectProperty .

prn:P957 a owl:ObjectProperty .

wdtn:P957 a owl:ObjectProperty .

wdno:P957 a owl:Class ;
	owl:complementOf _:d2367b0d06ce672fee941c2157edcc56 .

_:d2367b0d06ce672fee941c2157edcc56 a owl:Restriction ;
	owl:onProperty wdt:P957 ;
	owl:someValuesFrom owl:Thing .

wd:P212 a wikibase:Property ;
	rdfs:label "ISBN-13"@en ;
	skos:prefLabel "ISBN-13"@en ;
	schema:name "ISBN-13"@en ;
	schema:description "identifier for a book (edition), thirteen digit"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P212 ;
	wikibase:claim p:P212 ;
	wikibase:statementProperty ps:P212 ;
	wikibase:statementValue psv:P212 ;
	wikibase:qualifier pq:P212 ;
	wikibase:qualifierValue pqv:P212 ;
	wikibase:reference pr:P212 ;
	wikibase:referenceValue prv:P212 ;
	wikibase:novalue wdno:P212 ;
	wikibase:directClaimNormalized wdtn:P212 ;
	wikibase:statementValueNormalized psn:P212 ;
	wikibase:qualifierValueNormalized pqn:P212 ;
	wikibase:referenceValueNormalized prn:P212 .

p:P212 a owl:ObjectProperty .

psv:P212 a owl:ObjectProperty .

pqv:P212 a owl:ObjectProperty .

prv:P212 a owl:ObjectProperty .

wdt:P212 a owl:DatatypeProperty .

ps:P212 a owl:DatatypeProperty .

pq:P212 a owl:DatatypeProperty .

pr:P212 a owl:DatatypeProperty .

psn:P212 a owl:ObjectProperty .

pqn:P212 a owl:ObjectProperty .

prn:P212 a owl:ObjectProperty .

wdtn:P212 a owl:ObjectProperty .

wdno:P212 a owl:Class ;
	owl:complementOf _:e3d53dffa89974f60aac168065810f5c .

_:e3d53dffa89974f60aac168065810f5c a owl:Restriction ;
	owl:onProperty wdt:P212 ;
	owl:someValuesFrom owl:Thing .

wd:Q99521170 a wikibase:Item ;
	rdfs:label "death of person"@en ;
	skos:prefLabel "death of person"@en ;
	schema:name "death of person"@en ;
	schema:description "death of the main Q-object person (i. e. not their spouse); end cause of marriage, significant event"@en .

wd:P1534 a wikibase:Property ;
	rdfs:label "end cause"@en ;
	skos:prefLabel "end cause"@en ;
	schema:name "end cause"@en ;
	schema:description "qualifier to use together with the end date qualifier (P582) to specify the cause"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P1534 ;
	wikibase:claim p:P1534 ;
	wikibase:statementProperty ps:P1534 ;
	wikibase:statementValue psv:P1534 ;
	wikibase:qualifier pq:P1534 ;
	wikibase:qualifierValue pqv:P1534 ;
	wikibase:reference pr:P1534 ;
	wikibase:referenceValue prv:P1534 ;
	wikibase:novalue wdno:P1534 .

p:P1534 a owl:ObjectProperty .

psv:P1534 a owl:ObjectProperty .

pqv:P1534 a owl:ObjectProperty .

prv:P1534 a owl:ObjectProperty .

wdt:P1534 a owl:ObjectProperty .

ps:P1534 a owl:ObjectProperty .

pq:P1534 a owl:ObjectProperty .

pr:P1534 a owl:ObjectProperty .

wdno:P1534 a owl:Class ;
	owl:complementOf _:e3e18197a52147bae1827a3a974c9372 .

_:e3e18197a52147bae1827a3a974c9372 a owl:Restriction ;
	owl:onProperty wdt:P1534 ;
	owl:someValuesFrom owl:Thing .

wd:Q28054658 a wikibase:Item ;
	rdfs:label "Mix'n'match"@en ;
	skos:prefLabel "Mix'n'match"@en ;
	schema:name "Mix'n'match"@en ;
	schema:description "tool for importing data sets into Wikidata"@en .

wd:P4656 a wikibase:Property ;
	rdfs:label "Wikimedia import URL"@en ;
	skos:prefLabel "Wikimedia import URL"@en ;
	schema:name "Wikimedia import URL"@en ;
	schema:description "URL of source to indicate the page or revision of an import source from another Wikimedia project (except actual references, such as Wikisource source texts). Use instead of \"reference URL\" (P854). Permalinks are preferred."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P4656 ;
	wikibase:claim p:P4656 ;
	wikibase:statementProperty ps:P4656 ;
	wikibase:statementValue psv:P4656 ;
	wikibase:qualifier pq:P4656 ;
	wikibase:qualifierValue pqv:P4656 ;
	wikibase:reference pr:P4656 ;
	wikibase:referenceValue prv:P4656 ;
	wikibase:novalue wdno:P4656 .

p:P4656 a owl:ObjectProperty .

psv:P4656 a owl:ObjectProperty .

pqv:P4656 a owl:ObjectProperty .

prv:P4656 a owl:ObjectProperty .

wdt:P4656 a owl:ObjectProperty .

ps:P4656 a owl:ObjectProperty .

pq:P4656 a owl:ObjectProperty .

pr:P4656 a owl:ObjectProperty .

wdno:P4656 a owl:Class ;
	owl:complementOf _:d0914856b623ca1dd09b1f31c8eea5fe .

_:d0914856b623ca1dd09b1f31c8eea5fe a owl:Restriction ;
	owl:onProperty wdt:P4656 ;
	owl:someValuesFrom owl:Thing .

wd:Q1798125 a wikibase:Item ;
	rdfs:label "LIBRIS"@en ;
	skos:prefLabel "LIBRIS"@en ;
	schema:name "LIBRIS"@en ;
	schema:description "Swedish national union catalogue"@en .

wd:Q13550863 a wikibase:Item ;
	rdfs:label "Czech National Authority Database"@en ;
	skos:prefLabel "Czech National Authority Database"@en ;
	schema:name "Czech National Authority Database"@en ;
	schema:description "Authority Database of the National Library of the Czech Republic"@en .

wd:Q746368 a wikibase:Item ;
	rdfs:label "Great Norwegian Encyclopedia"@en ;
	skos:prefLabel "Great Norwegian Encyclopedia"@en ;
	schema:name "Great Norwegian Encyclopedia"@en ;
	schema:description "Norwegian encyclopedia"@en .

wd:P973 a wikibase:Property ;
	rdfs:label "described at URL"@en ;
	skos:prefLabel "described at URL"@en ;
	schema:name "described at URL"@en ;
	schema:description "item is described at the following URL"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P973 ;
	wikibase:claim p:P973 ;
	wikibase:statementProperty ps:P973 ;
	wikibase:statementValue psv:P973 ;
	wikibase:qualifier pq:P973 ;
	wikibase:qualifierValue pqv:P973 ;
	wikibase:reference pr:P973 ;
	wikibase:referenceValue prv:P973 ;
	wikibase:novalue wdno:P973 .

p:P973 a owl:ObjectProperty .

psv:P973 a owl:ObjectProperty .

pqv:P973 a owl:ObjectProperty .

prv:P973 a owl:ObjectProperty .

wdt:P973 a owl:ObjectProperty .

ps:P973 a owl:ObjectProperty .

pq:P973 a owl:ObjectProperty .

pr:P973 a owl:ObjectProperty .

wdno:P973 a owl:Class ;
	owl:complementOf _:f87a33fb67bd0567df6bde1358e21e19 .

_:f87a33fb67bd0567df6bde1358e21e19 a owl:Restriction ;
	owl:onProperty wdt:P973 ;
	owl:someValuesFrom owl:Thing .

wd:Q7737 a wikibase:Item ;
	rdfs:label "Russian"@en ;
	skos:prefLabel "Russian"@en ;
	schema:name "Russian"@en ;
	schema:description "East Slavic language"@en .

wd:P2699 a wikibase:Property ;
	rdfs:label "URL"@en ;
	skos:prefLabel "URL"@en ;
	schema:name "URL"@en ;
	schema:description "location of a resource"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Url> ;
	wikibase:directClaim wdt:P2699 ;
	wikibase:claim p:P2699 ;
	wikibase:statementProperty ps:P2699 ;
	wikibase:statementValue psv:P2699 ;
	wikibase:qualifier pq:P2699 ;
	wikibase:qualifierValue pqv:P2699 ;
	wikibase:reference pr:P2699 ;
	wikibase:referenceValue prv:P2699 ;
	wikibase:novalue wdno:P2699 .

p:P2699 a owl:ObjectProperty .

psv:P2699 a owl:ObjectProperty .

pqv:P2699 a owl:ObjectProperty .

prv:P2699 a owl:ObjectProperty .

wdt:P2699 a owl:ObjectProperty .

ps:P2699 a owl:ObjectProperty .

pq:P2699 a owl:ObjectProperty .

pr:P2699 a owl:ObjectProperty .

wdno:P2699 a owl:Class ;
	owl:complementOf _:88208384d2489c448475c73564134874 .

_:88208384d2489c448475c73564134874 a owl:Restriction ;
	owl:onProperty wdt:P2699 ;
	owl:someValuesFrom owl:Thing .

wd:Q20828898 a wikibase:Item ;
	rdfs:label "The Movie Database"@en ;
	skos:prefLabel "The Movie Database"@en ;
	schema:name "The Movie Database"@en ;
	schema:description "free, collaborative database about films"@en .

wd:P9675 a wikibase:Property ;
	rdfs:label "MediaWiki page ID"@en ;
	skos:prefLabel "MediaWiki page ID"@en ;
	schema:name "MediaWiki page ID"@en ;
	schema:description "numeric identifier of a page in a MediaWiki wiki"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#String> ;
	wikibase:directClaim wdt:P9675 ;
	wikibase:claim p:P9675 ;
	wikibase:statementProperty ps:P9675 ;
	wikibase:statementValue psv:P9675 ;
	wikibase:qualifier pq:P9675 ;
	wikibase:qualifierValue pqv:P9675 ;
	wikibase:reference pr:P9675 ;
	wikibase:referenceValue prv:P9675 ;
	wikibase:novalue wdno:P9675 .

p:P9675 a owl:ObjectProperty .

psv:P9675 a owl:ObjectProperty .

pqv:P9675 a owl:ObjectProperty .

prv:P9675 a owl:ObjectProperty .

wdt:P9675 a owl:DatatypeProperty .

ps:P9675 a owl:DatatypeProperty .

pq:P9675 a owl:DatatypeProperty .

pr:P9675 a owl:DatatypeProperty .

wdno:P9675 a owl:Class ;
	owl:complementOf _:2ecd9cbe9af12015ed94e2cdb5a03233 .

_:2ecd9cbe9af12015ed94e2cdb5a03233 a owl:Restriction ;
	owl:onProperty wdt:P9675 ;
	owl:someValuesFrom owl:Thing .

wd:P2021 a wikibase:Property ;
	rdfs:label "Erdős number"@en ;
	skos:prefLabel "Erdős number"@en ;
	schema:name "Erdős number"@en ;
	schema:description "the \"collaborative distance\" between mathematician Paul Erdős and another person. Use point in time (P585) as qualifier and should be used with a source."@en ;
	wikibase:propertyType <http://wikiba.se/ontology#Quantity> ;
	wikibase:directClaim wdt:P2021 ;
	wikibase:claim p:P2021 ;
	wikibase:statementProperty ps:P2021 ;
	wikibase:statementValue psv:P2021 ;
	wikibase:qualifier pq:P2021 ;
	wikibase:qualifierValue pqv:P2021 ;
	wikibase:reference pr:P2021 ;
	wikibase:referenceValue prv:P2021 ;
	wikibase:novalue wdno:P2021 ;
	wikibase:directClaimNormalized wdtn:P2021 ;
	wikibase:statementValueNormalized psn:P2021 ;
	wikibase:qualifierValueNormalized pqn:P2021 ;
	wikibase:referenceValueNormalized prn:P2021 .

p:P2021 a owl:ObjectProperty .

psv:P2021 a owl:ObjectProperty .

pqv:P2021 a owl:ObjectProperty .

prv:P2021 a owl:ObjectProperty .

wdt:P2021 a owl:DatatypeProperty .

ps:P2021 a owl:DatatypeProperty .

pq:P2021 a owl:DatatypeProperty .

pr:P2021 a owl:DatatypeProperty .

psn:P2021 a owl:ObjectProperty .

pqn:P2021 a owl:ObjectProperty .

prn:P2021 a owl:ObjectProperty .

wdtn:P2021 a owl:DatatypeProperty .

wdno:P2021 a owl:Class ;
	owl:complementOf _:8530e4de4c64c3e1f8eaf2dc42c96ed3 .

_:8530e4de4c64c3e1f8eaf2dc42c96ed3 a owl:Restriction ;
	owl:onProperty wdt:P2021 ;
	owl:someValuesFrom owl:Thing .

wd:P3680 a wikibase:Property ;
	rdfs:label "statement supported by"@en ;
	skos:prefLabel "statement supported by"@en ;
	schema:name "statement supported by"@en ;
	schema:description "entity that supports a given statement"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P3680 ;
	wikibase:claim p:P3680 ;
	wikibase:statementProperty ps:P3680 ;
	wikibase:statementValue psv:P3680 ;
	wikibase:qualifier pq:P3680 ;
	wikibase:qualifierValue pqv:P3680 ;
	wikibase:reference pr:P3680 ;
	wikibase:referenceValue prv:P3680 ;
	wikibase:novalue wdno:P3680 .

p:P3680 a owl:ObjectProperty .

psv:P3680 a owl:ObjectProperty .

pqv:P3680 a owl:ObjectProperty .

prv:P3680 a owl:ObjectProperty .

wdt:P3680 a owl:ObjectProperty .

ps:P3680 a owl:ObjectProperty .

pq:P3680 a owl:ObjectProperty .

pr:P3680 a owl:ObjectProperty .

wdno:P3680 a owl:Class ;
	owl:complementOf _:defe103d803d832d863457c2b15fd965 .

_:defe103d803d832d863457c2b15fd965 a owl:Restriction ;
	owl:onProperty wdt:P3680 ;
	owl:someValuesFrom owl:Thing .

wd:Q11036149 a wikibase:Item ;
	rdfs:label "David Agnew"@en ;
	skos:prefLabel "David Agnew"@en ;
	schema:name "David Agnew"@en ;
	schema:description "pseudonym used at the BBC"@en .

wd:P805 a wikibase:Property ;
	rdfs:label "statement is subject of"@en ;
	skos:prefLabel "statement is subject of"@en ;
	schema:name "statement is subject of"@en ;
	schema:description "(qualifying) item that describes the relation identified in this statement"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P805 ;
	wikibase:claim p:P805 ;
	wikibase:statementProperty ps:P805 ;
	wikibase:statementValue psv:P805 ;
	wikibase:qualifier pq:P805 ;
	wikibase:qualifierValue pqv:P805 ;
	wikibase:reference pr:P805 ;
	wikibase:referenceValue prv:P805 ;
	wikibase:novalue wdno:P805 .

p:P805 a owl:ObjectProperty .

psv:P805 a owl:ObjectProperty .

pqv:P805 a owl:ObjectProperty .

prv:P805 a owl:ObjectProperty .

wdt:P805 a owl:ObjectProperty .

ps:P805 a owl:ObjectProperty .

pq:P805 a owl:ObjectProperty .

pr:P805 a owl:ObjectProperty .

wdno:P805 a owl:Class ;
	owl:complementOf _:b0057da68fba9959eba43619c1638733 .

_:b0057da68fba9959eba43619c1638733 a owl:Restriction ;
	owl:onProperty wdt:P805 ;
	owl:someValuesFrom owl:Thing .

wd:Q76504070 a wikibase:Item ;
	rdfs:label "Virtual Study of Theatre Institute"@en ;
	skos:prefLabel "Virtual Study of Theatre Institute"@en ;
	schema:name "Virtual Study of Theatre Institute"@en ;
	schema:description "The Virtual Study (ViS), which is operated by the Arts and Theatre Institute, is a comprehensive interface for accessing all of the Institute's information databases."@en .

wd:P8129 a wikibase:Property ;
	rdfs:label "IDU theatre name unique ID"@en ;
	skos:prefLabel "IDU theatre name unique ID"@en ;
	schema:name "IDU theatre name unique ID"@en ;
	schema:description "identifier for theatres (not theatre buildings) in Czechia in the Theatre Institute database"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#ExternalId> ;
	wikibase:directClaim wdt:P8129 ;
	wikibase:claim p:P8129 ;
	wikibase:statementProperty ps:P8129 ;
	wikibase:statementValue psv:P8129 ;
	wikibase:qualifier pq:P8129 ;
	wikibase:qualifierValue pqv:P8129 ;
	wikibase:reference pr:P8129 ;
	wikibase:referenceValue prv:P8129 ;
	wikibase:novalue wdno:P8129 ;
	wikibase:directClaimNormalized wdtn:P8129 ;
	wikibase:statementValueNormalized psn:P8129 ;
	wikibase:qualifierValueNormalized pqn:P8129 ;
	wikibase:referenceValueNormalized prn:P8129 .

p:P8129 a owl:ObjectProperty .

psv:P8129 a owl:ObjectProperty .

pqv:P8129 a owl:ObjectProperty .

prv:P8129 a owl:ObjectProperty .

wdt:P8129 a owl:DatatypeProperty .

ps:P8129 a owl:DatatypeProperty .

pq:P8129 a owl:DatatypeProperty .

pr:P8129 a owl:DatatypeProperty .

psn:P8129 a owl:ObjectProperty .

pqn:P8129 a owl:ObjectProperty .

prn:P8129 a owl:ObjectProperty .

wdtn:P8129 a owl:ObjectProperty .

wdno:P8129 a owl:Class ;
	owl:complementOf _:f04bb319ac6bcad504a8c0fba33dda96 .

_:f04bb319ac6bcad504a8c0fba33dda96 a owl:Restriction ;
	owl:onProperty wdt:P8129 ;
	owl:someValuesFrom owl:Thing .

wd:Q109122021 a wikibase:Item ;
	rdfs:label "film with screenplay by this person"@en ;
	skos:prefLabel "film with screenplay by this person"@en ;
	schema:name "film with screenplay by this person"@en .

wd:P642 a wikibase:Property ;
	rdfs:label "of"@en ;
	skos:prefLabel "of"@en ;
	schema:name "of"@en ;
	schema:description "(Use a more specific property where feasible; this property will be deprecated) qualifier stating that a statement applies within the scope of a particular item"@en ;
	wikibase:propertyType <http://wikiba.se/ontology#WikibaseItem> ;
	wikibase:directClaim wdt:P642 ;
	wikibase:claim p:P642 ;
	wikibase:statementProperty ps:P642 ;
	wikibase:statementValue psv:P642 ;
	wikibase:qualifier pq:P642 ;
	wikibase:qualifierValue pqv:P642 ;
	wikibase:reference pr:P642 ;
	wikibase:referenceValue prv:P642 ;
	wikibase:novalue wdno:P642 .

p:P642 a owl:ObjectProperty .

psv:P642 a owl:ObjectProperty .

pqv:P642 a owl:ObjectProperty .

prv:P642 a owl:ObjectProperty .

wdt:P642 a owl:ObjectProperty .

ps:P642 a owl:ObjectProperty .

pq:P642 a owl:ObjectProperty .

pr:P642 a owl:ObjectProperty .

wdno:P642 a owl:Class ;
	owl:complementOf _:2a127b1015667b59aad92244e4ebb227 .

_:2a127b1015667b59aad92244e4ebb227 a owl:Restriction ;
	owl:onProperty wdt:P642 ;
	owl:someValuesFrom owl:Thing .

wd:Q59431323 owl:sameAs wd:Q42 .

wd:Q60594743 owl:sameAs wd:Q42 .

v:12b3879e659a02b6b54b45eb5d03fe47 a wikibase:GlobecoordinateValue ;
	wikibase:geoLatitude "51.566527777778"^^xsd:double ;
	wikibase:geoLongitude "-0.14544444444444"^^xsd:double ;
	wikibase:geoPrecision "2.7777777777778E-5"^^xsd:double ;
	wikibase:geoGlobe <http://www.wikidata.org/entity/Q2> .

v:4e3244ccc4d14053f6649e98562f6f0a a wikibase:QuantityValue ;
	wikibase:quantityAmount "+19460"^^xsd:decimal ;
	wikibase:quantityUnit <http://www.wikidata.org/entity/Q199> .

v:a75316bb9a036450071a6af49f7907ca a wikibase:QuantityValue ;
	wikibase:quantityAmount "+1.96"^^xsd:decimal ;
	wikibase:quantityUnit <http://www.wikidata.org/entity/Q11573> ;
	wikibase:quantityNormalized v:a75316bb9a036450071a6af49f7907ca .

v:3bbb57bce2998f753db444ac3162397e a wikibase:QuantityValue ;
	wikibase:quantityAmount "+60"^^xsd:decimal ;
	wikibase:quantityUnit <http://www.wikidata.org/entity/Q199> .

v:6fc1f325788cfea1bc9c869fbbfe7824 a wikibase:QuantityValue ;
	wikibase:quantityAmount "+10"^^xsd:decimal ;
	wikibase:quantityUnit <http://www.wikidata.org/entity/Q199> .

v:84e385ae74943fd44e81e730da9f0d52 a wikibase:TimeValue ;
	wikibase:timeValue "2022-10-09T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:866de9172090592497e94e497370838e a wikibase:TimeValue ;
	wikibase:timeValue "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:811f31244f158332fb4f1e13ae9f4d50 a wikibase:TimeValue ;
	wikibase:timeValue "1979-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:426df9023763f08b066f4478480f44cd a wikibase:TimeValue ;
	wikibase:timeValue "1952-03-11T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:7923e5d1b1fa559f6b007a04bf2ecbec a wikibase:TimeValue ;
	wikibase:timeValue "2015-07-07T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:e02008c5cc5eff945d14e097a43ba7c1 a wikibase:TimeValue ;
	wikibase:timeValue "2020-06-26T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:a28ea88b458d12d7a75a1eb55a43c006 a wikibase:TimeValue ;
	wikibase:timeValue "2016-01-11T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:b3795d3425e0bbdd474f3138cad4a069 a wikibase:TimeValue ;
	wikibase:timeValue "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:ff88e131a5f24ca6666a0fba1f160d70 a wikibase:TimeValue ;
	wikibase:timeValue "2001-05-15T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:5409bf3ed914e26cd892635503b80d67 a wikibase:TimeValue ;
	wikibase:timeValue "2001-05-13T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:cafa718bf09788037748f39cf2442eec a wikibase:TimeValue ;
	wikibase:timeValue "2015-01-03T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:1c30ade7914d072877b2db404a683d7c a wikibase:TimeValue ;
	wikibase:timeValue "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:b4e115ff00072de886277fab5b590dc9 a wikibase:TimeValue ;
	wikibase:timeValue "2017-10-28T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:8bb44cabe981a9533b690ce41b5a1def a wikibase:TimeValue ;
	wikibase:timeValue "2013-12-03T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:bb99e35a15ee5efe5e14c0151dbea651 a wikibase:TimeValue ;
	wikibase:timeValue "2014-01-03T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:08991931b05da15c7541bf2cef57593d a wikibase:TimeValue ;
	wikibase:timeValue "2001-05-12T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:670d91481c1e30640509865826308a7f a wikibase:TimeValue ;
	wikibase:timeValue "2008-10-24T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:3ce9f606decac48214dd1c61f4d5e37d a wikibase:TimeValue ;
	wikibase:timeValue "1957-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:6ae4786d7527afd3ce0d6e23a9443ded a wikibase:TimeValue ;
	wikibase:timeValue "2001-06-25T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:25cb069ef38b7407802784ed8be6d4db a wikibase:TimeValue ;
	wikibase:timeValue "2013-09-06T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:f987783e1f9c9fa0cb0b774d330af52d a wikibase:TimeValue ;
	wikibase:timeValue "2013-10-28T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:92a2dadeb517309aab503fe32eb4cc72 a wikibase:TimeValue ;
	wikibase:timeValue "1974-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:cf5d396bdc1074d11438fc47ab8bcf40 a wikibase:TimeValue ;
	wikibase:timeValue "1971-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:9a581f623d181b3e8160146d1a1c062c a wikibase:TimeValue ;
	wikibase:timeValue "1970-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:1f2f39b788827a68ca51882be5e66e8f a wikibase:TimeValue ;
	wikibase:timeValue "1959-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:c353180604d93a58fe878299bb20d386 a wikibase:TimeValue ;
	wikibase:timeValue "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:d49b98a030ea836c922381a07d3a55a5 a wikibase:TimeValue ;
	wikibase:timeValue "1996-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:7aef3f9625980f5bc8ab38e908f62317 a wikibase:TimeValue ;
	wikibase:timeValue "2015-03-07T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "60"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:f5628a29ba10551697cdc79d94741d01 a wikibase:TimeValue ;
	wikibase:timeValue "1983-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:a503dea72c47d232fc0dbb53d5a68175 a wikibase:TimeValue ;
	wikibase:timeValue "2020-09-28T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:0316f0e5815940ce1f047191bf0d03a7 a wikibase:TimeValue ;
	wikibase:timeValue "2012-03-06T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:f6955f49ad71011beba4b07f873a3fbd a wikibase:TimeValue ;
	wikibase:timeValue "2018-11-15T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:2fb22d1343a8bf85911d0d9cd8e83cfb a wikibase:TimeValue ;
	wikibase:timeValue "2019-06-03T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:f3d1202902d72c599bb60ae3067d62cc a wikibase:TimeValue ;
	wikibase:timeValue "2013-03-11T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:71d16b65f72ca8aac0e3e537ced84e9f a wikibase:TimeValue ;
	wikibase:timeValue "2020-11-18T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:c8ae0d38443d4671d3f893d7000a859e a wikibase:TimeValue ;
	wikibase:timeValue "1991-11-25T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:452d20a53d29b832012048b95731af88 a wikibase:TimeValue ;
	wikibase:timeValue "2019-05-30T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:74b68fd56159517b3a44aa750be0aacb a wikibase:TimeValue ;
	wikibase:timeValue "2018-03-26T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:3df1a4e13d092543eda3e39665551584 a wikibase:TimeValue ;
	wikibase:timeValue "2018-08-24T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:878188974960c25c2b4875ad7823eeb7 a wikibase:TimeValue ;
	wikibase:timeValue "2019-04-18T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:70d666aa88140f3d03060e8dc66c626a a wikibase:TimeValue ;
	wikibase:timeValue "2018-10-07T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:c1906a2aa12373a91586fc8a9068e01b a wikibase:TimeValue ;
	wikibase:timeValue "2022-03-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:4f84464b2a3a2f358c6ce9170270d2a7 a wikibase:TimeValue ;
	wikibase:timeValue "2019-07-28T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:2a7b56de1878bc4c97581b338b7c29bd a wikibase:TimeValue ;
	wikibase:timeValue "2021-05-28T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:2c8bbe15e629c2fc1c86d342012b008d a wikibase:TimeValue ;
	wikibase:timeValue "2020-02-26T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:83500220681ae2dc2c3ce97618999534 a wikibase:TimeValue ;
	wikibase:timeValue "2015-03-18T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:deb344d534444ea4748848329bb02835 a wikibase:TimeValue ;
	wikibase:timeValue "2020-06-06T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:841e5e98ca80d010e5056f4fd5219a42 a wikibase:TimeValue ;
	wikibase:timeValue "2011-02-06T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:a95aa8e87e4949f5eea726879e68de14 a wikibase:TimeValue ;
	wikibase:timeValue "2020-08-26T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:6db7aa179b1e57b39bd302c2c65d51de a wikibase:TimeValue ;
	wikibase:timeValue "2017-04-13T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:3a39cf203782d041f301961412f94abf a wikibase:TimeValue ;
	wikibase:timeValue "2020-12-16T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:504631812af384786364d4e937add1e8 a wikibase:TimeValue ;
	wikibase:timeValue "2020-02-23T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:c69dce79ab93615f4e11a3a6b71d6e52 a wikibase:TimeValue ;
	wikibase:timeValue "2020-12-21T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:879ab479c61145d6cf9d0b29093b0e10 a wikibase:TimeValue ;
	wikibase:timeValue "1983-01-01T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "9"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:d7f52187a8ce30f7ec8a487d174af8aa a wikibase:TimeValue ;
	wikibase:timeValue "2021-08-04T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:f6180ec9c7cb0d73c79d8217132f18ed a wikibase:TimeValue ;
	wikibase:timeValue "2021-09-20T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:72d36e938d465d1e5fc4b40168ce64a6 a wikibase:TimeValue ;
	wikibase:timeValue "2022-08-18T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:6f29640699a4951891392dfb0d9b5f1b a wikibase:TimeValue ;
	wikibase:timeValue "2022-09-10T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

v:4b02c439aed07a98e847539d9e257e4d a wikibase:TimeValue ;
	wikibase:timeValue "2013-11-13T00:00:00Z"^^xsd:dateTime ;
	wikibase:timePrecision "11"^^xsd:integer ;
	wikibase:timeTimezone "0"^^xsd:integer ;
	wikibase:timeCalendarModel <http://www.wikidata.org/entity/Q1985727> .

ref:a4d108601216cffd2ff1819ccf12b483486b62e7 a wikibase:Reference ;
	pr:P248 wd:Q19938912 ;
	pr:P268 "11888092r" ;
	prn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	pr:P407 wd:Q150 ;
	pr:P813 "2022-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:84e385ae74943fd44e81e730da9f0d52 .

ref:f38b0c50096908694fe215d33497be11eb3f9d3b a wikibase:Reference ;
	pr:P248 wd:Q36578 ;
	pr:P227 "119033364" ;
	prn:P227 <https://d-nb.info/gnd/119033364> ;
	pr:P407 wd:Q188 ;
	pr:P813 "2022-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:84e385ae74943fd44e81e730da9f0d52 .

ref:6f60c456c95ba618e266011ead6d50a81cfb3e76 a wikibase:Reference ;
	pr:P248 wd:Q47757534 ;
	pr:P269 "026677636" ;
	prn:P269 <http://www.idref.fr/026677636/id> ;
	pr:P407 wd:Q150 ;
	pr:P813 "2022-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:84e385ae74943fd44e81e730da9f0d52 .

ref:f67142030dd221e1441a10a7438323ad44f35be8 a wikibase:Reference ;
	pr:P248 wd:Q193563 ;
	pr:P268 "11888092r" ;
	prn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e .

ref:0fed87b3320338e0ed0587df9b43e47cfcf5b69f a wikibase:Reference ;
	pr:P854 <http://www.jinni.com/tv/the-hitchhikers-guide-to-the-galaxy/cast-crew/> .

ref:ebf92afc2ec3ffcf1aec1d55f0b066d190281576 a wikibase:Reference ;
	pr:P248 wd:Q2567271 ;
	pr:P4789 "U4994" .

ref:2f26d70b1e8b8cb53882b83197d1859e226da12d a wikibase:Reference ;
	pr:P248 wd:Q15222191 ;
	pr:P268 "11888092r" ;
	prn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e .

ref:355b56329b78db22be549dec34f2570ca61ca056 a wikibase:Reference ;
	pr:P248 wd:Q5375741 .

ref:a02f3a77ddd343e6b88be25696b055f5131c3d64 a wikibase:Reference ;
	pr:P248 wd:Q36578 ;
	pr:P227 "119033364" ;
	prn:P227 <https://d-nb.info/gnd/119033364> ;
	pr:P813 "2015-07-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:7923e5d1b1fa559f6b007a04bf2ecbec .

ref:87dfb64c99ab2c706c135e0110f57d1ba58d67eb a wikibase:Reference ;
	pr:P248 wd:Q19938912 ;
	pr:P268 "11888092r" ;
	prn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	pr:P813 "2020-06-26T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:e02008c5cc5eff945d14e097a43ba7c1 .

ref:3bc90af5225a0b1248b3362e911577073e904e20 a wikibase:Reference ;
	pr:P248 wd:Q1139587 ;
	pr:P2168 "271209" ;
	pr:P813 "2016-01-11T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:a28ea88b458d12d7a75a1eb55a43c006 .

ref:b460d7e5cae668698a5dfe74198df6632fe7231d a wikibase:Reference ;
	pr:P248 wd:Q29861311 ;
	pr:P3430 "w65h7md1" ;
	pr:P1810 "Douglas Adams" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 .

ref:28af4e1131157dbbb2a5bbae189519a22e7d2b79 a wikibase:Reference ;
	pr:P854 <https://www.wired.com/2012/03/i-miss-douglas-adams/> .

ref:fcdddce2cc4540a613b0b8c0e5d2bbd2cc5704a9 a wikibase:Reference ;
	pr:P854 <http://www.independent.co.uk/arts-entertainment/books/news/google-doodle-celebrates-life-of-hitchhikers-guide-to-the-galaxy-author-douglas-adams-8528856.html> .

ref:162d5556b3c48733c6c27b4cddcb99bc86f4bf70 a wikibase:Reference ;
	pr:P248 wd:Q2629164 ;
	pr:P1233 "122" ;
	pr:P1810 "Douglas Adams" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 .

ref:bab32d323b6c92d91ff7d0c4707346012900761b a wikibase:Reference ;
	pr:P854 <http://www.screenonline.org.uk/people/id/1233876/index.html> .

ref:0d9f07c561f61776c61a026473508c535af28267 a wikibase:Reference ;
	pr:P248 wd:Q63056 ;
	pr:P535 "22814" ;
	pr:P1810 "Douglas Noel Adams" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 .

ref:dc42b8fb4c89807fe07a74ee933d45e4ba6353a1 a wikibase:Reference ;
	pr:P248 wd:Q3343389 ;
	pr:P5570 "143" ;
	pr:P1810 "Douglas ADAMS" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 .

ref:7571c014841534580d357bfbc652e23c8dfe6f76 a wikibase:Reference ;
	pr:P248 wd:Q237227 ;
	pr:P5019 "adams-douglas-noel" ;
	pr:P1810 "Douglas Noël Adams" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 .

ref:a3feaf25fa95c4893bc1dc74ca6d884bc37c2723 a wikibase:Reference ;
	pr:P248 wd:Q2877812 ;
	pr:P3630 "2627" ;
	pr:P1810 "Douglas Adams" .

ref:3780b8d878be9297899f30beb767bf408acbbd4a a wikibase:Reference ;
	pr:P248 wd:Q107343683 ;
	pr:P1284 "00000020676" ;
	pr:P813 "2017-10-09T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b3795d3425e0bbdd474f3138cad4a069 ;
	pr:P1810 "Douglas Adams" .

ref:3f4d26cf841e20630c969afc0e48e5e3ef0c5a49 a wikibase:Reference ;
	pr:P854 <http://www.theguardian.com/news/2001/may/15/guardianobituaries.books> ;
	pr:P577 "2001-05-15T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:ff88e131a5f24ca6666a0fba1f160d70 ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1433 wd:Q11148 ;
	pr:P50 wd:Q18145749 ;
	pr:P1476 "Obituary: Douglas Adams"@en ;
	pr:P407 wd:Q1860 .

ref:1e351ee9aaac2b04ed1af6c6adcfd211f380c072 a wikibase:Reference ;
	pr:P1476 "Hitch Hiker's Guide author Douglas Adams dies aged 49"@en ;
	pr:P577 "2001-05-13T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:5409bf3ed914e26cd892635503b80d67 ;
	pr:P407 wd:Q1860 ;
	pr:P854 <http://www.telegraph.co.uk/news/uknews/1330072/Hitch-Hikers-Guide-author-Douglas-Adams-dies-aged-49.html> ;
	pr:P813 "2015-01-03T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:cafa718bf09788037748f39cf2442eec ;
	pr:P2093 "Andrew Alderson",
		"Daniel Foggo" ;
	pr:P1433 wd:Q192621 .

ref:e9a6c72ac1c0c2bc336ff672ddaf89ecd17fff68 a wikibase:Reference ;
	pr:P854 <https://www.theguardian.com/uk/2001/may/13/books.booksnews> ;
	pr:P813 "2017-10-28T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:b4e115ff00072de886277fab5b590dc9 .

ref:268aeb992f54257af5a86d9d7f0d9627214b628f a wikibase:Reference ;
	pr:P854 <https://www.locusmag.com/2001/News/News05a.html> .

ref:5f3599922f5bee23969e91300f9eb461c7903a4b a wikibase:Reference ;
	pr:P854 <http://www.nytimes.com/2001/05/15/arts/douglas-adams-49-author-of-hitchhiker-s-guide-spoofs.html> .

ref:8da4cf44f0a93c09c81d3b38ef8e68f8a4c4a6dc a wikibase:Reference ;
	pr:P248 wd:Q23023088 ;
	pr:P2191 "10014" ;
	pr:P1810 "Douglas Adams" .

ref:792c357be1391569a970da13099242a6ad44af96 a wikibase:Reference ;
	pr:P854 <https://web.archive.org/web/20111010233102/http://www.laweekly.com/2001-05-24/news/lots-of-screamingly-funny-sentences-no-fish/> .

ref:f7d13e8497267ca24630766d281da71ad49e6cf1 a wikibase:Reference ;
	pr:P854 <http://www.historyorb.com/people/douglas-adams> ;
	pr:P407 wd:Q1860 ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1476 "Famous People - Douglas Adams"@en ;
	pr:P248 wd:Q15290366 ;
	pr:P1065 <https://web.archive.org/web/20131203010221/http://www.historyorb.com/people/douglas-adams> ;
	pr:P2960 "2013-12-03T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:8bb44cabe981a9533b690ce41b5a1def .

ref:94f550fd58f53396915a7910e0bea7fac646924f a wikibase:Reference ;
	pr:P1476 "Obituary: Douglas Adams"@en ;
	pr:P577 "2001-05-15T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:ff88e131a5f24ca6666a0fba1f160d70 ;
	pr:P407 wd:Q1860 ;
	pr:P854 <http://www.theguardian.com/news/2001/may/15/guardianobituaries.books> ;
	pr:P813 "2014-01-03T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:bb99e35a15ee5efe5e14c0151dbea651 ;
	pr:P50 wd:Q18145749 ;
	pr:P248 wd:Q11148 .

ref:8a954fb86baef5ac9f138ca641aea07b80570447 a wikibase:Reference ;
	pr:P1476 "Hitch Hiker's Guide author Douglas Adams dies aged 49"@en ;
	pr:P577 "2001-05-13T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:5409bf3ed914e26cd892635503b80d67 ;
	pr:P407 wd:Q1860 ;
	pr:P854 <http://www.telegraph.co.uk/news/uknews/1330072/Hitch-Hikers-Guide-author-Douglas-Adams-dies-aged-49.html> ;
	pr:P813 "2014-01-03T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:bb99e35a15ee5efe5e14c0151dbea651 ;
	pr:P248 wd:Q192621 .

ref:7ee048b166930e319a10ef56bc8bfa7202a31997 a wikibase:Reference ;
	pr:P854 <http://www.nytimes.com/books/01/05/13/daily/adams-obit.html> ;
	pr:P577 "2001-05-12T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:08991931b05da15c7541bf2cef57593d ;
	pr:P50 wd:Q26724169 ;
	pr:P407 wd:Q1860 ;
	pr:P1476 "Douglas Adams, Author of 'Hitchhiker's Guide to the Galaxy,' Dies at 49"@en ;
	pr:P248 wd:Q9684 .

ref:de76f366926e923ef61d60535280c65570d26cc2 a wikibase:Reference ;
	pr:P854 <http://www.eskimo.com/~rkj/weekly/aa051701a.htm> .

ref:027c2e3272694f0292b8ed6efa7d26e4b27fa458 a wikibase:Reference ;
	pr:P854 <http://www.waymarking.com/waymarks/WMH912_Douglas_Adams_Highgate_East_Cemetery_London_UK> .

ref:e4f9e55d169fadcbf86b00425f1cce94ce788679 a wikibase:Reference ;
	pr:P854 <http://highgatecemetery.org/visit/who> ;
	pr:P407 wd:Q1860 ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1476 "Whos here"@en ;
	pr:P248 wd:Q533697 ;
	pr:P1065 <https://web.archive.org/web/20131203025040/http://highgatecemetery.org/visit/who> ;
	pr:P2960 "2013-12-03T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:8bb44cabe981a9533b690ce41b5a1def .

ref:e71a7903858496c67eea189a7084d5559f788edb a wikibase:Reference ;
	pr:P143 wd:Q565 .

ref:fa278ebfc458360e5aed63d5058cca83c46134f1 a wikibase:Reference ;
	pr:P143 wd:Q328 .

ref:14d2400e3b1d36332748dc330276f099eeaa8800 a wikibase:Reference ;
	pr:P143 wd:Q1551807 .

ref:d4bd87b862b12d99d26e86472d44f26858dee639 a wikibase:Reference ;
	pr:P143 wd:Q8447 .

ref:8d3f0e4d193c2c8dd2b81d935dec6d736099af35 a wikibase:Reference ;
	pr:P1476 "Douglas Noel Adams"@en ;
	pr:P854 <http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=22814> ;
	pr:P123 wd:Q63056 ;
	pr:P577 "2001-06-25T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:6ae4786d7527afd3ce0d6e23a9443ded ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1065 <https://web.archive.org/web/20131203002612/http://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=22814> ;
	pr:P2960 "2013-12-03T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:8bb44cabe981a9533b690ce41b5a1def .

ref:6a3634133c828f5c3cba3f33d033c4d2ae67f5ec a wikibase:Reference ;
	pr:P854 <http://www.nndb.com/people/731/000023662/> ;
	pr:P407 wd:Q1860 ;
	pr:P123 wd:Q1373513 ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1476 "Douglas Adams"@en ;
	pr:P1065 <https://web.archive.org/web/20130906015958/http://www.nndb.com/people/731/000023662/> ;
	pr:P2960 "2013-09-06T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:25cb069ef38b7407802784ed8be6d4db .

ref:63309730314f4c20bf6b1008fe8ffd2b155272b3 a wikibase:Reference ;
	pr:P248 wd:Q54919 .

ref:2b00cb481cddcac7623114367489b5c194901c4a a wikibase:Reference ;
	pr:P248 wd:Q15241312 ;
	pr:P577 "2013-10-28T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:f987783e1f9c9fa0cb0b774d330af52d .

ref:9177d75c6061e9e1ab149c0aa01bee5a90e07415 a wikibase:Reference ;
	pr:P854 <http://www.nndb.com/people/731/000023662/> ;
	pr:P407 wd:Q1860 ;
	pr:P123 wd:Q1373513 ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P1476 "Douglas Adams"@en .

ref:04faceee0261403ec1371a48835b38dcacd0403d a wikibase:Reference ;
	pr:P854 <http://www.brentwoodschool.co.uk/Notable-Old-Brentwoods> ;
	pr:P1476 "Notable Old Brentwoods"@en .

ref:5bf8f7ddb6bb0daa4341120b6ca0b06898492ebc a wikibase:Reference ;
	pr:P854 <https://viaf.org/viaf/113230702/> ;
	pr:P1065 <https://web.archive.org/web/20201117185047/https://viaf.org/viaf/113230702/> ;
	pr:P2960 "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:c353180604d93a58fe878299bb20d386 .

ref:26c14416670af4da8614d9db92859f07401e3b88 a wikibase:Reference ;
	pr:P214 "113230702" ;
	prn:P214 <http://viaf.org/viaf/113230702> ;
	pr:P248 wd:Q54919 ;
	pr:P813 "2015-03-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:7aef3f9625980f5bc8ab38e908f62317 .

ref:327355ae07a14af7f684a612af7d7452ac62bb63 a wikibase:Reference ;
	pr:P854 <https://www.thehugoawards.org/hugo-history/1979-hugo-awards/> .

ref:94b3c14bb9d4fe6cbe10c96a169b5c54cccc6b36 a wikibase:Reference ;
	pr:P1476 "Douglas Adams's 60th birthday marked with liff, the universe and Pink Floyd"@en ;
	pr:P1433 wd:Q5614018 ;
	pr:P577 "2012-03-06T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:0316f0e5815940ce1f047191bf0d03a7 ;
	pr:P854 <https://www.theguardian.com/books/2012/mar/06/douglas-adams-60th-birthday-party> ;
	pr:P1065 <https://web.archive.org/web/20201117181919/https://www.theguardian.com/books/2012/mar/06/douglas-adams-60th-birthday-party> ;
	pr:P2960 "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:c353180604d93a58fe878299bb20d386 .

ref:ea084a413b5055da7bfc68fbd54d389080918b23 a wikibase:Reference ;
	pr:P854 <https://books.google.com/books?id=0oA8DwAAQBAJ&pg=PT107> ;
	pr:P813 "2018-11-15T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:f6955f49ad71011beba4b07f873a3fbd ;
	pr:P957 "1-782-43841-6" ;
	prn:P957 <urn:ISBN:1-782-43841-6> ;
	pr:P212 "978-1-782-43841-0" ;
	prn:P212 <urn:ISBN:978-1-782-43841-0> ;
	pr:P1065 <https://web.archive.org/web/20190603110729/https://books.google.com/books?id=0oA8DwAAQBAJ&pg=PT107> ;
	pr:P2960 "2019-06-03T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:2fb22d1343a8bf85911d0d9cd8e83cfb .

ref:eb03fd03eef53befd07c43d5dfeea4047fb9a72e a wikibase:Reference ;
	pr:P854 <https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction> ;
	pr:P1476 "Douglas Adams is still the king of comic science fiction"@en ;
	pr:P577 "2013-03-11T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:f3d1202902d72c599bb60ae3067d62cc ;
	pr:P248 wd:Q11148 ;
	pr:P1065 <https://web.archive.org/web/20201117102058/https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction> ;
	pr:P2960 "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:c353180604d93a58fe878299bb20d386 .

ref:6dcb62714f5201f4ea22c331a6e32e817916981f a wikibase:Reference ;
	pr:P854 <https://www.theguardian.com/books/2013/mar/11/douglas-adams-king-comic-science-fiction> ;
	pr:P1476 "Douglas Adams is still the king of comic science fiction"@en ;
	pr:P577 "2013-03-11T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:f3d1202902d72c599bb60ae3067d62cc ;
	pr:P248 wd:Q11148 .

ref:970f20bd8dc49db5bbe0de9d4c7b3b555c134e59 a wikibase:Reference ;
	pr:P3106 "commentisfree/2015/aug/07/hitchhikers-guide-galaxy-book-changed-me-vogons-economics" .

ref:c8c63046ea013957f2ae353e4181e82d2829d3bb a wikibase:Reference ;
	pr:P1065 <https://web.archive.org/web/20201118223820/http://www.google.com/doodles/douglas-adams-61st-birthday> ;
	pr:P2960 "2020-11-18T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:71d16b65f72ca8aac0e3e537ced84e9f .

ref:d3a1bf3d15f15231160c53372322c3beffdc741d a wikibase:Reference ;
	pr:P854 <https://www.cambridgeindependent.co.uk/whats-on/cambridge-honours-hitchhikers-guide-to-the-galaxy-author-douglas-adams-9071978/> ;
	pr:P1476 "Cambridge holds Towel Day in honour of Douglas Adams"@en ;
	pr:P577 "2019-05-30T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:452d20a53d29b832012048b95731af88 ;
	pr:P1065 <https://web.archive.org/web/20201117174858/https://www.cambridgeindependent.co.uk/whats-on/cambridge-honours-hitchhikers-guide-to-the-galaxy-author-douglas-adams-9071978/> ;
	pr:P2960 "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:c353180604d93a58fe878299bb20d386 .

ref:154031fdff9fbadaa5f15c8b7e4ae46ca13db45a a wikibase:Reference ;
	pr:P143 wd:Q28054658 .

ref:133415593c921f4a8641abd7123e2c4d451cca0c a wikibase:Reference ;
	pr:P4656 <https://www.wikidata.org/w/index.php?title=Wikidata:Property_proposal/BNB_person_ID&oldid=700383726> .

ref:090947d10eb71b36c636524a7efcdbb82d2f7a00 a wikibase:Reference ;
	pr:P248 wd:Q1798125 ;
	pr:P854 <https://libris.kb.se/katalogisering/1zcfh30k0gr4zxt> ;
	pr:P577 "2018-03-26T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:74b68fd56159517b3a44aa750be0aacb ;
	pr:P813 "2018-08-24T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:3df1a4e13d092543eda3e39665551584 ;
	pr:P1065 <https://web.archive.org/web/20190418182355/https://libris.kb.se/katalogisering/1zcfh30k0gr4zxt> ;
	pr:P2960 "2019-04-18T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:878188974960c25c2b4875ad7823eeb7 .

ref:08e3e6521cbb059b15df261cf79fcefcc29a682a a wikibase:Reference ;
	pr:P248 wd:Q54919 ;
	pr:P214 "113230702" ;
	prn:P214 <http://viaf.org/viaf/113230702> ;
	pr:P813 "2018-10-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:70d666aa88140f3d03060e8dc66c626a .

ref:5adc5909e87421b0f55910d4bcbd4ce599bceab5 a wikibase:Reference ;
	pr:P248 wd:Q13550863 ;
	pr:P691 "jn19990000029" ;
	pr:P813 "2022-03-01T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:c1906a2aa12373a91586fc8a9068e01b .

ref:3a8536419e5f6bc8271f5902027354fc56ff7a8b a wikibase:Reference ;
	pr:P248 wd:Q746368 ;
	pr:P813 "2019-07-28T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:4f84464b2a3a2f358c6ce9170270d2a7 .

ref:7283e4bf08c6476bff61211d3429dbb47b5bec27 a wikibase:Reference ;
	pr:P854 <https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams> ;
	pr:P1476 "Fonds AdamsDN - Papers of Douglas Noël Adams"@en ;
	pr:P1065 <https://web.archive.org/web/20201117104349/https://www.sjcarchives.org.uk/personal/index.php/papers-of-douglas-noel-adams> ;
	pr:P2960 "2020-11-17T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:c353180604d93a58fe878299bb20d386 .

ref:b2c64ac3b79264041210b0803c48d9a8ad98314d a wikibase:Reference ;
	pr:P4656 <https://www.wikidata.org/w/index.php?title=Wikidata:Property_proposal/FantLab_author_ID&oldid=1032426353> .

ref:354bdf2193acbbe0217db68cad6365e38d8a90a3 a wikibase:Reference ;
	pr:P248 wd:Q20828898 ;
	pr:P345 "nm0010930" ;
	pr:P813 "2021-05-28T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:2a7b56de1878bc4c97581b338b7c29bd .

ref:76f54c6cf51e45eabdb0fecfdd703679f2067447 a wikibase:Reference ;
	pr:P248 wd:Q20828898 ;
	pr:P646 "/m/0282x" ;
	prn:P646 <http://g.co/kg/m/0282x> ;
	pr:P813 "2021-05-28T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:2a7b56de1878bc4c97581b338b7c29bd .

ref:56f84865a76d214a29a4de08338f89fa2e0c0f5d a wikibase:Reference ;
	pr:P854 <https://iswcnet.cisac.org/> ;
	pr:P813 "2020-02-26T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:2c8bbe15e629c2fc1c86d342012b008d ;
	pr:P1065 <https://web.archive.org/web/20150318093140/http://iswcnet.cisac.org/> ;
	pr:P2960 "2015-03-18T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:83500220681ae2dc2c3ce97618999534 .

ref:9a136912b73c22560eaa627d398c0670202dd63a a wikibase:Reference ;
	pr:P248 wd:Q54919 ;
	pr:P214 "113230702" ;
	prn:P214 <http://viaf.org/viaf/113230702> ;
	pr:P813 "2020-06-06T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:deb344d534444ea4748848329bb02835 .

ref:5c0fe42f3c1ade9a0028546b89fa1226f8e029eb a wikibase:Reference ;
	pr:P854 <https://dirkgently.fandom.com/wiki/Douglas_Adams?oldid=7417> ;
	pr:P813 "2020-08-26T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:a95aa8e87e4949f5eea726879e68de14 ;
	pr:P1810 "Douglas Adams" .

ref:5f446c2bf2ad680834678b82140cd8ca4910e2fb a wikibase:Reference ;
	pr:P854 <https://github.com/rchurchley/erdos-bacon-sabbath/issues/16> ;
	pr:P1065 <https://web.archive.org/web/20201216030053/https://github.com/rchurchley/erdos-bacon-sabbath/issues/16> ;
	pr:P2960 "2020-12-16T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:3a39cf203782d041f301961412f94abf .

ref:66cc747c76cfb3538eb404dab78a2c3942ac5ca0 a wikibase:Reference ;
	pr:P1263 "731/000023662" .

ref:75b1617556ee3edc63bc02b87f4a042a079e0901 a wikibase:Reference ;
	pr:P854 <https://www.bbc.co.uk/doctorwho/classic/episodeguide/cityofdeath/detail.shtml> ;
	pr:P1065 <https://web.archive.org/web/20200223004353/http://www.bbc.co.uk/doctorwho/classic/episodeguide/cityofdeath/detail.shtml> ;
	pr:P2960 "2020-02-23T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:504631812af384786364d4e937add1e8 .

ref:760e3627ff3aaf106fde98cc8fd2fc0cdec02773 a wikibase:Reference ;
	pr:P248 wd:Q76504070 ;
	pr:P813 "2020-12-21T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:c69dce79ab93615f4e11a3a6b71d6e52 ;
	pr:P8129 "23691" .

ref:366cc289740fb68df974400fad75e891dc6af3d0 a wikibase:Reference ;
	pr:P854 <https://bookstr.com/article/life-the-universe-and-everything-happy-birthday-douglas-adams/> .

ref:c380cbf312acc66fffc90dc202322f9f182c7620 a wikibase:Reference ;
	pr:P854 <https://www.comic-con.org/awards/inkpot> ;
	pr:P813 "2021-08-04T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:d7f52187a8ce30f7ec8a487d174af8aa .

ref:e0f5a61dcd233962d497f85010f258c713169a5d a wikibase:Reference ;
	pr:P244 "n80076765" ;
	prn:P244 <http://id.loc.gov/authorities/names/n80076765> ;
	pr:P813 "2021-09-20T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:f6180ec9c7cb0d73c79d8217132f18ed .

ref:10addd300a6925c60bbf81c3c80ee38786a8a616 a wikibase:Reference ;
	pr:P854 <http://www.doollee.com/PlaywrightsA/adams-douglas.php> ;
	pr:P1476 "Douglas Adams- Playwright Dramatist"@und ;
	pr:P813 "2022-08-18T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:72d36e938d465d1e5fc4b40168ce64a6 .

ref:b821feb93898353cb8fddf3c25f8a4ee538e7f2d a wikibase:Reference ;
	pr:P813 "2022-09-10T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:6f29640699a4951891392dfb0d9b5f1b ;
	pr:P854 <https://golden.com/wiki/Douglas_Adams-YNBW> .

ref:4bdbb5fd8d46626c4c5a382ff95215b8d771ad56 a wikibase:Reference ;
	pr:P1476 "Obituary: Douglas Adams"@en ;
	pr:P577 "2001-05-15T00:00:00Z"^^xsd:dateTime ;
	prv:P577 v:ff88e131a5f24ca6666a0fba1f160d70 ;
	pr:P407 wd:Q1860 ;
	pr:P854 <http://www.theguardian.com/news/2001/may/15/guardianobituaries.books> ;
	pr:P813 "2013-12-07T00:00:00Z"^^xsd:dateTime ;
	prv:P813 v:866de9172090592497e94e497370838e ;
	pr:P50 wd:Q18145749 ;
	pr:P1433 wd:Q11148 ;
	pr:P1065 <https://web.archive.org/web/20131113051835/http://www.theguardian.com/news/2001/may/15/guardianobituaries.books> ;
	pr:P2960 "2013-11-13T00:00:00Z"^^xsd:dateTime ;
	prv:P2960 v:4b02c439aed07a98e847539d9e257e4d .

In addition to full (the default) there are two other "flavors" for the response, dump and simple.

In [10]:
print(urlopen("https://www.wikidata.org/wiki/Special:EntityData/Q42.ttl?flavor=simple").read().decode("utf-8"))
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ontolex: <http://www.w3.org/ns/lemon/ontolex#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix wikibase: <http://wikiba.se/ontology#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix schema: <http://schema.org/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix data: <https://www.wikidata.org/wiki/Special:EntityData/> .
@prefix s: <http://www.wikidata.org/entity/statement/> .
@prefix ref: <http://www.wikidata.org/reference/> .
@prefix v: <http://www.wikidata.org/value/> .
@prefix wdt: <http://www.wikidata.org/prop/direct/> .
@prefix wdtn: <http://www.wikidata.org/prop/direct-normalized/> .
@prefix p: <http://www.wikidata.org/prop/> .
@prefix ps: <http://www.wikidata.org/prop/statement/> .
@prefix psv: <http://www.wikidata.org/prop/statement/value/> .
@prefix psn: <http://www.wikidata.org/prop/statement/value-normalized/> .
@prefix pq: <http://www.wikidata.org/prop/qualifier/> .
@prefix pqv: <http://www.wikidata.org/prop/qualifier/value/> .
@prefix pqn: <http://www.wikidata.org/prop/qualifier/value-normalized/> .
@prefix pr: <http://www.wikidata.org/prop/reference/> .
@prefix prv: <http://www.wikidata.org/prop/reference/value/> .
@prefix prn: <http://www.wikidata.org/prop/reference/value-normalized/> .
@prefix wdno: <http://www.wikidata.org/prop/novalue/> .

data:Q42 a schema:Dataset ;
	schema:about wd:Q42 ;
	cc:license <http://creativecommons.org/publicdomain/zero/1.0/> ;
	schema:softwareVersion "1.0.0" ;
	schema:version "1757862527"^^xsd:integer ;
	schema:dateModified "2022-10-25T12:03:35Z"^^xsd:dateTime .

wd:Q42 a wikibase:Item .

<https://af.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "af" ;
	schema:isPartOf <https://af.wikipedia.org/> ;
	schema:name "Douglas Adams"@af .

<https://af.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ar.wikipedia.org/wiki/%D8%AF%D9%88%D8%BA%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ar" ;
	schema:isPartOf <https://ar.wikipedia.org/> ;
	schema:name "دوغلاس آدمز"@ar .

<https://ar.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ar.wikiquote.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ar" ;
	schema:isPartOf <https://ar.wikiquote.org/> ;
	schema:name "دوجلاس آدامز"@ar .

<https://ar.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://arz.wikipedia.org/wiki/%D8%AF%D9%88%D8%AC%D9%84%D8%A7%D8%B3_%D8%A7%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "arz" ;
	schema:isPartOf <https://arz.wikipedia.org/> ;
	schema:name "دوجلاس ادامز"@arz .

<https://arz.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ast.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ast" ;
	schema:isPartOf <https://ast.wikipedia.org/> ;
	schema:name "Douglas Adams"@ast .

<https://ast.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://azb.wikipedia.org/wiki/%D8%AF%D8%A7%D9%82%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "azb" ;
	schema:isPartOf <https://azb.wikipedia.org/> ;
	schema:name "داقلاس آدامز"@azb .

<https://azb.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://az.wikipedia.org/wiki/Duqlas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "az" ;
	schema:isPartOf <https://az.wikipedia.org/> ;
	schema:name "Duqlas Adams"@az .

<https://az.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://az.wikiquote.org/wiki/Duqlas_Noel_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "az" ;
	schema:isPartOf <https://az.wikiquote.org/> ;
	schema:name "Duqlas Noel Adams"@az .

<https://az.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://bar.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bar" ;
	schema:isPartOf <https://bar.wikipedia.org/> ;
	schema:name "Douglas Adams"@bar .

<https://bar.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://be-tarask.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D0%B7> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "be-tarask" ;
	schema:isPartOf <https://be-tarask.wikipedia.org/> ;
	schema:name "Дуглас Адамз"@be-tarask .

<https://be-tarask.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://be.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "be" ;
	schema:isPartOf <https://be.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@be .

<https://be.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bg.wikipedia.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bg" ;
	schema:isPartOf <https://bg.wikipedia.org/> ;
	schema:name "Дъглас Адамс"@bg .

<https://bg.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bg.wikiquote.org/wiki/%D0%94%D1%8A%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bg" ;
	schema:isPartOf <https://bg.wikiquote.org/> ;
	schema:name "Дъглас Адамс"@bg .

<https://bg.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://bn.wikipedia.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bn" ;
	schema:isPartOf <https://bn.wikipedia.org/> ;
	schema:name "ডগলাস অ্যাডামস"@bn .

<https://bn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bs.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bs" ;
	schema:isPartOf <https://bs.wikipedia.org/> ;
	schema:name "Douglas Adams"@bs .

<https://bs.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bs.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bs" ;
	schema:isPartOf <https://bs.wikiquote.org/> ;
	schema:name "Douglas Adams"@bs .

<https://bs.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ca.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ca" ;
	schema:isPartOf <https://ca.wikipedia.org/> ;
	schema:name "Douglas Adams"@ca .

<https://ca.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://cs.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cs" ;
	schema:isPartOf <https://cs.wikipedia.org/> ;
	schema:name "Douglas Adams"@cs .

<https://cs.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://cs.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cs" ;
	schema:isPartOf <https://cs.wikiquote.org/> ;
	schema:name "Douglas Adams"@cs .

<https://cs.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://cy.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "cy" ;
	schema:isPartOf <https://cy.wikipedia.org/> ;
	schema:name "Douglas Adams"@cy .

<https://cy.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://da.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "da" ;
	schema:isPartOf <https://da.wikipedia.org/> ;
	schema:name "Douglas Adams"@da .

<https://da.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://de.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "de" ;
	schema:isPartOf <https://de.wikipedia.org/> ;
	schema:name "Douglas Adams"@de .

<https://de.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://de.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "de" ;
	schema:isPartOf <https://de.wikiquote.org/> ;
	schema:name "Douglas Adams"@de .

<https://de.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://el.wikipedia.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "el" ;
	schema:isPartOf <https://el.wikipedia.org/> ;
	schema:name "Ντάγκλας Άνταμς"@el .

<https://el.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://el.wikiquote.org/wiki/%CE%9D%CF%84%CE%AC%CE%B3%CE%BA%CE%BB%CE%B1%CF%82_%CE%86%CE%BD%CF%84%CE%B1%CE%BC%CF%82> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "el" ;
	schema:isPartOf <https://el.wikiquote.org/> ;
	schema:name "Ντάγκλας Άνταμς"@el .

<https://el.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://en.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en" ;
	schema:isPartOf <https://en.wikipedia.org/> ;
	schema:name "Douglas Adams"@en .

<https://en.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://en.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en" ;
	schema:isPartOf <https://en.wikiquote.org/> ;
	schema:name "Douglas Adams"@en .

<https://en.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://eo.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eo" ;
	schema:isPartOf <https://eo.wikipedia.org/> ;
	schema:name "Douglas Adams"@eo .

<https://eo.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://eo.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eo" ;
	schema:isPartOf <https://eo.wikiquote.org/> ;
	schema:name "Douglas Adams"@eo .

<https://eo.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://es.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "es" ;
	schema:isPartOf <https://es.wikipedia.org/> ;
	schema:name "Douglas Adams"@es .

<https://es.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://es.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "es" ;
	schema:isPartOf <https://es.wikiquote.org/> ;
	schema:name "Douglas Adams"@es .

<https://es.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://et.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "et" ;
	schema:isPartOf <https://et.wikipedia.org/> ;
	schema:name "Douglas Adams"@et .

<https://et.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://et.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "et" ;
	schema:isPartOf <https://et.wikiquote.org/> ;
	schema:name "Douglas Adams"@et .

<https://et.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://eu.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "eu" ;
	schema:isPartOf <https://eu.wikipedia.org/> ;
	schema:name "Douglas Adams"@eu .

<https://eu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fa.wikipedia.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fa" ;
	schema:isPartOf <https://fa.wikipedia.org/> ;
	schema:name "داگلاس آدامز"@fa .

<https://fa.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fa.wikiquote.org/wiki/%D8%AF%D8%A7%DA%AF%D9%84%D8%A7%D8%B3_%D8%A2%D8%AF%D8%A7%D9%85%D8%B2> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fa" ;
	schema:isPartOf <https://fa.wikiquote.org/> ;
	schema:name "داگلاس آدامز"@fa .

<https://fa.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://fi.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fi" ;
	schema:isPartOf <https://fi.wikipedia.org/> ;
	schema:name "Douglas Adams"@fi .

<https://fi.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fi.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fi" ;
	schema:isPartOf <https://fi.wikiquote.org/> ;
	schema:name "Douglas Adams"@fi .

<https://fi.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://fr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fr" ;
	schema:isPartOf <https://fr.wikipedia.org/> ;
	schema:name "Douglas Adams"@fr .

<https://fr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://fr.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "fr" ;
	schema:isPartOf <https://fr.wikiquote.org/> ;
	schema:name "Douglas Adams"@fr .

<https://fr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ga.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ga" ;
	schema:isPartOf <https://ga.wikipedia.org/> ;
	schema:name "Douglas Adams"@ga .

<https://ga.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://gl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "gl" ;
	schema:isPartOf <https://gl.wikipedia.org/> ;
	schema:name "Douglas Adams"@gl .

<https://gl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://gl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "gl" ;
	schema:isPartOf <https://gl.wikiquote.org/> ;
	schema:name "Douglas Adams"@gl .

<https://gl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://he.wikipedia.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "he" ;
	schema:isPartOf <https://he.wikipedia.org/> ;
	schema:name "דאגלס אדמס"@he .

<https://he.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://he.wikiquote.org/wiki/%D7%93%D7%90%D7%92%D7%9C%D7%A1_%D7%90%D7%93%D7%9E%D7%A1> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "he" ;
	schema:isPartOf <https://he.wikiquote.org/> ;
	schema:name "דאגלס אדמס"@he .

<https://he.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://hr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hr" ;
	schema:isPartOf <https://hr.wikipedia.org/> ;
	schema:name "Douglas Adams"@hr .

<https://hr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hu.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hu" ;
	schema:isPartOf <https://hu.wikipedia.org/> ;
	schema:name "Douglas Adams"@hu .

<https://hu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hu.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hu" ;
	schema:isPartOf <https://hu.wikiquote.org/> ;
	schema:name "Douglas Adams"@hu .

<https://hu.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://hy.wikipedia.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hy" ;
	schema:isPartOf <https://hy.wikipedia.org/> ;
	schema:name "Դուգլաս Ադամս"@hy .

<https://hy.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://hy.wikiquote.org/wiki/%D4%B4%D5%B8%D6%82%D5%A3%D5%AC%D5%A1%D5%BD_%D4%B1%D5%A4%D5%A1%D5%B4%D5%BD> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "hy" ;
	schema:isPartOf <https://hy.wikiquote.org/> ;
	schema:name "Դուգլաս Ադամս"@hy .

<https://hy.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ia.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ia" ;
	schema:isPartOf <https://ia.wikipedia.org/> ;
	schema:name "Douglas Adams"@ia .

<https://ia.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://id.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "id" ;
	schema:isPartOf <https://id.wikipedia.org/> ;
	schema:name "Douglas Adams"@id .

<https://id.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ie.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ie" ;
	schema:isPartOf <https://ie.wikipedia.org/> ;
	schema:name "Douglas Adams"@ie .

<https://ie.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://io.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "io" ;
	schema:isPartOf <https://io.wikipedia.org/> ;
	schema:name "Douglas Adams"@io .

<https://io.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://is.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "is" ;
	schema:isPartOf <https://is.wikipedia.org/> ;
	schema:name "Douglas Adams"@is .

<https://is.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://it.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "it" ;
	schema:isPartOf <https://it.wikipedia.org/> ;
	schema:name "Douglas Adams"@it .

<https://it.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://it.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "it" ;
	schema:isPartOf <https://it.wikiquote.org/> ;
	schema:name "Douglas Adams"@it .

<https://it.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ja.wikipedia.org/wiki/%E3%83%80%E3%82%B0%E3%83%A9%E3%82%B9%E3%83%BB%E3%82%A2%E3%83%80%E3%83%A0%E3%82%BA> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ja" ;
	schema:isPartOf <https://ja.wikipedia.org/> ;
	schema:name "ダグラス・アダムズ"@ja .

<https://ja.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://jv.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "jv" ;
	schema:isPartOf <https://jv.wikipedia.org/> ;
	schema:name "Douglas Adams"@jv .

<https://jv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ka.wikipedia.org/wiki/%E1%83%93%E1%83%90%E1%83%92%E1%83%9A%E1%83%90%E1%83%A1_%E1%83%90%E1%83%93%E1%83%90%E1%83%9B%E1%83%A1%E1%83%98> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ka" ;
	schema:isPartOf <https://ka.wikipedia.org/> ;
	schema:name "დაგლას ადამსი"@ka .

<https://ka.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ko.wikipedia.org/wiki/%EB%8D%94%EA%B8%80%EB%9F%AC%EC%8A%A4_%EC%95%A0%EB%8D%A4%EC%8A%A4> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ko" ;
	schema:isPartOf <https://ko.wikipedia.org/> ;
	schema:name "더글러스 애덤스"@ko .

<https://ko.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://kw.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "kw" ;
	schema:isPartOf <https://kw.wikipedia.org/> ;
	schema:name "Douglas Adams"@kw .

<https://kw.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ky.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ky" ;
	schema:isPartOf <https://ky.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@ky .

<https://ky.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://la.wikipedia.org/wiki/Duglassius_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "la" ;
	schema:isPartOf <https://la.wikipedia.org/> ;
	schema:name "Duglassius Adams"@la .

<https://la.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://lfn.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lfn" ;
	schema:isPartOf <https://lfn.wikipedia.org/> ;
	schema:name "Douglas Adams"@lfn .

<https://lfn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://li.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "li" ;
	schema:isPartOf <https://li.wikiquote.org/> ;
	schema:name "Douglas Adams"@li .

<https://li.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://lt.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lt" ;
	schema:isPartOf <https://lt.wikipedia.org/> ;
	schema:name "Douglas Adams"@lt .

<https://lt.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://lt.wikiquote.org/wiki/Douglas_Adamsas> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lt" ;
	schema:isPartOf <https://lt.wikiquote.org/> ;
	schema:name "Douglas Adamsas"@lt .

<https://lt.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://lv.wikipedia.org/wiki/Duglass_Adamss> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "lv" ;
	schema:isPartOf <https://lv.wikipedia.org/> ;
	schema:name "Duglass Adamss"@lv .

<https://lv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mg.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mg" ;
	schema:isPartOf <https://mg.wikipedia.org/> ;
	schema:name "Douglas Adams"@mg .

<https://mg.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mk.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mk" ;
	schema:isPartOf <https://mk.wikipedia.org/> ;
	schema:name "Даглас Адамс"@mk .

<https://mk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ml.wikipedia.org/wiki/%E0%B4%A1%E0%B4%97%E0%B5%8D%E0%B4%B2%E0%B4%B8%E0%B5%8D_%E0%B4%86%E0%B4%A1%E0%B4%82%E0%B4%B8%E0%B5%8D> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ml" ;
	schema:isPartOf <https://ml.wikipedia.org/> ;
	schema:name "ഡഗ്ലസ് ആഡംസ്"@ml .

<https://ml.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mrj.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mrj" ;
	schema:isPartOf <https://mrj.wikipedia.org/> ;
	schema:name "Адамс, Дуглас"@mrj .

<https://mrj.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://mr.wikipedia.org/wiki/%E0%A4%A1%E0%A4%97%E0%A5%8D%E0%A4%B2%E0%A4%B8_%E0%A4%85%E2%80%8D%E0%A5%85%E0%A4%A1%E0%A4%AE%E0%A5%8D%E0%A4%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "mr" ;
	schema:isPartOf <https://mr.wikipedia.org/> ;
	schema:name "डग्लस अ‍ॅडम्स"@mr .

<https://mr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://nl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nl" ;
	schema:isPartOf <https://nl.wikipedia.org/> ;
	schema:name "Douglas Adams"@nl .

<https://nl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://nl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nl" ;
	schema:isPartOf <https://nl.wikiquote.org/> ;
	schema:name "Douglas Adams"@nl .

<https://nl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://nn.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nn" ;
	schema:isPartOf <https://nn.wikipedia.org/> ;
	schema:name "Douglas Adams"@nn .

<https://nn.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://no.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nb" ;
	schema:isPartOf <https://no.wikipedia.org/> ;
	schema:name "Douglas Adams"@nb .

<https://no.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://oc.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "oc" ;
	schema:isPartOf <https://oc.wikipedia.org/> ;
	schema:name "Douglas Adams"@oc .

<https://oc.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pa.wikipedia.org/wiki/%E0%A8%A1%E0%A8%97%E0%A8%B2%E0%A8%B8_%E0%A8%90%E0%A8%A1%E0%A8%AE%E0%A8%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pa" ;
	schema:isPartOf <https://pa.wikipedia.org/> ;
	schema:name "ਡਗਲਸ ਐਡਮਸ"@pa .

<https://pa.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pl" ;
	schema:isPartOf <https://pl.wikipedia.org/> ;
	schema:name "Douglas Adams"@pl .

<https://pl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pl.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pl" ;
	schema:isPartOf <https://pl.wikiquote.org/> ;
	schema:name "Douglas Adams"@pl .

<https://pl.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://pnb.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pnb" ;
	schema:isPartOf <https://pnb.wikipedia.org/> ;
	schema:name "ڈگلس ایڈمس"@pnb .

<https://pnb.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pt.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pt" ;
	schema:isPartOf <https://pt.wikipedia.org/> ;
	schema:name "Douglas Adams"@pt .

<https://pt.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://pt.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "pt" ;
	schema:isPartOf <https://pt.wikiquote.org/> ;
	schema:name "Douglas Adams"@pt .

<https://pt.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ro.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ro" ;
	schema:isPartOf <https://ro.wikipedia.org/> ;
	schema:name "Douglas Adams"@ro .

<https://ro.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ru.wikipedia.org/wiki/%D0%90%D0%B4%D0%B0%D0%BC%D1%81,_%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ru" ;
	schema:isPartOf <https://ru.wikipedia.org/> ;
	schema:name "Адамс, Дуглас"@ru .

<https://ru.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://ru.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%9D%D0%BE%D1%8D%D0%BB%D1%8C_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ru" ;
	schema:isPartOf <https://ru.wikiquote.org/> ;
	schema:name "Дуглас Ноэль Адамс"@ru .

<https://ru.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sco.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sco" ;
	schema:isPartOf <https://sco.wikipedia.org/> ;
	schema:name "Douglas Adams"@sco .

<https://sco.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sc.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sc" ;
	schema:isPartOf <https://sc.wikipedia.org/> ;
	schema:name "Douglas Adams"@sc .

<https://sc.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sh.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sh" ;
	schema:isPartOf <https://sh.wikipedia.org/> ;
	schema:name "Douglas Adams"@sh .

<https://sh.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://simple.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en-simple" ;
	schema:isPartOf <https://simple.wikipedia.org/> ;
	schema:name "Douglas Adams"@en-simple .

<https://simple.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://simple.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "en-simple" ;
	schema:isPartOf <https://simple.wikiquote.org/> ;
	schema:name "Douglas Adams"@en-simple .

<https://simple.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sk.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sk" ;
	schema:isPartOf <https://sk.wikipedia.org/> ;
	schema:name "Douglas Adams"@sk .

<https://sk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sk.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sk" ;
	schema:isPartOf <https://sk.wikiquote.org/> ;
	schema:name "Douglas Adams"@sk .

<https://sk.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://sl.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sl" ;
	schema:isPartOf <https://sl.wikipedia.org/> ;
	schema:name "Douglas Adams"@sl .

<https://sl.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sq.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sq" ;
	schema:isPartOf <https://sq.wikipedia.org/> ;
	schema:name "Douglas Adams"@sq .

<https://sq.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sr.wikipedia.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sr" ;
	schema:isPartOf <https://sr.wikipedia.org/> ;
	schema:name "Даглас Адамс"@sr .

<https://sr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sv.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sv" ;
	schema:isPartOf <https://sv.wikipedia.org/> ;
	schema:name "Douglas Adams"@sv .

<https://sv.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sv.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sv" ;
	schema:isPartOf <https://sv.wikiquote.org/> ;
	schema:name "Douglas Adams"@sv .

<https://sv.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ta.wikipedia.org/wiki/%E0%AE%9F%E0%AE%95%E0%AF%8D%E0%AE%B3%E0%AE%B8%E0%AF%8D_%E0%AE%86%E0%AE%9F%E0%AE%AE%E0%AF%8D%E0%AE%B8%E0%AF%8D> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ta" ;
	schema:isPartOf <https://ta.wikipedia.org/> ;
	schema:name "டக்ளஸ் ஆடம்ஸ்"@ta .

<https://ta.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://tr.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "tr" ;
	schema:isPartOf <https://tr.wikipedia.org/> ;
	schema:name "Douglas Adams"@tr .

<https://tr.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://tr.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "tr" ;
	schema:isPartOf <https://tr.wikiquote.org/> ;
	schema:name "Douglas Adams"@tr .

<https://tr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://uk.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "uk" ;
	schema:isPartOf <https://uk.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@uk .

<https://uk.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://uk.wikiquote.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "uk" ;
	schema:isPartOf <https://uk.wikiquote.org/> ;
	schema:name "Дуглас Адамс"@uk .

<https://uk.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ur.wikipedia.org/wiki/%DA%88%DA%AF%D9%84%D8%B3_%D8%A7%DB%8C%DA%88%D9%85%D8%B3> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ur" ;
	schema:isPartOf <https://ur.wikipedia.org/> ;
	schema:name "ڈگلس ایڈمس"@ur .

<https://ur.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://vep.wikipedia.org/wiki/Adams_Duglas> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "vep" ;
	schema:isPartOf <https://vep.wikipedia.org/> ;
	schema:name "Adams Duglas"@vep .

<https://vep.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://vi.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "vi" ;
	schema:isPartOf <https://vi.wikipedia.org/> ;
	schema:name "Douglas Adams"@vi .

<https://vi.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://war.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "war" ;
	schema:isPartOf <https://war.wikipedia.org/> ;
	schema:name "Douglas Adams"@war .

<https://war.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://wuu.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "wuu" ;
	schema:isPartOf <https://wuu.wikipedia.org/> ;
	schema:name "道格拉斯·亚当斯"@wuu .

<https://wuu.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh-min-nan.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "nan" ;
	schema:isPartOf <https://zh-min-nan.wikipedia.org/> ;
	schema:name "Douglas Adams"@nan .

<https://zh-min-nan.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh-yue.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%E4%BA%9E%E7%95%B6%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "yue" ;
	schema:isPartOf <https://zh-yue.wikipedia.org/> ;
	schema:name "道格拉斯亞當斯"@yue .

<https://zh-yue.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh.wikipedia.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9A%E5%BD%93%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "zh" ;
	schema:isPartOf <https://zh.wikipedia.org/> ;
	schema:name "道格拉斯·亚当斯"@zh .

<https://zh.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://zh.wikiquote.org/wiki/%E9%81%93%E6%A0%BC%E6%8B%89%E6%96%AF%C2%B7%E4%BA%9E%E7%95%B6%E6%96%AF> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "zh" ;
	schema:isPartOf <https://zh.wikiquote.org/> ;
	schema:name "道格拉斯·亞當斯"@zh .

<https://zh.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://id.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "id" ;
	schema:isPartOf <https://id.wikiquote.org/> ;
	schema:name "Douglas Adams"@id .

<https://id.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ms.wikipedia.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ms" ;
	schema:isPartOf <https://ms.wikipedia.org/> ;
	schema:name "Douglas Adams"@ms .

<https://ms.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://sr.wikiquote.org/wiki/%D0%94%D0%B0%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "sr" ;
	schema:isPartOf <https://sr.wikiquote.org/> ;
	schema:name "Даглас Адамс"@sr .

<https://sr.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ig.wikiquote.org/wiki/Douglas_Adams> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ig" ;
	schema:isPartOf <https://ig.wikiquote.org/> ;
	schema:name "Douglas Adams"@ig .

<https://ig.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

<https://ba.wikipedia.org/wiki/%D0%94%D1%83%D0%B3%D0%BB%D0%B0%D1%81_%D0%90%D0%B4%D0%B0%D0%BC%D1%81> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "ba" ;
	schema:isPartOf <https://ba.wikipedia.org/> ;
	schema:name "Дуглас Адамс"@ba .

<https://ba.wikipedia.org/> wikibase:wikiGroup "wikipedia" .

<https://bn.wikiquote.org/wiki/%E0%A6%A1%E0%A6%97%E0%A6%B2%E0%A6%BE%E0%A6%B8_%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%A1%E0%A6%BE%E0%A6%AE%E0%A6%B8> a schema:Article ;
	schema:about wd:Q42 ;
	schema:inLanguage "bn" ;
	schema:isPartOf <https://bn.wikiquote.org/> ;
	schema:name "ডগলাস অ্যাডামস"@bn .

<https://bn.wikiquote.org/> wikibase:wikiGroup "wikiquote" .

wd:Q42 wdt:P31 wd:Q5 ;
	wdt:P21 wd:Q6581097 ;
	wdt:P106 wd:Q214917,
		wd:Q28389,
		wd:Q6625963,
		wd:Q4853732,
		wd:Q18844224,
		wd:Q245068,
		wd:Q36180 ;
	wdt:P800 wd:Q25169,
		wd:Q20736364,
		wd:Q7758404 ;
	wdt:P569 "1952-03-11T00:00:00Z"^^xsd:dateTime ;
	wdt:P19 wd:Q350 ;
	wdt:P570 "2001-05-11T00:00:00Z"^^xsd:dateTime ;
	wdt:P1196 wd:Q3739104 ;
	wdt:P509 wd:Q12152 ;
	wdt:P20 wd:Q159288 ;
	wdt:P119 wd:Q533697 ;
	wdt:P1442 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%27%20gravestone.jpg> ;
	wdt:P1015 "90196888" ;
	wdtn:P1015 <https://livedata.bibsys.no/authority/90196888> ;
	wdt:P735 wd:Q463035 ;
	wdt:P734 wd:Q351735 ;
	wdt:P27 wd:Q145 ;
	wdt:P551 wd:Q84,
		wd:Q909993 ;
	wdt:P103 wd:Q1860 ;
	wdt:P1368 "000057405" ;
	wdt:P244 "n80076765" ;
	wdtn:P244 <http://id.loc.gov/authorities/names/n80076765> ;
	wdt:P947 "000002833" ;
	wdt:P214 "113230702" ;
	wdtn:P214 <http://viaf.org/viaf/113230702> ;
	wdt:P345 "nm0010930" ;
	wdt:P373 "Douglas Adams" ;
	wdt:P349 "00430962" ;
	wdtn:P349 <http://id.ndl.go.jp/auth/ndlna/00430962> ;
	wdt:P434 "e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4" ;
	wdtn:P434 <http://musicbrainz.org/artist/e9ed318d-8cc5-4cf8-ab77-505e39ab6ea4> ;
	wdt:P268 "11888092r" ;
	wdtn:P268 <http://data.bnf.fr/ark:/12148/cb11888092r#about> ;
	wdt:P227 "119033364" ;
	wdtn:P227 <https://d-nb.info/gnd/119033364> ;
	wdt:P535 "22814" ;
	wdt:P22 wd:Q14623675 ;
	wdt:P25 wd:Q14623678 ;
	wdt:P40 wd:Q14623683 ;
	wdt:P906 "230807" ;
	wdtn:P906 <http://libris.kb.se/resource/auth/230807> ;
	wdt:P1006 "068744307" ;
	wdtn:P1006 <http://data.bibliotheken.nl/id/thes/p068744307> ;
	wdt:P1006 "339433876" ;
	wdtn:P1006 <http://data.bibliotheken.nl/id/thes/p339433876> ;
	wdt:P949 "000163846" ;
	wdt:P646 "/m/0282x" ;
	wdtn:P646 <http://g.co/kg/m/0282x> ;
	wdt:P69 wd:Q691283,
		wd:Q4961791 ;
	wdt:P1273 "a10667040" ;
	wdt:P108 wd:Q9531,
		wd:Q3520623 ;
	wdt:P998 "Arts/Literature/Authors/A/Adams,_Douglas/" ;
	wdt:P1233 "122" ;
	wdt:P1284 "00000020676" ;
	wdt:P866 "douglas-adams" ;
	wdt:P1695 "A11573065" ;
	wdt:P1816 "mp60152" ;
	wdt:P1263 "731/000023662" ;
	wdt:P271 "DA07517784" ;
	wdtn:P271 <https://ci.nii.ac.jp/author/DA07517784#entity> ;
	wdt:P856 <https://douglasadams.com/> ;
	wdt:P1411 wd:Q3414212,
		wd:Q2576795 ;
	wdt:P1953 "134923" ;
	wdt:P648 "OL272947A" ;
	wdtn:P648 <http://openlibrary.org/works/OL272947A> ;
	wdt:P1258 "celebrity/douglas_adams" ;
	wdt:P2191 "10014" ;
	wdt:P1266 "97049" ;
	wdt:P2019 "p279442" ;
	wdt:P2188 "45993" ;
	wdt:P2168 "271209" ;
	wdt:P1315 "847711" ;
	wdt:P2163 "56544" ;
	wdtn:P2163 <http://id.worldcat.org/fast/56544> ;
	wdt:P2163 "1775523" ;
	wdtn:P2163 <http://id.worldcat.org/fast/1775523> ;
	wdt:P1417 "biography/Douglas-Adams" ;
	wdt:P2611 "douglas_adams" ;
	wdt:P2435 "208947" ;
	wdt:P2604 "246164" ;
	wdt:P2387 "1289170" ;
	wdt:P2626 "159696" ;
	wdt:P2605 "39534" ;
	wdt:P2963 "4" ;
	wdt:P910 wd:Q8935487 ;
	wdt:P3106 "books/douglasadams" ;
	wdt:P1303 wd:Q6607 ;
	wdt:P2469 "238p" ;
	wdt:P3373 wd:Q14623673 ;
	wdt:P3417 "Douglas-Adams-4" ;
	wdt:P3430 "w65h7md1" ;
	wdt:P1617 "aa075cb6-75bf-46d8-b0bf-9751d6c04c93" ;
	wdtn:P1617 <http://www.bbc.co.uk/things/aa075cb6-75bf-46d8-b0bf-9751d6c04c93#id> ;
	wdt:P2048 "+1.96"^^xsd:decimal ;
	wdt:P3222 "douglas-adams" ;
	wdt:P109 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20Adams%20signature.svg> ;
	wdt:P4193 "Douglas_Noel_Adams_(1952-2001)" ;
	wdt:P136 wd:Q24925,
		wd:Q40831,
		wd:Q128758 ;
	wdt:P4431 "douglas-adams-61st-birthday" ;
	wdt:P2607 "307812da-da11-4ee5-a906-31e5ce9694bb" ;
	wdt:P1415 "75853" ;
	wdt:P2949 "Adams-32825" ;
	wdt:P3154 "adamsdou" ;
	wdt:P3630 "2627" ;
	wdt:P1280 "6050147" ;
	wdt:P2734 "AdamsDouglas" ;
	wdt:P26 wd:Q14623681 ;
	wdt:P5019 "adams-douglas-noel" ;
	wdt:P463 wd:Q857679,
		wd:Q5610831 ;
	wdt:P2600 "6000000050650155828" ;
	wdt:P5337 "CAAqJQgKIh9DQkFTRVFvSUwyMHZNREk0TW5nU0JXVnVMVWRDS0FBUAE" ;
	wdt:P5357 "adams_douglas" ;
	wdt:P5361 "AdamsDouglas1952-2001" ;
	wdtn:P5361 <https://bnb.data.bl.uk/doc/person/AdamsDouglas1952-2001> ;
	wdt:P5365 "42" ;
	wdt:P5408 "a/douglas-adams" ;
	wdt:P5570 "143" ;
	wdt:P1580 "a1221374" ;
	wdt:P5587 "1zcfh30k0gr4zxt" ;
	wdtn:P5587 <https://libris.kb.se/1zcfh30k0gr4zxt> ;
	wdt:P3365 "douglas-noel-adams" ;
	wdt:P269 "026677636" ;
	wdtn:P269 <http://www.idref.fr/026677636/id> ;
	wdt:P213 "0000 0000 8045 6315" ;
	wdt:P691 "jn19990000029" ;
	wdt:P950 "XX1149955" ;
	wdtn:P950 <http://datos.bne.es/resource/XX1149955> ;
	wdt:P1670 "0052C2705" ;
	wdt:P409 "35163268" ;
	wdt:P396 "RAVV034417" ;
	wdt:P1207 "n94004172" ;
	wdt:P1005 "68537" ;
	wdt:P1375 "000010283" ;
	wdt:P1412 wd:Q1860 ;
	wdt:P5247 "3040-1126" ;
	wdt:P5905 "4040-45935" ;
	wdt:P6839 "Creator/DouglasAdams" ;
	wdt:P4342 "Douglas_Adams" ;
	wdt:P4785 "47671" ;
	wdt:P485 wd:Q67074906 ;
	wdt:P7029 "770139179",
		"770139180" ;
	wdt:P1343 wd:Q67311526 ;
	wdt:P5034 "KAC200300379" ;
	wdtn:P5034 <https://lod.nl.go.kr/page/KAC200300379> ;
	wdt:P7433 "25" ;
	wdt:P7400 "adamsdouglas-1" ;
	wdt:P7704 "agent/base/59925" ;
	wdtn:P7704 <http://data.europeana.eu/agent/base/59925> ;
	wdt:P7859 "lccn-n80076765" ;
	wdt:P3762 "140290" ;
	wdt:P3065 "02-A002907983" ;
	wdt:P3846 "87097968038642" ;
	wdt:P7293 "9810669145205606" ;
	wdt:P7700 "vtls005710289" ;
	wdt:P1890 "000750942" ;
	wdt:P4619 "000592321" ;
	wdt:P6394 "a1112474x" ;
	wdt:P4839 "Entity[\"Person\", \"DouglasAdams::gh8qf\"]" ;
	wdt:P2581 "03688580n" ;
	wdtn:P2581 <http://babelnet.org/rdf/s03688580n> ;
	wdt:P5284 "1032346" ;
	wdt:P4862 "B000AQ2A84" ;
	wdt:P7661 "74033" ;
	wdt:P3913 "337" ;
	wdt:P7214 "753186" ;
	wdt:P4666 "23878" ;
	wdt:P7215 "46398" ;
	wdt:P5233 "a38" ;
	wdt:P5033 "160192" ;
	wdt:P3305 "199918" ;
	wdt:P7745 "183956" ;
	wdt:P6464 "898203" ;
	wdt:P7300 "59932" ;
	wdt:P4657 "432740401" ;
	wdt:P5534 "52843" ;
	wdt:P4985 "52843" ;
	wdt:P3845 "665243" ;
	wdt:P2638 "people/douglas-adams" ;
	wdt:P1712 "person/douglas-adams" ;
	wdt:P6119 "douglas-adams" ;
	wdt:P5340 "278771" ;
	wdt:P4438 "4ce2ba117755a" ;
	wdt:P4326 "215853" ;
	wdt:P4768 "212786" ;
	wdt:P3142 "n0008574" ;
	wdt:P3136 "2000059" ;
	wdt:P4782 "26898" ;
	wdt:P3145 "nm96558" ;
	wdt:P5882 "M00000364497" ;
	wdt:P6327 "55720" ;
	wdt:P6517 "Douglas-Adams" ;
	wdt:P1728 "mn0000803382" ;
	wdt:P7195 "201077" ;
	wdt:P2722 "4468812" ;
	wdt:P2373 "Douglas-adams" ;
	wdt:P6351 "41236" ;
	wdt:P2850 "2080713" ;
	wdt:P3192 "Douglas+Adams" ;
	wdt:P6874 "Douglas-Adams" ;
	wdt:P5404 "douglas_adams" ;
	wdt:P1828 "00218511589" ;
	wdt:P7154 "adams+douglas" ;
	wdt:P4198 "Acv2pnc5mj2oxjxych7atdfljky" ;
	wdt:P6972 "douglas-adams" ;
	wdt:P7071 "douglas-adams" ;
	wdt:P3479 "39a33dc4-5a81-4d67-91d6-1daecdb854e3" ;
	wdt:P7284 "douglas-adams" ;
	wdt:P6620 "douglas-adams" ;
	wdt:P4204 "Douglas-Adams" ;
	wdt:P7506 "2078791" ;
	wdt:P3341 "21019" ;
	wdt:P7803 "40761" ;
	wdt:P3388 "168761" ;
	wdt:P2087 "douglas-adams" ;
	wdt:P7369 "000263040" ;
	wdt:P6298 "16115" ;
	wdt:P2889 "9XLD-SZS" ;
	wdt:P6886 wd:Q1860 ;
	wdt:P1424 wd:Q22898962 ;
	wdt:P7902 "119033364" ;
	wdt:P8179 "ncf10168152" ;
	wdt:P3348 "202604" ;
	wdtn:P3348 <http://data.nlg.gr/resource/authority/record202604> ;
	wdt:P8189 "987007305652505171" ;
	wdt:P7699 "LNB:Mr+;=Bf" ;
	wdt:P3984 "douglasadams" ;
	wdt:P8287 "1430" ;
	wdt:P8125 "3339" ;
	wdt:P4359 "douglasadams" ;
	wdt:P8408 "DouglasAdams" ;
	wdtn:P8408 <http://kbpedia.org/kko/rc/DouglasAdams> ;
	wdt:P6262 "hitchhikers:Douglas_Adams",
		"tardis:Douglas_Adams",
		"ru.tardis:Дуглас_Адамс",
		"montypython:Douglas_Adams",
		"dirkgently:Douglas_Adams",
		"disney:Douglas_Adams",
		"muppet:Douglas_Adams",
		"getfuzzy:Douglas_Adams",
		"readyplayerone:Douglas_Adams" ;
	wdt:P4789 "U4994" ;
	wdt:P6868 "1402475181" ;
	wdt:P8849 "6391909" ;
	wdt:P8851 "26792807" ;
	wdt:P5297 "x2e9kt_zKEDI0dPr3sAfM_jyUhA" ;
	wdt:P8895 "Douglas_Adams" ;
	wdt:P7763 wd:Q73555012 ;
	wdt:P1889 wd:Q21454969 ;
	wdt:P172 wd:Q7994501 ;
	wdt:P937 wd:Q84 ;
	wdt:P742 "David Agnew" ;
	wdt:P8385 "23691" ;
	wdt:P9100 "douglas-adams" ;
	wdt:P9196 "douglas-adams" ;
	wdt:P9251 "80743" ;
	wdt:P9307 "Douglas_Adams" ;
	wdt:P1340 wd:Q17122705 ;
	wdt:P101 wd:Q3238422 ;
	wdt:P1813 "Douglas Adams"@en ;
	wdt:P166 wd:Q2687578 ;
	wdt:P9807 "153440",
		"172463" ;
	wdt:P9743 "107a9B0DKL" ;
	wdt:P1149 "PR6051.D3352" ;
	wdtn:P1149 <http://id.loc.gov/authorities/classification/PR6051.D3352> ;
	wdt:P9918 "PE00105434" ;
	wdt:P9995 "157777" ;
	wdt:P9984 "981058527710806706" ;
	wdt:P7084 wd:Q8722666 ;
	wdt:P6173 "3352" ;
	wdt:P18 <http://commons.wikimedia.org/wiki/Special:FilePath/Douglas%20adams%20portrait%20cropped.jpg> ;
	wdt:P7775 "Douglas_Adams" ;
	wdt:P10069 "61960" ;
	wdt:P8292 "236432" ;
	wdt:P10266 "97049" ;
	wdt:P8313 "Douglas_Adams" ;
	wdt:P10291 "82260" ;
	wdt:P3368 "215957" ;
	wdt:P10387 "75" ;
	wdt:P10553 "079822096" ;
	wdt:P9965 "40231" ;
	wdt:P10337 "A/adams-douglas" ;
	wdt:P7502 "Douglas_Adams-YNBW" ;
	wdt:P1477 "Douglas Noël Adams"@en ;
	wdt:P1559 "Douglas Adams"@en ;
	rdfs:label "Douglas Adams"@en ;
	skos:prefLabel "Douglas Adams"@en ;
	schema:name "Douglas Adams"@en ;
	rdfs:label "Douglas Adams"@fr ;
	skos:prefLabel "Douglas Adams"@fr ;
	schema:name "Douglas Adams"@fr ;
	rdfs:label "Дуглас Адамс"@ru ;
	skos:prefLabel "Дуглас Адамс"@ru ;
	schema:name "Дуглас Адамс"@ru ;
	rdfs:label "Douglas Adams"@pl ;
	skos:prefLabel "Douglas Adams"@pl ;
	schema:name "Douglas Adams"@pl ;
	rdfs:label "Douglas Adams"@it ;
	skos:prefLabel "Douglas Adams"@it ;
	schema:name "Douglas Adams"@it ;
	rdfs:label "Douglas Adams"@en-gb ;
	skos:prefLabel "Douglas Adams"@en-gb ;
	schema:name "Douglas Adams"@en-gb ;
	rdfs:label "Douglas Adams"@nb ;
	skos:prefLabel "Douglas Adams"@nb ;
	schema:name "Douglas Adams"@nb ;
	rdfs:label "Douglas Adams"@es ;
	skos:prefLabel "Douglas Adams"@es ;
	schema:name "Douglas Adams"@es ;
	rdfs:label "Douglas Adams"@en-ca ;
	skos:prefLabel "Douglas Adams"@en-ca ;
	schema:name "Douglas Adams"@en-ca ;
	rdfs:label "Douglas Adams"@hr ;
	skos:prefLabel "Douglas Adams"@hr ;
	schema:name "Douglas Adams"@hr ;
	rdfs:label "Douglas Adams"@pt ;
	skos:prefLabel "Douglas Adams"@pt ;
	schema:name "Douglas Adams"@pt ;
	rdfs:label "더글러스 애덤스"@ko ;
	skos:prefLabel "더글러스 애덤스"@ko ;
	schema:name "더글러스 애덤스"@ko ;
	rdfs:label "Douglas Adams"@nl ;
	skos:prefLabel "Douglas Adams"@nl ;
	schema:name "Douglas Adams"@nl ;
	rdfs:label "Ντάγκλας Άνταμς"@el ;
	skos:prefLabel "Ντάγκλας Άνταμς"@el ;
	schema:name "Ντάγκλας Άνταμς"@el ;
	rdfs:label "دوغلاس آدمز"@ar ;
	skos:prefLabel "دوغلاس آدمز"@ar ;
	schema:name "دوغلاس آدمز"@ar ;
	rdfs:label "دوجلاس ادامز"@arz ;
	skos:prefLabel "دوجلاس ادامز"@arz ;
	schema:name "دوجلاس ادامز"@arz ;
	rdfs:label "Douglas Adams"@bar ;
	skos:prefLabel "Douglas Adams"@bar ;
	schema:name "Douglas Adams"@bar ;
	rdfs:label "Дуглас Адамс"@be ;
	skos:prefLabel "Дуглас Адамс"@be ;
	schema:name "Дуглас Адамс"@be ;
	rdfs:label "Дъглас Адамс"@bg ;
	skos:prefLabel "Дъглас Адамс"@bg ;
	schema:name "Дъглас Адамс"@bg ;
	rdfs:label "Douglas Adams"@bs ;
	skos:prefLabel "Douglas Adams"@bs ;
	schema:name "Douglas Adams"@bs ;
	rdfs:label "Douglas Adams"@ca ;
	skos:prefLabel "Douglas Adams"@ca ;
	schema:name "Douglas Adams"@ca ;
	rdfs:label "Douglas Adams"@cs ;
	skos:prefLabel "Douglas Adams"@cs ;
	schema:name "Douglas Adams"@cs ;
	rdfs:label "Douglas Adams"@cy ;
	skos:prefLabel "Douglas Adams"@cy ;
	schema:name "Douglas Adams"@cy ;
	rdfs:label "Douglas Adams"@da ;
	skos:prefLabel "Douglas Adams"@da ;
	schema:name "Douglas Adams"@da ;
	rdfs:label "Douglas Adams"@eo ;
	skos:prefLabel "Douglas Adams"@eo ;
	schema:name "Douglas Adams"@eo ;
	rdfs:label "Douglas Adams"@et ;
	skos:prefLabel "Douglas Adams"@et ;
	schema:name "Douglas Adams"@et ;
	rdfs:label "داگلاس آدامز"@fa ;
	skos:prefLabel "داگلاس آدامز"@fa ;
	schema:name "داگلاس آدامز"@fa ;
	rdfs:label "Douglas Adams"@fi ;
	skos:prefLabel "Douglas Adams"@fi ;
	schema:name "Douglas Adams"@fi ;
	rdfs:label "Douglas Adams"@ga ;
	skos:prefLabel "Douglas Adams"@ga ;
	schema:name "Douglas Adams"@ga ;
	rdfs:label "Douglas Adams"@gl ;
	skos:prefLabel "Douglas Adams"@gl ;
	schema:name "Douglas Adams"@gl ;
	rdfs:label "דאגלס אדמס"@he ;
	skos:prefLabel "דאגלס אדמס"@he ;
	schema:name "דאגלס אדמס"@he ;
	rdfs:label "Douglas Adams"@hu ;
	skos:prefLabel "Douglas Adams"@hu ;
	schema:name "Douglas Adams"@hu ;
	rdfs:label "Douglas Adams"@id ;
	skos:prefLabel "Douglas Adams"@id ;
	schema:name "Douglas Adams"@id ;
	rdfs:label "Douglas Adams"@io ;
	skos:prefLabel "Douglas Adams"@io ;
	schema:name "Douglas Adams"@io ;
	rdfs:label "Douglas Adams"@is ;
	skos:prefLabel "Douglas Adams"@is ;
	schema:name "Douglas Adams"@is ;
	rdfs:label "ダグラス・アダムズ"@ja ;
	skos:prefLabel "ダグラス・アダムズ"@ja ;
	schema:name "ダグラス・アダムズ"@ja ;
	rdfs:label "Douglas Adams"@jv ;
	skos:prefLabel "Douglas Adams"@jv ;
	schema:name "Douglas Adams"@jv ;
	rdfs:label "დაგლას ადამსი"@ka ;
	skos:prefLabel "დაგლას ადამსი"@ka ;
	schema:name "დაგლას ადამსი"@ka ;
	rdfs:label "Duglassius Adams"@la ;
	skos:prefLabel "Duglassius Adams"@la ;
	schema:name "Duglassius Adams"@la ;
	rdfs:label "Duglass Adamss"@lv ;
	skos:prefLabel "Duglass Adamss"@lv ;
	schema:name "Duglass Adamss"@lv ;
	rdfs:label "Даглас Адамс"@mk ;
	skos:prefLabel "Даглас Адамс"@mk ;
	schema:name "Даглас Адамс"@mk ;
	rdfs:label "डग्लस अॅडम्स"@mr ;
	skos:prefLabel "डग्लस अॅडम्स"@mr ;
	schema:name "डग्लस अॅडम्स"@mr ;
	rdfs:label "Douglas Adams"@nn ;
	skos:prefLabel "Douglas Adams"@nn ;
	schema:name "Douglas Adams"@nn ;
	rdfs:label "Douglas Adams"@ro ;
	skos:prefLabel "Douglas Adams"@ro ;
	schema:name "Douglas Adams"@ro ;
	rdfs:label "Douglas Adams"@sco ;
	skos:prefLabel "Douglas Adams"@sco ;
	schema:name "Douglas Adams"@sco ;
	rdfs:label "Douglas Adams"@sh ;
	skos:prefLabel "Douglas Adams"@sh ;
	schema:name "Douglas Adams"@sh ;
	rdfs:label "Douglas Adams"@sk ;
	skos:prefLabel "Douglas Adams"@sk ;
	schema:name "Douglas Adams"@sk ;
	rdfs:label "Douglas Adams"@sl ;
	skos:prefLabel "Douglas Adams"@sl ;
	schema:name "Douglas Adams"@sl ;
	rdfs:label "Douglas Adams"@sq ;
	skos:prefLabel "Douglas Adams"@sq ;
	schema:name "Douglas Adams"@sq ;
	rdfs:label "Даглас Адамс"@sr ;
	skos:prefLabel "Даглас Адамс"@sr ;
	schema:name "Даглас Адамс"@sr ;
	rdfs:label "Douglas Adams"@sv ;
	skos:prefLabel "Douglas Adams"@sv ;
	schema:name "Douglas Adams"@sv ;
	rdfs:label "டக்ளஸ் ஆடம்ஸ்"@ta ;
	skos:prefLabel "டக்ளஸ் ஆடம்ஸ்"@ta ;
	schema:name "டக்ளஸ் ஆடம்ஸ்"@ta ;
	rdfs:label "Douglas Adams"@tr ;
	skos:prefLabel "Douglas Adams"@tr ;
	schema:name "Douglas Adams"@tr ;
	rdfs:label "Дуглас Адамс"@uk ;
	skos:prefLabel "Дуглас Адамс"@uk ;
	schema:name "Дуглас Адамс"@uk ;
	rdfs:label "Douglas Adams"@vi ;
	skos:prefLabel "Douglas Adams"@vi ;
	schema:name "Douglas Adams"@vi ;
	rdfs:label "道格拉斯·亞當斯"@zh ;
	skos:prefLabel "道格拉斯·亞當斯"@zh ;
	schema:name "道格拉斯·亞當斯"@zh ;
	rdfs:label "道格拉斯·亚当斯"@zh-cn ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-cn ;
	schema:name "道格拉斯·亚当斯"@zh-cn ;
	rdfs:label "道格拉斯·亚当斯"@zh-hans ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-hans ;
	schema:name "道格拉斯·亚当斯"@zh-hans ;
	rdfs:label "道格拉斯·亞當斯"@zh-hant ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-hant ;
	schema:name "道格拉斯·亞當斯"@zh-hant ;
	rdfs:label "Douglas Adams"@de-ch ;
	skos:prefLabel "Douglas Adams"@de-ch ;
	schema:name "Douglas Adams"@de-ch ;
	rdfs:label "Douglas Adams"@pt-br ;
	skos:prefLabel "Douglas Adams"@pt-br ;
	schema:name "Douglas Adams"@pt-br ;
	rdfs:label "道格拉斯·亚当斯"@zh-sg ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-sg ;
	schema:name "道格拉斯·亚当斯"@zh-sg ;
	rdfs:label "道格拉斯·亚当斯"@zh-my ;
	skos:prefLabel "道格拉斯·亚当斯"@zh-my ;
	schema:name "道格拉斯·亚当斯"@zh-my ;
	rdfs:label "道格拉斯·亞當斯"@zh-hk ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-hk ;
	schema:name "道格拉斯·亞當斯"@zh-hk ;
	rdfs:label "道格拉斯·亞當斯"@zh-tw ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-tw ;
	schema:name "道格拉斯·亞當斯"@zh-tw ;
	rdfs:label "道格拉斯·亞當斯"@zh-mo ;
	skos:prefLabel "道格拉斯·亞當斯"@zh-mo ;
	schema:name "道格拉斯·亞當斯"@zh-mo ;
	rdfs:label "Douglas Adams"@war ;
	skos:prefLabel "Douglas Adams"@war ;
	schema:name "Douglas Adams"@war ;
	rdfs:label "Дуглас Адамз"@be-tarask ;
	skos:prefLabel "Дуглас Адамз"@be-tarask ;
	schema:name "Дуглас Адамз"@be-tarask ;
	rdfs:label "Adams Duglas"@vep ;
	skos:prefLabel "Adams Duglas"@vep ;
	schema:name "Adams Duglas"@vep ;
	rdfs:label "ڈگلس ایڈم"@ur ;
	skos:prefLabel "ڈگلس ایڈم"@ur ;
	schema:name "ڈگلس ایڈم"@ur ;
	rdfs:label "Douglas Adams"@oc ;
	skos:prefLabel "Douglas Adams"@oc ;
	schema:name "Douglas Adams"@oc ;
	rdfs:label "Douglas Adams"@af ;
	skos:prefLabel "Douglas Adams"@af ;
	schema:name "Douglas Adams"@af ;
	rdfs:label "Douglas Adams"@an ;
	skos:prefLabel "Douglas Adams"@an ;
	schema:name "Douglas Adams"@an ;
	rdfs:label "Douglas Adams"@br ;
	skos:prefLabel "Douglas Adams"@br ;
	schema:name "Douglas Adams"@br ;
	rdfs:label "Douglas Adams"@eu ;
	skos:prefLabel "Douglas Adams"@eu ;
	schema:name "Douglas Adams"@eu ;
	rdfs:label "Douglas Adams"@lb ;
	skos:prefLabel "Douglas Adams"@lb ;
	schema:name "Douglas Adams"@lb ;
	rdfs:label "Douglas Adams"@lmo ;
	skos:prefLabel "Douglas Adams"@lmo ;
	schema:name "Douglas Adams"@lmo ;
	rdfs:label "Douglas Adams"@lt ;
	skos:prefLabel "Douglas Adams"@lt ;
	schema:name "Douglas Adams"@lt ;
	rdfs:label "Douglas Adams"@nds ;
	skos:prefLabel "Douglas Adams"@nds ;
	schema:name "Douglas Adams"@nds ;
	rdfs:label "Douglas Adams"@nds-nl ;
	skos:prefLabel "Douglas Adams"@nds-nl ;
	schema:name "Douglas Adams"@nds-nl ;
	rdfs:label "Douglas Adams"@pms ;
	skos:prefLabel "Douglas Adams"@pms ;
	schema:name "Douglas Adams"@pms ;
	rdfs:label "Douglas Adams"@vec ;
	skos:prefLabel "Douglas Adams"@vec ;
	schema:name "Douglas Adams"@vec ;
	rdfs:label "Douglas Adams"@wa ;
	skos:prefLabel "Douglas Adams"@wa ;
	schema:name "Douglas Adams"@wa ;
	rdfs:label "Даглас Адамс"@sr-ec ;
	skos:prefLabel "Даглас Адамс"@sr-ec ;
	schema:name "Даглас Адамс"@sr-ec ;
	rdfs:label "Daglas Adams"@sr-el ;
	skos:prefLabel "Daglas Adams"@sr-el ;
	schema:name "Daglas Adams"@sr-el ;
	rdfs:label "Douglas Adams"@de ;
	skos:prefLabel "Douglas Adams"@de ;
	schema:name "Douglas Adams"@de ;
	rdfs:label "دەگلاس ئادمز"@ckb ;
	skos:prefLabel "دەگلاس ئادمز"@ckb ;
	schema:name "دەگلاس ئادمز"@ckb ;
	rdfs:label "Douglas Adams"@fo ;
	skos:prefLabel "Douglas Adams"@fo ;
	schema:name "Douglas Adams"@fo ;
	rdfs:label "Douglas Adams"@kl ;
	skos:prefLabel "Douglas Adams"@kl ;
	schema:name "Douglas Adams"@kl ;
	rdfs:label "Douglas Adams"@gsw ;
	skos:prefLabel "Douglas Adams"@gsw ;
	schema:name "Douglas Adams"@gsw ;
	rdfs:label "డగ్లస్ ఆడమ్స్"@te ;
	skos:prefLabel "డగ్లస్ ఆడమ్స్"@te ;
	schema:name "డగ్లస్ ఆడమ్స్"@te ;
	rdfs:label "ඩග්ලස් ඇඩම්ස්"@si ;
	skos:prefLabel "ඩග්ලස් ඇඩම්ස්"@si ;
	schema:name "ඩග්ලස් ඇඩම්ස්"@si ;
	rdfs:label "ডগলাস অ্যাডামস"@bn ;
	skos:prefLabel "ডগলাস অ্যাডামস"@bn ;
	schema:name "ডগলাস অ্যাডামস"@bn ;
	rdfs:label "डग्लस अ‍डम्स"@hi ;
	skos:prefLabel "डग्लस अ‍डम्स"@hi ;
	schema:name "डग्लस अ‍डम्स"@hi ;
	rdfs:label "डग्लस अ‍डम्स"@rwr ;
	skos:prefLabel "डग्लस अ‍डम्स"@rwr ;
	schema:name "डग्लस अ‍डम्स"@rwr ;
	rdfs:label "Douglas Adams"@mg ;
	skos:prefLabel "Douglas Adams"@mg ;
	schema:name "Douglas Adams"@mg ;
	rdfs:label "ഡഗ്ലസ് ആഡംസ്"@ml ;
	skos:prefLabel "ഡഗ്ലസ് ആഡംസ്"@ml ;
	schema:name "ഡഗ്ലസ് ആഡംസ്"@ml ;
	rdfs:label "ડગ્લાસ એડમ્સ"@gu ;
	skos:prefLabel "ડગ્લાસ એડમ્સ"@gu ;
	schema:name "ડગ્લાસ એડમ્સ"@gu ;
	rdfs:label "Դուգլաս Ադամս"@hy ;
	skos:prefLabel "Դուգլաս Ադամս"@hy ;
	schema:name "Դուգլաս Ադամս"@hy ;
	rdfs:label "Douglas Adams"@ast ;
	skos:prefLabel "Douglas Adams"@ast ;
	schema:name "Douglas Adams"@ast ;
	rdfs:label "Douglas Adams"@co ;
	skos:prefLabel "Douglas Adams"@co ;
	schema:name "Douglas Adams"@co ;
	rdfs:label "Douglas Adams"@de-at ;
	skos:prefLabel "Douglas Adams"@de-at ;
	schema:name "Douglas Adams"@de-at ;
	rdfs:label "Douglas Adams"@frp ;
	skos:prefLabel "Douglas Adams"@frp ;
	schema:name "Douglas Adams"@frp ;
	rdfs:label "Douglas Adams"@fur ;
	skos:prefLabel "Douglas Adams"@fur ;
	schema:name "Douglas Adams"@fur ;
	rdfs:label "Douglas Adams"@gd ;
	skos:prefLabel "Douglas Adams"@gd ;
	schema:name "Douglas Adams"@gd ;
	rdfs:label "Douglas Adams"@ia ;
	skos:prefLabel "Douglas Adams"@ia ;
	schema:name "Douglas Adams"@ia ;
	rdfs:label "Douglas Adams"@ie ;
	skos:prefLabel "Douglas Adams"@ie ;
	schema:name "Douglas Adams"@ie ;
	rdfs:label "Douglas Adams"@kg ;
	skos:prefLabel "Douglas Adams"@kg ;
	schema:name "Douglas Adams"@kg ;
	rdfs:label "Douglas Adams"@li ;
	skos:prefLabel "Douglas Adams"@li ;
	schema:name "Douglas Adams"@li ;
	rdfs:label "Douglas Adams"@lij ;
	skos:prefLabel "Douglas Adams"@lij ;
	schema:name "Douglas Adams"@lij ;
	rdfs:label "Douglas Adams"@min ;
	skos:prefLabel "Douglas Adams"@min ;
	schema:name "Douglas Adams"@min ;
	rdfs:label "Douglas Adams"@ms ;
	skos:prefLabel "Douglas Adams"@ms ;
	schema:name "Douglas Adams"@ms ;
	rdfs:label "Douglas Adams"@nap ;
	skos:prefLabel "Douglas Adams"@nap ;
	schema:name "Douglas Adams"@nap ;
	rdfs:label "Douglas Adams"@nrm ;
	skos:prefLabel "Douglas Adams"@nrm ;
	schema:name "Douglas Adams"@nrm ;
	rdfs:label "Douglas Adams"@pcd ;
	skos:prefLabel "Douglas Adams"@pcd ;
	schema:name "Douglas Adams"@pcd ;
	rdfs:label "Douglas Adams"@rm ;
	skos:prefLabel "Douglas Adams"@rm ;
	schema:name "Douglas Adams"@rm ;
	rdfs:label "Douglas Adams"@sc ;
	skos:prefLabel "Douglas Adams"@sc ;
	schema:name "Douglas Adams"@sc ;
	rdfs:label "Douglas Adams"@scn ;
	skos:prefLabel "Douglas Adams"@scn ;
	schema:name "Douglas Adams"@scn ;
	rdfs:label "Douglas Adams"@sw ;
	skos:prefLabel "Douglas Adams"@sw ;
	schema:name "Douglas Adams"@sw ;
	rdfs:label "Douglas Adams"@vls ;
	skos:prefLabel "Douglas Adams"@vls ;
	schema:name "Douglas Adams"@vls ;
	rdfs:label "Douglas Adams"@vo ;
	skos:prefLabel "Douglas Adams"@vo ;
	schema:name "Douglas Adams"@vo ;
	rdfs:label "Douglas Adams"@wo ;
	skos:prefLabel "Douglas Adams"@wo ;
	schema:name "Douglas Adams"@wo ;
	rdfs:label "Douglas Adams"@zu ;
	skos:prefLabel "Douglas Adams"@zu ;
	schema:name "Douglas Adams"@zu ;
	rdfs:label "Duqlas Noel Adams"@az ;
	skos:prefLabel "Duqlas Noel Adams"@az ;
	schema:name "Duqlas Noel Adams"@az ;
	rdfs:label "Doglas Adams"@ak ;
	skos:prefLabel "Doglas Adams"@ak ;
	schema:name "Doglas Adams"@ak ;
	rdfs:label "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	skos:prefLabel "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	schema:name "ଡଗ୍‌ଲାସ୍‌ ଆଦାମ୍‌ସ"@or ;
	rdfs:label "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	skos:prefLabel "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	schema:name "ಡಗ್ಲಸ್ ಆಡಮ್ಸ್"@kn ;
	rdfs:label "डगलस एडम्स"@ne ;
	skos:prefLabel "डगलस एडम्स"@ne ;
	schema:name "डगलस एडम्स"@ne ;
	rdfs:label "Адамс"@mrj ;
	skos:prefLabel "Адамс"@mrj ;
	schema:name "Адамс"@mrj ;
	rdfs:label "ดักลัส แอดัมส์"@th ;
	skos:prefLabel "ดักลัส แอดัมส์"@th ;
	schema:name "ดักลัส แอดัมส์"@th ;
	rdfs:label "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	skos:prefLabel "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	schema:name "ਡਗਲਸ ਐਡਮਜ਼"@pa ;
	rdfs:label "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	skos:prefLabel "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	schema:name "ಡಾಗ್ಲಸ್ ಆಡಮ್ಸ್"@tcy ;
	rdfs:label "Douglas Adams"@tl ;
	skos:prefLabel "Douglas Adams"@tl ;
	schema:name "Douglas Adams"@tl ;
	rdfs:label "Douglas Adams"@ext ;
	skos:prefLabel "Douglas Adams"@ext ;
	schema:name "Douglas Adams"@ext ;
	rdfs:label "داقلاس آدامز"@azb ;
	skos:prefLabel "داقلاس آدامز"@azb ;
	schema:name "داقلاس آدامز"@azb ;
	rdfs:label "Douglas Adams"@lfn ;
	skos:prefLabel "Douglas Adams"@lfn ;
	schema:name "Douglas Adams"@lfn ;
	rdfs:label "Douglas Adams"@nan ;
	skos:prefLabel "Douglas Adams"@nan ;
	schema:name "Douglas Adams"@nan ;
	rdfs:label "Дуглас Адамс"@ky ;
	skos:prefLabel "Дуглас Адамс"@ky ;
	schema:name "Дуглас Адамс"@ky ;
	rdfs:label "डगलस एडम्स"@bho ;
	skos:prefLabel "डगलस एडम्स"@bho ;
	schema:name "डगलस एडम्स"@bho ;
	rdfs:label "道格拉斯·亚当斯"@wuu ;
	skos:prefLabel "道格拉斯·亚当斯"@wuu ;
	schema:name "道格拉斯·亚当斯"@wuu ;
	rdfs:label "道格拉斯亞當斯"@yue ;
	skos:prefLabel "道格拉斯亞當斯"@yue ;
	schema:name "道格拉斯亞當斯"@yue ;
	rdfs:label "ڈگلس ایڈمس"@pnb ;
	skos:prefLabel "ڈگلس ایڈمس"@pnb ;
	schema:name "ڈگلس ایڈمس"@pnb ;
	rdfs:label "Douglas Adams"@sje ;
	skos:prefLabel "Douglas Adams"@sje ;
	schema:name "Douglas Adams"@sje ;
	rdfs:label "Douglas Adams"@se ;
	skos:prefLabel "Douglas Adams"@se ;
	schema:name "Douglas Adams"@se ;
	rdfs:label "Douglas Adams"@smn ;
	skos:prefLabel "Douglas Adams"@smn ;
	schema:name "Douglas Adams"@smn ;
	rdfs:label "Douglas Adams"@sms ;
	skos:prefLabel "Douglas Adams"@sms ;
	schema:name "Douglas Adams"@sms ;
	rdfs:label "Douglas Adams"@sma ;
	skos:prefLabel "Douglas Adams"@sma ;
	schema:name "Douglas Adams"@sma ;
	rdfs:label "Douglas Adams"@smj ;
	skos:prefLabel "Douglas Adams"@smj ;
	schema:name "Douglas Adams"@smj ;
	rdfs:label "Douglas Adams"@bm ;
	skos:prefLabel "Douglas Adams"@bm ;
	schema:name "Douglas Adams"@bm ;
	rdfs:label "Douglas Adams"@frc ;
	skos:prefLabel "Douglas Adams"@frc ;
	schema:name "Douglas Adams"@frc ;
	rdfs:label "Douglas Adams"@jam ;
	skos:prefLabel "Douglas Adams"@jam ;
	schema:name "Douglas Adams"@jam ;
	rdfs:label "Douglas Adams"@kab ;
	skos:prefLabel "Douglas Adams"@kab ;
	schema:name "Douglas Adams"@kab ;
	rdfs:label "Douglas Adams"@pap ;
	skos:prefLabel "Douglas Adams"@pap ;
	schema:name "Douglas Adams"@pap ;
	rdfs:label "Douglas Adams"@prg ;
	skos:prefLabel "Douglas Adams"@prg ;
	schema:name "Douglas Adams"@prg ;
	rdfs:label "Douglas Adams"@rgn ;
	skos:prefLabel "Douglas Adams"@rgn ;
	schema:name "Douglas Adams"@rgn ;
	rdfs:label "Douglas Adams"@vmf ;
	skos:prefLabel "Douglas Adams"@vmf ;
	schema:name "Douglas Adams"@vmf ;
	rdfs:label "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	skos:prefLabel "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	schema:name "ߘߎߜ߭ߑߟߊߛ ߊߘߊߡߛ"@nqo ;
	rdfs:label "Douglas Adams"@fy ;
	skos:prefLabel "Douglas Adams"@fy ;
	schema:name "Douglas Adams"@fy ;
	rdfs:label "Douglas Adams"@hsb ;
	skos:prefLabel "Douglas Adams"@hsb ;
	schema:name "Douglas Adams"@hsb ;
	rdfs:label "דאַגלאַס אַדאַמס"@yi ;
	skos:prefLabel "דאַגלאַס אַדאַמס"@yi ;
	schema:name "דאַגלאַס אַדאַמס"@yi ;
	rdfs:label "Douglas Adams"@kw ;
	skos:prefLabel "Douglas Adams"@kw ;
	schema:name "Douglas Adams"@kw ;
	rdfs:label "دݢلس ايدمﺯ"@ms-arab ;
	skos:prefLabel "دݢلس ايدمﺯ"@ms-arab ;
	schema:name "دݢلس ايدمﺯ"@ms-arab ;
	rdfs:label "Douglas Adams"@jut ;
	skos:prefLabel "Douglas Adams"@jut ;
	schema:name "Douglas Adams"@jut ;
	rdfs:label "Дуглас Адамс"@ba ;
	skos:prefLabel "Дуглас Адамс"@ba ;
	schema:name "Дуглас Адамс"@ba ;
	rdfs:label "Douglas Adams"@ig ;
	skos:prefLabel "Douglas Adams"@ig ;
	schema:name "Douglas Adams"@ig ;
	rdfs:label "دوڭلاس أدامز"@ary ;
	skos:prefLabel "دوڭلاس أدامز"@ary ;
	schema:name "دوڭلاس أدامز"@ary ;
	schema:description "English science fiction writer and humourist (19522001)"@en,
		"écrivain de science-fiction et humoriste anglais (19522001)"@fr,
		"English writer and humourist"@en-gb,
		"engelsk science fiction-forfatter og humorist"@nb,
		"scrittore e umorista britannico"@it,
		"britischer Science-Fiction-Autor und Humorist (19522001)"@de,
		"escritor y humorista británico"@es,
		"английский писатель, драматург и сценарист, автор серии книг «Автостопом по галактике»"@ru,
		"英国作家"@zh-hans,
		"英國作家"@zh-hant,
		"英国作家"@zh-cn,
		"英国作家"@zh-sg,
		"英国作家"@zh-my,
		"英國作家"@zh,
		"英國作家"@zh-hk,
		"英國文學家、幽默作家"@zh-tw,
		"英國作家"@zh-mo,
		"escriptor anglès"@ca,
		"englantilainen kirjailija ja humoristi"@fi,
		"anglický spisovatel, humorista a dramatik"@cs,
		"brittisk författare (19522001)"@sv,
		"escritor e comediante britânico"@pt-br,
		"ஆங்கில எழுத்தாளர் மற்றும் நகைச்சுவையாளர்"@ta,
		"angleški pisatelj, humorist in dramatik"@sl,
		"engelsk forfatter"@da,
		"Engelse schrijver (1952-2001)"@nl,
		"escritor e comediante britânico"@pt,
		"brytyjski pisarz"@pl,
		"angļu zinātniskās fantastikas rakstnieks un humorists"@lv,
		"енглески писац и хумориста"@sr,
		"енглески писац научне фантастике и хумориста"@sr-ec,
		"engleski pisac naučne fantastike i humorista"@sr-el,
		"angla aŭtoro de sciencfikcio-romanoj kaj humoristo"@eo,
		"a englischer Science-Fiction-Schriftsteller"@bar,
		"skrivagner saoznek"@br,
		"イングランドの作家"@ja,
		"forfattar"@nn,
		"İngiliz yazar"@tr,
		"ඉංග්‍රීසි කවියෙක්"@si,
		"nhà văn và nhà soạn hài kịch người Anh (1952-2001)"@vi,
		"awdur a dychanwr Seisnig"@cy,
		"અંગ્રેજી લેખક અને હાસ્યકાર"@gu,
		"британський комічний радіодраматург, письменник"@uk,
		"scriitor, dramaturg englez"@ro,
		"angol író és humorista (19522001)"@hu,
		"فیلمنامه‌نویس و نویسنده بریتانیایی"@fa,
		"Engelse skrywer en humoris"@af,
		"англиски писател и хуморист"@mk,
		"Άγγλος συγγραφέας (19522001)"@el,
		"անգլիացի գրող, դրամատուրգ, սցենարիստ, «Ավտոստոպով զբոսաշրջիկի միջգալակտիկական ուղեցույց» վեպերի շարք"@hy,
		"английски писател и хуморист"@bg,
		"अङ्ग्रेजी लेखक र व्यङ्ग्यकार"@ne,
		"סופר והומוריסטן בריטי"@he,
		"britischer Schriftsteller"@de-at,
		"britischer Schriftsteller"@de-ch,
		"britischer Schriftsteller"@gsw,
		"englischer Schriftsteller"@nds,
		"ಇಂಗ್ಲಿಷ್ ಭಾಷೆಯ ಬರಹಗಾರ ಹಾಗೂ ಹಾಸ್ಯ ಲೇಖಕ"@kn,
		"ਅੰਗਰੇਜ਼ੀ ਲੇਖਕ"@pa,
		"كاتب إنجليزي فكاهي"@ar,
		"taga-Inglatera na manunulat at tagapagpatawa"@tl,
		"idazle eta umorista britaniarra"@eu,
		"britanski radijski dramaturg i pisac znanstvene fantastike"@hr,
		"영국의 작가"@ko,
		"mwandishi Mwingereza"@sw,
		"นักเขียนและผู้เล่าเรื่องอารมณ์ขันชาวอังกฤษ"@th,
		"English writer"@en-ca,
		"sgrìobhadair Sasannach"@gd,
		"ინგლისელი მწერალი და იუმორისტი"@ka,
		"inglise ulmekirjanik"@et,
		"ఇంగ్లీషు రచయిత, హాస్యకారుడు"@te,
		"escritor y humorista inglés"@ast,
		"autor dhe humorist anglez"@sq,
		"escritor e guionista británico"@gl,
		"अंग्रेजी भाषा के ब्रिटिश लेखक"@bho,
		"anglický spisovateľ"@sk,
		"scriptor, scriptor scaenicus, et mythistoricus (19522001)"@la,
		"ബ്രിട്ടീഷ് എഴുത്തുകാരനും ഹാസ്യസാഹിത്യാകാരനും"@ml,
		"scríbhneoir Sasanach"@ga,
		"nivîskarê brîtanî"@ku-latn,
		"Panulih jo palawak dari Inggirih"@min,
		"अंग्रेजी लेखक"@hi,
		"ߊ߲߬ߜ߭ߌ߬ߟߋ߬ ߛߓߍߦߟߊ ߞߎ߲߬ߘߐ߬ߕߍ߰ ߟߐ߲ߞߏ ߞߊ߲߬"@nqo,
		"англійскі пісьменнік"@be,
		"penulis dan humoris asal Britania Raya (1952-2001)"@id,
		"engleski pisac i humorist"@bs,
		"penulis dan pelawak Inggeris"@ms,
		"ब्रिटिश लेखक व नाटककार"@mr,
		"ইংরেজ কল্পবিজ্ঞান লেখক ও কৌতুকবিদ"@bn,
		"ލިޔުންތެރިއެއް"@dv,
		"Enskur höfundur"@is,
		"كاتب نڭليزي ديال لخيال لعلمي و لفكاهة"@ary ;
	skos:altLabel "Douglas Noël Adams"@en,
		"DNA"@en,
		"Адамс, Дуглас"@ru,
		"Дуглас Ноэль Адамс"@ru,
		"Адамс, Дуглас Ноэль"@ru,
		"Douglas Noël Adams"@nb,
		"Douglas N. Adams"@nb,
		"Douglas Noël Adams"@fr,
		"Douglas Noël Adams"@de,
		"Douglas Noël Adams"@pt-br,
		"Douglas Noel Adams"@pt-br,
		"Дуглас Адамс"@be-tarask,
		"亞當斯"@zh,
		"Douglas Noel Adams"@es,
		"Douglas Noël Adams"@es,
		"Douglas Noel Adams"@it,
		"Douglas N. Adams"@it,
		"Douglas Noël Adams"@cs,
		"Douglas Noel Adams"@cs,
		"Douglas N. Adams"@cs,
		"Ադամս, Դուգլաս"@hy,
		"Ντάγκλας Νόελ Άνταμς"@el,
		"Douglas Noel Adams"@nl,
		"Douglas Noël Adams"@nl,
		"Douglas Noël Adams"@pt,
		"Douglas Noel Adams"@pt,
		"ダグラス・アダムス"@ja,
		"ਡਗਲਸ ਨੋਏਲ ਐਡਮਜ਼"@pa,
		"ਡਗਲਸ ਐਡਮਸ"@pa,
		"Douglas Noël Adams"@tl,
		"Douglas Noel Adams"@tl,
		"Douglas Noel Adams"@eu,
		"Douglas Noël Adams"@eu,
		"Дуглас Ноел Адамс"@uk,
		"Адамс Дуглас"@uk,
		"Douglas Noël Adams"@hr,
		"Douglas N. Adams"@hr,
		"Douglas Noel Adams"@hr,
		"דגלס אדמס"@he,
		"דאגלס נואל אדמס"@he,
		"더글라스 애덤스"@ko,
		"더글러스 노엘 애덤스"@ko,
		"Douglas Noel Adams"@sw,
		"Douglas Noël Adams"@sw,
		"Douglas Noel Adams"@tr,
		"Douglas N. Adams"@tr,
		"Douglas Noël Adams"@tr,
		"Douglas Noël Adams"@et,
		"دوغلاس نويل آدمز"@ar,
		"دوغلاس ن. آدمز"@ar,
		"دوغلاس آدامز"@ar,
		"دوجلاس آدمز"@ar,
		"دوجلاس آدامز"@ar,
		"Duglassius Noëlus Adams"@la,
		"Douglas Adams"@la,
		"Duglassius Natalis Adams"@la,
		"Douglas Noël Adams"@gl,
		"डग्लस अडम्स"@bho,
		"डग्लस एडम्स"@bho,
		"Douglas Noel Adams"@sv,
		"Douglas Noël Adams"@sv,
		"ഡഗ്ലസ് നോയൽ ആഡംസ്"@ml,
		"ഡഗ്ലസ് എന്‍ ആഡംസ്"@ml,
		"Douglas Noel Adams"@nn,
		"Douglas Noel Adams"@ga,
		"Douglas Noël Adams"@ga,
		"Douglas N. Adams"@ga,
		"道格拉斯·諾耶爾·亞當斯"@zh-tw,
		"Douglas Noël Adams"@ro,
		"Douglas ADAMS"@eo,
		"Douglas Noël ADAMS"@eo,
		"Douglas Noel Adams"@ca,
		"Douglas Noël Adams"@ca,
		"ߘߎߜ߭ߑߟߊߛ ߣߏߥߍߟ ߊߘߊߡߛ"@nqo,
		"ߘߎߜ߭ߑߟߊߛ ߣ. ߊߘߊߡߛ"@nqo,
		"Douglas Noel Adams"@pl,
		"Douglas Noel Adams"@ms,
		"Douglas Noël Adams"@ms,
		"Douglas N. Adams"@ms,
		"Douglas Noel Adams"@da,
		"Douglas Noel Adams"@fi,
		"Duqlas Adams"@az,
		"Douglas Adams"@az,
		"Адамс, Дуглас"@mrj,
		"ڈگلس ایڈمس"@ur,
		"Douglas Adams"@lv,
		"Douglas Adams"@sr-el,
		"Douglas Adams"@ak,
		"Douglas Noel Adams"@hu,
		"Douglas Noël Adams"@hu,
		"Douglas Noel Adams"@ia,
		"Douglas Noel Adams"@id,
		"Douglas Noël Adams"@id,
		"Douglas N. Adams"@id,
		"Douglas Noel Adams"@sk,
		"Douglas Noël Adams"@sk,
		"Douglas N. Adams"@sk,
		"Douglas Noel Adams"@af,
		"Douglas Noël Adams"@bar .

wd:Q59431323 owl:sameAs wd:Q42 .

wd:Q60594743 owl:sameAs wd:Q42 .

SPARQL endpoint

SELECT DISTINCT ?item ?itemLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
  {
    SELECT DISTINCT ?item WHERE {
      ?item p:P50 ?statement0.
      ?statement0 (ps:P50/(wdt:P279*)) ?author.
      FILTER(EXISTS { ?author p:31 q:5. })
    }
    LIMIT 10
  }
}

https://query.wikidata.org/sparql

RDFLib can bed used to query a remote endpoint

In [12]:
import rdflib
In [13]:
g = rdflib.Graph()
In [ ]:
qres = g.query(
    """
    SELECT ?s
    WHERE {
      SERVICE <https://query.wikidata.org/sparql> {
        ?s a ?o .
      }
    }
    LIMIT 3
    """
)

for row in qres:
    print(row.s)
In [2]:
import rdflib
g = rdflib.Graph()
In [3]:
results = g.query("""
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>

SELECT DISTINCT ?item ?statement0 ?material WHERE
  {
    SERVICE <https://query.wikidata.org/sparql> {
        ?item p:P186 ?statement0.
        ?statement0 ps:P186 ?material.
    }
  }
LIMIT 10
""")
In [4]:
for r in results:
    print (r)
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
/usr/lib/python3.9/http/client.py in _get_chunk_left(self)
    554             try:
--> 555                 chunk_left = self._read_next_chunk_size()
    556             except ValueError:

/usr/lib/python3.9/http/client.py in _read_next_chunk_size(self)
    521         try:
--> 522             return int(line, 16)
    523         except ValueError:

ValueError: invalid literal for int() with base 16: b''

During handling of the above exception, another exception occurred:

IncompleteRead                            Traceback (most recent call last)
/usr/lib/python3.9/http/client.py in _readall_chunked(self)
    571             while True:
--> 572                 chunk_left = self._get_chunk_left()
    573                 if chunk_left is None:

/usr/lib/python3.9/http/client.py in _get_chunk_left(self)
    556             except ValueError:
--> 557                 raise IncompleteRead(b'')
    558             if chunk_left == 0:

IncompleteRead: IncompleteRead(0 bytes read)

During handling of the above exception, another exception occurred:

IncompleteRead                            Traceback (most recent call last)
/tmp/ipykernel_22614/3086989907.py in <module>
----> 1 for r in results:
      2     print (r)

~/.local/lib/python3.9/site-packages/rdflib/query.py in __iter__(self)
    299 
    300             if self._genbindings:
--> 301                 for b in self._genbindings:
    302                     if b:  # don't add a result row in case of empty binding {}
    303                         self._bindings.append(b)

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in evalDistinct(ctx, part)
    499 
    500     done = set()
--> 501     for x in res:
    502         if x not in done:
    503             yield x

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in <genexpr>(.0)
    508     res = evalPart(ctx, project.p)
    509 
--> 510     return (row.project(project.PV) for row in res)
    511 
    512 

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in evalServiceQuery(ctx, part)
    331             )
    332         if response.status == 200:
--> 333             json = j.loads(response.read())
    334             variables = res["vars_"] = json["head"]["vars"]
    335             # or just return the bindings?

/usr/lib/python3.9/http/client.py in read(self, amt)
    463 
    464             if self.chunked:
--> 465                 return self._readall_chunked()
    466 
    467             if self.length is None:

/usr/lib/python3.9/http/client.py in _readall_chunked(self)
    577             return b''.join(value)
    578         except IncompleteRead:
--> 579             raise IncompleteRead(b''.join(value))
    580 
    581     def _readinto_chunked(self, b):

IncompleteRead: IncompleteRead(347668480 bytes read)
In [15]:
import json
json.load(urlopen("http://www.wikidata.org/wiki/Special:EntityData/Q1901094?flavor=simple"))
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
/tmp/ipykernel_156165/116874423.py in <module>
      1 import json
----> 2 json.load(urlopen("http://www.wikidata.org/wiki/Special:EntityData/Q1901094?flavor=simple"))

NameError: name 'urlopen' is not defined

This query seems great but it times out. :(

In [29]:
import rdflib
g = rdflib.Graph()
query = """
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/> 
SELECT DISTINCT ?item WHERE {
  {
  SERVICE <https://query.wikidata.org/sparql> {
    SELECT DISTINCT ?item WHERE {
      ?item p:P50 ?statement0.
      ?statement0 (ps:P50/(wdt:P279*)) ?author.
      FILTER(EXISTS { ?author p:31 wd:Q5. })
    }
    LIMIT 10
  }
  }
}
"""
In [3]:
import rdflib
g = rdflib.Graph()
query = """
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/> 
SELECT DISTINCT ?item WHERE {
SERVICE <https://query.wikidata.org/sparql> {
  ?item p:P186 ?statement0.
  ?statement0 (ps:P186/(wdt:P279*)) wd:Q287.
  ?authored_thing p:P50 ?statement1.
  ?statement1 (ps:P50/(wdt:P279*)) ?item.
}
}
LIMIT 10
"""
In [4]:
for r in g.query(query):
    print (r)

Could you ask the same but then where author is made of wood?

In [ ]:
Could you ask the same but then where author is made of wood
In [3]:
import rdflib

def q(qstr):
    g = rdflib.Graph()
    query = """
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>

""" + qstr
    for r in g.query(query):
        print (r)
In [6]:
q("""SELECT DISTINCT ?item ?itemLabel ?author ?authorLabel WHERE {
SERVICE <https://query.wikidata.org/sparql> {
{
    SELECT DISTINCT ?item WHERE {
      ?item p:P50 ?statement0.
      ?statement0 (ps:P50/(wdt:P279*)) ?author.
    }
    LIMIT 10
  }
}}
""")
---------------------------------------------------------------------------
HTTPError                                 Traceback (most recent call last)
/tmp/ipykernel_57653/2376521622.py in <module>
----> 1 q("""SELECT DISTINCT ?item ?itemLabel ?author ?authorLabel WHERE {
      2 SERVICE <https://query.wikidata.org/sparql> {
      3 {
      4     SELECT DISTINCT ?item WHERE {
      5       ?item p:P50 ?statement0.

/tmp/ipykernel_57653/1375049239.py in q(qstr)
     10 
     11 """ + qstr
---> 12     for r in g.query(query):
     13         print (r)

~/.local/lib/python3.9/site-packages/rdflib/query.py in __iter__(self)
    299 
    300             if self._genbindings:
--> 301                 for b in self._genbindings:
    302                     if b:  # don't add a result row in case of empty binding {}
    303                         self._bindings.append(b)

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in evalDistinct(ctx, part)
    499 
    500     done = set()
--> 501     for x in res:
    502         if x not in done:
    503             yield x

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in <genexpr>(.0)
    508     res = evalPart(ctx, project.p)
    509 
--> 510     return (row.project(project.PV) for row in res)
    511 
    512 

~/.local/lib/python3.9/site-packages/rdflib/plugins/sparql/evaluate.py in evalServiceQuery(ctx, part)
    323             )
    324         else:
--> 325             response = urlopen(
    326                 Request(
    327                     service_url,

/usr/lib/python3.9/urllib/request.py in urlopen(url, data, timeout, cafile, capath, cadefault, context)
    212     else:
    213         opener = _opener
--> 214     return opener.open(url, data, timeout)
    215 
    216 def install_opener(opener):

/usr/lib/python3.9/urllib/request.py in open(self, fullurl, data, timeout)
    521         for processor in self.process_response.get(protocol, []):
    522             meth = getattr(processor, meth_name)
--> 523             response = meth(req, response)
    524 
    525         return response

/usr/lib/python3.9/urllib/request.py in http_response(self, request, response)
    630         # request was successfully received, understood, and accepted.
    631         if not (200 <= code < 300):
--> 632             response = self.parent.error(
    633                 'http', request, response, code, msg, hdrs)
    634 

/usr/lib/python3.9/urllib/request.py in error(self, proto, *args)
    559         if http_err:
    560             args = (dict, 'default', 'http_error_default') + orig_args
--> 561             return self._call_chain(*args)
    562 
    563 # XXX probably also want an abstract factory that knows when it makes

/usr/lib/python3.9/urllib/request.py in _call_chain(self, chain, kind, meth_name, *args)
    492         for handler in handlers:
    493             func = getattr(handler, meth_name)
--> 494             result = func(*args)
    495             if result is not None:
    496                 return result

/usr/lib/python3.9/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)
    639 class HTTPDefaultErrorHandler(BaseHandler):
    640     def http_error_default(self, req, fp, code, msg, hdrs):
--> 641         raise HTTPError(req.full_url, code, msg, hdrs, fp)
    642 
    643 class HTTPRedirectHandler(BaseHandler):

HTTPError: HTTP Error 500: Internal Server Error
In [8]:
!pip3 install wikidata
Defaulting to user installation because normal site-packages is not writeable
Collecting wikidata
  Downloading Wikidata-0.7.0-py3-none-any.whl (29 kB)
Installing collected packages: wikidata
Successfully installed wikidata-0.7.0

[notice] A new release of pip available: 22.3 -> 22.3.1
[notice] To update, run: python3 -m pip install --upgrade pip
In [10]:
from wikidata.client import Client
In [11]:
client = Client()  # doctest: +SKIP
entity = client.get('Q20145', load=True)
entity
Out[11]:
<wikidata.entity.Entity Q20145 'IU'>
In [13]:
print (entity.description)
South Korean singer and actress
In [15]:
image_prop = client.get('P18')
In [16]:
image = entity[image_prop]
In [17]:
image
Out[17]:
<wikidata.commonsmedia.File 'File:IU at Broker stage greetings, 19 June 2022 01.jpg'>
In [12]:
<wikidata.commonsmedia.File 'File:KBS "The Producers" press conference, 11 May 2015 10.jpg'>
In [19]:
image.image_resolution
(820, 1122)
Out[19]:
(820, 1122)
In [20]:
image.image_url
'https://upload.wikimedia.org/wikipedia/commons/6/60/KBS_%22The_Producers%22_press_conference%2C_11_May_2015_10.jpg'
Out[20]:
'https://upload.wikimedia.org/wikipedia/commons/6/60/KBS_%22The_Producers%22_press_conference%2C_11_May_2015_10.jpg'
In [21]:
from IPython.display import Image
In [22]:
Image(url=image.image_url) 
Out[22]:
In [24]:
made_from_material = client.get("P186", load=True)
In [26]:
print (made_from_material.description)
material the subject or the object is made of or derived from (do not confuse with P10672 which is used for processes)
In [30]:
for i in made_from_material:
    print (i.id, i.description)
P1629 item corresponding to the concept represented by the property
P1855 example where this Wikidata property is used; target item is one that would use this property, with qualifier the property being described given the associated value
P31 that class of which this subject is a particular example and member; different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain (and an instance of volcanic landform)
P1659 used to indicate another property that might provide additional information about the subject
P2875 category tracking a Wikidata property in sister projects
P2236 all resources related by the property from external vocabularies are also related to this property
P3254 URL of the page (or page section) on which the creation of the property was discussed
P2302 constraint applicable to a Wikidata property
P1628 equivalent property in other ontologies (use in statements on properties, use property URI)
P3734 item for categories of pages with template parameter value same as Wikidata
P1647 all resources related by this property are also related by that property
P1282 OpenStreetMap tagging schema (a Key:key, Tag:key=value, Relation:type, or Role:role) for classes, properties, and values
P1813 short name of a place, organisation, person, journal, Wikidata property, etc.
P7087 item with label/aliases of the inverse relationship of a property
P2888 URL used to link two items or properties, indicating a high degree of confidence that the concepts can be used interchangeably
P2668 likelihood that statements with this property will change
In [32]:
made_from_material.data
Out[32]:
{'pageid': 5761313,
 'ns': 120,
 'title': 'Property:P186',
 'lastrevid': 1760910171,
 'modified': '2022-10-30T04:00:42Z',
 'type': 'property',
 'datatype': 'wikibase-item',
 'id': 'P186',
 'labels': {'fr': {'language': 'fr', 'value': 'matériau'},
  'en': {'language': 'en', 'value': 'made from material'},
  'he': {'language': 'he', 'value': 'עשוי מ'},
  'de': {'language': 'de', 'value': 'Material'},
  'fa': {'language': 'fa', 'value': 'مواد سازنده'},
  'be': {'language': 'be', 'value': 'матэрыял'},
  'it': {'language': 'it', 'value': 'materiale usato'},
  'cs': {'language': 'cs', 'value': 'použitý materiál'},
  'ja': {'language': 'ja', 'value': '材料'},
  'ru': {'language': 'ru', 'value': 'сделано из'},
  'pt': {'language': 'pt', 'value': 'material utilizado'},
  'nn': {'language': 'nn', 'value': 'laga av'},
  'ca': {'language': 'ca', 'value': 'material utilitzat'},
  'es': {'language': 'es', 'value': 'material empleado'},
  'uk': {'language': 'uk', 'value': 'з матеріалу'},
  'lv': {'language': 'lv', 'value': 'materiāls'},
  'nl': {'language': 'nl', 'value': 'gebruikt materiaal'},
  'zh-hans': {'language': 'zh-hans', 'value': '材料'},
  'zh': {'language': 'zh', 'value': '材料'},
  'zh-hant': {'language': 'zh-hant', 'value': '材料'},
  'ko': {'language': 'ko', 'value': '사용된 재료'},
  'fi': {'language': 'fi', 'value': 'materiaali'},
  'sr': {'language': 'sr', 'value': 'коришћени материјал'},
  'hu': {'language': 'hu', 'value': 'anyag'},
  'pl': {'language': 'pl', 'value': 'materiał'},
  'sv': {'language': 'sv', 'value': 'huvudsakligt material'},
  'af': {'language': 'af', 'value': 'materiale gebruik'},
  'el': {'language': 'el', 'value': 'υλικό'},
  'vi': {'language': 'vi', 'value': 'chất liệu'},
  'da': {'language': 'da', 'value': 'anvendt materiale'},
  'nds': {'language': 'nds', 'value': 'bruukt Material'},
  'ro': {'language': 'ro', 'value': 'material folosit'},
  'bs': {'language': 'bs', 'value': 'korišten materijal'},
  'ka': {'language': 'ka', 'value': 'გამოყენებული მასალა'},
  'mk': {'language': 'mk', 'value': 'употребен материјал'},
  'en-gb': {'language': 'en-gb', 'value': 'material used'},
  'ms': {'language': 'ms', 'value': 'dibuat daripada bahan'},
  'pt-br': {'language': 'pt-br', 'value': 'material utilizado'},
  'be-tarask': {'language': 'be-tarask', 'value': 'матэрыял'},
  'nb': {'language': 'nb', 'value': 'materiale'},
  'oc': {'language': 'oc', 'value': 'material'},
  'lb': {'language': 'lb', 'value': 'benotzt Material'},
  'sco': {'language': 'sco', 'value': 'material uised'},
  'zh-hk': {'language': 'zh-hk', 'value': '材料'},
  'te': {'language': 'te', 'value': 'వాడిన సామాగ్రి'},
  'sr-ec': {'language': 'sr-ec', 'value': 'корићени материјал'},
  'sr-el': {'language': 'sr-el', 'value': 'korićeni materijal'},
  'id': {'language': 'id', 'value': 'bahan yang digunakan'},
  'hr': {'language': 'hr', 'value': 'materijal'},
  'ia': {'language': 'ia', 'value': 'material usate'},
  'scn': {'language': 'scn', 'value': 'fattu di'},
  'sl': {'language': 'sl', 'value': 'material'},
  'eu': {'language': 'eu', 'value': 'erabilitako materiala(k)'},
  'cy': {'language': 'cy', 'value': 'deunydd'},
  'eo': {'language': 'eo', 'value': 'uzita materialo'},
  'ar': {'language': 'ar', 'value': 'المواد المستخدمة'},
  'bg': {'language': 'bg', 'value': 'материал'},
  'ta': {'language': 'ta', 'value': 'பயன்படுத்திய பொருள்'},
  'lt': {'language': 'lt', 'value': 'naudota medžiaga'},
  'or': {'language': 'or', 'value': 'ବ୍ୟବହୃତ ସାମଗ୍ରୀ'},
  'bn': {'language': 'bn', 'value': 'ব্যবহৃত উপাদান'},
  'et': {'language': 'et', 'value': 'kasutatud materjal'},
  'zh-mo': {'language': 'zh-mo', 'value': '材料'},
  'zh-cn': {'language': 'zh-cn', 'value': '材料'},
  'zh-my': {'language': 'zh-my', 'value': '材料'},
  'zh-sg': {'language': 'zh-sg', 'value': '材料'},
  'zh-tw': {'language': 'zh-tw', 'value': '材料'},
  'hy': {'language': 'hy', 'value': 'նյութ'},
  'la': {'language': 'la', 'value': 'materia'},
  'tg': {'language': 'tg', 'value': 'маводди созанда'},
  'yo': {'language': 'yo', 'value': 'Àwon ohun èlò tí alò'},
  'tr': {'language': 'tr', 'value': 'üretildiği malzeme'},
  'ba': {'language': 'ba', 'value': 'барлыҡҡа килгән, эшләнгән'},
  'gl': {'language': 'gl', 'value': 'material usado'},
  'tt': {'language': 'tt', 'value': 'материал төре'},
  'ast': {'language': 'ast', 'value': 'material utilizáu'},
  'ml': {'language': 'ml', 'value': 'ഉപയോഗിച്ചിരിക്കുന്ന പദാർത്ഥം'},
  'frr': {'language': 'frr', 'value': 'Materiool'},
  'ce': {'language': 'ce', 'value': 'йина'},
  'mr': {'language': 'mr', 'value': 'वापरलेली सामग्री'},
  'sq': {'language': 'sq', 'value': 'materiali i përdorur'},
  'hsb': {'language': 'hsb', 'value': 'maćizna'},
  'az': {'language': 'az', 'value': 'material'},
  'ur': {'language': 'ur', 'value': 'ساختہ از'},
  'ga': {'language': 'ga', 'value': 'déanta as'},
  'gu': {'language': 'gu', 'value': 'વપરાયેલ પદાર્થો'},
  'nqo': {'language': 'nqo', 'value': 'ߓߎ߲ߓߎ߲߫ ߠߊߓߊ߯ߙߊߣߍ߲'},
  'sh': {'language': 'sh', 'value': 'materijal'},
  'ckb': {'language': 'ckb', 'value': 'ماددەی بەکارھاتوو'},
  'diq': {'language': 'diq', 'value': 'Çıçi ra vıraziyeno'},
  'br': {'language': 'br', 'value': 'danvez implijet'},
  'th': {'language': 'th', 'value': 'วัสดุที่ใช้'},
  'ha': {'language': 'ha', 'value': 'kayan haɗi'},
  'kab': {'language': 'kab', 'value': 'tinegwa'},
  'ms-arab': {'language': 'ms-arab', 'value': 'دبوات درڤد باهن'},
  'vec': {'language': 'vec', 'value': 'materiałe'},
  'ban': {'language': 'ban', 'value': 'malakar saking'},
  'sk': {'language': 'sk', 'value': 'použitý materiál'},
  'ks': {'language': 'ks', 'value': 'تَخلیٖقی مَواد'},
  'kw': {'language': 'kw', 'value': 'gwrys a'},
  'ig': {'language': 'ig', 'value': 'Ihe ejị mee ya'},
  'yue': {'language': 'yue', 'value': '材料'}},
 'descriptions': {'fr': {'language': 'fr',
   'value': "matériau dont est constitué le sujet ou l'objet (ne pas confondre avec P10672 qui est utilisé pour les processus)"},
  'en': {'language': 'en',
   'value': 'material the subject or the object is made of or derived from (do not confuse with P10672 which is used for processes)'},
  'he': {'language': 'he', 'value': 'החומרים מהם הנושא מורכב'},
  'de': {'language': 'de',
   'value': 'Stoff, aus dem das Objekt besteht oder gefertigt wurde (nicht zu verwechseln mit P10672, das für Prozesse verwendet wird)'},
  'it': {'language': 'it',
   'value': "materiale di cui è costituito l'elemento (non confondere con P10672 che è usato per i processi)"},
  'ca': {'language': 'ca', 'value': "material de què està fet l'element"},
  'es': {'language': 'es',
   'value': 'material del que está hecho o deriva el elemento (no confundir con P10672 que se utiliza para los procesos)'},
  'lv': {'language': 'lv', 'value': 'izmantotais materiāls'},
  'fi': {'language': 'fi', 'value': 'materiaali, josta kohde koostuu'},
  'fa': {'language': 'fa',
   'value': 'موادی که آیتم  مو رد نظر از آن\u200cها ساخته شده است'},
  'pl': {'language': 'pl',
   'value': 'materiał, z którego coś się składa lub z którego coś wykonano'},
  'el': {'language': 'el',
   'value': 'υλικό με το οποίο είναι φτιαγμένο το αντικέιμενο'},
  'ru': {'language': 'ru', 'value': 'материал, из которого сделан объект'},
  'ro': {'language': 'ro',
   'value': 'materialul din care este constituit subiectul'},
  'ja': {'language': 'ja', 'value': '主題のものごと(絵画、建築物、文化財、食品等)に用いられている材料'},
  'pt': {'language': 'pt', 'value': 'material de que o item é feito'},
  'hu': {'language': 'hu',
   'value': 'az anyag, amiből az illető dolog készült'},
  'da': {'language': 'da', 'value': 'det materiale, subjektet er lavet af'},
  'en-gb': {'language': 'en-gb',
   'value': 'material the subject is made of or derived from'},
  'nl': {'language': 'nl',
   'value': 'materiaal waarvan het onderwerp is gemaakt (niet verwarren met P10672 dat gebruikt wordt voor processen)'},
  'hr': {'language': 'hr',
   'value': 'materijal od kojega je objekt napravljen'},
  'nb': {'language': 'nb', 'value': 'materiale som elementet er laget av'},
  'scn': {'language': 'scn',
   'value': 'lu matiriali dû quali è fattu stu suggettu'},
  'sl': {'language': 'sl', 'value': 'material, iz katerega je nekaj narejeno'},
  'eu': {'language': 'eu',
   'value': 'Elementua egiteko erabilitako materialak'},
  'ko': {'language': 'ko', 'value': '주제를 만든 재료'},
  'zh': {'language': 'zh', 'value': '制品所使用的材料'},
  'sv': {'language': 'sv',
   'value': 'det material som subjektet är tillverkat av'},
  'bg': {'language': 'bg', 'value': 'материал, от който е изготвен обекта'},
  'bn': {'language': 'bn', 'value': 'বিষয় যে উপাদান তৈরি বা থেকে প্রাপ্ত'},
  'zh-mo': {'language': 'zh-mo', 'value': '製品所使用的材料'},
  'zh-cn': {'language': 'zh-cn', 'value': '製品所使用的材料'},
  'zh-hans': {'language': 'zh-hans', 'value': '制品所使用的材料'},
  'zh-hant': {'language': 'zh-hant', 'value': '製品所使用的材料'},
  'zh-hk': {'language': 'zh-hk', 'value': '製品所使用的材料'},
  'zh-my': {'language': 'zh-my', 'value': '制品所使用的材料'},
  'zh-sg': {'language': 'zh-sg', 'value': '制品所使用的材料'},
  'zh-tw': {'language': 'zh-tw', 'value': '製品所使用的材料'},
  'uk': {'language': 'uk',
   'value': "матеріал, з якого зроблено, чи з якого походить об'єкт"},
  'te': {'language': 'te', 'value': 'నిర్మించబడటానికి వాడిన సామాగ్రి'},
  'tr': {'language': 'tr',
   'value': 'materyalin konusu veya türetildiği malzeme'},
  'ba': {'language': 'ba', 'value': 'объект эшләнгән материал'},
  'ar': {'language': 'ar', 'value': 'المواد المصنوع منها أو الناتج عنها'},
  'gl': {'language': 'gl',
   'value': 'material do que está feito ou deriva o elemento'},
  'tt': {'language': 'tt', 'value': 'объект эшләнгән материал'},
  'ast': {'language': 'ast',
   'value': "material del que ta fechu o deriva l'elementu"},
  'ml': {'language': 'ml',
   'value': 'നിർമ്മിക്കാൻ അല്ലെങ്കിൽ ഉല്പാദിപ്പിക്കാൻ ഉപയോഗിച്ച പദാർത്ഥം'},
  'be-tarask': {'language': 'be-tarask',
   'value': 'матэрыял, зь якога зроблены ці паходзіць прадмет'},
  'hsb': {'language': 'hsb', 'value': 'maćizna, z kotrejež objekt wobsteji'},
  'nqo': {'language': 'nqo',
   'value': 'ߝߋ߲ ߘߊ߲߫ ߣߍ߲߫ ߦߋ߫ ߓߐ߰ߓߐ ߡߍ߲ ߘߐ߫ ߥߟߴߊ߬ ߓߐߣߍ߲߫ ߦߋ߫ ߡߍ߲ ߘߐ߫'},
  'sh': {'language': 'sh', 'value': 'materijal od kojeg je objekt napravljen'},
  'id': {'language': 'id',
   'value': 'bahan atau material yang digunakan untuk membuat subjek'},
  'cs': {'language': 'cs',
   'value': 'materiál, ze kterého je objekt složen či ze kterého byl vyroben'}},
 'aliases': {'en': [{'language': 'en', 'value': 'medium'},
   {'language': 'en', 'value': 'made from'},
   {'language': 'en', 'value': 'constructed from'},
   {'language': 'en', 'value': 'constructed out of'},
   {'language': 'en', 'value': 'construction material'},
   {'language': 'en', 'value': 'media'},
   {'language': 'en', 'value': 'built from'},
   {'language': 'en', 'value': 'built out of'},
   {'language': 'en', 'value': 'manufactured from'},
   {'language': 'en', 'value': 'manufactured out of'},
   {'language': 'en', 'value': 'crafted from'},
   {'language': 'en', 'value': 'crafted out of'},
   {'language': 'en', 'value': 'formed from'},
   {'language': 'en', 'value': 'formed out of'},
   {'language': 'en', 'value': 'made of'},
   {'language': 'en', 'value': 'ore'},
   {'language': 'en', 'value': 'source material'},
   {'language': 'en', 'value': 'raw material'},
   {'language': 'en', 'value': 'feedstock'},
   {'language': 'en', 'value': 'reactant'},
   {'language': 'en', 'value': 'ingredient'},
   {'language': 'en', 'value': 'ingredients'},
   {'language': 'en', 'value': 'made in'},
   {'language': 'en', 'value': 'be made in'},
   {'language': 'en', 'value': 'material used'},
   {'language': 'en', 'value': 'made of material'}],
  'nn': [{'language': 'nn', 'value': 'råmateriale'},
   {'language': 'nn', 'value': 'råemne'},
   {'language': 'nn', 'value': 'råstoff'}],
  'es': [{'language': 'es', 'value': 'material'},
   {'language': 'es', 'value': 'material usado'}],
  'fa': [{'language': 'fa', 'value': 'مواد به کار رفته'},
   {'language': 'fa', 'value': 'از جنسِ'},
   {'language': 'fa', 'value': 'ترکیبات'},
   {'language': 'fa', 'value': 'ساخته شده با'}],
  'ru': [{'language': 'ru', 'value': 'материал'},
   {'language': 'ru', 'value': 'сделаны из'},
   {'language': 'ru', 'value': 'сделан из'},
   {'language': 'ru', 'value': 'сделана из'},
   {'language': 'ru', 'value': 'изготовлено из'},
   {'language': 'ru', 'value': 'состоит из'}],
  'de': [{'language': 'de', 'value': 'gemacht aus'},
   {'language': 'de', 'value': 'Stoff'},
   {'language': 'de', 'value': 'Zutaten'},
   {'language': 'de', 'value': 'Zutat'},
   {'language': 'de', 'value': 'besteht aus'},
   {'language': 'de', 'value': 'Materialien'},
   {'language': 'de', 'value': 'Stoffe'},
   {'language': 'de', 'value': 'hergestellt aus'},
   {'language': 'de', 'value': 'gefertigt aus'},
   {'language': 'de', 'value': 'Baustoff'},
   {'language': 'de', 'value': 'Baumaterial'},
   {'language': 'de', 'value': 'verwendetes Material'},
   {'language': 'de', 'value': 'Edukt'},
   {'language': 'de', 'value': 'Rohstoff'},
   {'language': 'de', 'value': 'Ausgangsmaterial'}],
  'zh-hk': [{'language': 'zh-hk', 'value': '所用物料'}],
  'nl': [{'language': 'nl', 'value': 'bouwmateriaal'},
   {'language': 'nl', 'value': 'materiaal'},
   {'language': 'nl', 'value': 'gemaakt van'},
   {'language': 'nl', 'value': 'grondstof'},
   {'language': 'nl', 'value': 'ingrediënt'},
   {'language': 'nl', 'value': 'gebruikte grondstof'},
   {'language': 'nl', 'value': 'ingrediënten'}],
  'scn': [{'language': 'scn', 'value': 'matiriali'}],
  'sl': [{'language': 'sl', 'value': 'gradivo'},
   {'language': 'sl', 'value': 'snov'}],
  'ja': [{'language': 'ja', 'value': '素材'},
   {'language': 'ja', 'value': '資材'},
   {'language': 'ja', 'value': '原材料'},
   {'language': 'ja', 'value': '構成物質'},
   {'language': 'ja', 'value': '画材'},
   {'language': 'ja', 'value': '食材'},
   {'language': 'ja', 'value': '建築資材'},
   {'language': 'ja', 'value': '建築材料'},
   {'language': 'ja', 'value': '材質'}],
  'he': [{'language': 'he', 'value': 'מורכב מ'},
   {'language': 'he', 'value': 'מרכיבים'},
   {'language': 'he', 'value': 'בנוי מ'},
   {'language': 'he', 'value': 'חלקים'}],
  'nb': [{'language': 'nb', 'value': 'laget av'},
   {'language': 'nb', 'value': 'lagd av'},
   {'language': 'nb', 'value': 'stoff'},
   {'language': 'nb', 'value': 'består av'},
   {'language': 'nb', 'value': 'materiell'},
   {'language': 'nb', 'value': 'råstoff'},
   {'language': 'nb', 'value': 'råmateriale'}],
  'ko': [{'language': 'ko', 'value': '재료'},
   {'language': 'ko', 'value': '사용재료'},
   {'language': 'ko', 'value': '사용한 재료'}],
  'cy': [{'language': 'cy', 'value': 'defnydd'}],
  'zh': [{'language': 'zh', 'value': '材料'},
   {'language': 'zh', 'value': '使用材料'},
   {'language': 'zh', 'value': '成分'}],
  'bn': [{'language': 'bn', 'value': 'থেকে তৈরি'},
   {'language': 'bn', 'value': 'থেকে নির্মাণ'},
   {'language': 'bn', 'value': 'নির্মাণ উপাদান'},
   {'language': 'bn', 'value': 'থেকে উত্পাদিত'},
   {'language': 'bn', 'value': 'উৎস উপাদান'},
   {'language': 'bn', 'value': 'কাঁচা মাল'},
   {'language': 'bn', 'value': 'উপাদান'}],
  'uk': [{'language': 'uk', 'value': 'матеріал:'}],
  'ar': [{'language': 'ar', 'value': 'مواد مستخدمة'}],
  'pl': [{'language': 'pl', 'value': 'surowiec'},
   {'language': 'pl', 'value': 'zrobione z'},
   {'language': 'pl', 'value': 'medium'},
   {'language': 'pl', 'value': 'zbudowane z'}],
  'fr': [{'language': 'fr', 'value': 'composé de'},
   {'language': 'fr', 'value': 'fait de'},
   {'language': 'fr', 'value': 'matériau de construction'},
   {'language': 'fr', 'value': 'matériaux'},
   {'language': 'fr', 'value': 'construit à partir de'},
   {'language': 'fr', 'value': 'fabriqué à partir de'},
   {'language': 'fr', 'value': 'matière'},
   {'language': 'fr', 'value': 'composant'},
   {'language': 'fr', 'value': 'élément'},
   {'language': 'fr', 'value': 'substance'},
   {'language': 'fr', 'value': 'support'}],
  'te': [{'language': 'te', 'value': 'నుండి తయారు నుండి నిర్మించబడింది'}],
  'yo': [{'language': 'yo', 'value': 'Àwon ohun èlò'},
   {'language': 'yo', 'value': 'Ohun èlò'},
   {'language': 'yo', 'value': 'Èròjà'},
   {'language': 'yo', 'value': 'Àwon èròjà'}],
  'it': [{'language': 'it', 'value': 'ingredienti'},
   {'language': 'it', 'value': 'fatto di'},
   {'language': 'it', 'value': 'costruito con'},
   {'language': 'it', 'value': 'ricavato da'},
   {'language': 'it', 'value': 'scolpito ne'},
   {'language': 'it', 'value': 'reagente'},
   {'language': 'it', 'value': 'contiene'},
   {'language': 'it', 'value': 'manufatto'}],
  'gl': [{'language': 'gl', 'value': 'material'}],
  'tr': [{'language': 'tr', 'value': 'imal edilmiştir'},
   {'language': 'tr', 'value': 'üretildiği madde'},
   {'language': 'tr', 'value': 'hazırlandığı'},
   {'language': 'tr', 'value': 'oluşturan'},
   {'language': 'tr', 'value': 'kullanılan materyal'},
   {'language': 'tr', 'value': 'kullanılan malzeme'},
   {'language': 'tr', 'value': 'üretildiği gereç'},
   {'language': 'tr', 'value': 'bileşeni'},
   {'language': 'tr', 'value': 'malzemeleri'},
   {'language': 'tr', 'value': 'imal edildiği'},
   {'language': 'tr', 'value': 'cevheri'},
   {'language': 'tr', 'value': 'maddesi'},
   {'language': 'tr', 'value': 'kaynağı'},
   {'language': 'tr', 'value': 'kaynak maddesi'},
   {'language': 'tr', 'value': 'kaynak materyali'}],
  'ast': [{'language': 'ast', 'value': 'fechu de'},
   {'language': 'ast', 'value': 'fabricáu con'},
   {'language': 'ast', 'value': 'materia prima'},
   {'language': 'ast', 'value': 'ingrediente'},
   {'language': 'ast', 'value': 'reactivu'}],
  'ro': [{'language': 'ro', 'value': 'alcătuit din'},
   {'language': 'ro', 'value': 'construit din'},
   {'language': 'ro', 'value': 'confecționat din'},
   {'language': 'ro', 'value': 'ingrediente'}],
  'be-tarask': [{'language': 'be-tarask', 'value': 'сыравіна'},
   {'language': 'be-tarask', 'value': 'зроблена з'},
   {'language': 'be-tarask', 'value': 'збудавана з'},
   {'language': 'be-tarask', 'value': 'сабрана з'},
   {'language': 'be-tarask', 'value': 'выраблена з'},
   {'language': 'be-tarask', 'value': 'створана з'}],
  'sq': [{'language': 'sq', 'value': 'punuar prej'},
   {'language': 'sq', 'value': 'përbërja'}],
  'hsb': [{'language': 'hsb', 'value': 'zdźěłane z'},
   {'language': 'hsb', 'value': 'material'},
   {'language': 'hsb', 'value': 'wužiwany material'}],
  'hy': [{'language': 'hy', 'value': 'շինանյութ'}],
  'pt-br': [{'language': 'pt-br', 'value': 'construído com'}],
  'ga': [{'language': 'ga', 'value': 'ábhar a úsáideadh'}],
  'nqo': [{'language': 'nqo', 'value': 'ߊ߬ ߛߌ߲ߘߌߣߍ߲߫ ߦߋ߫ ߡߍ߲ ߘߐ߫'}],
  'ckb': [{'language': 'ckb', 'value': 'ماددەکانی دروستکردن'}],
  'id': [{'language': 'id', 'value': 'terbuat dari'},
   {'language': 'id', 'value': 'dibuat dari'},
   {'language': 'id', 'value': 'dibuat menggunakan'},
   {'language': 'id', 'value': 'material'},
   {'language': 'id', 'value': 'material yang digunakan'},
   {'language': 'id', 'value': 'komposisi'},
   {'language': 'id', 'value': 'bahan baku'}],
  'th': [{'language': 'th', 'value': 'ทำด้วย'},
   {'language': 'th', 'value': 'วัตถุดิบ'},
   {'language': 'th', 'value': 'วัตถุดิบที่ใช้'},
   {'language': 'th', 'value': 'ส่วนประกอบ'},
   {'language': 'th', 'value': 'ทำมาจาก'}],
  'cs': [{'language': 'cs', 'value': 'vyrobeno z'},
   {'language': 'cs', 'value': 'materiál'},
   {'language': 'cs', 'value': 'složení'},
   {'language': 'cs', 'value': 'postaveno z'}],
  'sk': [{'language': 'sk', 'value': 'vyrobené z'},
   {'language': 'sk', 'value': 'materiál'},
   {'language': 'sk', 'value': 'zloženie'}],
  'hu': [{'language': 'hu', 'value': 'összetevő'},
   {'language': 'hu', 'value': 'eredet'},
   {'language': 'hu', 'value': 'kiindulási anyag'},
   {'language': 'hu', 'value': 'nyersanyag'},
   {'language': 'hu', 'value': 'forrás'}],
  'ms-arab': [{'language': 'ms-arab', 'value': 'باهن يڠ دݢوناکن'}],
  'ms': [{'language': 'ms', 'value': 'bahan yang digunakan'},
   {'language': 'ms', 'value': 'diperbuat daripada bahan'}],
  'yue': [{'language': 'yue', 'value': '物料'}]},
 'claims': {'P1629': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1629',
     'hash': 'fa65303e91f9dfd43eb70c3ba6c7230cd3d7d290',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 214609,
       'id': 'Q214609'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$98e9211f-4e4a-c2d9-ec72-1a675fafd8da',
    'rank': 'normal'}],
  'P1855': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1855',
     'hash': '15a0a4881cc62f5fbd5ea06e76621c90ebe761d9',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 195,
       'id': 'Q195'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': 'e8887fe7827e09143e4d1868aff812af5b66194d',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 208008,
         'id': 'Q208008'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P186'],
    'id': 'P186$827b8107-48c3-6d6b-7afa-d8feb664925e',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1855',
     'hash': '9ef4470691da0e2f42e78b5a8aa6c7fb8617c104',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 243,
       'id': 'Q243'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': 'b492c94d2ab67939608b09518c5be032a935a261',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 860451,
         'id': 'Q860451'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P186'],
    'id': 'P186$f36f6b48-401c-c25e-60da-52bf5e1accdf',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1855',
     'hash': '5def0bd4ae0089338cc8262648f3c898a5805198',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 571,
       'id': 'Q571'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '454e0906dfbd7076b6e78a31c2ce3f34b150f428',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11472,
         'id': 'Q11472'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P186'],
    'id': 'P186$5c683e90-49cf-d591-8e21-d37a974a6bd1',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1855',
     'hash': 'f916f36b6233d4fa69ae002d83a955901fb7ee81',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 9202,
       'id': 'Q9202'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '53834ed4c2c9c54300ce38496af940744ceaee1e',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 753,
         'id': 'Q753'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P186'],
    'id': 'P186$a70e6ef1-43e6-3919-8cbc-a6909fc553a0',
    'rank': 'normal'}],
  'P31': [{'mainsnak': {'snaktype': 'value',
     'property': 'P31',
     'hash': 'a804151d180cc26bdc24a6057b07bbd4f2c3c725',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 51122921,
       'id': 'Q51122921'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$41c6a8f5-4a95-a8df-b86a-6801292a48a9',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P31',
     'hash': 'c103994718f91e423ff1be14e9db2121817a9a47',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 70564278,
       'id': 'Q70564278'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$7a99216e-48f3-eaf1-9f31-e6cbe663a478',
    'rank': 'normal'}],
  'P1659': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': '9a6e89ec455de9250777440e308776ee16f60822',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 1582,
       'id': 'P1582'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$b3162376-4b1f-98bf-0d08-f376e4495058',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': '85b07f72f630cbd75fa83ac4b99d84a58d38609e',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 2079,
       'id': 'P2079'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$99673444-4376-66c9-2f9d-7fbd9e4fc316',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'a90b0c8c66d18f1f054581e002bcb4b8904942cb',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 176,
       'id': 'P176'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$c6fdb40d-4225-e9a1-729f-fa985cd839c1',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': '2c7f14294905b60293acf4612d06f7526dbdcfb4',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 2647,
       'id': 'P2647'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$ec8635a5-429e-9202-5fa1-ba29137825a4',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'a8b5fa633b62f88b385902cf56336c93d9357a22',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 527,
       'id': 'P527'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$b1a3b0f3-4602-e752-e49d-2b538346e5bf',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'c8d98db4500307032f94217d068f5a4224e3b144',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 1056,
       'id': 'P1056'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$d5d90c5d-441f-16b7-5847-bc0c14d05a76',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'e59a57a007c569d775002e6be5ab203381f1f900',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 2670,
       'id': 'P2670'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$831fee15-48d1-bb77-07cf-7b63b7d2dc54',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'd200596ee9abe95d1b53dde0238d466735fbd706',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 4543,
       'id': 'P4543'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$1bfebb34-4280-edac-97c1-dfabe4e0e991',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1659',
     'hash': 'cd631b0d67676328dc5b25d7e86f2d54d191e168',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 10672,
       'id': 'P10672'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$a9f810eb-4105-a71c-20c5-283629ccc08a',
    'rank': 'normal'}],
  'P2875': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2875',
     'hash': '05f665f5fa29e4ad7f481465ddf601425ddd6c9b',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 23909000,
       'id': 'Q23909000'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$37b42671-407c-fd59-d530-2149d88747de',
    'rank': 'normal'}],
  'P2236': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2236',
     'hash': '4d6bb515b354d2d6cc89e31a190e52e9fead9580',
     'datavalue': {'value': 'http://comicmeta.org/cbo/material',
      'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$d7248cfd-419f-03d4-2902-cd7d11ca8385',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2236',
     'hash': '10d46db6debc904c8f9fc9994a476432b3084207',
     'datavalue': {'value': 'https://schema.org/artMedium', 'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$213d651e-4624-1029-f1e0-38a50b46bd04',
    'rank': 'normal'}],
  'P3254': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3254',
     'hash': '53b6f67dacbdd0153c7e5ce92d2ab9edbb0453fe',
     'datavalue': {'value': 'https://www.wikidata.org/wiki/Wikidata:Property_proposal/Archive/2#P186',
      'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$E75A1C01-4FBA-4B77-8B11-8CD48C8FAC7A',
    'rank': 'normal'}],
  'P2302': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': 'f682b0724a7ad8a25fffc7b602c4ecab3d8c6274',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21510865,
       'id': 'Q21510865'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2308': [{'snaktype': 'value',
       'property': 'P2308',
       'hash': 'e5aa972b68cd9177ebc52db8b37ee2523643e9eb',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 214609,
         'id': 'Q214609'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '73f8ad2a8fc79b22b54e832ab7fe0c93ec044ab4',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 2095,
         'id': 'Q2095'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'ecac290646a8d161c7b4a92bf53579efcf204961',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11344,
         'id': 'Q11344'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'ef276eb6dd80eaeeb49d0a27a089849f91e20797',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 25416091,
         'id': 'Q25416091'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'd153a41d3f70f6fa3f60f1a6fdfaca37826396f9',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 4936952,
         'id': 'Q4936952'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '948c9cf0c2eb72cb33fd56cad4913cafb3a4126a',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 25403900,
         'id': 'Q25403900'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '0ad52da44a33880ed709cd81d211156bc8e2f8c8',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 1362373,
         'id': 'Q1362373'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '2f52740f02e554f37e4098f11941599dc91a7d96',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 7239,
         'id': 'Q7239'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'db457ac13a11cd85e20f157ec4ad1d9094e7b5a5',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 40050,
         'id': 'Q40050'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '63733a02dd2a0d267900881e33bc9b0452522f18',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 223557,
         'id': 'Q223557'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '731967000ad423fca46a8e437ec53aa02f451d12',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 15053464,
         'id': 'Q15053464'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '9be87827a9e1b15c886202ec68b2c90d028f73d4',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 206615,
         'id': 'Q206615'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '6549481dae3d5cbd0d9a63f1fdd6cbb8273e81b5',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 37756,
         'id': 'Q37756'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'c1ebc0f834ee7a85afc59b72d404ec905ca30f1e',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11173,
         'id': 'Q11173'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2309': [{'snaktype': 'value',
       'property': 'P2309',
       'hash': '8fb539b5b9fd607316a1edaf9f8fd42a67a51dd2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 30208840,
         'id': 'Q30208840'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2303': [{'snaktype': 'value',
       'property': 'P2303',
       'hash': '8330f4189add2677e8e3c12fe6b302f694e3cf9e',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 113796,
         'id': 'Q113796'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2308', 'P2309', 'P2303'],
    'id': 'P186$1FD37C1C-8D37-420D-A22E-D3BF14D3F483',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '55cfe775ff19641cea395be018002e38e05f3749',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21510851,
       'id': 'Q21510851'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2306': [{'snaktype': 'value',
       'property': 'P2306',
       'hash': '3efd1f494ba2c1ac4bdc572df5784d4cca879442',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 518,
         'id': 'P518'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '2010b462c6f1a8afa12127674445a2c8158331e2',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 462,
         'id': 'P462'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '71013eb49b4eb9e589f7cd63489641c5c1440129',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 366,
         'id': 'P366'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '36592eb255e1367ba1dfede6d4e1aed39288ac32',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 515,
         'id': 'P515'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '4f27f7745f35fa635bef15fe91d44e9cb46c6c00',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 5102,
         'id': 'P5102'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'dba9aac68e68b1f04daa2eb598bb709b67f5ea7e',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2596,
         'id': 'P2596'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'ba9f982e717373af6707c7e88b0d66ea5fd24a17',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 3005,
         'id': 'P3005'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '4910ca558b9b0401e91b11626f400278702811bc',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 580,
         'id': 'P580'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '0720109791ffbb5500cf5a98c698a3156563cb72',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 582,
         'id': 'P582'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'a6be4e7a327c415e1c8d7d72c7fe6e7f784d4f57',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 585,
         'id': 'P585'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '36616b6704e667d23e739f5bbdbc3c8919b3832f',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1264,
         'id': 'P1264'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '31696ca64ef67bab9f7b9a2e73fb597eded6804c',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 642,
         'id': 'P642'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'e305134ef5fe1fe32968db20e01ae32457c5215d',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 176,
         'id': 'P176'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '7e556b3bce4e22df697e73c363f7f530ad37bdb2',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1107,
         'id': 'P1107'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'a4ceed8b5a5386967a8634f28bc83c99f7648aae',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2647,
         'id': 'P2647'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '07140c61c8ce2da1772b95cd4ec3b24a1a611435',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 3831,
         'id': 'P3831'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '77ac71f1a10d50c4162157f5c9f0c0f9f13a381a',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2067,
         'id': 'P2067'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '67034a33af3d4b1d462ad1965d846b90ffa092b2',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2234,
         'id': 'P2234'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'd502e8597ac9850b5fb191f6f4e50d8388cfbfb8',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 495,
         'id': 'P495'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '0f4fc5167d1d3b0eeb5a437d8cd917c7af0922e1',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2789,
         'id': 'P2789'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '508b942442ae465c7371674bd6b4c0141f477973',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 7379,
         'id': 'P7379'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '3fe1902f00be90c31d41611c5ac31d75e6be5aea',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1114,
         'id': 'P1114'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'f7c15da951bf8ff0c60d9ac92f017e876feec22c',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1013,
         'id': 'P1013'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '81dab5140d6a974b5d7d0c3ff69fcd7ccf880eec',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 6274,
         'id': 'P6274'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'ec1d369d76751c2fd30266f83f43ec5d84338d46',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1552,
         'id': 'P1552'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'b7b2b2d31ff3460e580b1cbaa9444277a00ce47c',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2241,
         'id': 'P2241'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '6b2485e2c2137f3688fe0dbb8af91308de46b999',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 7452,
         'id': 'P7452'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'beb122180ebd95f0bc1a00967301dd81b899a65f',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 8555,
         'id': 'P8555'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '4d5ae67f4ec02fe631936d1a30f729254651e10e',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1319,
         'id': 'P1319'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '749196703a56da61182d6793cc3e2dd961ce7823',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 8554,
         'id': 'P8554'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '27715681015ae0e055f4884c5ceac44b5882eaab',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1326,
         'id': 'P1326'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'c5af6b946ac38dd3d18aacadd44a26452795d75f',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2079,
         'id': 'P2079'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '8b3d7521306da9897a3713464efd7620a5022352',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 527,
         'id': 'P527'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': 'c3c9679494128b49b3b0057a0337401015b3e939',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 2610,
         'id': 'P2610'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '7747e47ccfc88feeb3192406e442da4648b5b410',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 7469,
         'id': 'P7469'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'},
      {'snaktype': 'value',
       'property': 'P2306',
       'hash': '838c15caf5c5c3f942465dec6b4b3e6745350c11',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 1932,
         'id': 'P1932'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'}]},
    'qualifiers-order': ['P2306'],
    'id': 'P186$ef2f9c20-4141-b9b8-8bc0-515d3c9d78a1',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '60d5b5bf5da8d7ec1e010402497e0015713c2bbf',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21502838,
       'id': 'Q21502838'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2306': [{'snaktype': 'value',
       'property': 'P2306',
       'hash': '57e0c059ce6c4f38e5ffd260c63684eb7c6e0e87',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 31,
         'id': 'P31'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'}],
     'P2305': [{'snaktype': 'value',
       'property': 'P2305',
       'hash': '8a187c0288f0d018f91c8b04bef9790da5605e13',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 56676227,
         'id': 'Q56676227'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '92e0c2f55173cfc86b66928b4157af6d7ff4c2c1',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 55439,
         'id': 'Q55439'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2306', 'P2305'],
    'id': 'P186$28159e63-49c5-1b9a-109c-0269fd0133ed',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': 'a00327947c6d834f33f6ee14916142d6a2008aef',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21503250,
       'id': 'Q21503250'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2308': [{'snaktype': 'value',
       'property': 'P2308',
       'hash': '63733a02dd2a0d267900881e33bc9b0452522f18',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 223557,
         'id': 'Q223557'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'ef276eb6dd80eaeeb49d0a27a089849f91e20797',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 25416091,
         'id': 'Q25416091'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '047c30704e521d0911ab5c49a454ba6a9aa2dbba',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 202866,
         'id': 'Q202866'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '8702ca871c4f1cb42123b958c0b6da56a3894861',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 15706911,
         'id': 'Q15706911'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'ff4d9cc9c8e7e696fa908009fdb888b30e3a5312',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 838948,
         'id': 'Q838948'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '812802ecc7aef49af3439e11775b7bac48168496',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 811979,
         'id': 'Q811979'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '96fa51753c79840ea57b72c75967840ab41cef30',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 18247357,
         'id': 'Q18247357'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': '4741898d8ad621a513e8ad7f5427fbabfcb87cd8',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 35758,
         'id': 'Q35758'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2308',
       'hash': 'e5aa972b68cd9177ebc52db8b37ee2523643e9eb',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 214609,
         'id': 'Q214609'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2309': [{'snaktype': 'value',
       'property': 'P2309',
       'hash': '8fb539b5b9fd607316a1edaf9f8fd42a67a51dd2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 30208840,
         'id': 'Q30208840'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2305': [{'snaktype': 'value',
       'property': 'P2305',
       'hash': 'd4c46186cc57540b0a780ae8f534c76d003c4746',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 19861951,
         'id': 'Q19861951'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2308', 'P2309', 'P2305'],
    'id': 'P186$9cbdeabe-41d2-a2b2-bcda-0361ef8a604f',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '2e149c47183ca37d301a6f980f359b688f2ae117',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 52558054,
       'id': 'Q52558054'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2305': [{'snaktype': 'value',
       'property': 'P2305',
       'hash': 'bb9e2a50d4bd4026d6f54dfe6cbbae4f733951c8',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 4259259,
         'id': 'Q4259259'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '6f92f0913480386564ce4af4b6615a7dd2933d97',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 1348059,
         'id': 'Q1348059'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P6607': [{'snaktype': 'value',
       'property': 'P6607',
       'hash': '1befa0dd7a56369762cd22a1817b809b4afd9be1',
       'datavalue': {'value': {'text': "We're updating painting surface items. These shouldn't be used anymore",
         'language': 'en'},
        'type': 'monolingualtext'},
       'datatype': 'monolingualtext'}]},
    'qualifiers-order': ['P2305', 'P6607'],
    'id': 'P186$4f410d49-47e6-b7ad-915c-e807fcf26797',
    'rank': 'deprecated'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': 'eba677434c5f12338ab5fd1ce6a834ab3139856a',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 52004125,
       'id': 'Q52004125'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2305': [{'snaktype': 'value',
       'property': 'P2305',
       'hash': '76a83209b6ab9e5ea1a1dd8e2986281a5a0479d7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 29934200,
         'id': 'Q29934200'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '26655a7e573da17226d4244ec74f59387afbf26c',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 59712033,
         'id': 'Q59712033'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2305'],
    'id': 'P186$7203CDC1-3014-4A4B-8065-33CE40B0E50B',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '793a77bb61b7ab2ebc9b8ef826c2c4c236eeccc1',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 53869507,
       'id': 'Q53869507'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P5314': [{'snaktype': 'value',
       'property': 'P5314',
       'hash': 'a0202111cb525ed31611bf926974b74a2419b8ab',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 54828448,
         'id': 'Q54828448'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P5314',
       'hash': '7f0b21bf6bef1987059626f383a532cf4375deb1',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 54828449,
         'id': 'Q54828449'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2316': [{'snaktype': 'value',
       'property': 'P2316',
       'hash': 'd50c571a43e6102d65b729ccc7049a0a2f867e34',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 21502408,
         'id': 'Q21502408'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P5314', 'P2316'],
    'id': 'P186$dc42680e-4f1e-a23b-cb21-7687fbd5afb5',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '60d5b5bf5da8d7ec1e010402497e0015713c2bbf',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21502838,
       'id': 'Q21502838'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2306': [{'snaktype': 'value',
       'property': 'P2306',
       'hash': 'fa8816672ca8b7b751760cbb2389d695a18a3574',
       'datavalue': {'value': {'entity-type': 'property',
         'numeric-id': 10672,
         'id': 'P10672'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-property'}]},
    'qualifiers-order': ['P2306'],
    'id': 'P186$14e9e7a5-4eed-a1ec-ddda-facbe74faf11',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2302',
     'hash': '8126932ce3e272616e666ecb8d50afb9bca34c81',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 21510859,
       'id': 'Q21510859'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2305': [{'snaktype': 'value',
       'property': 'P2305',
       'hash': 'd7fc494c4cf2884ea4a867e34a5cccdbf7a91100',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 296955,
         'id': 'Q296955'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'e881a6df6cec6df3016d1dcbbf5f98f0448490fc',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 12321255,
         'id': 'Q12321255'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '85972bbdc71a632d1ca326f883f318511e1a7c7c',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11472,
         'id': 'Q11472'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '2c4cc6edcbd2bb89b37f7373614615edadff937c',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 106857709,
         'id': 'Q106857709'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'df77e460129f023102c13b0d7025fe216c6a2d82',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 22915256,
         'id': 'Q22915256'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'c6946916452fdc679b7252b2dd9f7a5451e2d7ac',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5309,
         'id': 'Q5309'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'e3614e6bdd6af6855983cb7714bc11d6aaac3b10',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 34095,
         'id': 'Q34095'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '28b3ed655d0e70fa4c44814ab8aa3fc17e039d1d',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 22731,
         'id': 'Q22731'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'cf7afe852b72468459baaa8362d46d5d14fc21d0',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 39782,
         'id': 'Q39782'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '9900d3bf6d71a759e68d68b05f085ce0edc83057',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 21279007,
         'id': 'Q21279007'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'acae29f021989b929f6835a563cc8bd41976b500',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 43557297,
         'id': 'Q43557297'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': 'db1108cd5da0d2934580e1ca9c3f4eb741a745bc',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 14674,
         'id': 'Q14674'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '0a64488bb640aca55327ef0e19f5e087b2e6cd23',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 127418,
         'id': 'Q127418'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P2305',
       'hash': '5f67b7f9fdae07f44417724c620752c63b95d19b',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 1090,
         'id': 'Q1090'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2241': [{'snaktype': 'value',
       'property': 'P2241',
       'hash': '5a0ac634d171531f4188a5cf922a6030717cda35',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 99460987,
         'id': 'Q99460987'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2305', 'P2241'],
    'id': 'P186$DD87DEF8-A58E-438D-83B5-DB9E385A5D69',
    'rank': 'deprecated'}],
  'P1628': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1628',
     'hash': 'fb70f216d8e9d070e79d487192a4724a1520b82d',
     'datavalue': {'value': 'https://schema.org/material', 'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$85718e37-45eb-baf3-052a-7a832236c1f6',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1628',
     'hash': 'c747f0501f028198ec181426adfd877cf9f7f3a7',
     'datavalue': {'value': 'http://www.cidoc-crm.org/cidoc-crm/P45_consists_of',
      'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$89826a7e-419f-d9bd-e352-1e3e804ece1d',
    'rank': 'normal'}],
  'P3734': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3734',
     'hash': 'ef120df0a4ffb98c332876c21393fdf850d2b7b9',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 42533367,
       'id': 'Q42533367'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$0E0F0BF4-8335-4A76-A05C-375C019E828F',
    'rank': 'normal'}],
  'P1647': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1647',
     'hash': 'f6ebe6047dc815d0933c7a8ba328fbd28a3c000e',
     'datavalue': {'value': {'entity-type': 'property',
       'numeric-id': 2283,
       'id': 'P2283'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-property'},
    'type': 'statement',
    'id': 'P186$9d0f2d2e-4388-18e7-7314-57ca40faa074',
    'rank': 'normal'}],
  'P1282': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1282',
     'hash': 'fcfab9c751e940bcece90b70d1d6c4c7eb0b7b8f',
     'datavalue': {'value': 'Key:building:material', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'P186$d6dd4669-40f5-92f8-56a9-91c9027e84c9',
    'rank': 'normal'}],
  'P1813': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1813',
     'hash': 'bd8d6a26af8a178d442d86f0524835213cb2b883',
     'datavalue': {'value': {'text': 'material', 'language': 'sv'},
      'type': 'monolingualtext'},
     'datatype': 'monolingualtext'},
    'type': 'statement',
    'id': 'P186$d039da1a-411e-ad1c-d412-04fa6e0a43da',
    'rank': 'normal'}],
  'P7087': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7087',
     'hash': '94f212e7f34d3327577d91141d4da817857d81a8',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 104626285,
       'id': 'Q104626285'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$f26440ba-40b4-3173-d06d-fe1926d41095',
    'rank': 'normal'}],
  'P2888': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2888',
     'hash': '87ee7d9507a0f4512e8430598ba18568aae96536',
     'datavalue': {'value': 'https://schema.org/artMedium', 'type': 'string'},
     'datatype': 'url'},
    'type': 'statement',
    'id': 'P186$D53CE98D-18C3-467A-8346-5DE5F939215D',
    'rank': 'normal'}],
  'P2668': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2668',
     'hash': 'fcf4a281bf22df2715772baf769e3af6f4868325',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 23611288,
       'id': 'Q23611288'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'P186$c6ea810e-4975-fab3-189b-fa8aa1ac2816',
    'rank': 'normal'}]}}
In [40]:
print (f"https://www.wikidata.org/wiki/{made_from_material.type.name.title()}:{made_from_material.id}")
https://www.wikidata.org/wiki/Property:P186
In [41]:
def url(e):
    return f"https://www.wikidata.org/wiki/{e.type.name.title()}:{e.id}"
In [42]:
print (url(made_from_material))
https://www.wikidata.org/wiki/Property:P186

There's an example property...

https://www.wikidata.org/wiki/Property:P1855

In [44]:
example_prop = client.get("P1855")
In [46]:
for ex in made_from_material[example_prop]:
    print (ex.id, ex.description)
P279 this item is a subclass (subset) of that item; all instances of these items are instances of those items; different from P31 (instance of), e.g.: K2 is an instance of mountain; volcano is a subclass of mountain (and an instance of volcanic landform).
P373 name of the Wikimedia Commons category containing files related to this item (without the prefix "Category:")
P508 identifier in the subject indexing tool of the National Central Library of Florence
P349 identifier for authority control per the National Diet Library of Japan
P227 identifier from an international authority file of names, subjects, and organizations (please don't use type n = name, disambiguation) - Deutsche Nationalbibliothek
P910 main Wikimedia category
P935 name of the Wikimedia Commons gallery page(s) related to this item (is suitable to allow multiple links to more gallery pages)
P646 identifier for a page in the Freebase database. Format: "/m/0" followed by 2 to 7 characters. For those starting with "/g/", use Google Knowledge Graph identifier (P2671)
P18 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)
P443 audio file with pronunciation
P1051 identifier in the authority database of the Czech Technical Library
P244 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]
P527 part of this subject; inverse property of "part of" (P361). See also "has parts of the class" (P2670).
P1417 identifier for an article in the online version of Encyclopædia Britannica
P1807 identifier in the Spanish language, Aragon-themed, Great Aragonese Encyclopedia (GEA)
P186 material the subject or the object is made of or derived from (do not confuse with P10672 which is used for processes)
P1821 represents a food category on Open Food Facts
P3221 identifier for a topic, at the New York Times' website
P3417 identifier for a topic on Quora (English language version)
P3827 identifier for a topic at JSTOR
P1225 identifier for the United States National Archives and Records Administration's online catalog
P495 country of origin of this item (creative work, food, phrase, product, etc.)
P2581 ID in BabelNet encyclopedic dictionary
P5019 identifier for an article in the online version of Brockhaus Enzyklopädie
P5008 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.
P5125 item about an outline of the topic at Wikimedia sites
P486 identifier for Descriptor or Supplementary concept in the Medical Subject Headings controlled vocabulary
P4839 input form for an entity in Wolfram Language
P5930 identifier of a food ingredient on Open Food Facts
P5247 identifier at the Giant Bomb database of video games, fictional characters and voice actors
P948 image at top of an article about the topic, mainly used by Wikivoyage and Women in Red
P6573 ID of an article in Klexikon
P1296 identifier for an item in the Gran Enciclopèdia Catalana
P1245 "Defined Meaning" on the site
P7818 ID of the article in French Vikidia
P7829 ID of the article in English Vikidia
P7827 name of the article in Spanish Vikidia
P6760 identifier for a Know Your Meme article
P6900 identifier for an article in NicoNicoPedia
P2347 identifier for a concept in the General Finnish Ontology YSO
P1343 work where this item is described
P7033 ID for curriculum term in one of the controlled vocabularies at Australian education vocabularies
P8408 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
P672 Medical Subject Headings (MeSH) codes are an index and thesaurus for the life sciences (≠ MeSH ID, P486)
P3984 name of the Reddit forum associated to this subject
P9057 identifier of an ingredient in thecocktaildb.com database
P4527 identifier in the thesaurus of subject headings maintained by the librarians in the House of Commons in the UK
P9368 identifier for a topic on CNA's website
P268 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'.
P3553 numeric id of topics (tags) of questions on Zhihu, a Chinese question-and-answer website
P9629 identifier for a topic in the online encyclopedia Armeniapedia
P3781 has part biologically active component. Inverse of "active ingredient in"
P7512 ID in the Database of startrek.com
P1889 item that is different from another item, with which it may be confused
P3365 identifier for the Treccani website
P4223 identifier for the Enciclopedia Italiana on Treccani website
P1582 links a natural product with its source (animal, plant, fungal, algal, etc.)
P4342 identifier of an article in the online encyclopedia snl.no
P8313 identifier of an article in the online encyclopedia denstoredanske.lex.dk
P3911 identifier for a descriptor of the STW Thesaurus for Economics, linking to literature on economics and business administration
P8189 identifier used by the National Library of Israel
P8061 identifier for a subject in AGROVOC thesaurus
P8072 identifier for a subject in CAB Thesaurus
P2004 identifier for subject headings in the Agricultural Thesaurus of the United States National Agricultural Library
P31 that class of which this subject is a particular example and member; different from P279 (subclass of); for example: K2 is an instance of mountain; volcano is a subclass of mountain (and an instance of volcanic landform)
P10077 identifier for an item in any of the Spanish Cultural Heritage thesauri
P8814 Synset identifier in Princetons WordNet Version 3.1
P10565 identifier for an article in the online version of Encyclopedia of China (Third Edition)
P691 identifier in the Czech National Authority Database (National Library of Czech Republic)
P7502 page ID for the Golden knowledge base
P6262 identifier of an article on Fandom (Wikia). Format: subdomain:Page_title
In [48]:
for x in made_from_material.iterlists():
    print (x)
(<wikidata.entity.Entity P1629>, [<wikidata.entity.Entity Q214609>])
(<wikidata.entity.Entity P1855>, [<wikidata.entity.Entity Q195>, <wikidata.entity.Entity Q243>, <wikidata.entity.Entity Q571>, <wikidata.entity.Entity Q9202>])
(<wikidata.entity.Entity P31>, [<wikidata.entity.Entity Q51122921>, <wikidata.entity.Entity Q70564278>])
(<wikidata.entity.Entity P1659>, [<wikidata.entity.Entity P1582>, <wikidata.entity.Entity P2079>, <wikidata.entity.Entity P176>, <wikidata.entity.Entity P2647>, <wikidata.entity.Entity P527>, <wikidata.entity.Entity P1056>, <wikidata.entity.Entity P2670>, <wikidata.entity.Entity P4543>, <wikidata.entity.Entity P10672>])
(<wikidata.entity.Entity P2875>, [<wikidata.entity.Entity Q23909000>])
(<wikidata.entity.Entity P2236>, ['http://comicmeta.org/cbo/material', 'https://schema.org/artMedium'])
(<wikidata.entity.Entity P3254>, ['https://www.wikidata.org/wiki/Wikidata:Property_proposal/Archive/2#P186'])
(<wikidata.entity.Entity P2302>, [<wikidata.entity.Entity Q21510865>, <wikidata.entity.Entity Q21510851>, <wikidata.entity.Entity Q21502838>, <wikidata.entity.Entity Q21503250>, <wikidata.entity.Entity Q52004125>, <wikidata.entity.Entity Q53869507>, <wikidata.entity.Entity Q21502838>, <wikidata.entity.Entity Q52558054>, <wikidata.entity.Entity Q21510859>])
(<wikidata.entity.Entity P1628>, ['https://schema.org/material', 'http://www.cidoc-crm.org/cidoc-crm/P45_consists_of'])
(<wikidata.entity.Entity P3734>, [<wikidata.entity.Entity Q42533367>])
(<wikidata.entity.Entity P1647>, [<wikidata.entity.Entity P2283>])
(<wikidata.entity.Entity P1282>, ['Key:building:material'])
(<wikidata.entity.Entity P1813>, ['(sv:) material'[6:]])
(<wikidata.entity.Entity P7087>, [<wikidata.entity.Entity Q104626285>])
(<wikidata.entity.Entity P2888>, ['https://schema.org/artMedium'])
(<wikidata.entity.Entity P2668 'stability of property value'>, [<wikidata.entity.Entity Q23611288>])
In [49]:
made_from_material.listvalues()
Out[49]:
[[<wikidata.entity.Entity Q214609>],
 [<wikidata.entity.Entity Q195>,
  <wikidata.entity.Entity Q243>,
  <wikidata.entity.Entity Q571>,
  <wikidata.entity.Entity Q9202>],
 [<wikidata.entity.Entity Q51122921>, <wikidata.entity.Entity Q70564278>],
 [<wikidata.entity.Entity P1582>,
  <wikidata.entity.Entity P2079>,
  <wikidata.entity.Entity P176>,
  <wikidata.entity.Entity P2647>,
  <wikidata.entity.Entity P527>,
  <wikidata.entity.Entity P1056>,
  <wikidata.entity.Entity P2670>,
  <wikidata.entity.Entity P4543>,
  <wikidata.entity.Entity P10672>],
 [<wikidata.entity.Entity Q23909000>],
 ['http://comicmeta.org/cbo/material', 'https://schema.org/artMedium'],
 ['https://www.wikidata.org/wiki/Wikidata:Property_proposal/Archive/2#P186'],
 [<wikidata.entity.Entity Q21510865>,
  <wikidata.entity.Entity Q21510851>,
  <wikidata.entity.Entity Q21502838>,
  <wikidata.entity.Entity Q21503250>,
  <wikidata.entity.Entity Q52004125>,
  <wikidata.entity.Entity Q53869507>,
  <wikidata.entity.Entity Q21502838>,
  <wikidata.entity.Entity Q52558054>,
  <wikidata.entity.Entity Q21510859>],
 ['https://schema.org/material',
  'http://www.cidoc-crm.org/cidoc-crm/P45_consists_of'],
 [<wikidata.entity.Entity Q42533367>],
 [<wikidata.entity.Entity P2283>],
 ['Key:building:material'],
 ['(sv:) material'[6:]],
 [<wikidata.entity.Entity Q104626285>],
 ['https://schema.org/artMedium'],
 [<wikidata.entity.Entity Q23611288>]]

Direct SPAQL queries (without rdflib, and with alternative/direct? endpoint)

https://www.wikidata.org/wiki/Wikidata:SPARQL_query_service

SPARQL queries can be submitted directly to the SPARQL endpoint with GET request to
https://query.wikidata.org/bigdata/namespace/wdq/sparql?query={SPARQL}
or the endpoint's alias
https://query.wikidata.org/sparql?query={SPARQL} .

The result is returned as XML by default, or as JSON if either the query parameter format=json or the header Accept: application/sparql-results+json are provided. See the user manual for more detailed information. RDF data can alternatively be accessed via a Linked Data Fragments[1] interface at https://query.wikidata.org/bigdata/ldf.

In [9]:
from urllib.request import urlopen
from urllib.parse import quote as urlquote, urlencode
import json
In [13]:
q1 = """
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>

SELECT DISTINCT ?item ?statement0 ?material WHERE
  {
      ?item p:P186 ?statement0.
      ?statement0 ps:P186 ?material.
  }
LIMIT 10
"""
In [6]:
# f = urlopen("https://query.wikidata.org/bigdata/namespace/wdq/sparql?format=json&query=SELECT%20DISTINCT%20%3Fx%0AWHERE%20{%0A%20%20%3Fx%20wdt%3AP214%20%22113230702%22%0A}")
endpoint = 
In [8]:
urlencode({"format": "json", "query": "this is a test"})
Out[8]:
'format=json&query=this+is+a+test'
In [24]:
def query (q, format="json", endpoint="https://query.wikidata.org/sparql"):
    p = {}
    p['format'] = format
    p['query'] = q
    f = urlopen(endpoint+"?"+urlencode(p))
    return json.load(f)
In [4]:
f = urlopen(f"https://query.wikidata.org/bigdata/namespace/wdq/sparql?format=json&query={urlquote(query)}")
results = json.load(f)
In [15]:
print (json.dumps(query(q1), indent=2))
{
  "head": {
    "vars": [
      "item",
      "statement0",
      "material"
    ]
  },
  "results": {
    "bindings": [
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q28438155-7989f8f6-4a55-4414-dec6-b005a0a1c4ce"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q28438155"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q4796545-d9d5ca69-49aa-7e9f-b848-8cafe08dbde4"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q4796545"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q11120024-c3244d02-468b-85bb-8645-e9e6ff8cc306"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q11120024"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q1078150-3900a7c4-4452-decf-6d06-9f648cdeb60f"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q1078150"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q92404056-2E01BD43-76F8-45DA-A573-DBE37625BA81"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q92404056"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q893-2168ded0-476c-3786-bd7c-566b80599b74"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q893"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q3066933-E9EC0B24-BC32-4A87-8EB5-09321A236059"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q3066933"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q104621347-ed954dfa-471e-f382-61c5-ce3a73dc3e89"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q104621347"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q105283630-a3ec8183-4635-b2fb-b4f0-aa0b348da1d6"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q105283630"
        }
      },
      {
        "statement0": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/statement/Q43082799-c374b662-4d4c-8659-1749-fafb78a2e509"
        },
        "material": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q283"
        },
        "item": {
          "type": "uri",
          "value": "http://www.wikidata.org/entity/Q43082799"
        }
      }
    ]
  }
}
In [17]:
for bb in results['results']['bindings']:
    print (bb)
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q28438155-7989f8f6-4a55-4414-dec6-b005a0a1c4ce'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q28438155'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q4796545-d9d5ca69-49aa-7e9f-b848-8cafe08dbde4'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q4796545'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q11120024-c3244d02-468b-85bb-8645-e9e6ff8cc306'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q11120024'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q1078150-3900a7c4-4452-decf-6d06-9f648cdeb60f'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q1078150'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q92404056-2E01BD43-76F8-45DA-A573-DBE37625BA81'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q92404056'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q893-2168ded0-476c-3786-bd7c-566b80599b74'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q893'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q3066933-E9EC0B24-BC32-4A87-8EB5-09321A236059'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q3066933'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q104621347-ed954dfa-471e-f382-61c5-ce3a73dc3e89'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q104621347'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q105283630-a3ec8183-4635-b2fb-b4f0-aa0b348da1d6'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q105283630'}}
{'statement0': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/statement/Q43082799-c374b662-4d4c-8659-1749-fafb78a2e509'}, 'material': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q283'}, 'item': {'type': 'uri', 'value': 'http://www.wikidata.org/entity/Q43082799'}}
In [21]:
for bb in results['results']['bindings']:
    print (bb)
In [22]:
print (query2(q1))
<?xml version='1.0' encoding='UTF-8'?>
<sparql xmlns='http://www.w3.org/2005/sparql-results#'>
	<head>
		<variable name='item'/>
		<variable name='statement0'/>
		<variable name='material'/>
	</head>
	<results>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q28438155-7989f8f6-4a55-4414-dec6-b005a0a1c4ce</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q28438155</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q4796545-d9d5ca69-49aa-7e9f-b848-8cafe08dbde4</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q4796545</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q11120024-c3244d02-468b-85bb-8645-e9e6ff8cc306</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q11120024</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q1078150-3900a7c4-4452-decf-6d06-9f648cdeb60f</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q1078150</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q92404056-2E01BD43-76F8-45DA-A573-DBE37625BA81</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q92404056</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q893-2168ded0-476c-3786-bd7c-566b80599b74</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q893</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q3066933-E9EC0B24-BC32-4A87-8EB5-09321A236059</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q3066933</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q104621347-ed954dfa-471e-f382-61c5-ce3a73dc3e89</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q104621347</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q105283630-a3ec8183-4635-b2fb-b4f0-aa0b348da1d6</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q105283630</uri>
			</binding>
		</result>
		<result>
			<binding name='statement0'>
				<uri>http://www.wikidata.org/entity/statement/Q43082799-c374b662-4d4c-8659-1749-fafb78a2e509</uri>
			</binding>
			<binding name='material'>
				<uri>http://www.wikidata.org/entity/Q283</uri>
			</binding>
			<binding name='item'>
				<uri>http://www.wikidata.org/entity/Q43082799</uri>
			</binding>
		</result>
	</results>
</sparql>

Non-human authors ?

This blog post from Harmonia Amanda, part of a series of "Sunday Queries" develops the idea of querying wikidata for the 200 oldest alive French actresses (known to the wikidata of course).

In [27]:
prefixes = """
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
"""

Q5: Human
P31: Instance of
P50: author

In [31]:
q2 = """
SELECT ?person WHERE {
    ?person wdt:P31 wd:Q5 .
    ?person wdt:P50 ?work .
}
LIMIT 10
"""
In [32]:
def query (q, format="json", endpoint="https://query.wikidata.org/sparql"):
    p = {}
    p['format'] = format
    p['query'] = q
    f = urlopen(endpoint+"?"+urlencode(p))
    return json.load(f)['results']['bindings']
In [33]:
for r in query(prefixes + q2):
    print (r)
    
---------------------------------------------------------------------------
HTTPError                                 Traceback (most recent call last)
/tmp/ipykernel_28330/1456671096.py in <module>
----> 1 for r in query(prefixes + q2):
      2     print (r)
      3 

/tmp/ipykernel_28330/1949341471.py in query(q, format, endpoint)
      3     p['format'] = format
      4     p['query'] = q
----> 5     f = urlopen(endpoint+"?"+urlencode(p))
      6     return json.load(f)['results']['bindings']

/usr/lib/python3.9/urllib/request.py in urlopen(url, data, timeout, cafile, capath, cadefault, context)
    212     else:
    213         opener = _opener
--> 214     return opener.open(url, data, timeout)
    215 
    216 def install_opener(opener):

/usr/lib/python3.9/urllib/request.py in open(self, fullurl, data, timeout)
    521         for processor in self.process_response.get(protocol, []):
    522             meth = getattr(processor, meth_name)
--> 523             response = meth(req, response)
    524 
    525         return response

/usr/lib/python3.9/urllib/request.py in http_response(self, request, response)
    630         # request was successfully received, understood, and accepted.
    631         if not (200 <= code < 300):
--> 632             response = self.parent.error(
    633                 'http', request, response, code, msg, hdrs)
    634 

/usr/lib/python3.9/urllib/request.py in error(self, proto, *args)
    559         if http_err:
    560             args = (dict, 'default', 'http_error_default') + orig_args
--> 561             return self._call_chain(*args)
    562 
    563 # XXX probably also want an abstract factory that knows when it makes

/usr/lib/python3.9/urllib/request.py in _call_chain(self, chain, kind, meth_name, *args)
    492         for handler in handlers:
    493             func = getattr(handler, meth_name)
--> 494             result = func(*args)
    495             if result is not None:
    496                 return result

/usr/lib/python3.9/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)
    639 class HTTPDefaultErrorHandler(BaseHandler):
    640     def http_error_default(self, req, fp, code, msg, hdrs):
--> 641         raise HTTPError(req.full_url, code, msg, hdrs, fp)
    642 
    643 class HTTPRedirectHandler(BaseHandler):

HTTPError: HTTP Error 500: Internal Server Error

Non-Human

The query builder documentation includes an example of a search for "Items having an occupation but not being humans".

In [35]:
qq = """
SELECT DISTINCT ?item ?statement0 ?thing WHERE {
  {
    SELECT DISTINCT ?item WHERE {
      MINUS {
        ?item p:P31 ?statement0.
        ?statement0 (ps:P31/(wdt:P279*)) wd:Q5.
      }
      ?item ^p:P50 ?statement1.
      ?statement1 ^(ps:P50/(wdt:P279*)) ?thing.
    }
    LIMIT 100
  }
}"""
In [36]:
for r in query(prefixes + qq):
    print (r)
---------------------------------------------------------------------------
HTTPError                                 Traceback (most recent call last)
/tmp/ipykernel_28330/328190557.py in <module>
----> 1 for r in query(prefixes + qq):
      2     print (r)

/tmp/ipykernel_28330/1949341471.py in query(q, format, endpoint)
      3     p['format'] = format
      4     p['query'] = q
----> 5     f = urlopen(endpoint+"?"+urlencode(p))
      6     return json.load(f)['results']['bindings']

/usr/lib/python3.9/urllib/request.py in urlopen(url, data, timeout, cafile, capath, cadefault, context)
    212     else:
    213         opener = _opener
--> 214     return opener.open(url, data, timeout)
    215 
    216 def install_opener(opener):

/usr/lib/python3.9/urllib/request.py in open(self, fullurl, data, timeout)
    521         for processor in self.process_response.get(protocol, []):
    522             meth = getattr(processor, meth_name)
--> 523             response = meth(req, response)
    524 
    525         return response

/usr/lib/python3.9/urllib/request.py in http_response(self, request, response)
    630         # request was successfully received, understood, and accepted.
    631         if not (200 <= code < 300):
--> 632             response = self.parent.error(
    633                 'http', request, response, code, msg, hdrs)
    634 

/usr/lib/python3.9/urllib/request.py in error(self, proto, *args)
    559         if http_err:
    560             args = (dict, 'default', 'http_error_default') + orig_args
--> 561             return self._call_chain(*args)
    562 
    563 # XXX probably also want an abstract factory that knows when it makes

/usr/lib/python3.9/urllib/request.py in _call_chain(self, chain, kind, meth_name, *args)
    492         for handler in handlers:
    493             func = getattr(handler, meth_name)
--> 494             result = func(*args)
    495             if result is not None:
    496                 return result

/usr/lib/python3.9/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)
    639 class HTTPDefaultErrorHandler(BaseHandler):
    640     def http_error_default(self, req, fp, code, msg, hdrs):
--> 641         raise HTTPError(req.full_url, code, msg, hdrs, fp)
    642 
    643 class HTTPRedirectHandler(BaseHandler):

HTTPError: HTTP Error 500: Internal Server Error
In [40]:
 
In [44]:
e = client.get('Q283')
In [47]:
 
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
/tmp/ipykernel_28330/3451889978.py in <module>
----> 1 print (e.title)

AttributeError: 'Entity' object has no attribute 'title'
In [93]:
import re

def get_info (wdurl):
    m = re.search(r"^https?:\/\/www\.wikidata\.org\/(wiki|entity)/(?P<q>Q\d+)$", wdurl)
    if m is not None:
        qid = m.groupdict()['q']
        print ("qid", qid)
        url = f"https://www.wikidata.org/wiki/Special:EntityData/{qid}.json?flavor=simple"
        return json.load(urlopen(url))['entities'][qid]
    else:
        print("unrecognized url")
In [94]:
url = "http://www.wikidata.org/entity/Q283"
In [95]:
get_info(url)
qid Q283
Out[95]:
{'pageid': 459,
 'ns': 0,
 'title': 'Q283',
 'lastrevid': 1767502457,
 'modified': '2022-11-08T18:29:52Z',
 'type': 'item',
 'id': 'Q283',
 'labels': {'fr': {'language': 'fr', 'value': 'eau'},
  'en': {'language': 'en', 'value': 'water'},
  'ru': {'language': 'ru', 'value': 'вода'},
  'it': {'language': 'it', 'value': 'acqua'},
  'be-tarask': {'language': 'be-tarask', 'value': 'вада'},
  'yue': {'language': 'yue', 'value': '水'},
  'lzh': {'language': 'lzh', 'value': '水'},
  'sgs': {'language': 'sgs', 'value': 'Ondou'},
  'nan': {'language': 'nan', 'value': 'Chúi'},
  'nds-nl': {'language': 'nds-nl', 'value': 'Woater'},
  'vro': {'language': 'vro', 'value': 'Vesi'},
  'nb': {'language': 'nb', 'value': 'vann'},
  'de': {'language': 'de', 'value': 'Wasser'},
  'en-ca': {'language': 'en-ca', 'value': 'water'},
  'en-gb': {'language': 'en-gb', 'value': 'water'},
  'la': {'language': 'la', 'value': 'aqua'},
  'af': {'language': 'af', 'value': 'water'},
  'ar': {'language': 'ar', 'value': 'ماء'},
  'am': {'language': 'am', 'value': 'ውሃ'},
  'an': {'language': 'an', 'value': 'augua'},
  'ang': {'language': 'ang', 'value': 'wæter'},
  'arc': {'language': 'arc', 'value': 'ܡܝܐ'},
  'arz': {'language': 'arz', 'value': 'ميه'},
  'ast': {'language': 'ast', 'value': 'agua'},
  'ay': {'language': 'ay', 'value': 'uma'},
  'az': {'language': 'az', 'value': 'su'},
  'ba': {'language': 'ba', 'value': 'Һыу'},
  'bar': {'language': 'bar', 'value': 'Wossa'},
  'be': {'language': 'be', 'value': 'вада'},
  'bg': {'language': 'bg', 'value': 'вода'},
  'bjn': {'language': 'bjn', 'value': 'banyu'},
  'bm': {'language': 'bm', 'value': 'Ji'},
  'bn': {'language': 'bn', 'value': 'পানি'},
  'bo': {'language': 'bo', 'value': 'ཆུ།'},
  'br': {'language': 'br', 'value': 'dour'},
  'bs': {'language': 'bs', 'value': 'voda'},
  'ca': {'language': 'ca', 'value': 'aigua'},
  'cdo': {'language': 'cdo', 'value': 'cūi'},
  'ce': {'language': 'ce', 'value': 'хи'},
  'ceb': {'language': 'ceb', 'value': 'tubig'},
  'ch': {'language': 'ch', 'value': 'hånom'},
  'chr': {'language': 'chr', 'value': 'ᎠᎹ'},
  'chy': {'language': 'chy', 'value': 'mahpe'},
  'ckb': {'language': 'ckb', 'value': 'ئاو'},
  'co': {'language': 'co', 'value': 'acqua'},
  'cr': {'language': 'cr', 'value': 'ᓃᐲᔾ'},
  'cs': {'language': 'cs', 'value': 'voda'},
  'cv': {'language': 'cv', 'value': 'шыв'},
  'cy': {'language': 'cy', 'value': 'dŵr'},
  'da': {'language': 'da', 'value': 'vand'},
  'dv': {'language': 'dv', 'value': 'ފެން'},
  'el': {'language': 'el', 'value': 'νερό'},
  'eml': {'language': 'eml', 'value': 'aqua'},
  'eo': {'language': 'eo', 'value': 'akvo'},
  'et': {'language': 'et', 'value': 'vesi'},
  'eu': {'language': 'eu', 'value': 'ur'},
  'ext': {'language': 'ext', 'value': 'augua'},
  'fa': {'language': 'fa', 'value': 'آب'},
  'fi': {'language': 'fi', 'value': 'vesi'},
  'frr': {'language': 'frr', 'value': 'Weeder'},
  'fur': {'language': 'fur', 'value': 'aghe'},
  'fy': {'language': 'fy', 'value': 'wetter'},
  'ga': {'language': 'ga', 'value': 'uisce'},
  'gan': {'language': 'gan', 'value': '水'},
  'gd': {'language': 'gd', 'value': 'uisge'},
  'gl': {'language': 'gl', 'value': 'auga'},
  'gn': {'language': 'gn', 'value': 'y'},
  'gu': {'language': 'gu', 'value': 'પાણી'},
  'gv': {'language': 'gv', 'value': 'ushtey'},
  'hak': {'language': 'hak', 'value': 'súi'},
  'he': {'language': 'he', 'value': 'מים'},
  'hi': {'language': 'hi', 'value': 'जल'},
  'hif': {'language': 'hif', 'value': 'paani'},
  'hr': {'language': 'hr', 'value': 'voda'},
  'hsb': {'language': 'hsb', 'value': 'woda'},
  'ht': {'language': 'ht', 'value': 'dlo'},
  'hu': {'language': 'hu', 'value': 'víz'},
  'hy': {'language': 'hy', 'value': 'ջուր'},
  'ia': {'language': 'ia', 'value': 'aqua'},
  'id': {'language': 'id', 'value': 'air'},
  'ie': {'language': 'ie', 'value': 'aqua'},
  'ilo': {'language': 'ilo', 'value': 'danum'},
  'io': {'language': 'io', 'value': 'aquo'},
  'is': {'language': 'is', 'value': 'vatn'},
  'ja': {'language': 'ja', 'value': '水'},
  'jbo': {'language': 'jbo', 'value': 'djacu'},
  'jv': {'language': 'jv', 'value': 'banyu'},
  'ka': {'language': 'ka', 'value': 'წყალი'},
  'kab': {'language': 'kab', 'value': 'aman'},
  'kg': {'language': 'kg', 'value': 'maza'},
  'ki': {'language': 'ki', 'value': 'mai'},
  'kk': {'language': 'kk', 'value': 'су'},
  'km': {'language': 'km', 'value': 'ទឹក'},
  'kn': {'language': 'kn', 'value': 'ನೀರು'},
  'ko': {'language': 'ko', 'value': '물'},
  'ksh': {'language': 'ksh', 'value': 'Wasser'},
  'ku': {'language': 'ku', 'value': 'av'},
  'lad': {'language': 'lad', 'value': 'agua'},
  'lb': {'language': 'lb', 'value': 'Waasser'},
  'lez': {'language': 'lez', 'value': 'яд'},
  'li': {'language': 'li', 'value': 'water'},
  'lmo': {'language': 'lmo', 'value': 'aqua'},
  'ln': {'language': 'ln', 'value': 'mái'},
  'lt': {'language': 'lt', 'value': 'vanduo'},
  'ltg': {'language': 'ltg', 'value': 'Iudiņs'},
  'lv': {'language': 'lv', 'value': 'ūdens'},
  'mdf': {'language': 'mdf', 'value': 'ведь'},
  'mg': {'language': 'mg', 'value': 'rano'},
  'mk': {'language': 'mk', 'value': 'вода'},
  'ml': {'language': 'ml', 'value': 'ജലം'},
  'mn': {'language': 'mn', 'value': 'Ус'},
  'mr': {'language': 'mr', 'value': 'पाणी'},
  'ms': {'language': 'ms', 'value': 'air'},
  'mwl': {'language': 'mwl', 'value': 'auga'},
  'my': {'language': 'my', 'value': 'ရေ'},
  'mzn': {'language': 'mzn', 'value': 'ئو'},
  'na': {'language': 'na', 'value': 'ebok'},
  'nah': {'language': 'nah', 'value': 'ātl'},
  'nap': {'language': 'nap', 'value': 'acqua'},
  'nds': {'language': 'nds', 'value': 'Water'},
  'ne': {'language': 'ne', 'value': 'पानी'},
  'new': {'language': 'new', 'value': 'लः'},
  'nl': {'language': 'nl', 'value': 'water'},
  'nn': {'language': 'nn', 'value': 'vatn'},
  'nrm': {'language': 'nrm', 'value': 'Ieau'},
  'nv': {'language': 'nv', 'value': 'tó'},
  'oc': {'language': 'oc', 'value': 'aiga'},
  'om': {'language': 'om', 'value': 'bishaan'},
  'or': {'language': 'or', 'value': 'ଜଳ'},
  'os': {'language': 'os', 'value': 'дон'},
  'pa': {'language': 'pa', 'value': 'ਪਾਣੀ'},
  'pap': {'language': 'pap', 'value': 'awa'},
  'pdc': {'language': 'pdc', 'value': 'Wasser'},
  'pfl': {'language': 'pfl', 'value': 'Wassa'},
  'pl': {'language': 'pl', 'value': 'woda'},
  'pnb': {'language': 'pnb', 'value': 'پاݨی'},
  'ps': {'language': 'ps', 'value': 'اوبه'},
  'pt': {'language': 'pt', 'value': 'água'},
  'pt-br': {'language': 'pt-br', 'value': 'água'},
  'qu': {'language': 'qu', 'value': 'yaku'},
  'ro': {'language': 'ro', 'value': 'apă'},
  'rue': {'language': 'rue', 'value': 'вода'},
  'sa': {'language': 'sa', 'value': 'जलम्'},
  'sah': {'language': 'sah', 'value': 'уу'},
  'sc': {'language': 'sc', 'value': 'aba'},
  'scn': {'language': 'scn', 'value': 'acqua'},
  'sco': {'language': 'sco', 'value': 'watter'},
  'se': {'language': 'se', 'value': 'čáhci'},
  'sh': {'language': 'sh', 'value': 'voda'},
  'si': {'language': 'si', 'value': 'ජලය'},
  'sk': {'language': 'sk', 'value': 'voda'},
  'sl': {'language': 'sl', 'value': 'voda'},
  'sn': {'language': 'sn', 'value': 'mvura'},
  'so': {'language': 'so', 'value': 'biyo'},
  'sq': {'language': 'sq', 'value': 'uji'},
  'sr': {'language': 'sr', 'value': 'вода'},
  'su': {'language': 'su', 'value': 'cai'},
  'sv': {'language': 'sv', 'value': 'vatten'},
  'sw': {'language': 'sw', 'value': 'maji'},
  'szl': {'language': 'szl', 'value': 'woda'},
  'ta': {'language': 'ta', 'value': 'நீர்'},
  'te': {'language': 'te', 'value': 'నీరు'},
  'tg': {'language': 'tg', 'value': 'об'},
  'th': {'language': 'th', 'value': 'น้ำ'},
  'tl': {'language': 'tl', 'value': 'tubig'},
  'tr': {'language': 'tr', 'value': 'su'},
  'tt': {'language': 'tt', 'value': 'су'},
  'uk': {'language': 'uk', 'value': 'вода'},
  'ur': {'language': 'ur', 'value': 'پانی'},
  'uz': {'language': 'uz', 'value': 'suv'},
  'vec': {'language': 'vec', 'value': 'àcua'},
  'vep': {'language': 'vep', 'value': 'vezi'},
  'vi': {'language': 'vi', 'value': 'nước'},
  'vls': {'language': 'vls', 'value': 'woater'},
  'vo': {'language': 'vo', 'value': 'vat'},
  'war': {'language': 'war', 'value': 'tubig'},
  'wo': {'language': 'wo', 'value': 'ndox'},
  'wuu': {'language': 'wuu', 'value': '水'},
  'xh': {'language': 'xh', 'value': 'amanzi'},
  'xmf': {'language': 'xmf', 'value': 'წყარი'},
  'yi': {'language': 'yi', 'value': 'װאַסער'},
  'yo': {'language': 'yo', 'value': 'omi'},
  'za': {'language': 'za', 'value': 'raemx'},
  'zu': {'language': 'zu', 'value': 'amanzi'},
  'de-ch': {'language': 'de-ch', 'value': 'Wasser'},
  'bi': {'language': 'bi', 'value': 'wota'},
  'zh-hans': {'language': 'zh-hans', 'value': '水'},
  'zh-tw': {'language': 'zh-tw', 'value': '水'},
  'pih': {'language': 'pih', 'value': 'wata'},
  'pms': {'language': 'pms', 'value': 'eva'},
  'gsw': {'language': 'gsw', 'value': 'Wasser'},
  'bxr': {'language': 'bxr', 'value': 'уһан'},
  'tk': {'language': 'tk', 'value': 'suw'},
  'ff': {'language': 'ff', 'value': 'ndiyam'},
  'ha': {'language': 'ha', 'value': 'ruwa'},
  'dsb': {'language': 'dsb', 'value': 'wóda'},
  'fo': {'language': 'fo', 'value': 'vatn'},
  'zh-cn': {'language': 'zh-cn', 'value': '水'},
  'zh-hk': {'language': 'zh-hk', 'value': '水'},
  'mi': {'language': 'mi', 'value': 'wai'},
  'min': {'language': 'min', 'value': 'aia'},
  'rup': {'language': 'rup', 'value': 'Apâ'},
  'mai': {'language': 'mai', 'value': 'पानी'},
  'ky': {'language': 'ky', 'value': 'суу'},
  'kaa': {'language': 'kaa', 'value': 'suw'},
  'ak': {'language': 'ak', 'value': 'nsuo'},
  'ee': {'language': 'ee', 'value': '3tsi'},
  'av': {'language': 'av', 'value': 'лъим'},
  'bcl': {'language': 'bcl', 'value': 'Tubig'},
  'lij': {'language': 'lij', 'value': 'ægoa'},
  'bho': {'language': 'bho', 'value': 'पानी'},
  'as': {'language': 'as', 'value': 'পানী'},
  'azb': {'language': 'azb', 'value': 'سو'},
  'stq': {'language': 'stq', 'value': 'Woater'},
  'iu': {'language': 'iu', 'value': 'ᐃᒪᖅ'},
  'sm': {'language': 'sm', 'value': 'vai'},
  'sd': {'language': 'sd', 'value': 'پاڻي'},
  'awa': {'language': 'awa', 'value': 'पानी'},
  'gom': {'language': 'gom', 'value': 'udok'},
  'pam': {'language': 'pam', 'value': 'danum'},
  'sma': {'language': 'sma', 'value': 'tjaetsie'},
  'jam': {'language': 'jam', 'value': 'waata'},
  'tcy': {'language': 'tcy', 'value': 'ನೀರ್'},
  'pag': {'language': 'pag', 'value': 'danom'},
  'zh-mo': {'language': 'zh-mo', 'value': '水'},
  'zh-my': {'language': 'zh-my', 'value': '水'},
  'zh-sg': {'language': 'zh-sg', 'value': '水'},
  'tt-cyrl': {'language': 'tt-cyrl', 'value': 'су'},
  'tt-latn': {'language': 'tt-latn', 'value': 'su'},
  'lg': {'language': 'lg', 'value': 'amazzi'},
  'kbp': {'language': 'kbp', 'value': 'lɩm'},
  'ig': {'language': 'ig', 'value': 'mmiri'},
  'diq': {'language': 'diq', 'value': 'Awe'},
  'cbk-zam': {'language': 'cbk-zam', 'value': 'agwa'},
  'dty': {'language': 'dty', 'value': 'पानी'},
  'pcd': {'language': 'pcd', 'value': 'Ieu'},
  'inh': {'language': 'inh', 'value': 'Хий'},
  'lfn': {'language': 'lfn', 'value': 'acua'},
  'ts': {'language': 'ts', 'value': 'mati'},
  'atj': {'language': 'atj', 'value': 'nipi'},
  'myv': {'language': 'myv', 'value': 'ведь'},
  'ab': {'language': 'ab', 'value': 'аӡы'},
  'sat': {'language': 'sat', 'value': 'ᱫᱟᱜ'},
  'crh': {'language': 'crh', 'value': 'suv'},
  'map-bms': {'language': 'map-bms', 'value': 'Banyu'},
  'udm': {'language': 'udm', 'value': 'ву'},
  'hyw': {'language': 'hyw', 'value': 'ջուր'},
  'smn': {'language': 'smn', 'value': 'čääci'},
  'sms': {'language': 'sms', 'value': 'čääʹcc'},
  'es': {'language': 'es', 'value': 'agua'},
  'zh': {'language': 'zh', 'value': '水'},
  'zh-hant': {'language': 'zh-hant', 'value': '水'},
  'got': {'language': 'got', 'value': '𐍅𐌰𐍄𐌰'},
  'gcr': {'language': 'gcr', 'value': 'dilo'},
  'szy': {'language': 'szy', 'value': 'nanum'},
  'fj': {'language': 'fj', 'value': 'Wai'},
  'st': {'language': 'st', 'value': 'Metsi'},
  'rmf': {'language': 'rmf', 'value': 'paani'},
  'to': {'language': 'to', 'value': 'Vai'},
  'ug': {'language': 'ug', 'value': 'سۇ'},
  'nqo': {'language': 'nqo', 'value': 'ߖߌ'},
  'ace': {'language': 'ace', 'value': 'ie'},
  'crh-latn': {'language': 'crh-latn', 'value': 'Suv'},
  'ary': {'language': 'ary', 'value': 'ما'},
  'dag': {'language': 'dag', 'value': 'kom'},
  'lld': {'language': 'lld', 'value': 'Èga'},
  'skr': {'language': 'skr', 'value': 'پاݨی'},
  'shn': {'language': 'shn', 'value': 'ၼမ်ႉ'},
  'tay': {'language': 'tay', 'value': 'sya'},
  'mni': {'language': 'mni', 'value': 'ꯏꯁꯤꯡ'},
  'kw': {'language': 'kw', 'value': 'Dowr'},
  'ks': {'language': 'ks', 'value': 'پونؠ'},
  'dua': {'language': 'dua', 'value': 'madiba'},
  'bbj': {'language': 'bbj', 'value': 'shyə'},
  'bas': {'language': 'bas', 'value': 'malep'},
  'bag': {'language': 'bag', 'value': 'matɛ́yá'},
  'bkc': {'language': 'bkc', 'value': 'ngo'},
  'bkh': {'language': 'bkh', 'value': 'madíp'},
  'wes': {'language': 'wes', 'value': 'wata'},
  'bax': {'language': 'bax', 'value': 'kÃ'},
  'bkm': {'language': 'bkm', 'value': 'mû'},
  'shi': {'language': 'shi', 'value': 'Aman'},
  'ks-arab': {'language': 'ks-arab', 'value': 'پوٗنؠ'},
  'fmp': {'language': 'fmp', 'value': 'nshi'},
  'din': {'language': 'din', 'value': 'Piu'},
  'byv': {'language': 'byv', 'value': 'ntsə'},
  'nnh': {'language': 'nnh', 'value': 'ntse'},
  'ewo': {'language': 'ewo', 'value': 'məndím'},
  'ban': {'language': 'ban', 'value': 'toya'},
  'mcp': {'language': 'mcp', 'value': '”mənik"'},
  'ybb': {'language': 'ybb', 'value': 'ntsih'},
  'eto': {'language': 'eto', 'value': 'mə̀ndím'},
  'lns': {'language': 'lns', 'value': 'mèlú me nyomin mè'},
  'yav': {'language': 'yav', 'value': 'moomb'},
  'etu': {'language': 'etu', 'value': 'ayɛ́b'},
  'gya': {'language': 'gya', 'value': 'zi'},
  'mua': {'language': 'mua', 'value': 'bii'},
  'yat': {'language': 'yat', 'value': 'Məní'},
  'isu': {'language': 'isu', 'value': 'mwí'},
  'ker': {'language': 'ker', 'value': 'kan'},
  'nmg': {'language': 'nmg', 'value': 'majiɔ̌'},
  'lem': {'language': 'lem', 'value': 'menyífé'},
  'yas': {'language': 'yas', 'value': 'miimpo'},
  'tvu': {'language': 'tvu', 'value': 'menífé'},
  'vut': {'language': 'vut', 'value': 'mvúm'},
  'glk': {'language': 'glk', 'value': 'آب'},
  'cu': {'language': 'cu', 'value': 'вода'},
  'ik': {'language': 'ik', 'value': 'Imiq'},
  'agq': {'language': 'agq', 'value': 'mmughū'},
  'ms-arab': {'language': 'ms-arab', 'value': 'اءير'},
  'wa': {'language': 'wa', 'value': 'aiwe'},
  'kcg': {'language': 'kcg', 'value': 'A̱sa̱khwot'},
  'tw': {'language': 'tw', 'value': 'Nsuo'}},
 'descriptions': {'it': {'language': 'it',
   'value': 'molecola costituita da due atomi di idrogeno e uno di ossigeno'},
  'en': {'language': 'en',
   'value': 'chemical compound with raw molecular formula H₂O; main constituent of the fluids of most living organisms'},
  'fr': {'language': 'fr',
   'value': 'composé chimique de formule moléculaire brute H₂O ; principal constituant des fluides de la plupart des organismes vivants'},
  'nb': {'language': 'nb', 'value': 'kjemisk forbindelse'},
  'de': {'language': 'de',
   'value': 'chemische Verbindung aus den Elementen Sauerstoff und Wasserstoff'},
  'ru': {'language': 'ru', 'value': 'химическое вещество, оксид водорода'},
  'eo': {'language': 'eo',
   'value': 'molekulo kiu havas du atomojn de hidrogeno, kaj unu atomon de oksigeno; Baza kemia komponaĵo necesa por la ekzisto de ĉiuj vivoformoj'},
  'ilo': {'language': 'ilo',
   'value': 'kimiko a sustansia nga addaan ti kimiko a pagannurotan a H2O'},
  'pt': {'language': 'pt',
   'value': 'molécula composta por dois átomos de hidrogénio e um de oxigénio'},
  'pt-br': {'language': 'pt-br',
   'value': 'composto químico formado por moléculas com dois átomos de hidrogênio e um de oxigênio'},
  'gl': {'language': 'gl',
   'value': 'molécula composta por dos átomos de hidróxeno e un de osíxeno'},
  'zh-hans': {'language': 'zh-hans', 'value': '简单無機化合物'},
  'nl': {'language': 'nl',
   'value': 'chemische verbinding van twee waterstofatomen en een zuurstofatoom'},
  'li': {'language': 'li',
   'value': "'n chemische verbinding vaan ein zuurstofatoom en twie waterstofatome"},
  'fy': {'language': 'fy',
   'value': 'de gemyske ferbining fan twa wetterstofatomen en in soerstofatoom'},
  'uk': {'language': 'uk',
   'value': 'хімічна речовина у вигляді прозорої безбарвної рідини без запаху і смаку'},
  'hu': {'language': 'hu',
   'value': 'két hidrogén atomból és egy oxigén atomból felépülő kémiai vegyület'},
  'he': {'language': 'he',
   'value': 'תרכובת כימית בסיסית ההכרחית לקיום כל צורות החיים'},
  'scn': {'language': 'scn',
   'value': "cumpostu chìmicu fattu di mùleculi ca hannu du' àtumi d'idrògginu e unu d'ossìgginu, funnamentu dâ vita supra â Terra"},
  'el': {'language': 'el',
   'value': 'ουσία που σχηματίζεται από μόρια που αποτελούνται από δυο άτομα υδρογόνου και ένα οξυγόνου'},
  'ja': {'language': 'ja', 'value': '化学式H₂Oで表される、水素と酸素の化合物'},
  'ro': {'language': 'ro', 'value': 'lichid indispensabil vieții'},
  'vi': {'language': 'vi',
   'value': 'một chất lỏng, hợp chất hóa học với công thức H2O'},
  'as': {'language': 'as', 'value': 'এক প্ৰকাৰৰ তৰল পৰিবৰ্তনশীল পদাৰ্থ'},
  'pl': {'language': 'pl', 'value': 'związek chemiczny'},
  'fa': {'language': 'fa',
   'value': 'ترکیب شیمیایی (از عناصر اکسیژن و هیدروژن)'},
  'ar': {'language': 'ar',
   'value': 'مادة شفافة طبيعية عبارة عن مركب كيميائي تشمل مساحات شاسعة من الأرض'},
  'bn': {'language': 'bn',
   'value': 'দুটি হাইড্রোজেন ও একটি অক্সিজেন পরমাণুর সমন্বয়ে গঠিত রাসায়নিক যৌগ'},
  'en-ca': {'language': 'en-ca',
   'value': 'chemical compound formed of molecules composed of two atoms of hydrogen and one of oxygen'},
  'en-gb': {'language': 'en-gb',
   'value': 'chemical compound formed of molecules composed of two atoms of hydrogen and one of oxygen'},
  'id': {'language': 'id',
   'value': 'senyawa kimia; konstituen utama dari cairan sebagian besar organisme hidup'},
  'sd': {'language': 'sd',
   'value': 'ھائيڊروجن جي ٻن ائٽمن ۽ آڪسيجن جي ھڪ ائٽم جي ماليڪيولن سان تيار ٿيل ڪيميائي مادو'},
  'cs': {'language': 'cs', 'value': 'chemická sloučenina vodíku a kyslíku'},
  'hy': {'language': 'hy', 'value': 'քիմիական միացություն'},
  'bg': {'language': 'bg', 'value': 'химическо съединение'},
  'zh-cn': {'language': 'zh-cn', 'value': '無機化合物'},
  'zh-hk': {'language': 'zh-hk', 'value': '無機化合物'},
  'zh-mo': {'language': 'zh-mo', 'value': '無機化合物'},
  'zh-my': {'language': 'zh-my', 'value': '无机化合物'},
  'zh-sg': {'language': 'zh-sg', 'value': '无机化合物'},
  'zh-tw': {'language': 'zh-tw', 'value': '無機化合物'},
  'ca': {'language': 'ca', 'value': 'compost químic'},
  'nn': {'language': 'nn', 'value': 'kjemisk sambinding'},
  'oc': {'language': 'oc', 'value': 'component quimic'},
  'ast': {'language': 'ast', 'value': 'compuestu químicu'},
  'eu': {'language': 'eu', 'value': 'konposatu kimiko'},
  'fi': {'language': 'fi', 'value': 'kemiallinen yhdiste'},
  'an': {'language': 'an', 'value': 'compuesto quimico'},
  'tt': {'language': 'tt',
   'value': 'водород оксиды — төссез һәм иссез үтә күренмәле сыеклык'},
  'tt-cyrl': {'language': 'tt-cyrl',
   'value': 'водород оксиды — төссез һәм иссез үтә күренмәле сыеклык'},
  'tt-latn': {'language': 'tt-latn',
   'value': 'wodorod oqsidı — tössez häm issez ütä kürenmäle sıyıqlıq'},
  'sq': {'language': 'sq', 'value': 'komponim kimik'},
  'sr': {'language': 'sr', 'value': 'хемијско једињење'},
  'ko': {'language': 'ko', 'value': '수소와 산소로 이루어진 물질 중에서 안정된 액체'},
  'bs': {'language': 'bs',
   'value': 'hemijski spoj; glavni sastojak tečnosti većine živih organizama'},
  'sk': {'language': 'sk', 'value': 'chemická zlúčenina vodíka a kyslíka'},
  'lzh': {'language': 'lzh', 'value': '無機物,天下之所繫命也'},
  'or': {'language': 'or', 'value': 'ଯୌଗିକ ପଦାର୍ଥ'},
  'te': {'language': 'te', 'value': 'రసాయనిక పదార్థము'},
  'da': {'language': 'da', 'value': 'kemisk stof'},
  'lv': {'language': 'lv', 'value': 'ķīmisks savienojums'},
  'la': {'language': 'la', 'value': 'compositum chemicum'},
  'lb': {'language': 'lb', 'value': 'cheemesch Verbindung'},
  'de-ch': {'language': 'de-ch', 'value': 'chemische Verbindung'},
  'af': {'language': 'af', 'value': 'chemiese verbinding'},
  'th': {'language': 'th', 'value': 'สสารในรูปของเหลว'},
  'ml': {'language': 'ml',
   'value': 'ജീവന്റെ നിലനില്പിന് അത്യന്താപേക്ഷിതമായ ദ്രാവകമാണ് ജലം'},
  'ta': {'language': 'ta',
   'value': 'H2O என்ற வாய்ப்பாட்டால் விவரிக்கப்படும் ஒரு வேதியியல் சேர்மமாகும்.'},
  'sv': {'language': 'sv', 'value': 'kemisk förening av väte och syre'},
  'mk': {'language': 'mk', 'value': 'хемиско соединение'},
  'cy': {'language': 'cy', 'value': 'yr hylif mwya cyffredin ar y ddaear'},
  'ne': {'language': 'ne', 'value': 'एक सर्वव्यापी घोलक पदार्थ'},
  'hi': {'language': 'hi', 'value': 'रासायनिक यौगिक; जीवन अमृत'},
  'mr': {'language': 'mr', 'value': 'निरीक्षण'},
  'es': {'language': 'es',
   'value': 'compuesto cuyas moléculas están formadas por dos átomos de hidrógeno y uno de oxígeno'},
  'zh': {'language': 'zh', 'value': '無機化合物'},
  'zh-hant': {'language': 'zh-hant', 'value': '無機化合物'},
  'be': {'language': 'be',
   'value': 'празрыстая, амаль бясколерная вадкасць без паху і смаку'},
  'km': {'language': 'km', 'value': 'រូបធាតុគីមី'},
  'cbk-zam': {'language': 'cbk-zam', 'value': 'agua'},
  'tr': {'language': 'tr',
   'value': 'H2O formülüne sahip kimyasal bileşik, yaşam kaynağı'},
  'sco': {'language': 'sco',
   'value': 'common chemical substance that is needit bi aw kent furms o life'},
  'be-tarask': {'language': 'be-tarask', 'value': 'хімічнае злучэньне'},
  'ga': {'language': 'ga', 'value': 'comhdhúil cheimiceach'},
  'dag': {'language': 'dag', 'value': "bini din kariti ko' nyuri"},
  'hsb': {'language': 'hsb', 'value': 'chemiska wjazba z kislika a wodźika'},
  'inh': {'language': 'inh', 'value': 'Коачал'},
  'vec': {'language': 'vec', 'value': 'conpozision chìmega'},
  'hr': {'language': 'hr', 'value': 'kemijski spoj od kiska i vodika'},
  'br': {'language': 'br', 'value': 'kediad kimiek'},
  'et': {'language': 'et', 'value': 'keemiline ühend'},
  'yue': {'language': 'yue', 'value': '化合物'},
  'gcr': {'language': 'gcr', 'value': 'Kompozé chimik'},
  'ia': {'language': 'ia', 'value': 'composito chimic'},
  'io': {'language': 'io', 'value': 'kemiala kompozajo'},
  'bho': {'language': 'bho',
   'value': 'केमिकल कंपाउंड, जीवधारी सभ के अंदर द्रव के अधिकतर हिस्सा'},
  'my': {'language': 'my', 'value': 'ဖော်မြူလာ H₂O ပါသော ဓာတုဒြပ်ပေါင်း'},
  'wa': {'language': 'wa',
   'value': 'molecule tchimike respondant al fôrmule H2O'},
  'kn': {'language': 'kn', 'value': 'ನೈಸರ್ಗಿಕ ರಾಸಾಯನಿಕ ಸಂಯುಕ್ತ.'},
  'tcy': {'language': 'tcy',
   'value': 'ನೈಸರ್ಗಿಕವಾದ್ ಸಿಕ್ಕುನ ಒಂಜಿ ರಾಸಾಯನಿಕ ಸಂಯುಕ್ತ.'},
  'ak': {'language': 'ak',
   'value': 'Ɛyɛ adeɛ a yɛ nom, sane de yɛ nnoɔma pii'},
  'ks': {'language': 'ks', 'value': 'کیٖمیٲیی مُرَکَب'},
  'ht': {'language': 'ht',
   'value': 'konpoze chimik fomil molekil brit H₂O; li se yon eleman ki a la baz tout likid nan ko moun.'}},
 'aliases': {'it': [{'language': 'it', 'value': 'ossido di idrogeno'},
   {'language': 'it', 'value': 'ossidano'},
   {'language': 'it', 'value': 'monossido di idrogeno'},
   {'language': 'it', 'value': 'acqua leggera'},
   {'language': 'it', 'value': 'monossido di diidrogeno'}],
  'yue': [{'language': 'yue', 'value': '水氣'},
   {'language': 'yue', 'value': '一氧化二氫'},
   {'language': 'yue', 'value': '氧化二氫'},
   {'language': 'yue', 'value': 'H2O'},
   {'language': 'yue', 'value': 'H₂O'}],
  'sgs': [{'language': 'sgs', 'value': 'Vanduo'}],
  'nan': [{'language': 'nan', 'value': 'Chuí'}],
  'nds-nl': [{'language': 'nds-nl', 'value': 'Waeter'},
   {'language': 'nds-nl', 'value': 'Water'},
   {'language': 'nds-nl', 'value': 'Waoter'}],
  'nb': [{'language': 'nb', 'value': 'vatn'},
   {'language': 'nb', 'value': 'H2O'}],
  'de': [{'language': 'de', 'value': 'H2O'},
   {'language': 'de', 'value': 'blaues Gold'},
   {'language': 'de', 'value': 'pures Wasser'}],
  'en': [{'language': 'en', 'value': 'H2O'},
   {'language': 'en', 'value': 'dihydrogen monoxide'},
   {'language': 'en', 'value': 'dihydridooxygen'},
   {'language': 'en', 'value': 'HOH'},
   {'language': 'en', 'value': 'hydrogen hydroxide'},
   {'language': 'en', 'value': 'dihydrogen oxide'},
   {'language': 'en', 'value': 'oxidane'},
   {'language': 'en', 'value': 'hydrogen oxide'},
   {'language': 'en', 'value': 'pure water'},
   {'language': 'en', 'value': 'aqua'},
   {'language': 'en', 'value': '[OH2]'},
   {'language': 'en', 'value': 'H₂O'},
   {'language': 'en', 'value': 'hydroxic acid'}],
  'eo': [{'language': 'eo', 'value': 'H2O'},
   {'language': 'eo', 'value': 'dihidrogena monooksido'},
   {'language': 'eo', 'value': 'H₂O'},
   {'language': 'eo', 'value': 'hidrogena hidroksido'},
   {'language': 'eo', 'value': 'dihidridooksigeno'},
   {'language': 'eo', 'value': 'oksidano'}],
  'fi': [{'language': 'fi', 'value': 'divetymonoksidi'},
   {'language': 'fi', 'value': 'divetyoksidi'}],
  'pl': [{'language': 'pl', 'value': 'oksydan'},
   {'language': 'pl', 'value': 'tlenek wodoru'}],
  'ca': [{'language': 'ca', 'value': 'H2O'}],
  'vi': [{'language': 'vi', 'value': 'thủy'},
   {'language': 'vi', 'value': 'thuỷ'},
   {'language': 'vi', 'value': 'H2O'},
   {'language': 'vi', 'value': 'dihydrogen monoxide'}],
  'he': [{'language': 'he', 'value': 'H₂O'},
   {'language': 'he', 'value': 'דו-מימן חד-חמצני'}],
  'ja': [{'language': 'ja', 'value': 'H2O'}],
  'pt-br': [{'language': 'pt-br', 'value': 'H2O'},
   {'language': 'pt-br', 'value': 'monóxido de di-hidrogênio'},
   {'language': 'pt-br', 'value': '7732-18-5'},
   {'language': 'pt-br', 'value': 'aqua'},
   {'language': 'pt-br', 'value': 'diíbrido oxigênio'},
   {'language': 'pt-br', 'value': '[OH2]'},
   {'language': 'pt-br', 'value': 'HOH'}],
  'ro': [{'language': 'ro', 'value': 'H2O'},
   {'language': 'ro', 'value': 'monoxid de dihidrogen'},
   {'language': 'ro', 'value': 'dihidrooxigen'},
   {'language': 'ro', 'value': 'HOH'},
   {'language': 'ro', 'value': 'oxid de dihidrogen'},
   {'language': 'ro', 'value': 'apă limpede'},
   {'language': 'ro', 'value': 'apă pură'},
   {'language': 'ro', 'value': '[OH2]'},
   {'language': 'ro', 'value': 'aqua'},
   {'language': 'ro', 'value': 'hidroxid de hidrogen'}],
  'hy': [{'language': 'hy', 'value': 'H2O'}],
  'as': [{'language': 'as', 'value': 'জল'},
   {'language': 'as', 'value': 'নীৰ'},
   {'language': 'as', 'value': 'অম্বু'}],
  'el': [{'language': 'el', 'value': 'ύδωρ'},
   {'language': 'el', 'value': 'Η2Ο'},
   {'language': 'el', 'value': 'διυδροξυγόνο'},
   {'language': 'el', 'value': 'υδροξείδιο του υδρογόνου'},
   {'language': 'el', 'value': '(μον)οξειδάνιο'},
   {'language': 'el', 'value': '(μον)οξείδιο του διυδρογόνου'}],
  'bn': [{'language': 'bn', 'value': 'ডাইহাইড্রোজেন মনোঅক্সাইড'},
   {'language': 'bn', 'value': 'ডাইহাইড্রোজেন অক্সাইড'},
   {'language': 'bn', 'value': 'জল'}],
  'ar': [{'language': 'ar', 'value': 'مياه'},
   {'language': 'ar', 'value': 'الماء'},
   {'language': 'ar', 'value': 'المياه'},
   {'language': 'ar', 'value': 'H2O'}],
  'en-ca': [{'language': 'en-ca', 'value': 'H2O'},
   {'language': 'en-ca', 'value': 'dihydrogen monoxide'}],
  'en-gb': [{'language': 'en-gb', 'value': 'H2O'},
   {'language': 'en-gb', 'value': 'dihydrogen monoxide'},
   {'language': 'en-gb', 'value': 'aqua'}],
  'id': [{'language': 'id', 'value': 'H2O'},
   {'language': 'id', 'value': 'dihidrogen monoksida'},
   {'language': 'id', 'value': 'aqua'},
   {'language': 'id', 'value': 'dihidrogen oksida'}],
  'ta': [{'language': 'ta', 'value': 'இருஐதரசன் ஒரொட்சைட்டு'},
   {'language': 'ta', 'value': 'தண்ணீர்'}],
  'cs': [{'language': 'cs', 'value': 'H2O'},
   {'language': 'cs', 'value': 'dihydrogen monoxid'},
   {'language': 'cs', 'value': 'oxidan'}],
  'pag': [{'language': 'pag', 'value': 'Danum'}],
  'ru': [{'language': 'ru', 'value': 'оксид водорода'},
   {'language': 'ru', 'value': 'гидроксид водорода'},
   {'language': 'ru', 'value': 'гидроксильная кислота'},
   {'language': 'ru', 'value': 'монооксид дигидрогена'},
   {'language': 'ru', 'value': 'дигидромонооксид'}],
  'lv': [{'language': 'lv', 'value': 'H2O'}],
  'tt': [{'language': 'tt', 'value': 'водород оксиды'},
   {'language': 'tt', 'value': 'Н2O'}],
  'tt-cyrl': [{'language': 'tt-cyrl', 'value': 'водород оксиды'},
   {'language': 'tt-cyrl', 'value': 'Н2O'}],
  'tt-latn': [{'language': 'tt-latn', 'value': 'wodorod oqsidı'},
   {'language': 'tt-latn', 'value': 'H2O'}],
  'zh': [{'language': 'zh', 'value': '氢氧化氢'},
   {'language': 'zh', 'value': '一氧化二氢'}],
  'fr': [{'language': 'fr', 'value': 'H2O'},
   {'language': 'fr', 'value': 'HOH'},
   {'language': 'fr', 'value': '[OH2]'},
   {'language': 'fr', 'value': 'monoxide de dihydrogène'},
   {'language': 'fr', 'value': 'oxide de dihydrogène'},
   {'language': 'fr', 'value': 'eau pure'},
   {'language': 'fr', 'value': 'aqua'},
   {'language': 'fr', 'value': "oxide d'hydrogène"},
   {'language': 'fr', 'value': 'dihydrooxigène'},
   {'language': 'fr', 'value': "hydroxide d'hydrogène"},
   {'language': 'fr', 'value': 'H₂O'},
   {'language': 'fr', 'value': 'acide hydroxique'}],
  'sr': [{'language': 'sr', 'value': 'H2O'},
   {'language': 'sr', 'value': 'аква'}],
  'pt': [{'language': 'pt', 'value': 'aqua'},
   {'language': 'pt', 'value': '[OH2]'},
   {'language': 'pt', 'value': 'HOH'},
   {'language': 'pt', 'value': 'H2O'}],
  'or': [{'language': 'or', 'value': 'ପାଣି'}],
  'hi': [{'language': 'hi', 'value': 'पानी'},
   {'language': 'hi', 'value': 'पीयूष'},
   {'language': 'hi', 'value': 'हाइड्रोजन हाइड्रॉक्साइड'},
   {'language': 'hi', 'value': 'डाईहाइड्रोजन मोनो ऑक्साइड'}],
  'te': [{'language': 'te', 'value': 'జలము'}],
  'da': [{'language': 'da', 'value': 'H2O'},
   {'language': 'da', 'value': 'Oxidane'},
   {'language': 'da', 'value': 'vanddamp'},
   {'language': 'da', 'value': 'vandis'}],
  'th': [{'language': 'th', 'value': 'คงคา'},
   {'language': 'th', 'value': 'นที'},
   {'language': 'th', 'value': 'อุทก'},
   {'language': 'th', 'value': 'สลิล'},
   {'language': 'th', 'value': 'วารี'},
   {'language': 'th', 'value': 'ชลธี'},
   {'language': 'th', 'value': 'ธารา'},
   {'language': 'th', 'value': 'อาโป'},
   {'language': 'th', 'value': 'สาคเรศ'},
   {'language': 'th', 'value': 'อรรณพ'},
   {'language': 'th', 'value': 'H2O'},
   {'language': 'th', 'value': 'อัมพุ'},
   {'language': 'th', 'value': 'สาคร'}],
  'es': [{'language': 'es', 'value': 'H2O'},
   {'language': 'es', 'value': 'aqua'},
   {'language': 'es', 'value': 'HOH'},
   {'language': 'es', 'value': '[OH2]'},
   {'language': 'es', 'value': 'agua pura'}],
  'sv': [{'language': 'sv', 'value': 'H2O'},
   {'language': 'sv', 'value': 'diväteoxid'},
   {'language': 'sv', 'value': 'vätehydroxid'},
   {'language': 'sv', 'value': 'aqua'}],
  'gom': [{'language': 'gom', 'value': 'उदक'}],
  'ms': [{'language': 'ms', 'value': 'ayaq'}],
  'et': [{'language': 'et', 'value': 'Vesi'}],
  'be': [{'language': 'be', 'value': 'аксід вадароду'},
   {'language': 'be', 'value': 'дыяксід вадароду'}],
  'lzh': [{'language': 'lzh', 'value': '一氧化二氫'},
   {'language': 'lzh', 'value': 'H_{2}O'}],
  'dag': [{'language': 'dag', 'value': 'kom'}],
  'hsb': [{'language': 'hsb', 'value': 'H2O'}],
  'rup': [{'language': 'rup', 'value': 'H2O'},
   {'language': 'rup', 'value': 'monoxid de dihidrogen'},
   {'language': 'rup', 'value': 'dihidrooxigen'},
   {'language': 'rup', 'value': 'HOH'},
   {'language': 'rup', 'value': 'oxid de dihidrogen'},
   {'language': 'rup', 'value': 'apâ limpede'},
   {'language': 'rup', 'value': 'apã'},
   {'language': 'rup', 'value': 'apâ purâ'},
   {'language': 'rup', 'value': '[OH2]'},
   {'language': 'rup', 'value': 'aqua'},
   {'language': 'rup', 'value': 'hidroxid de hidrogen'}],
  'tr': [{'language': 'tr', 'value': 'ab'},
   {'language': 'tr', 'value': 'H2O'},
   {'language': 'tr', 'value': 'HOH'},
   {'language': 'tr', 'value': 'H₂O'}],
  'vec': [{'language': 'vec', 'value': 'H2O'},
   {'language': 'vec', 'value': 'H₂O'},
   {'language': 'vec', 'value': 'àgua'},
   {'language': 'vec', 'value': 'osidan'},
   {'language': 'vec', 'value': 'òsido de idròzeno'},
   {'language': 'vec', 'value': 'monòsido de idròzeno'},
   {'language': 'vec', 'value': 'monòsido de diidròzeno'},
   {'language': 'vec', 'value': '[OH2]'},
   {'language': 'vec', 'value': 'àcua s-ceta'},
   {'language': 'vec', 'value': 'HOH'}],
  'bho': [{'language': 'bho', 'value': 'जल'},
   {'language': 'bho', 'value': 'आब'}],
  'wa': [{'language': 'wa', 'value': 'êwe'},
   {'language': 'wa', 'value': 'eûwe'},
   {'language': 'wa', 'value': 'H2O'}],
  'mr': [{'language': 'mr', 'value': 'जल'}],
  'sk': [{'language': 'sk', 'value': 'oxidán'}],
  'ml': [{'language': 'ml', 'value': 'വെള്ളം'}],
  'pnb': [{'language': 'pnb', 'value': 'پانی'}],
  'eu': [{'language': 'eu', 'value': 'H2O'}]},
 'claims': {'P527': [{'mainsnak': {'snaktype': 'value',
     'property': 'P527',
     'hash': '3ebf53c76d1595329233a294a933704af5eb70c2',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 629,
       'id': 'Q629'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P1114': [{'snaktype': 'value',
       'property': 'P1114',
       'hash': '9d780ee198074963faf438f66fe68ee4315db6dd',
       'datavalue': {'value': {'amount': '+1', 'unit': '1'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P1114'],
    'id': 'Q283$042767f4-4109-ac18-e1b9-06141884e7b6',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P527',
     'hash': 'eac227da374dac31d825fb7951800af0858318f3',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 556,
       'id': 'Q556'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P1114': [{'snaktype': 'value',
       'property': 'P1114',
       'hash': '27d117b45c5fcc050d06cd9053363a71c1af2cbd',
       'datavalue': {'value': {'amount': '+2', 'unit': '1'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P1114'],
    'id': 'Q283$1a96a1c2-4d06-ed5c-c2cd-ed20f8a97f44',
    'rank': 'normal'}],
  'P117': [{'mainsnak': {'snaktype': 'value',
     'property': 'P117',
     'hash': 'a24702054a37a91c02d8fafefa720862166db1b0',
     'datavalue': {'value': 'H2O 2D labelled.svg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'id': 'q283$08408860-D657-4530-9490-B7F0401D804C',
    'rank': 'normal'}],
  'P274': [{'mainsnak': {'snaktype': 'value',
     'property': 'P274',
     'hash': '12ccdda96e8d5fffbea7510a0f03e75cbe7a0888',
     'datavalue': {'value': 'H₂O', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'q283$DA0A910B-2964-4146-9684-0BF823620242',
    'rank': 'normal',
    'references': [{'hash': '4bc2ff230b51fc3814ae40001c3a6149256b4610',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '89a00e513726d59216873a4ac73dd7200622b156',
         'datavalue': {'value': '962', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P662', 'P407', 'P1476', 'P813']}]}],
  'P227': [{'mainsnak': {'snaktype': 'value',
     'property': 'P227',
     'hash': '7edaa3a2b61e31f873deeaa5ab19768d4abf990d',
     'datavalue': {'value': '4064689-0', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'bde44dd0c1668d379ea22074db05ddf6263c2883',
       'datavalue': {'value': 'Wasser', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810'],
    'id': 'q283$F046BC3D-E190-4153-8431-BB3044604039',
    'rank': 'normal',
    'references': [{'hash': '9a24f7c0208b05d6be97077d855671d1dfdbc0dd',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'd38375ffe6fe142663ff55cd783aa4df4301d83d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 48183,
           'id': 'Q48183'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P231': [{'mainsnak': {'snaktype': 'value',
     'property': 'P231',
     'hash': 'ecab6c533389406d00544aa13711c499b248703c',
     'datavalue': {'value': '7732-18-5', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'q283$6EA70001-D618-46CB-B8D3-BB0F9020A8B2',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P373': [{'mainsnak': {'snaktype': 'value',
     'property': 'P373',
     'hash': 'a55f85995c7d0ab894a810efe3febc7f359594f2',
     'datavalue': {'value': 'Water', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'q283$3EDF8CB0-9115-42F3-A544-1812778D2679',
    'rank': 'normal',
    'references': [{'hash': '9a24f7c0208b05d6be97077d855671d1dfdbc0dd',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'd38375ffe6fe142663ff55cd783aa4df4301d83d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 48183,
           'id': 'Q48183'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P508': [{'mainsnak': {'snaktype': 'value',
     'property': 'P508',
     'hash': 'c95905f2668c1bd882907447d24d0876b070797d',
     'datavalue': {'value': '6045', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'q283$3BF1A7FA-8FDF-48A6-B08B-E020AF8C4A53',
    'rank': 'normal',
    'references': [{'hash': 'a235ba3d92daf43853b23688674b7ab464b4eea8',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'afdc73e2b2508208bcfb2c9e8b8b010bb19acef4',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 460907,
           'id': 'Q460907'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P910': [{'mainsnak': {'snaktype': 'value',
     'property': 'P910',
     'hash': '46bbae022393729bada19d5a6d550575b10b3117',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 6529461,
       'id': 'Q6529461'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$24D21F0A-DB54-4427-B98C-F3650A43C6A9',
    'rank': 'normal'}],
  'P873': [{'mainsnak': {'snaktype': 'value',
     'property': 'P873',
     'hash': '819e3e2cfc85e5dccbd47acecb28080313bdb9d7',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 106410,
       'id': 'Q106410'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '8ca67e33d5404ea9aaf01c74f98359819efc634f',
       'datavalue': {'value': {'amount': '+273.16',
         'unit': 'http://www.wikidata.org/entity/Q11579',
         'upperBound': '+273.1601',
         'lowerBound': '+273.1599'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': '1f880842a90d82a334a0c85ae14a219d6faba565',
       'datavalue': {'value': {'amount': '+611.657',
         'unit': 'http://www.wikidata.org/entity/Q44395',
         'upperBound': '+611.667',
         'lowerBound': '+611.647'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P515',
       'hash': '81a419c3b3b6c50184afec89b98e9d91bbd22155',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11438,
         'id': 'Q11438'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': 'b977cfbaaf8961e46894da3782623fe8d0383e84',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 4463662,
         'id': 'Q4463662'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '52c28184377bbee533965fc21bcbc2a9c6fdaed2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 904874,
         'id': 'Q904874'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P2077', 'P515', 'P805', 'P186'],
    'id': 'Q283$7e40bc10-4a93-1382-c381-b727d8d9c887',
    'rank': 'normal',
    'references': [{'hash': 'bbb5e2a3e84b29942fc1b8cec238801823d27121',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'aa84182673ebdc2250d03349e488a01a6550a42e',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 21061038,
           'id': 'Q21061038'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '5790235dbfb9a5e37b326b024f0a03eaedbeb338',
         'datavalue': {'value': '6-62', 'type': 'string'},
         'datatype': 'string'}]},
      'snaks-order': ['P248', 'P304']},
     {'hash': 'a315c10fd31c877b9d1967bf9dda38259a2ed620',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '1dbe7ab0172e5a0520e0f8abfbd2ce3cc287a816',
         'datavalue': {'value': 'https://iopscience.iop.org/article/10.1088/1681-7575/ab0013/pdf',
          'type': 'string'},
         'datatype': 'url'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': 'e37715eeca53c4d73d671040939d6a6429f58097',
         'datavalue': {'value': {'text': 'The revision of the SI—the result of three decades of progress in metrology',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P1683': [{'snaktype': 'value',
         'property': 'P1683',
         'hash': '18683df9e1d0af4918f5458ab13fb5233c3548f4',
         'datavalue': {'value': {'text': 'The standard uncertainty of T_TPW is now u(T_TPW) = 100 μK',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}]},
      'snaks-order': ['P854', 'P1476', 'P1683']},
     {'hash': '91203acd125b0da1e734a60c1a77439c08222174',
      'snaks': {'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': 'ece485687d0ca5acb581c7d97576081b427c0c41',
         'datavalue': {'value': 'https://en.wikipedia.org/w/index.php?title=Water&oldid=1108154970#Triple_and_critical_points',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P4656']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P873',
     'hash': '3162db2ba6ee9031a75be25d96adcf53786c9d5d',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 111059,
       'id': 'Q111059'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': 'b55b4253ab459f74765ebc4e6383409f062ce7d9',
       'datavalue': {'value': {'amount': '+22.06',
         'unit': 'http://www.wikidata.org/entity/Q21062777',
         'upperBound': '+22.07',
         'lowerBound': '+22.05'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '8299743c5465abef7477d5e102761d4855495c67',
       'datavalue': {'value': {'amount': '+647.14',
         'unit': 'http://www.wikidata.org/entity/Q11579',
         'upperBound': '+647.15',
         'lowerBound': '+647.13'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P515',
       'hash': '5bde8862b90fb6a85aa1a3f88e25e1e95f695046',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 682585,
         'id': 'Q682585'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2077', 'P2076', 'P515'],
    'id': 'Q283$6b0cf964-4a26-11b7-4197-b3626807ac09',
    'rank': 'normal',
    'references': [{'hash': '2ac85fce9160c02b0a346fc02cd6f790ca987c6b',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'aa84182673ebdc2250d03349e488a01a6550a42e',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 21061038,
           'id': 'Q21061038'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '7cafa10aaa7e4722d64d8fce006819f87699c7f4',
         'datavalue': {'value': '6-52', 'type': 'string'},
         'datatype': 'string'}]},
      'snaks-order': ['P248', 'P304']}]}],
  'P233': [{'mainsnak': {'snaktype': 'value',
     'property': 'P233',
     'hash': 'f6f645e0357d548c20b27928d6cc951fb9843a60',
     'datavalue': {'value': 'O', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'Q283$5b9f3e73-4c0b-0919-24d2-33a78e86b00a',
    'rank': 'normal',
    'references': [{'hash': '4bc2ff230b51fc3814ae40001c3a6149256b4610',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '89a00e513726d59216873a4ac73dd7200622b156',
         'datavalue': {'value': '962', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P662', 'P407', 'P1476', 'P813']}]}],
  'P234': [{'mainsnak': {'snaktype': 'value',
     'property': 'P234',
     'hash': '969b692348e7c9b308873d3efd7ae85142989aec',
     'datavalue': {'value': 'InChI=1S/H2O/h1H2', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$ddf1fbc0-40a3-dda0-62d5-6fe73960f61c',
    'rank': 'normal',
    'references': [{'hash': '4bc2ff230b51fc3814ae40001c3a6149256b4610',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '89a00e513726d59216873a4ac73dd7200622b156',
         'datavalue': {'value': '962', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P662', 'P407', 'P1476', 'P813']}]}],
  'P235': [{'mainsnak': {'snaktype': 'value',
     'property': 'P235',
     'hash': '95d5c9c29cc4f5043104c035f5d53e3c12dff283',
     'datavalue': {'value': 'XLYOFNOQVPJJNP-UHFFFAOYSA-N', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$5c4b98de-4112-f52c-b7f4-766f494043fb',
    'rank': 'normal',
    'references': [{'hash': '4bc2ff230b51fc3814ae40001c3a6149256b4610',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '89a00e513726d59216873a4ac73dd7200622b156',
         'datavalue': {'value': '962', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P662', 'P407', 'P1476', 'P813']},
     {'hash': '1ab650d75f7081ad07d4a87b2a737f176e9d7a8e',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09ee88b069c36a6dfec3825bdb84474dec6aa2f1',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 98915402,
           'id': 'Q98915402'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P662': [{'mainsnak': {'snaktype': 'value',
     'property': 'P662',
     'hash': '89a00e513726d59216873a4ac73dd7200622b156',
     'datavalue': {'value': '962', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$8fd088f9-4551-81e4-f7f2-d273b7bc92e5',
    'rank': 'normal',
    'references': [{'hash': '4bc2ff230b51fc3814ae40001c3a6149256b4610',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '89a00e513726d59216873a4ac73dd7200622b156',
         'datavalue': {'value': '962', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P662', 'P407', 'P1476', 'P813']}]}],
  'P349': [{'mainsnak': {'snaktype': 'value',
     'property': 'P349',
     'hash': '1f5fe17d1c88f0bd1430c315834de5ffeccfe71c',
     'datavalue': {'value': '00567741', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$8825480B-0DA7-4FA1-9D4A-0F651766D5C8',
    'rank': 'normal'}],
  'P935': [{'mainsnak': {'snaktype': 'value',
     'property': 'P935',
     'hash': '68da0b86322b611423e7d33ca1d835d5c5b1f647',
     'datavalue': {'value': 'Water', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'Q283$8E9D6A29-E20C-48BF-906D-B4A52F563092',
    'rank': 'normal',
    'references': [{'hash': '3bf39867b037e8e494a8389ae8a03bad6825a7fc',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '5946b91c53409c48f5f1fb0319ed41fc67a764da',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 191168,
           'id': 'Q191168'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P646': [{'mainsnak': {'snaktype': 'value',
     'property': 'P646',
     'hash': '86ae22d03fa4c04a7981e1bf995afd98f6d07ef3',
     'datavalue': {'value': '/m/0838f', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$49D50A01-8CEF-4127-999E-445D05D2D928',
    'rank': 'normal',
    'references': [{'hash': '2b00cb481cddcac7623114367489b5c194901c4a',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'a94b740202b097dd33355e0e6c00e54b9395e5e0',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 15241312,
           'id': 'Q15241312'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P577': [{'snaktype': 'value',
         'property': 'P577',
         'hash': 'fde79ecb015112d2f29229ccc1ec514ed3e71fa2',
         'datavalue': {'value': {'time': '+2013-10-28T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P577']}]}],
  'P232': [{'mainsnak': {'snaktype': 'value',
     'property': 'P232',
     'hash': '65ba8d21ee53e45c87fbd30c973fd6ff706d3282',
     'datavalue': {'value': '231-791-2', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$5CBA6E4B-9724-4C67-9A02-F11135A6042F',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P683': [{'mainsnak': {'snaktype': 'value',
     'property': 'P683',
     'hash': '811ab6d6aa498880232f28ac805b8f909be8db80',
     'datavalue': {'value': '15377', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P4390': [{'snaktype': 'value',
       'property': 'P4390',
       'hash': '1a4df62914ea9afca349bd5fb5d8efd5832d83fa',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 39893449,
         'id': 'Q39893449'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P4390'],
    'id': 'Q283$BDA742E6-8542-4B53-9451-0F033D6DBCBA',
    'rank': 'normal',
    'references': [{'hash': '551a3efe2e33a37274d780a99616b0b3e814c1ff',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'd68ecb5a8fa2574fe73e2bd25a21ecc7bbcd0687',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6120337,
           'id': 'Q6120337'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P592': [{'snaktype': 'value',
         'property': 'P592',
         'hash': '846da71cec967621c8114fcc6208bc18a828f11d',
         'datavalue': {'value': 'CHEMBL1098659', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '50e0b443110266134081dfefc79b22b2ce967d07',
         'datavalue': {'value': {'text': 'WATER', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P592', 'P407', 'P1476', 'P813']}]}],
  'P657': [{'mainsnak': {'snaktype': 'value',
     'property': 'P657',
     'hash': 'b4b527c4bc9990b9e4d3b32802c9fbb5147b2d35',
     'datavalue': {'value': 'ZC0110000', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$9FD5B509-FA26-4567-B57C-20E6446CFAF7',
    'rank': 'normal',
    'references': [{'hash': '0ee3b3ba1c958f4c3dcba7ed8091fe4b57311348',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'cb49f6fa327b245e4a5aaf48c44b3f503bcd4265',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30239,
           'id': 'Q30239'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P661': [{'mainsnak': {'snaktype': 'value',
     'property': 'P661',
     'hash': 'be0a5dff9adaf0f2318f99577c09e8cf62fab04b',
     'datavalue': {'value': '937', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$7AD13DB1-1672-47DB-9A95-EC3D29BDF83B',
    'rank': 'normal',
    'references': [{'hash': '1c3c3574b7d1446c1c0436be9f5de7cb1a1dfb30',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'f139f5151d668cf5d632d172b11ebfb4e9fd4f0d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 2311683,
           'id': 'Q2311683'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P661': [{'snaktype': 'value',
         'property': 'P661',
         'hash': 'be0a5dff9adaf0f2318f99577c09e8cf62fab04b',
         'datavalue': {'value': '937', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '677ad16e183e4954812c28ab2853d4e25928f500',
         'datavalue': {'value': {'text': 'Water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P661', 'P407', 'P1476', 'P813']}]}],
  'P1036': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1036',
     'hash': 'bb9a5672835a84b028127f62a43bdac8c997a3c2',
     'datavalue': {'value': '553.7', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6fe3f6e9-4754-4618-c18c-a34650f4582b',
    'rank': 'normal',
    'references': [{'hash': 'ced024eb12b5fe38ed87cb5720ea18f3c54229a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '019a50b7de741e0068bde41c9d9955b22a5de47b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 36578,
           'id': 'Q36578'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1036',
     'hash': '65fda49d962e56095d9368dede2e445ba2bc0c51',
     'datavalue': {'value': '546.22', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6a5ef56d-45a6-e4fe-cf5b-62a4ce352143',
    'rank': 'normal',
    'references': [{'hash': 'ced024eb12b5fe38ed87cb5720ea18f3c54229a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '019a50b7de741e0068bde41c9d9955b22a5de47b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 36578,
           'id': 'Q36578'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1036',
     'hash': '38fe86ba6d27429bc75f2c89890bb6456ad4efbf',
     'datavalue': {'value': '572.539', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$e437923e-4e9e-0894-01c5-b18a99e53ef5',
    'rank': 'normal',
    'references': [{'hash': 'ced024eb12b5fe38ed87cb5720ea18f3c54229a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '019a50b7de741e0068bde41c9d9955b22a5de47b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 36578,
           'id': 'Q36578'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P1051': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1051',
     'hash': 'b6231f05342d9154a28111dce17b61c93dbd3a64',
     'datavalue': {'value': '12022', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$45429F07-98A3-4CC8-B906-8841F0C0E59D',
    'rank': 'normal'}],
  'P652': [{'mainsnak': {'snaktype': 'value',
     'property': 'P652',
     'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
     'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$CE97E6AC-B4ED-4426-9DC6-C86D6B19FF28',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P2057': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2057',
     'hash': 'a92a1965d4bbae8b74b45cc85ca7ec6432272cd2',
     'datavalue': {'value': 'HMDB0002111', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$e3fa7ec0-4353-50ef-2f56-f13803155363',
    'rank': 'normal'}],
  'P2101': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2101',
     'hash': '0e022335ae0ccc5dd0b3386dc78fd496eacc6b40',
     'datavalue': {'value': {'amount': '+0.002519',
       'unit': 'http://www.wikidata.org/entity/Q25267'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': 'abbb1724dc947a108e583c9fd9cef5e5d4cc0593',
       'datavalue': {'value': {'amount': '+101.325',
         'unit': 'http://www.wikidata.org/entity/Q21064807'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '52c28184377bbee533965fc21bcbc2a9c6fdaed2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 904874,
         'id': 'Q904874'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P459': [{'snaktype': 'value',
       'property': 'P459',
       'hash': '249ff91b214aeb9a944f4df962242b8ccbb65b13',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 907684,
         'id': 'Q907684'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2077', 'P186', 'P459'],
    'id': 'Q283$8192984e-4a31-2dea-b445-7f57af473936',
    'rank': 'normal',
    'references': [{'hash': '7c77c0600dab6777e3ed34b5a8ce26eabf8d1793',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '8f2db05d1778dfe23cac0340a89552a7a9f818dd',
         'datavalue': {'value': 'https://web.archive.org/web/20220527094605/http://www.iapws.org/relguide/Ice-Rev2009.pdf',
          'type': 'string'},
         'datatype': 'url'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '52685df23f910c7e42413f3aabbb9cfc75b9a29e',
         'datavalue': {'value': {'text': 'Revised Release on the Equation of State 2006 for H2O Ice Ih',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P577': [{'snaktype': 'value',
         'property': 'P577',
         'hash': '9264baf374801b3de1addbaea9a05aae2a8fc9c3',
         'datavalue': {'value': {'time': '+2009-09-00T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 10,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P123': [{'snaktype': 'value',
         'property': 'P123',
         'hash': '7f0990a7df4ac37e609ce3e48484a81fa85a87d5',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1291025,
           'id': 'Q1291025'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P854', 'P1476', 'P577', 'P123']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2101',
     'hash': '158fbf746266ee54559edbfe971cdf7d78894b0d',
     'datavalue': {'value': {'amount': '+0',
       'unit': 'http://www.wikidata.org/entity/Q25267',
       'upperBound': '+0.002',
       'lowerBound': '-0.002'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': 'abbb1724dc947a108e583c9fd9cef5e5d4cc0593',
       'datavalue': {'value': {'amount': '+101.325',
         'unit': 'http://www.wikidata.org/entity/Q21064807'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '52c28184377bbee533965fc21bcbc2a9c6fdaed2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 904874,
         'id': 'Q904874'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2077', 'P186'],
    'id': 'Q283$68024a02-41c5-fe83-0678-7b8e43585bbf',
    'rank': 'normal',
    'references': [{'hash': '283e940e38c9b8a3eecfb4efbce2ca9aa1f3c6e7',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'd588e0a15b4dacc47bd2f10cb10c546d3d4be321',
         'datavalue': {'value': 'https://web.archive.org/web/20070710041607/http://www.cstl.nist.gov/div836/836.05/papers/magnum95icept.pdf',
          'type': 'string'},
         'datatype': 'url'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '3bba0c66605333fee5e27347fc7006e551d4b91c',
         'datavalue': {'value': {'text': 'Reproducibility of the Temperature of the Ice Point in Routine Measurements',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P577': [{'snaktype': 'value',
         'property': 'P577',
         'hash': '05d8e56ed4bbfa50c87c350019d6cfa06613ef8a',
         'datavalue': {'value': {'time': '+1995-06-00T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 10,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P123': [{'snaktype': 'value',
         'property': 'P123',
         'hash': 'a125c47610d2f64f5cce598cb63bfeb2da68e159',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 176691,
           'id': 'Q176691'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P854', 'P1476', 'P577', 'P123']}]}],
  'P2075': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2075',
     'hash': 'f2ee26b5447f673d62bc9ea24af35d45ae24d79e',
     'datavalue': {'value': {'amount': '+1497',
       'unit': 'http://www.wikidata.org/entity/Q182429',
       'upperBound': '+1498',
       'lowerBound': '+1496'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '6f138d164548b8743683b7cc03dd03c965a57af9',
       'datavalue': {'value': {'amount': '+25',
         'unit': 'http://www.wikidata.org/entity/Q25267',
         'upperBound': '+26',
         'lowerBound': '+24'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$e8dcef84-452b-0992-c7d0-97475564f878',
    'rank': 'normal',
    'references': [{'hash': '7a84f20d2a2a9508842c3cd80ba526018c1dc2ea',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'aa84182673ebdc2250d03349e488a01a6550a42e',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 21061038,
           'id': 'Q21061038'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '6a2b107371275fa71c21c3a7e81276c119f95f05',
         'datavalue': {'value': '14-37', 'type': 'string'},
         'datatype': 'string'}]},
      'snaks-order': ['P248', 'P304']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2075',
     'hash': '5e8c2412d434b7cdb9ae004773964dc862751c2c',
     'datavalue': {'value': {'amount': '+473',
       'unit': 'http://www.wikidata.org/entity/Q182429',
       'upperBound': '+474',
       'lowerBound': '+472'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '19f54089cfe3941cd88ed69c9dff64b3a7622c61',
       'datavalue': {'value': {'amount': '+100',
         'unit': 'http://www.wikidata.org/entity/Q25267',
         'upperBound': '+101',
         'lowerBound': '+99'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$23eb9222-4c86-aaa0-974d-be67bf5a962a',
    'rank': 'normal',
    'references': [{'hash': '7a84f20d2a2a9508842c3cd80ba526018c1dc2ea',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'aa84182673ebdc2250d03349e488a01a6550a42e',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 21061038,
           'id': 'Q21061038'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '6a2b107371275fa71c21c3a7e81276c119f95f05',
         'datavalue': {'value': '14-37', 'type': 'string'},
         'datatype': 'string'}]},
      'snaks-order': ['P248', 'P304']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2075',
     'hash': '95e2e91e8e481ed64fab9b9b2b1454fedfb99293',
     'datavalue': {'value': {'amount': '+3000',
       'unit': 'http://www.wikidata.org/entity/Q182429'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '81a419c3b3b6c50184afec89b98e9d91bbd22155',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11438,
         'id': 'Q11438'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1480': [{'snaktype': 'value',
       'property': 'P1480',
       'hash': 'cb40f2027a88b8d23735681aaccba1069a574f54',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5727902,
         'id': 'Q5727902'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515', 'P1480'],
    'id': 'Q283$bbbdf78f-4339-89c0-5b45-74f809b9d752',
    'rank': 'normal',
    'references': [{'hash': '66b070350da29a2863c1682404413d2040df8a9c',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '9267c92cd03b6919d5c89764aeacb84abf690f2c',
         'datavalue': {'value': 'https://www.isover.ee/ru/osnovnye-ponyatiya-svyazannye-so-zvukom',
          'type': 'string'},
         'datatype': 'url'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'd291ddb7cd77c94a7bd709a8395934147e0864fc',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 7737,
           'id': 'Q7737'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P854', 'P407']}]}],
  'P2054': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'fdadad81cdd342ca1b6ca86a97f1cbf428f4be40',
     'datavalue': {'value': {'amount': '+0.983854',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '35afe5437a718a8dc333096fb85055ff9cc63954',
       'datavalue': {'value': {'amount': '-30',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$ea8d5d18-4468-5c52-e28d-d75daa96b352',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'ca96401ef6a9b604f625bc40a1cca9af90feeca3',
     'datavalue': {'value': {'amount': '+0.993547',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'b6a3f278b021138718493e2e6181cc8a2e54fc5b',
       'datavalue': {'value': {'amount': '-20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$7c0475bd-4e5a-95e0-4804-13febb2f357b',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '6cacc58f6082dc8fa5b26bd91672570522f2dfe9',
     'datavalue': {'value': {'amount': '+0.998117',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '4d877450480859ff6c164caa93a992a0dd091752',
       'datavalue': {'value': {'amount': '-10',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$4b7aaee3-4c69-1b14-3ea9-90ffc0c261dd',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'b49985b234b7bf4b95defb14f83bd1ad609e7a96',
     'datavalue': {'value': {'amount': '+0.9998395',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '15dbf1e2325ab68c1f03018f6fd6bb04537afddd',
       'datavalue': {'value': {'amount': '+0',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$77ce87f5-4eb5-b669-c5da-eb89ae3d0e40',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'a4105c7f2bd597f6c3002c448f113ef39ec073c4',
     'datavalue': {'value': {'amount': '+0.9999720',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'f1c5396e3cda42b15fed5164dc5c3a66a2594fff',
       'datavalue': {'value': {'amount': '+4',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$067d12e5-4625-7d0a-04ad-8d3c013b5d97',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '5ff3732032d7d56d9ea741e6a20872b78802c9af',
     'datavalue': {'value': {'amount': '+0.99996',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '93bca3acaf7da1b6db077efefbf389b073ee3fda',
       'datavalue': {'value': {'amount': '+5',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$687c1b8d-4411-2312-6677-6fcb793a2757',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'd1cd717fc3a115bd9988c6f93f302926604d8b8c',
     'datavalue': {'value': {'amount': '+0.9997026',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '0eaf5d93f77169bd43ac75d8e5209a3097737503',
       'datavalue': {'value': {'amount': '+10',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$4f3dd727-4249-cd4b-b814-a960214e0c1f',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '6af262afe60081ac4b63e79ad7f1c33ae1f840cf',
     'datavalue': {'value': {'amount': '+0.9991026',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '74e158910c3c78805c5b6734d8db615374197106',
       'datavalue': {'value': {'amount': '+15',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$0f86f1dd-41ef-9c4b-6788-e62391b418c6',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '4349029a2eb88fbb5ebeff8cfea239c38915419e',
     'datavalue': {'value': {'amount': '+0.9982071',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$3133641b-4f46-255d-1ab6-b1d9bfbfdb9a',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '5fa586690311bff4ac6df881196eecfb8491291d',
     'datavalue': {'value': {'amount': '+0.9977735',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '128710e36c1371e05ea0311e92c2e39ede69c895',
       'datavalue': {'value': {'amount': '+22',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$9e59edea-4e3f-30e9-bde9-5f29f5535416',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '374141d4cc9d2aea7364d00a4425fd8d6912f1c2',
     'datavalue': {'value': {'amount': '+0.9970479',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'ab79e06e9ed6ffe2e486fdb46c0b31c2fffb174c',
       'datavalue': {'value': {'amount': '+25',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$389316c8-4dae-8949-b0f2-ec42b056b3be',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '8f1882414f6cf348d33c7aa93d67aa8c81522046',
     'datavalue': {'value': {'amount': '+0.9956502',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'd37b6916c121bc68019d925657475c76694671d5',
       'datavalue': {'value': {'amount': '+30',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$be2c6153-45b0-24b2-b83e-34a90b0cfa94',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '88e85e7c9f4a0b5a333d7bca9f13d81e87edb70c',
     'datavalue': {'value': {'amount': '+0.99403',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '115dd54bf34a1ab7d3617d110b6f41bfd902579e',
       'datavalue': {'value': {'amount': '+35',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$47868fe1-44b1-03c7-2446-3e26ad8b7e87',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '3e6f82bd47218abe0cf08eec6b0eadcd26b4bf55',
     'datavalue': {'value': {'amount': '+0.99221',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '1898a9c7a1fc442e69d6db950c0fa2da8c85fd30',
       'datavalue': {'value': {'amount': '+40',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$19248f5b-4c5b-1b1e-810a-885aa74234b8',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '4f4f569717b85d5f440fd7a961aec44828480a39',
     'datavalue': {'value': {'amount': '+0.99022',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '900b094870adedc0d7f19800cad19d6074fb78db',
       'datavalue': {'value': {'amount': '+45',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$00217b5e-4f05-25eb-06ea-0e0cee951dd7',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '550288555652fc14749e8f83e5693425f11641b0',
     'datavalue': {'value': {'amount': '+0.98804',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '4d21d6b57883257e2b7fb5d733eb2f7cb386fc60',
       'datavalue': {'value': {'amount': '+50',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$fe167079-40f7-c988-1afa-bce0cffad2a2',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '65d53a6328f803a27965762db0765d7d114e2047',
     'datavalue': {'value': {'amount': '+0.98570',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '136bb4d8e7b0de15d7491db6a9397a01470018fc',
       'datavalue': {'value': {'amount': '+55',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$0f4437ea-4937-2295-1c80-19fd45bb9caf',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '3cdcbeb794a2f3c8f319ebde70fe3178c3a404bc',
     'datavalue': {'value': {'amount': '+0.98321',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '90051cb1437f972a12ac3866cf45f514f2f4503a',
       'datavalue': {'value': {'amount': '+60',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$df3e070f-4d39-980c-6e43-58ab33863e39',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '654dde49e3fcaf582dddce8f3bba1fda72924371',
     'datavalue': {'value': {'amount': '+0.98056',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '9c348dec09679a98a2536bcfd03e6d7827e4d547',
       'datavalue': {'value': {'amount': '+65',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$b3592e72-4283-8931-3469-0320f9649450',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'c28e8425805c7cd9f1e551c0435c33f6dd04e256',
     'datavalue': {'value': {'amount': '+0.97778',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '2ac6c1ac86c29b2d70ffe45bcbc39a28614aee4e',
       'datavalue': {'value': {'amount': '+70',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$a2e9d6c8-4195-49b6-0bd1-3870f364af17',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '6550b62bdb935076f270d3f6d38213aa87efe8dc',
     'datavalue': {'value': {'amount': '+0.97486',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '835bfae1bb0f063f1d67eb60563c553ed2c234a1',
       'datavalue': {'value': {'amount': '+75',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$26de8955-4e4b-1b55-53f2-ae4f4de0d3ef',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '660f9cf7947b309b704bd04a3034952d95adbe7f',
     'datavalue': {'value': {'amount': '+0.97180',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '7f912af7f682b78bc925e7f796ccf03de5a66e88',
       'datavalue': {'value': {'amount': '+80',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$e047f4a7-4554-a0c3-c59a-b203b76cfda7',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '19a303e1cf36e5a2e10c367c679a44c3b5efb1c2',
     'datavalue': {'value': {'amount': '+0.96862',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'e2ffaa27e6fceed69adbe2704f8438b1069b287c',
       'datavalue': {'value': {'amount': '+85',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$d3a6e537-4992-704f-24ff-5560deadc71f',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': 'f82def7487881f2d52729bd73ba39007fd3272d6',
     'datavalue': {'value': {'amount': '+0.96531',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '81c546a0f11a307b47ea9a0edae78657af634c9c',
       'datavalue': {'value': {'amount': '+90',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$c1949803-4dd6-e31f-8fac-c7cf7c63b187',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '2daf621a08af528c6aad3298feb8025b6ad3d40a',
     'datavalue': {'value': {'amount': '+0.96189',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '8a8cfc5e13fe39b675dbc1e4f27b97c1de5acb6b',
       'datavalue': {'value': {'amount': '+95',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$9ecd9b63-4a07-dbd2-915b-370c27b59151',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2054',
     'hash': '1f8eab4e4fe7fbfdd267936110c92c6e0935da7f',
     'datavalue': {'value': {'amount': '+0.95835',
       'unit': 'http://www.wikidata.org/entity/Q13147228'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '855e7b9491dcc328706003d1b3a176dbd056439e',
       'datavalue': {'value': {'amount': '+100',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$ce9a3c52-4271-ba20-44b1-9cc6863e68e8',
    'rank': 'normal',
    'references': [{'hash': '43c0fd49459d19238c69f32c1aefa0d64c4ad721',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '09e40cceca18d1603672a510f73b1b2d8ddc51f2',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 30322990,
           'id': 'Q30322990'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P715': [{'mainsnak': {'snaktype': 'value',
     'property': 'P715',
     'hash': 'b6749f1bfa58fc0e2c7a97adb83d17a5d933c9df',
     'datavalue': {'value': '09145', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$880AAEDF-5BCA-47AC-B860-ED2B9ADCCCA8',
    'rank': 'normal',
    'references': [{'hash': '9ee65fa944b36906b0d43860f73e745515feefb4',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '6bd5059d70c3b8ba22947e938de55027edbaf3c1',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1122544,
           'id': 'Q1122544'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P715': [{'snaktype': 'value',
         'property': 'P715',
         'hash': 'b6749f1bfa58fc0e2c7a97adb83d17a5d933c9df',
         'datavalue': {'value': '09145', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '677ad16e183e4954812c28ab2853d4e25928f500',
         'datavalue': {'value': {'text': 'Water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P715', 'P407', 'P1476', 'P813']}]}],
  'P2115': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2115',
     'hash': '35ae2470d37b9ec51b08c8f186f19354c56fbdaf',
     'datavalue': {'value': 'N0000147042', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$4E4C1ACE-D8B8-4609-84C3-E8EE1CFC39E2',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P592': [{'mainsnak': {'snaktype': 'value',
     'property': 'P592',
     'hash': '846da71cec967621c8114fcc6208bc18a828f11d',
     'datavalue': {'value': 'CHEMBL1098659', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$838B45B4-1036-4E91-A789-97042683069D',
    'rank': 'normal',
    'references': [{'hash': '551a3efe2e33a37274d780a99616b0b3e814c1ff',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'd68ecb5a8fa2574fe73e2bd25a21ecc7bbcd0687',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6120337,
           'id': 'Q6120337'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P592': [{'snaktype': 'value',
         'property': 'P592',
         'hash': '846da71cec967621c8114fcc6208bc18a828f11d',
         'datavalue': {'value': 'CHEMBL1098659', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '50e0b443110266134081dfefc79b22b2ce967d07',
         'datavalue': {'value': {'text': 'WATER', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P592', 'P407', 'P1476', 'P813']}]}],
  'P679': [{'mainsnak': {'snaktype': 'value',
     'property': 'P679',
     'hash': '57b6a6a152cc85b6042ac1de69a44aabe7a857a7',
     'datavalue': {'value': '1140', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$F2D872EC-191F-4F36-9D13-FE3D59649844',
    'rank': 'normal'}],
  'P2612': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2612',
     'hash': '846d7f0dbac966034adf46d2578a98711f5e5712',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$FC76468D-2EC4-411F-BACA-CD87AF99BFE8',
    'rank': 'normal'}],
  'P1807': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1807',
     'hash': 'fff07f477ae9d71f2a01f9a74917096f996ae7e9',
     'datavalue': {'value': '287', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$27CEB259-DA96-4FBC-B366-D42E86C20B1B',
    'rank': 'normal'}],
  'P2959': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2959',
     'hash': '97ce556830e05f8f77aea01074837409a52539e6',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 31804020,
       'id': 'Q31804020'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$DE9A9D9D-9FA1-4261-8F4E-44B1527E7B23',
    'rank': 'normal',
    'references': [{'hash': '3545f001bc7889f7d9df464d8234d1eecde72c70',
      'snaks': {'P3452': [{'snaktype': 'value',
         'property': 'P3452',
         'hash': '2d207d60a13d3f432ef09d04283ee4e79e59e097',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 31804020,
           'id': 'Q31804020'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P3452']}]}],
  'P1417': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1417',
     'hash': '9f86b2785296a25e3cb9908a014e83af56d55ac6',
     'datavalue': {'value': 'science/water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$B9E9383B-0C3B-473A-BCCA-000061F43595',
    'rank': 'normal'}],
  'P2566': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2566',
     'hash': 'caa9f798ec60d363a47f346fa52c3ea8632beeb1',
     'datavalue': {'value': '100.028.902', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$13572468-2468-1357-eca9-bdf024681357',
    'rank': 'normal',
    'references': [{'hash': '604145b5b550a053d76fa3fd6e189ffa5824f3f0',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '76531cd55d872abdd18cf69a5b5caa024664acf5',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 59911453,
           'id': 'Q59911453'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P2566': [{'snaktype': 'value',
         'property': 'P2566',
         'hash': 'caa9f798ec60d363a47f346fa52c3ea8632beeb1',
         'datavalue': {'value': '100.028.902', 'type': 'string'},
         'datatype': 'external-id'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '8b9424a7f0148fca7780daef8d6f7a3eac84a324',
         'datavalue': {'value': {'time': '+2018-12-27T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '677ad16e183e4954812c28ab2853d4e25928f500',
         'datavalue': {'value': {'text': 'Water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P1683': [{'snaktype': 'value',
         'property': 'P1683',
         'hash': 'e6f4e80965349ba85614857e31c755f080018e04',
         'datavalue': {'value': {'text': 'CAS no.: 7732-18-5',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}]},
      'snaks-order': ['P248', 'P2566', 'P813', 'P1476', 'P1683']}]}],
  'P665': [{'mainsnak': {'snaktype': 'value',
     'property': 'P665',
     'hash': 'fc1c25fcfb505932a93f30dce04baef2ca5e87b6',
     'datavalue': {'value': 'D00001', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$7FD17FA6-A545-4D0A-BD4E-476961709320',
    'rank': 'normal',
    'references': [{'hash': 'a8ac6721145385d667cdb3413da53e1a14640c21',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '9e83cfcac844a687a3b2130383ea35b51a36d652',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 902623,
           'id': 'Q902623'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P683': [{'snaktype': 'value',
         'property': 'P683',
         'hash': '811ab6d6aa498880232f28ac805b8f909be8db80',
         'datavalue': {'value': '15377', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '620d2e76d21bb1d326fc360db5bece2070115240',
         'datavalue': {'value': {'time': '+2016-10-19T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P683', 'P407', 'P1476', 'P813']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P665',
     'hash': '8fa527752133c88ec3c3af92db1fbc22ec12525a',
     'datavalue': {'value': 'C00001', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$82b38892-49e9-d416-27d7-72be718dcc68',
    'rank': 'normal'}],
  'P1579': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1579',
     'hash': '6fb1a1ee567fe905f7d19a3aaf170d1010e5e93f',
     'datavalue': {'value': '3587155', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$3FE8137B-63F9-4C22-A4D6-F060EB87550B',
    'rank': 'normal',
    'references': [{'hash': 'a8ac6721145385d667cdb3413da53e1a14640c21',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '9e83cfcac844a687a3b2130383ea35b51a36d652',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 902623,
           'id': 'Q902623'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P683': [{'snaktype': 'value',
         'property': 'P683',
         'hash': '811ab6d6aa498880232f28ac805b8f909be8db80',
         'datavalue': {'value': '15377', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '620d2e76d21bb1d326fc360db5bece2070115240',
         'datavalue': {'value': {'time': '+2016-10-19T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P683', 'P407', 'P1476', 'P813']}]}],
  'P2067': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2067',
     'hash': '4babb813e61a40c74e12ce25406597174f1c10e7',
     'datavalue': {'value': {'amount': '+18.015268',
       'unit': 'http://www.wikidata.org/entity/Q483261'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'id': 'Q283$816DEE76-2B22-498F-B3F6-A50F583AE8C4',
    'rank': 'normal',
    'references': [{'hash': '176243f91c929a89e140e7e7df6787aa1c66ca23',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'a976adb6593a24e05d644ec89ccf6e7ee3a77a06',
         'datavalue': {'value': 'http://www.iapws.org/relguide/fundam.pdf',
          'type': 'string'},
         'datatype': 'url'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '633955ef15056e161077090df795f83a42eef348',
         'datavalue': {'value': '4', 'type': 'string'},
         'datatype': 'string'}],
       'P958': [{'snaktype': 'value',
         'property': 'P958',
         'hash': 'f5008b80dd7a79740712da5e9e1900c638d710e2',
         'datavalue': {'value': '3.2 Relative Molar Mass of Ordinary Water Substance',
          'type': 'string'},
         'datatype': 'string'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '41c2a9aa87f1b1e507ac15a16d6baad2447cd47a',
         'datavalue': {'value': {'time': '+2017-08-15T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P304', 'P958', 'P813']}]}],
  'P487': [{'mainsnak': {'snaktype': 'value',
     'property': 'P487',
     'hash': '7d4d2838f63c7d54ca7212589ded46a420a74034',
     'datavalue': {'value': '💧', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'Q283$c71cc1b1-45ff-5857-6f04-3851accc82f6',
    'rank': 'normal',
    'references': [{'hash': '03dd2c9d10173e7d231bf32b85f298a19c2a2752',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'd69663ad30a38a94a4b59798c536c2844e5b2f8a',
         'datavalue': {'value': 'http://www.unicode.org/charts/PDF/U1F300.pdf',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P854']}]}],
  'P2056': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2056',
     'hash': 'fbbc8714763aca148d48806ea51cdedc534e8af0',
     'datavalue': {'value': {'amount': '+4184',
       'unit': 'http://www.wikidata.org/entity/Q69423273',
       'upperBound': '+4185',
       'lowerBound': '+4183'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '32715e438a498075c40e5f5dd0e9cd92629b47f3',
       'datavalue': {'value': {'amount': '+333',
         'unit': 'http://www.wikidata.org/entity/Q11579'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P515', 'P2076'],
    'id': 'Q283$64f0aeba-42fa-43c4-54ea-f338494d8217',
    'rank': 'normal',
    'references': [{'hash': '4072cc3bbda8d50c3f91dee190c14858251711c5',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'f51f190da1b8d419e329500d7481addd80aeea0e',
         'datavalue': {'value': 'http://water.usgs.gov/edu/heat-capacity.html',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P854']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2056',
     'hash': 'e3a6774d218590853deb23a4a9ff7fdab5bb6bd6',
     'datavalue': {'value': {'amount': '+2110',
       'unit': 'http://www.wikidata.org/entity/Q69423273'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '81a419c3b3b6c50184afec89b98e9d91bbd22155',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11438,
         'id': 'Q11438'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '7516539f916ef441f64bf6f67cfa4150b2ae29af',
       'datavalue': {'value': {'amount': '+273',
         'unit': 'http://www.wikidata.org/entity/Q11579'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P515', 'P2076'],
    'id': 'Q283$5a94998f-4476-26a6-5b7c-3570e0bc8d98',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2056',
     'hash': '85a9aaf66c00881b9f7d69c8dc88267193530dcc',
     'datavalue': {'value': {'amount': '+1640',
       'unit': 'http://www.wikidata.org/entity/Q69423273'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '81a419c3b3b6c50184afec89b98e9d91bbd22155',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11438,
         'id': 'Q11438'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '791a7dc7541eb6306da78f4595b4f8f6454db41d',
       'datavalue': {'value': {'amount': '+213',
         'unit': 'http://www.wikidata.org/entity/Q11579'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P515', 'P2076'],
    'id': 'Q283$ba87457f-44db-5de5-6211-294217eb37c1',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2056',
     'hash': '78e68efa81910c84b1bc829363cccfcbcb1dabd6',
     'datavalue': {'value': {'amount': '+4216',
       'unit': 'http://www.wikidata.org/entity/Q69423273'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41da0723305bc59f4ac7ef51990115a2064c1cc0',
       'datavalue': {'value': {'amount': '+373',
         'unit': 'http://www.wikidata.org/entity/Q11579'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P515', 'P2076'],
    'id': 'Q283$65810998-423f-6e72-566b-d862ff505826',
    'rank': 'normal'}],
  'P3345': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3345',
     'hash': '3d989faf2195c61d08f9f546051ed079c05b845e',
     'datavalue': {'value': '11295', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$214D1F62-2385-4212-806C-A602048936B6',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P2892': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2892',
     'hash': 'a1f8e2a5b7ab1ff92000f8a8efd287708daead81',
     'datavalue': {'value': 'C0043047', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$471AF345-2C5F-4100-9F21-BAB8B65980B8',
    'rank': 'normal',
    'references': [{'hash': '9894364a1b5d02b3f88a28a1aa260b7a4f0f2959',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '3f10906b25f55731f9aedabf02cefea41d81ab1b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6593799,
           'id': 'Q6593799'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P652': [{'snaktype': 'value',
         'property': 'P652',
         'hash': 'a60fc8fc881b5ebb8cdd690886eb35092adf94ff',
         'datavalue': {'value': '059QF0KO0R', 'type': 'string'},
         'datatype': 'external-id'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '8b52428c85643b5c3a30785b5a8e5b10ddc71096',
         'datavalue': {'value': {'text': 'water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '583aa91f08888cf0ea5ac3a1764704af9b75fa36',
         'datavalue': {'value': {'time': '+2016-11-18T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P652', 'P407', 'P1476', 'P813']}]}],
  'P2102': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2102',
     'hash': 'fec4e731e60a283b764d17d3d9b063ff34f56ac1',
     'datavalue': {'value': {'amount': '+99.9839',
       'unit': 'http://www.wikidata.org/entity/Q25267'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': 'abbb1724dc947a108e583c9fd9cef5e5d4cc0593',
       'datavalue': {'value': {'amount': '+101.325',
         'unit': 'http://www.wikidata.org/entity/Q21064807'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P459': [{'snaktype': 'value',
       'property': 'P459',
       'hash': '3b39a420f4728ca8d2334a1009f107d8368cf5e2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 264647,
         'id': 'Q264647'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '52c28184377bbee533965fc21bcbc2a9c6fdaed2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 904874,
         'id': 'Q904874'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2077', 'P459', 'P186'],
    'id': 'Q283$81243731-40b8-0096-434b-3b5fe3e5cf96',
    'rank': 'preferred',
    'references': [{'hash': '2eaba6ed0657f43ff528b9da68b21047cc4903ad',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '017c55afd84be29c1b2876107e3b1d56beb41359',
         'datavalue': {'value': 'https://web.archive.org/web/20201002112833/http://www1.lsbu.ac.uk/water/water_properties.html#c1',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P854']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2102',
     'hash': '6eb691e4a4ce359be91aec43fa0667ce5e1eeda0',
     'datavalue': {'value': {'amount': '+99.9743',
       'unit': 'http://www.wikidata.org/entity/Q25267'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': 'abbb1724dc947a108e583c9fd9cef5e5d4cc0593',
       'datavalue': {'value': {'amount': '+101.325',
         'unit': 'http://www.wikidata.org/entity/Q21064807'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P459': [{'snaktype': 'value',
       'property': 'P459',
       'hash': '249ff91b214aeb9a944f4df962242b8ccbb65b13',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 907684,
         'id': 'Q907684'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P186': [{'snaktype': 'value',
       'property': 'P186',
       'hash': '52c28184377bbee533965fc21bcbc2a9c6fdaed2',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 904874,
         'id': 'Q904874'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2077', 'P459', 'P186'],
    'id': 'Q283$834ebcba-4d62-4fc7-10cb-801883ed07d9',
    'rank': 'normal',
    'references': [{'hash': '2eaba6ed0657f43ff528b9da68b21047cc4903ad',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '017c55afd84be29c1b2876107e3b1d56beb41359',
         'datavalue': {'value': 'https://web.archive.org/web/20201002112833/http://www1.lsbu.ac.uk/water/water_properties.html#c1',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P854']}]}],
  'P3417': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3417',
     'hash': 'a078825c5e1ba275c6d1afea59a2d6ebd7d7fa1b',
     'datavalue': {'value': 'Water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$62FD26FF-38C0-48A5-A4AE-34737D3BB481',
    'rank': 'normal'}],
  'P3117': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3117',
     'hash': '54c22d1b3f37f03ecfb5c0ae76cbf10a980dacba',
     'datavalue': {'value': 'DTXSID6026296', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$2F596135-B9DE-4841-8D2F-B0F8EBD30F20',
    'rank': 'normal',
    'references': [{'hash': 'b9fca783197d76da3ba023673fc10074b598f1f3',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '8d0c5fc3d44790d94e5cc51da08e3fb49277ac30',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 28061352,
           'id': 'Q28061352'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P486': [{'mainsnak': {'snaktype': 'value',
     'property': 'P486',
     'hash': 'fea950cb4a79f7fcea6b88b3c2d8ed988cc517bb',
     'datavalue': {'value': 'D014867', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6bea429f5696799d2acb5abafcfec34233dc486f',
       'datavalue': {'value': 'Water', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810'],
    'id': 'Q283$37aa8f0d-4493-16ea-984e-73978af4ad5e',
    'rank': 'normal'}],
  'P18': [{'mainsnak': {'snaktype': 'value',
     'property': 'P18',
     'hash': '909798a8a1b22c4f447c350538f477cfedda2150',
     'datavalue': {'value': 'IceBirdWithFledgling.jpg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P180': [{'snaktype': 'value',
       'property': 'P180',
       'hash': 'f6fc95c1abac5e2b1720c75ca10cf497d7f16fa0',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 23392,
         'id': 'Q23392'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P180'],
    'id': 'Q283$c61fd7ac-4aba-6c27-a65f-ae9cd4af50c7',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P18',
     'hash': '07d74c613f6c25fbae36a17c86375be7662827b0',
     'datavalue': {'value': 'Wassertropfen.jpg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P180': [{'snaktype': 'value',
       'property': 'P180',
       'hash': 'd3d387b4d4e0ec694237626df427ff9222874edd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 29053744,
         'id': 'Q29053744'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P180'],
    'id': 'Q283$5262438e-49b8-7284-9849-e240c2385c2f',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P18',
     'hash': '2a652231c6375af6e74913165c831deae097c778',
     'datavalue': {'value': 'Above the Clouds.jpg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P180': [{'snaktype': 'value',
       'property': 'P180',
       'hash': '0d23f90da10c3615a55b3b8f6624204e997630c7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 190120,
         'id': 'Q190120'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P180'],
    'id': 'Q283$55d6c18b-4b38-ebae-d201-4fa1ca78a305',
    'rank': 'normal'}],
  'P703': [{'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': '5aed5809d737aec10f4ff5eb20d35ccec83d0cb5',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 15978631,
       'id': 'Q15978631'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$2BEB150F-CB2C-410F-988F-CEAB6A6ECDFF',
    'rank': 'normal',
    'references': [{'hash': '2bd4ed4f178d58e5f6b319bc092c0f93b83d7e62',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'f727e7647f55d9d226af203a6dd3f57f4bf03d9d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 28601559,
           'id': 'Q28601559'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']},
     {'hash': 'de20aa30912d25d58d3bbd5839553f1188f8133e',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '774d246a68e5544ecdab53e79f38489d74fd8d57',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 29614690,
           'id': 'Q29614690'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': 'c0914376ff3ad1d7388a317c44d39bfce654d1c6',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 1066106,
       'id': 'Q1066106'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$DF379D6A-9CEA-4D7C-B62C-6F4CBE54DB55',
    'rank': 'normal',
    'references': [{'hash': '770b96d6464fe4b1dc36925880d93486cbce9ebe',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '1cbf6f5e728ca67d82d0c2da6a1d0a2e79c71440',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 55969995,
           'id': 'Q55969995'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': '1f7f30ce155707aa67aaa2aa928d91f2f1ac35ce',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2709988,
       'id': 'Q2709988'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$08EF29A0-DE22-40F0-AAC5-EF0B935794D8',
    'rank': 'normal',
    'references': [{'hash': '50f81bb750235d8bf035decaa800c47482371e9b',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '001c3e4816f6856ba3622be845a81b078ff7f70d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 104936154,
           'id': 'Q104936154'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': 'dcc58a14ec6a0b363583518db55fe12ca147c3e9',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2709193,
       'id': 'Q2709193'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$AAAD8139-79EA-41D8-A5E5-9D3845A9F4E3',
    'rank': 'normal',
    'references': [{'hash': 'f7eb5e2893f2b6ca80d2e357a2ba8695bace43b5',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'fb0fc3c1576616d351012a657f14e9ab1b29d934',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 104851780,
           'id': 'Q104851780'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': '559fa2f07446e8d8793f3cd05400f5f5e2430307',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 11340926,
       'id': 'Q11340926'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$04B942BE-9E0E-40A5-AAC5-B327125D21FC',
    'rank': 'normal',
    'references': [{'hash': 'a4f0799fc14c685be2f717f849a0c66172cb7663',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '17c968afc7547a393ddc1d5fbe338342daa0142d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 104253620,
           'id': 'Q104253620'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P703',
     'hash': '4076857214609f4474443be6957efae4d487002e',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 80531,
       'id': 'Q80531'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$BAE1A490-78AE-4D7B-A824-8C1F94A58DB9',
    'rank': 'normal',
    'references': [{'hash': '76a75260d861a682d2faa2d0d1c6bbc0ab2de8f9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'ffecbf97ad8860e14cce3e55fdb42dbf63589ed7',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 41961243,
           'id': 'Q41961243'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P3569': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3569',
     'hash': '5a85f2a04159b3a34228cc1d3423077dbd666225',
     'datavalue': {'value': 'natuurkunde-scheikunde-en-sterrenkunde/water',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$FDDBB4E8-3AFD-41F6-8B97-9B47E59CF421',
    'rank': 'normal'}],
  'P3827': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3827',
     'hash': '1bfba33fcb703835899e2094c17ef358d9fa95ff',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$E37B0707-D49B-4007-BE6C-D6CF536414B2',
    'rank': 'normal'}],
  'P3612': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3612',
     'hash': '7d4a63e29790d1b46f59735f6dfda5a0bed0d349',
     'datavalue': {'value': 'sujet/eau', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$03680AB4-C60A-432F-B570-B36845C00FE1',
    'rank': 'normal'}],
  'P1552': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '18726a596b025f1fd2d1367f344e19c0cf416284',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 128709,
       'id': 'Q128709'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$61b97ea5-47bf-13b1-3c62-1ea3ebe8417b',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '91b135c5fb594d794ecb9474459c36b5710465e1',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 30007162,
       'id': 'Q30007162'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$d201d876-4278-3f39-9194-aeb4cdc99fba',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '75305545668a3e5628401eb76041080cfc7da173',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 30100868,
       'id': 'Q30100868'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$289f0525-4448-8c09-80f3-1e797f65e4cc',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': 'bdf6b5c3cf736383693e41ed6215bb5a401061c1',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 179388,
       'id': 'Q179388'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P1683': [{'snaktype': 'value',
       'property': 'P1683',
       'hash': '5b0e68a417350ecb14f553004184b4e743d0273f',
       'datavalue': {'value': {'text': 'high', 'language': 'en'},
        'type': 'monolingualtext'},
       'datatype': 'monolingualtext'}]},
    'qualifiers-order': ['P1683'],
    'id': 'Q283$bd9dbd7a-4be3-f231-b440-28821ba15ed9',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '25f23f50fd41dd3372805eea2bc7060009f6c0d0',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 182677,
       'id': 'Q182677'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$4dc9046b-4f0a-aed6-4227-152cb81764c4',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '45e16b57a17606de52df452a621adb17c23beb69',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 1075,
       'id': 'Q1075'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$ab8ed8bd-4b93-3544-abed-48569edcbcf1',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': '120f33310128e8d76ea24e7d9ad5c2afba3acd24',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 180600,
       'id': 'Q180600'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$cca3a4f0-439e-68f4-c5e8-e389bfe31539',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1552',
     'hash': 'da423b96cc074b63d0c6660c05fcf01a94adc439',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 3236003,
       'id': 'Q3236003'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$ec841445-4100-e6eb-e28d-b234d021422e',
    'rank': 'normal'}],
  'P462': [{'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '8fbc18030a9e150025f7f1fcf8c4877828c82c5b',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 5960345,
       'id': 'Q5960345'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1478': [{'snaktype': 'value',
       'property': 'P1478',
       'hash': '87b8ad3e6fa4290b44d9acc277f2ff0ad1e969f4',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5358074,
         'id': 'Q5358074'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P18': [{'snaktype': 'value',
       'property': 'P18',
       'hash': '3440724acc7ee1eb1a2bf19bfd831b531ffc2ee6',
       'datavalue': {'value': 'SwimmingPoolAndBucket.jpg', 'type': 'string'},
       'datatype': 'commonsMedia'}],
     'P1479': [{'snaktype': 'value',
       'property': 'P1479',
       'hash': '514a6a6fc406c4b217fd9b82d65604690caac694',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 210028,
         'id': 'Q210028'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805', 'P1478', 'P18', 'P1479'],
    'id': 'Q283$4ee70597-48ad-42fc-48c8-0943dfdca95e',
    'rank': 'normal',
    'references': [{'hash': '2289280919e10a26f9c65287fdbb6d80e7bbd23a',
      'snaks': {'P212': [{'snaktype': 'value',
         'property': 'P212',
         'hash': '09e02a61521a8844ad247888c68c8a3a1486a0b0',
         'datavalue': {'value': '978-1-55791-842-0', 'type': 'string'},
         'datatype': 'external-id'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': '0974a5aaa3d7f509a6a173f11f43ab189cd81533',
         'datavalue': {'value': '10', 'type': 'string'},
         'datatype': 'string'}]},
      'snaks-order': ['P212', 'P304']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '3851a14a1908cfb67bacdc7a7d9338787bb7d701',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 3133,
       'id': 'Q3133'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1478': [{'snaktype': 'value',
       'property': 'P1478',
       'hash': 'a0b8ebb29fa1917b4d2aa49f6e1775e8e1f764c5',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 37868,
         'id': 'Q37868'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805', 'P1478'],
    'id': 'Q283$90519505-4ec9-7b3d-3048-006f9908785d',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '9276ddb484db517f00d9ecd4da873a6cf1c87551',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 17244894,
       'id': 'Q17244894'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': 'bf00fa27ce6eedf8d47c6ddc71cd42248f350c91',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 100649,
         'id': 'Q100649'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'},
      {'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1478': [{'snaktype': 'value',
       'property': 'P1478',
       'hash': '5f1d79fade8c39892c97d4a71426419c5fa12d3d',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 187607,
         'id': 'Q187607'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P18': [{'snaktype': 'value',
       'property': 'P18',
       'hash': '3f801f4422b503b482485266bc034fc5be0f9713',
       'datavalue': {'value': 'LeonSinksBlackWtrMay05.jpg', 'type': 'string'},
       'datatype': 'commonsMedia'}]},
    'qualifiers-order': ['P805', 'P1478', 'P18'],
    'id': 'Q283$27181a8b-4174-fe4e-a7b0-70e8a242e3a4',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '8fbc18030a9e150025f7f1fcf8c4877828c82c5b',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 5960345,
       'id': 'Q5960345'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1478': [{'snaktype': 'value',
       'property': 'P1478',
       'hash': '4c0fa6a076a342122bf2bb5521d7c004f8f2fe29',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 869697,
         'id': 'Q869697'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P18': [{'snaktype': 'value',
       'property': 'P18',
       'hash': '774d62c29c4e735b4077e734d9535bb6d7c88fe1',
       'datavalue': {'value': 'Rock flour from glacial melt enters headwaters at Lake Louise.jpg',
        'type': 'string'},
       'datatype': 'commonsMedia'},
      {'snaktype': 'value',
       'property': 'P18',
       'hash': '4018f5e23cdb447640fe925d28b2323a580d9d12',
       'datavalue': {'value': 'Lake Pukaki NZ 2005.jpg', 'type': 'string'},
       'datatype': 'commonsMedia'}]},
    'qualifiers-order': ['P805', 'P1478', 'P18'],
    'id': 'Q283$404f7411-46d2-ab95-a3a9-85c80470f586',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': 'd764eafaefe32ab8774f38f77cfcc0404ddd7243',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 3142,
       'id': 'Q3142'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': 'efc8e4c068d0bf37b6df80c2973ae4468c838a2a',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 1211248,
         'id': 'Q1211248'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1478': [{'snaktype': 'value',
       'property': 'P1478',
       'hash': 'b9f91a3fd7431023cd15b16c147a58493cbc4114',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 120490,
         'id': 'Q120490'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P18': [{'snaktype': 'value',
       'property': 'P18',
       'hash': 'cf8cbe52b8c1a8f3123e927a7bab54750dd45e18',
       'datavalue': {'value': 'La-Jolla-Red-Tide.780.jpg', 'type': 'string'},
       'datatype': 'commonsMedia'}]},
    'qualifiers-order': ['P805', 'P1478', 'P18'],
    'id': 'Q283$e97af7c8-44aa-2d70-06ef-4e5f23004474',
    'rank': 'deprecated'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '31366fb84d8fcc9ab87ba1434ee8f64545021685',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 11567495,
       'id': 'Q11567495'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '96557c3611ca9290f55381f35009b1503c910591',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 5148636,
         'id': 'Q5148636'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P642': [{'snaktype': 'value',
       'property': 'P642',
       'hash': 'd04423c75ca3bbf5d132977a3fd0a2c88878866e',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 29053744,
         'id': 'Q29053744'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805', 'P642'],
    'id': 'Q283$dee3a5ce-4169-c78b-e459-2e22b2706dff',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '11d8c0039fe0f4f19166b4aba9866baa4b03200f',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 23444,
       'id': 'Q23444'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P518': [{'snaktype': 'value',
       'property': 'P518',
       'hash': 'baba66002e6619d3003f9f25e078f8a6a1cf6da3',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 23392,
         'id': 'Q23392'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '81a419c3b3b6c50184afec89b98e9d91bbd22155',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11438,
         'id': 'Q11438'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P518', 'P515'],
    'id': 'Q283$0c55670e-456c-7f55-19da-9137477649de',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '31366fb84d8fcc9ab87ba1434ee8f64545021685',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 11567495,
       'id': 'Q11567495'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515'],
    'id': 'Q283$c36f8ea6-42bf-a3a5-e566-a050abfca6ba',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P462',
     'hash': '6e1d88b7147cb9a808448d06ab0657746ae28993',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 5148636,
       'id': 'Q5148636'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$f288d4a5-4a8d-4a69-e0d0-124e2d44b5d4',
    'rank': 'normal'}],
  'P2924': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2924',
     'hash': '1dd5c84f1da4a7fd2c2989a7d1a91a84a1ef3b61',
     'datavalue': {'value': '1921053', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$4E1A301E-3239-486D-B2AB-6B9AFAF0317C',
    'rank': 'normal'}],
  'P3070': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3070',
     'hash': 'fdffd7f4c486513d4e969c7e37f3ab44011461df',
     'datavalue': {'value': {'amount': '+1.7911',
       'unit': 'http://www.wikidata.org/entity/Q26158194'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '7bcd265d3038ed8947eec6f388964db489c9c92b',
       'datavalue': {'value': {'amount': '+0.01',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': '1fdc02e5e3c016cb7e26b637585ec0edfc2ade9d',
       'datavalue': {'value': {'amount': '+1',
         'unit': 'http://www.wikidata.org/entity/Q177974'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P2077', 'P515'],
    'id': 'Q283$602f43d1-448b-36c1-8a71-4144f2ac61ca',
    'rank': 'normal',
    'references': [{'hash': 'fa278ebfc458360e5aed63d5058cca83c46134f1',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'e4f6d9441d0600513c4533c672b5ab472dc73694',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 328,
           'id': 'Q328'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3070',
     'hash': '587055af8db71f7b3ecd6ce08dea591d0dce6f67',
     'datavalue': {'value': {'amount': '+1.0016',
       'unit': 'http://www.wikidata.org/entity/Q26158194'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': '1fdc02e5e3c016cb7e26b637585ec0edfc2ade9d',
       'datavalue': {'value': {'amount': '+1',
         'unit': 'http://www.wikidata.org/entity/Q177974'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P2077', 'P515'],
    'id': 'Q283$36cd9f84-4de2-0dec-eb1f-19a838fb0f13',
    'rank': 'normal',
    'references': [{'hash': 'fa278ebfc458360e5aed63d5058cca83c46134f1',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'e4f6d9441d0600513c4533c672b5ab472dc73694',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 328,
           'id': 'Q328'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3070',
     'hash': '177cd8f2954c673f2bca6a069a043fc09e187f52',
     'datavalue': {'value': {'amount': '+0.89002',
       'unit': 'http://www.wikidata.org/entity/Q26158194'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'ab79e06e9ed6ffe2e486fdb46c0b31c2fffb174c',
       'datavalue': {'value': {'amount': '+25',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2077': [{'snaktype': 'value',
       'property': 'P2077',
       'hash': '1fdc02e5e3c016cb7e26b637585ec0edfc2ade9d',
       'datavalue': {'value': {'amount': '+1',
         'unit': 'http://www.wikidata.org/entity/Q177974'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P2077', 'P515'],
    'id': 'Q283$fd80b893-4cb5-aaba-966c-e839ff51bfd2',
    'rank': 'normal',
    'references': [{'hash': 'fa278ebfc458360e5aed63d5058cca83c46134f1',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'e4f6d9441d0600513c4533c672b5ab472dc73694',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 328,
           'id': 'Q328'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P2118': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2118',
     'hash': 'cb1ceb176f5d12974a18397a096ac84356689f03',
     'datavalue': {'value': {'amount': '+0.01012',
       'unit': 'http://www.wikidata.org/entity/Q26162545'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2076', 'P515'],
    'id': 'Q283$060693bb-4299-489e-b4f2-1c0ca4ecff1c',
    'rank': 'preferred',
    'references': [{'hash': '288ab581e7d2d02995a26dfa8b091d96e78457fc',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '6a164248fc96bfa583bbb495cb63ae6401ec203c',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 206855,
           'id': 'Q206855'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2118',
     'hash': '3df0e76d873902e616adbd0ee7e1f4456ea60c8a',
     'datavalue': {'value': {'amount': '+0.000000556',
       'unit': 'http://www.wikidata.org/entity/Q3332099'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '4d21d6b57883257e2b7fb5d733eb2f7cb386fc60',
       'datavalue': {'value': {'amount': '+50',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076'],
    'id': 'Q283$836d35ff-4cb2-a075-d89f-49ccc3443ccf',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P2068': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2068',
     'hash': 'd62e7ded1a33cb19781980b0e54e259880e39b66',
     'datavalue': {'value': {'amount': '+0.56',
       'unit': 'http://www.wikidata.org/entity/Q1463969'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'id': 'Q283$6124e50d-49eb-3907-c67a-373994288929',
    'rank': 'normal',
    'references': [{'hash': '288ab581e7d2d02995a26dfa8b091d96e78457fc',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '6a164248fc96bfa583bbb495cb63ae6401ec203c',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 206855,
           'id': 'Q206855'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P4147': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4147',
     'hash': '056d34a0e797268825e369739559ac39da687df8',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 849881,
       'id': 'Q849881'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$18fef3ff-40db-5a24-eb07-4a3282422431',
    'rank': 'normal'}],
  'P4149': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4149',
     'hash': 'f4e2c95251a63d484f207f559bbc8e142facb3a6',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 199877,
       'id': 'Q199877'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$1635925c-4dc3-fc1a-92cc-20e59e8b73fa',
    'rank': 'normal'}],
  'P3636': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3636',
     'hash': 'e089f769d8097b76d99f4eb1be178cb602484e3b',
     'datavalue': {'value': 'HOH', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$B70BAD0E-B75F-4349-A14C-028A972D9B3D',
    'rank': 'normal'}],
  'P1225': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1225',
     'hash': '350e2552896035ad3db2a7db37b3a884b9ce4bb9',
     'datavalue': {'value': '10644880', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$0385481E-0A74-461C-94E0-E0CD4C9F6026',
    'rank': 'normal'}],
  'P1088': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1088',
     'hash': 'a9c35428b27b94b3a5f04ae4ec0d2993755c5c65',
     'datavalue': {'value': {'amount': '+1.5', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P518': [{'snaktype': 'value',
       'property': 'P518',
       'hash': '7732d78e3c5ba4832e80b40ece2c6c9626abab09',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 29115074,
         'id': 'Q29115074'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P518'],
    'id': 'Q283$40932d88-4272-1956-1fba-5098f8c5994b',
    'rank': 'normal',
    'references': [{'hash': '9f50a59619b0c2fb4445c9c2b13a4d5e83402278',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '5637eb5026529deefce278a98e306b5534722045',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 24457508,
           'id': 'Q24457508'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P2581': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2581',
     'hash': 'a663ce954aad52b15086b744a150540371fe0915',
     'datavalue': {'value': '00042379n', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$F51FB01C-3FF7-4673-A5CD-285E4DE3F61B',
    'rank': 'normal',
    'references': [{'hash': '248ac337a217a5f5eed7139a82a4e60931611af0',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '25b816aab41db18565946259c950aed6de05dd1e',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 4837690,
           'id': 'Q4837690'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P4842': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4842',
     'hash': '89de6950cf24bc5128af2fecb828bb7e4c3151bb',
     'datavalue': {'value': '718', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$ac5cc259-419f-da71-4ebc-6e28dfdaa105',
    'rank': 'normal',
    'references': [{'hash': 'f6fb59aba1b405c0ee8348ff786a50ef56b7e810',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'a8274367964a9bd9dfb889cd15418e992840a767',
         'datavalue': {'value': 'https://www.ashrae.org/technical-resources/standards-and-guidelines/ashrae-refrigerant-designations',
          'type': 'string'},
         'datatype': 'url'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '5981c930e171971b440e86016416893b7185c4fe',
         'datavalue': {'value': {'time': '+2018-02-15T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P813']}]}],
  'P3219': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3219',
     'hash': '7f5f8f7217cd9ae2383df5234a39bfd11e6d42da',
     'datavalue': {'value': 'eau-notions-de-base', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$545B95C2-A07C-43C0-91FE-FCC8FC3A7B73',
    'rank': 'normal'}],
  'P4964': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4964',
     'hash': '637d7e26ae797f0fec35c16c933b47dd794ed54c',
     'datavalue': {'value': 'splash10-014i-9000000000-f7ee14225b4277f6218c',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$9FB2BA95-C39A-45B0-9A83-C97A20A2B48C',
    'rank': 'normal'}],
  'P1109': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': 'a69ceb72f1d37951f09f28bf586ac143465142fc',
     'datavalue': {'value': {'amount': '+1.39450', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '15dbf1e2325ab68c1f03018f6fd6bb04537afddd',
       'datavalue': {'value': {'amount': '+0',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '81752d38ca29459051411e98597f5ec91eec7c13',
       'datavalue': {'value': {'amount': '+226.5',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$c32e75d2-4a5b-ff8d-5d98-dfac28f90662',
    'rank': 'normal',
    'references': [{'hash': '060d0e603edc6e65c0a81228808136a77435537f',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '9efbcee7ed733e8f56464a04be053bcf9ee7dfde',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 2193337,
           'id': 'Q2193337'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': '1096743c4f89e6c569c03b97a75acd82d94f78ca',
     'datavalue': {'value': {'amount': '+1.33432', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '15dbf1e2325ab68c1f03018f6fd6bb04537afddd',
       'datavalue': {'value': {'amount': '+0',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '96306da5185e970ce18e2addbd4cac6d9e5c075d',
       'datavalue': {'value': {'amount': '+589.0',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$bb9697ef-4bb7-f87e-2d93-b6389b96385f',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': '0a84c6cff767a6e5baa83d36542ed54f80adf402',
     'datavalue': {'value': {'amount': '+1.32612', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '15dbf1e2325ab68c1f03018f6fd6bb04537afddd',
       'datavalue': {'value': {'amount': '+0',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '0a61bd6163d3fc24816527fa79b54bd5c183ff6e',
       'datavalue': {'value': {'amount': '+1013.98',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$ff59de17-47df-e2dc-bc4a-a47501a47767',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': '0a70760298db97130a6260b01e091cb80ae24107',
     'datavalue': {'value': {'amount': '+1.39336', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '81752d38ca29459051411e98597f5ec91eec7c13',
       'datavalue': {'value': {'amount': '+226.5',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$ed2547cf-4f79-cc40-a217-45f4fb329222',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': 'b8f85964b596ae7bf9c370b650defb396d9f3be1',
     'datavalue': {'value': {'amount': '+1.33298', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '96306da5185e970ce18e2addbd4cac6d9e5c075d',
       'datavalue': {'value': {'amount': '+589.0',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$8cd4b34d-46fb-f1af-8931-a98766c212b6',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1109',
     'hash': 'd9ec56e76fc880f1263fcc99e430dffeb5fd59fd',
     'datavalue': {'value': {'amount': '+1.32524', 'unit': '1'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': '41e8c3aff8a414657b5f519dde758c618378ccf8',
       'datavalue': {'value': {'amount': '+20',
         'unit': 'http://www.wikidata.org/entity/Q25267'},
        'type': 'quantity'},
       'datatype': 'quantity'}],
     'P2808': [{'snaktype': 'value',
       'property': 'P2808',
       'hash': '0a61bd6163d3fc24816527fa79b54bd5c183ff6e',
       'datavalue': {'value': {'amount': '+1013.98',
         'unit': 'http://www.wikidata.org/entity/Q178674'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076', 'P2808'],
    'id': 'Q283$1a9608d9-4c40-e924-b532-2c474c309735',
    'rank': 'normal',
    'references': [{'hash': 'd4bd87b862b12d99d26e86472d44f26858dee639',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P143']}]}],
  'P1821': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1821',
     'hash': '80843bfedc3821d85cd8204c692c3b098d90c2c7',
     'datavalue': {'value': 'waters', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$8DB0521A-F4D6-42D6-8997-C477A79F99F1',
    'rank': 'normal'}],
  'P5008': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5008',
     'hash': 'd8037e40c3d12c404489a97a78937213939ff1cd',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 5460604,
       'id': 'Q5460604'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$31269FA1-BA04-4992-9372-D73734AFFFAE',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P5008',
     'hash': '136e3fbe19158e73e4bfebf3f2d98a9df8638b7e',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 6173448,
       'id': 'Q6173448'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P585': [{'snaktype': 'value',
       'property': 'P585',
       'hash': '7661f66dd5b82a1ea92515ddb16c09ce3088edea',
       'datavalue': {'value': {'time': '+2022-10-31T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 11,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P585'],
    'id': 'Q283$9FF910B1-E919-4BE1-97AB-0C29B9E8DCC2',
    'rank': 'normal'}],
  'P5019': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5019',
     'hash': '5c9a24f481603840c58ee56104a98e493f01f40f',
     'datavalue': {'value': 'wasser', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$36cf76bc-48b5-fb45-f5fe-8c19b5a00ea5',
    'rank': 'normal'}],
  'P5076': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5076',
     'hash': '30af9fa14f7461897537846426c26d47538793fe',
     'datavalue': {'value': 'RD-23-00264', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$d2761785-4a57-4e63-a30e-21c1148b6814',
    'rank': 'normal'}],
  'P4342': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4342',
     'hash': '72c0ae5bd77edb219fd2b7447c347ed8658bafc0',
     'datavalue': {'value': 'vann', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P4390': [{'snaktype': 'value',
       'property': 'P4390',
       'hash': '1a4df62914ea9afca349bd5fb5d8efd5832d83fa',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 39893449,
         'id': 'Q39893449'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P4390'],
    'id': 'Q283$6FC5F4E3-EEE9-46EF-ACA9-4FF0E56CFFE0',
    'rank': 'normal'}],
  'P5082': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5082',
     'hash': '3b985888b27a1e8e2de9c1c75c6d4e815fde6915',
     'datavalue': {'value': 'vann', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P4390': [{'snaktype': 'value',
       'property': 'P4390',
       'hash': '473b30fcea21b0c9eb539a9a7ac74b1f8b87c634',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 39893967,
         'id': 'Q39893967'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P2241': [{'snaktype': 'value',
       'property': 'P2241',
       'hash': '74bd46d0bbe97d05804856f1f73b6a7480c68cec',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 45403344,
         'id': 'Q45403344'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P4390', 'P2241'],
    'id': 'Q283$4FFA31E8-20AE-464E-9446-914EF02F85CE',
    'rank': 'deprecated'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P5082',
     'hash': 'b7d7e43d6117e6506606cea171207b4997654c10',
     'datavalue': {'value': 'vann_-_ernæring', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$21fbe0c5-f661-470e-b0ac-2d93b2594a46',
    'rank': 'normal'}],
  'P5125': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5125',
     'hash': '78338f868cb8f490673b30dca6730063ebfade61',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 7112809,
       'id': 'Q7112809'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$4B5516A9-9349-4B5D-BA4A-A255464AFCA8',
    'rank': 'normal'}],
  'P4952': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4952',
     'hash': '0bb3a67aabb0759199ef639aa6f9cd7515dd3c9e',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2005334,
       'id': 'Q2005334'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P5040': [{'snaktype': 'novalue',
       'property': 'P5040',
       'hash': 'ad2f8a20e03fdb2ae4880ee609fddbc61ab56708',
       'datatype': 'wikibase-item'}],
     'P1033': [{'snaktype': 'novalue',
       'property': 'P1033',
       'hash': '15cb1dfefd15911ebbd22ca13ab5dc22a7dda893',
       'datatype': 'wikibase-item'}],
     'P5041': [{'snaktype': 'novalue',
       'property': 'P5041',
       'hash': '82f87806610c6a908539c4af3c90b99f5c9dcee6',
       'datatype': 'wikibase-item'}],
     'P5042': [{'snaktype': 'novalue',
       'property': 'P5042',
       'hash': '796b829ece3553fd774049e1c223a69c45bbd647',
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P5040', 'P1033', 'P5041', 'P5042'],
    'id': 'Q283$f5af2153-445e-64fb-3edd-ffc1d15c15eb',
    'rank': 'normal',
    'references': [{'hash': 'e70536d9bf1bccbef358ea1483cd9d532a2c413a',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '28f9c5d55df26c63c8af7a5a22931fd8ca1b04f7',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 15811170,
           'id': 'Q15811170'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P679': [{'snaktype': 'value',
         'property': 'P679',
         'hash': '57b6a6a152cc85b6042ac1de69a44aabe7a857a7',
         'datavalue': {'value': '1140', 'type': 'string'},
         'datatype': 'external-id'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '7361878b4f8485f35d1b11affa44fe6fecbe1383',
         'datavalue': {'value': {'time': '+2018-05-05T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '677ad16e183e4954812c28ab2853d4e25928f500',
         'datavalue': {'value': {'text': 'Water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P407': [{'snaktype': 'value',
         'property': 'P407',
         'hash': 'daf1c4fcb58181b02dff9cc89deb084004ddae4b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 1860,
           'id': 'Q1860'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248', 'P679', 'P813', 'P1476', 'P407']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4952',
     'hash': '76db929caf8933af28992474e93dcb762d212eb3',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 51139288,
       'id': 'Q51139288'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P993': [{'snaktype': 'value',
       'property': 'P993',
       'hash': '5d645dfae7fddcaef6788c7cd388a4a2336877d5',
       'datavalue': {'value': '0', 'type': 'string'},
       'datatype': 'string'}],
     'P994': [{'snaktype': 'value',
       'property': 'P994',
       'hash': 'd2e740e1474d95551d7ca3c5bac1ce6062609e29',
       'datavalue': {'value': '0', 'type': 'string'},
       'datatype': 'string'}],
     'P995': [{'snaktype': 'value',
       'property': 'P995',
       'hash': '17ca29a6e422e3137dd2b8beaab776f1fe6bf919',
       'datavalue': {'value': '0', 'type': 'string'},
       'datatype': 'string'}],
     'P877': [{'snaktype': 'novalue',
       'property': 'P877',
       'hash': 'f245d3d0fa7b15025627893cad3780ca6628c451',
       'datatype': 'string'}]},
    'qualifiers-order': ['P993', 'P994', 'P995', 'P877'],
    'id': 'Q283$fa9f188d-456e-492e-30a1-b3d7cbd3fcf9',
    'rank': 'normal',
    'references': [{'hash': 'cab53e2e2f2f7c4ad83f8a3e661ca6437922a6b7',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '271829c6cd0880022f8e5fbaf6d35246c86d6ab2',
         'datavalue': {'value': 'https://www.sigmaaldrich.com/MSDS/MSDS/DisplayMSDSPage.do?country=US&language=en&productNumber=12156&brand=SIAL&PageToGoToURL=https%3A%2F%2Fwww.sigmaaldrich.com%2Fcatalog%2Fproduct%2Fsial%2F12156%3Flang%3Dpl',
          'type': 'string'},
         'datatype': 'url'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '7361878b4f8485f35d1b11affa44fe6fecbe1383',
         'datavalue': {'value': {'time': '+2018-05-05T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P585': [{'snaktype': 'value',
         'property': 'P585',
         'hash': 'bc82c9ca7ca072016ffaf18cb289de5ea1c26cc6',
         'datavalue': {'value': {'time': '+2014-02-24T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P123': [{'snaktype': 'value',
         'property': 'P123',
         'hash': '61506250f9b83340ee0a514e6635a5187fe05901',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 680841,
           'id': 'Q680841'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P854', 'P813', 'P585', 'P123']}]}],
  'P1578': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1578',
     'hash': 'a1c114371125db0de93becb7af4b64ec865583d0',
     'datavalue': {'value': '117', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$190A74F9-AD23-4D96-9985-23A1EB6FC932',
    'rank': 'normal'}],
  'P5198': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5198',
     'hash': '323d3804fc08a0269adfbc9025d130102a985911',
     'datavalue': {'value': '294943765', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$72580DCE-58AE-4E24-9646-2A46A5112A89',
    'rank': 'normal'}],
  'P244': [{'mainsnak': {'snaktype': 'value',
     'property': 'P244',
     'hash': 'e3a70b2d1539b65aca7ad7c244c7408f40c0b131',
     'datavalue': {'value': 'sh85145447', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$922BBF5F-DC8B-4705-A242-496CDC7776A7',
    'rank': 'normal'}],
  'P268': [{'mainsnak': {'snaktype': 'value',
     'property': 'P268',
     'hash': '7914df71a5d1f0f14fefed131c39457a7bd23a9f',
     'datavalue': {'value': '11931913j', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$F34646CA-D9CF-48D0-A5B0-0B8D5B63C387',
    'rank': 'normal',
    'references': [{'hash': 'cc8aba8a17686957c6dff9ff7cf7f68563ee8043',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'f30cbd35620c4ea6d0633aaf0210a8916130469b',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 8447,
           'id': 'Q8447'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': 'e8a8eea51c133c7aab693afc81f4a512177b7716',
         'datavalue': {'value': 'https://fr.wikipedia.org/w/index.php?title=Eau&oldid=150668321',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P143', 'P4656']}]}],
  'P5429': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5429',
     'hash': '337e93f005d8c640f8bf76ddd7bd7b93c01cb221',
     'datavalue': {'value': 'mediatopic/20000437', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$2D3F300D-FFFE-4F43-8B6A-328BFBDFDF1F',
    'rank': 'normal'}],
  'P2085': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2085',
     'hash': '67032ea1005de9953b96fa6a6a70186c8e997146',
     'datavalue': {'value': 'J43.587B', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$B4E1E7FA-6E00-4E89-BA1E-323E0D1BE341',
    'rank': 'normal',
    'references': [{'hash': '98fdead1d07592bc9d9d16b8f27f0cba65f51432',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': 'c6f1777471211df31724ac60175786f3872c83e9',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 177837,
           'id': 'Q177837'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': '5a78638e041b76c00cd55e2ffa45c31140c9316e',
         'datavalue': {'value': 'https://ja.wikipedia.org/w/index.php?title=水&oldid=69565655',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P143', 'P4656']}]}],
  'P3222': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3222',
     'hash': 'd08665b2cfef5a359e9c0e202e9e1291af02ee6e',
     'datavalue': {'value': 'vatten', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$37756EA8-9DE9-4984-A003-1C79FB43FA45',
    'rank': 'normal'}],
  'P3365': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3365',
     'hash': '26c8b433c623865b4cb85553b18e199565cb3b7a',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810'],
    'id': 'Q283$2FCD2D83-FD5B-4313-8547-49F9F1976AD6',
    'rank': 'normal',
    'references': [{'hash': '1c386bf1b8d38c0deef5dd6aeb4d2d0ab029daa8',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '5a343e7e758a4282a01316d3e959b6e653b767fc',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 11920,
           'id': 'Q11920'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': 'a07b2a5776052353f3db7cd0b35bb2116497376f',
         'datavalue': {'value': 'https://it.wikipedia.org/w/index.php?title=Acqua&oldid=99612507',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P143', 'P4656']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3365',
     'hash': 'f1e5dc1933d5be1e08990219b94969311122f64f',
     'datavalue': {'value': 'acqua_(Universo-del-Corpo)', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': 'ccfd2a18287aa625cd3cfe25c01f5b349aec337b',
       'datavalue': {'value': 'Gianni Carchia, Guido Barone, Pietro Guerrieri, Valerio Leoni, Baldassare Messina',
        'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '3939fc1c20a6fbb11c42ca3f7ca5c15131e9d9b9',
       'datavalue': {'value': {'time': '+1999-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$7efdf29e-4bef-ad1f-b7f5-93af829eae41',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3365',
     'hash': '906cd7f13d0f6a32bbba4f8ae868424cd36d28ab',
     'datavalue': {'value': 'acqua_(Enciclopedia-delle-scienze-sociali)',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': 'b6a0e823597917e66b4e07f48af5e721b2d3acc8',
       'datavalue': {'value': 'André Guillerme', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '5697f06f3623ef2804f1bfe904dbe6e0f4519e4c',
       'datavalue': {'value': {'time': '+1997-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$cd9ac7b5-41c5-9487-f326-5ada0fe111ed',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3365',
     'hash': 'e16ac37c9088328c81fd8db3403501eb20798289',
     'datavalue': {'value': 'acqua_(Enciclopedia-del-Novecento)',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': 'e8a18dfcb1ca4383b8fb85e4c9a63a942bf06f2c',
       'datavalue': {'value': 'Ven Te Chow', 'type': 'string'},
       'datatype': 'string'},
      {'snaktype': 'value',
       'property': 'P2093',
       'hash': 'c8c4e2012699324a90264a09f855c12c3a42c445',
       'datavalue': {'value': 'John W. Boylan e Kurt Kramer',
        'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'cc61cbabb324c32cb781b90165da20cc49d3a794',
       'datavalue': {'value': {'time': '+1975-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$bbb9b2c9-447f-9a61-38d6-a252bfeb40b8',
    'rank': 'normal'}],
  'P5930': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5930',
     'hash': 'aa26f441e84d7d8c361c6da891cec862c165f82a',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$733B3BC9-AA65-45DA-BF7D-E0FCEF76FF8D',
    'rank': 'normal'}],
  'P2240': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2240',
     'hash': '541a855b06314e8e86ff925241238d69e0dcaab9',
     'datavalue': {'value': {'amount': '+90',
       'unit': 'http://www.wikidata.org/entity/Q21061369'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2352': [{'snaktype': 'value',
       'property': 'P2352',
       'hash': '7d820d16640ba8786ca6f44ab45dfa173f4d523b',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 36396,
         'id': 'Q36396'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P1480': [{'snaktype': 'value',
       'property': 'P1480',
       'hash': '36058c0c23600dbc7baa3db0e448643f76820dc9',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 54418095,
         'id': 'Q54418095'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P636': [{'snaktype': 'value',
       'property': 'P636',
       'hash': '37d366e5081609fb2cbe47bcf360743ad54e529e',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 285166,
         'id': 'Q285166'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2352', 'P1480', 'P636'],
    'id': 'Q283$09deba21-4537-55f5-43a3-85ca6f94184e',
    'rank': 'normal',
    'references': [{'hash': '1621ffbd1e0bbc991ab2444db4ecef779b46b6a9',
      'snaks': {'P143': [{'snaktype': 'value',
         'property': 'P143',
         'hash': '6a164248fc96bfa583bbb495cb63ae6401ec203c',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 206855,
           'id': 'Q206855'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': 'd9da8941034fa00ef6112aeed1d470aa0d28f1bf',
         'datavalue': {'value': {'time': '+2018-12-10T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P143', 'P813']},
     {'hash': 'a5f37bbc6996edaf0693dd8e7c904d6869757ff4',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': '93b115906b717b7cfb27bcaa3b07a49be3da81ad',
         'datavalue': {'value': 'http://www.sciencelab.com/msds.php?msdsId=9927321',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P854']}]}],
  'P1542': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1542',
     'hash': '6edbdd938bce250ddefe6d76eeac1628b091cb8b',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 57385793,
       'id': 'Q57385793'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$AB8AF976-398B-4CDC-8DCA-BE69553B3748',
    'rank': 'normal'}],
  'P1889': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1889',
     'hash': '3ae17c4c2f9d71b6dd5630a0c6d5857cb6b08b13',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 29053744,
       'id': 'Q29053744'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$798741a2-4749-67da-91b6-3d8a66f0f841',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1889',
     'hash': 'ca0c9fac4f6a256653135c9356cd35aaf0d5a479',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2637515,
       'id': 'Q2637515'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$676dc949-4cc0-0011-e25a-ec75a9e4e587',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1889',
     'hash': '83c2837c42a3c19e8235ae7f9e12074b03383410',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 56877699,
       'id': 'Q56877699'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$80df5833-42b8-eec3-6e27-790f7439c590',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1889',
     'hash': '3e31df0ff87f0b3bad4bddaa50a5213f6fcb8fd8',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 232974,
       'id': 'Q232974'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$3451d5ac-484d-8cb1-2604-9ab7779510c3',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1889',
     'hash': 'd9686ed6e0d441bab61e2917038a3760e336bc5e',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 395845,
       'id': 'Q395845'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$D0CEC8C3-2B80-4A1D-9013-26F40763AC8F',
    'rank': 'normal'}],
  'P3071': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3071',
     'hash': 'ae489ea6a25cf01f36510206fe50c051b283f8f5',
     'datavalue': {'value': {'amount': '+69.9',
       'unit': 'http://www.wikidata.org/entity/Q20966455',
       'upperBound': '+69.95',
       'lowerBound': '+69.85'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515'],
    'id': 'Q283$8fd0f97f-4c94-8e5c-793c-2a3999eaaef8',
    'rank': 'normal',
    'references': [{'hash': 'be342e61d887f720fc1fdc0e450cc824ce3e96da',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'ac75e54609ce1a2b7708d72ee61b6e3f14069c76',
         'datavalue': {'value': 'https://chem.libretexts.org/Bookshelves/General_Chemistry/Book%3A_ChemPRIME_(Moore_et_al.)/16%3A_Entropy_and_Spontaneous_Reactions/16.06%3A_Standard_Molar_Entropies',
          'type': 'string'},
         'datatype': 'url'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '3595d6182af0f80781b371a56566ee09f880e0f1',
         'datavalue': {'value': {'time': '+2019-01-25T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P813']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3071',
     'hash': '35146759ec18d3858856a53f65e9e9d153627612',
     'datavalue': {'value': {'amount': '+188.8',
       'unit': 'http://www.wikidata.org/entity/Q20966455',
       'upperBound': '+188.85',
       'lowerBound': '+188.75'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515'],
    'id': 'Q283$838707c0-4b13-022a-998d-b3ef866e4d1f',
    'rank': 'normal',
    'references': [{'hash': 'be342e61d887f720fc1fdc0e450cc824ce3e96da',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'ac75e54609ce1a2b7708d72ee61b6e3f14069c76',
         'datavalue': {'value': 'https://chem.libretexts.org/Bookshelves/General_Chemistry/Book%3A_ChemPRIME_(Moore_et_al.)/16%3A_Entropy_and_Spontaneous_Reactions/16.06%3A_Standard_Molar_Entropies',
          'type': 'string'},
         'datatype': 'url'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '3595d6182af0f80781b371a56566ee09f880e0f1',
         'datavalue': {'value': {'time': '+2019-01-25T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P813']}]}],
  'P6573': [{'mainsnak': {'snaktype': 'value',
     'property': 'P6573',
     'hash': 'eac49da78c2dcdd8c07e2b8c5abe566058d3c87d',
     'datavalue': {'value': 'Wasser', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$E4403663-BFC8-46D9-A644-055119AEA00D',
    'rank': 'normal'}],
  'P1282': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1282',
     'hash': '200a22a4e51fafaf9369d425306e9395e4f4ee96',
     'datavalue': {'value': 'Tag:resource=water', 'type': 'string'},
     'datatype': 'string'},
    'type': 'statement',
    'id': 'Q283$c1615b6a-4815-0ce4-d96d-c56c2993aa64',
    'rank': 'normal'}],
  'P1014': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1014',
     'hash': '2dfa3d7c3b0c9468d886165b00a8893afe710bd1',
     'datavalue': {'value': '300011772', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$CA068270-6875-4D9A-A7B3-45A43AB74A2C',
    'rank': 'normal'}],
  'P443': [{'mainsnak': {'snaktype': 'value',
     'property': 'P443',
     'hash': 'a26f5c281664f6d1b0e1004674f50ddf16ced7f0',
     'datavalue': {'value': 'LL-Q7026 (cat)-Millars-aigua.wav',
      'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P407': [{'snaktype': 'value',
       'property': 'P407',
       'hash': 'ec06d5af7af836fa6b5c49e9b0ded85c8ab48b12',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 7026,
         'id': 'Q7026'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P407'],
    'id': 'Q283$0919469e-4f83-0596-a90d-296c8ab597e8',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P443',
     'hash': '14aeac53f50e29beb55983e9402e1d07a658fd5e',
     'datavalue': {'value': "LL-Q283(lem)-Mndetatsin-menyífé(l'eau).wav",
      'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P407': [{'snaktype': 'value',
       'property': 'P407',
       'hash': 'b11124d3afa4e230e2ef2e6bb2ec8ff4fc31da57',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 13479983,
         'id': 'Q13479983'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P407'],
    'id': 'Q283$0D771AC4-3E90-4DE5-9EF5-E3A69F047EEA',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P443',
     'hash': '93606b0506fa9d5051b28955c8280fad6fc91257',
     'datavalue': {'value': "LL-Q283(yas)-Mndetatsin-miimpo(l'eau).wav",
      'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P407': [{'snaktype': 'value',
       'property': 'P407',
       'hash': 'b5b3ac7fa44aabf78c487e48fc6aae404d307a46',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 36358,
         'id': 'Q36358'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P407'],
    'id': 'Q283$44A76344-1794-4FED-9829-995F4542161A',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P443',
     'hash': '32ec5055b92aa41503f9307ef9758cf2ffb5eb76',
     'datavalue': {'value': "LL-Q283(vut)-Mndetatsin-mvúm(l'eau).wav",
      'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'qualifiers': {'P407': [{'snaktype': 'value',
       'property': 'P407',
       'hash': '8507af0484f03d240a5f90e32607a9f478211bc1',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 36897,
         'id': 'Q36897'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P407'],
    'id': 'Q283$1DFD1B76-232E-4548-AD00-4D8F53D21671',
    'rank': 'normal'}],
  'P3078': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3078',
     'hash': '143cf5174557d0ae3b53f923a3bb452a35468917',
     'datavalue': {'value': {'amount': '-241818',
       'unit': 'http://www.wikidata.org/entity/Q13035094'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': '09bd8f2c5b1d016049ceed95a91df560c835c038',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11432,
         'id': 'Q11432'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515'],
    'id': 'Q283$392c0428-4c7a-c609-49f3-7bfd5ab965dd',
    'rank': 'normal',
    'references': [{'hash': '73928efd3258a9fe354b7a22cd3bc121762469a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '0f16538ee50d7ab3fe8cc051165dd33e6a7886b6',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 57307484,
           'id': 'Q57307484'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P3078',
     'hash': '98445a17c521169b0d5c61211f8fe96f2101087e',
     'datavalue': {'value': {'amount': '-285830',
       'unit': 'http://www.wikidata.org/entity/Q13035094'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P515': [{'snaktype': 'value',
       'property': 'P515',
       'hash': 'ade5cab886aa656c2e8dbb562991e7d276728fdd',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 11435,
         'id': 'Q11435'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P515'],
    'id': 'Q283$a5c88a5f-4394-6c5f-2893-693612e5a737',
    'rank': 'normal',
    'references': [{'hash': '73928efd3258a9fe354b7a22cd3bc121762469a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '0f16538ee50d7ab3fe8cc051165dd33e6a7886b6',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 57307484,
           'id': 'Q57307484'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P7033': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7033',
     'hash': '9c07b69e82a5eedd2aae982539cc2f16809b3204',
     'datavalue': {'value': 'scot/5453', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$214A1B28-B422-4985-85F5-F1CDD837D04E',
    'rank': 'normal'}],
  'P2107': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2107',
     'hash': '10981774daf11bbc37553efb649966ee15cbe8fd',
     'datavalue': {'value': {'amount': '+2200',
       'unit': 'http://www.wikidata.org/entity/Q25267'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P1107': [{'snaktype': 'value',
       'property': 'P1107',
       'hash': '337f8de124dbb477a37c547662eea9bdb98e0419',
       'datavalue': {'value': {'amount': '+0.03', 'unit': '1'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P1107'],
    'id': 'Q283$a16df372-4cff-8689-a966-01e8a15e6b0e',
    'rank': 'preferred',
    'references': [{'hash': 'b0189b7bf4db5510e473b50dc45f9acc7d31520e',
      'snaks': {'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': 'ba341547b954b0ea299ab33bf0a35f1a37a48868',
         'datavalue': {'value': 'https://en.wikipedia.org/w/index.php?title=Water_splitting&oldid=1098030647#Thermal_decomposition_of_water',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P4656']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2107',
     'hash': 'ae536f349bd0d63f07f7a6615d0c4a9fdcfad9bf',
     'datavalue': {'value': {'amount': '+3000',
       'unit': 'http://www.wikidata.org/entity/Q25267'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P1107': [{'snaktype': 'value',
       'property': 'P1107',
       'hash': '1676d05041e17d848c0e0f420da366e2ad71047f',
       'datavalue': {'value': {'amount': '+0.75',
         'unit': '1',
         'upperBound': '+1.00',
         'lowerBound': '+0.50'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P1107'],
    'id': 'Q283$3c978bf5-4eac-ec6a-0099-58b885cb3081',
    'rank': 'normal',
    'references': [{'hash': 'b0189b7bf4db5510e473b50dc45f9acc7d31520e',
      'snaks': {'P4656': [{'snaktype': 'value',
         'property': 'P4656',
         'hash': 'ba341547b954b0ea299ab33bf0a35f1a37a48868',
         'datavalue': {'value': 'https://en.wikipedia.org/w/index.php?title=Water_splitting&oldid=1098030647#Thermal_decomposition_of_water',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P4656']}]}],
  'P1343': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': '88389772f86dcd7d415ddd029f601412e5cc894a',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 602358,
       'id': 'Q602358'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '671791449b9dc5b6bb8ad81c1032c714cfd9670d',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 24367457,
         'id': 'Q24367457'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$354d429d-43f7-8e32-0637-c64d836632e0',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': '42346dfe9209b7359c1f5db829a368b38d407797',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 19180675,
       'id': 'Q19180675'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '6e0a2c5eedec40d01de835ea4979e2d131947d7f',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 24767805,
         'id': 'Q24767805'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$a82afb63-4700-7465-9f5d-145f7c09425c',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': 'ecb04d74140f2ee856c06658b03ec90a21c2edf2',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 1970746,
       'id': 'Q1970746'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '9cf2aa584a48c5eb26df9f1180b9cbf69c5c9050',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 30168413,
         'id': 'Q30168413'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$f1bc856f-4a33-63c3-bda9-930a265c4a5b',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': '75dd89e79770a3e631dbba27144940f8f1bc1773',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 1768721,
       'id': 'Q1768721'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '07a364a3619f21a3a6710f1b70669199b90190c8',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 96594022,
         'id': 'Q96594022'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$547DAA82-A9FE-4EF5-A2EC-B7F2A06752DE',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': '6bc15c6f82feca4f3b173c90209a416f99464cac',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 4086271,
       'id': 'Q4086271'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': '78a5d5a0c21aee6e64178a3b4f0b635108928073',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 25293014,
         'id': 'Q25293014'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$eaed19b7-462b-a886-b374-88744bb685a3',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': 'f71972eb5d0700f090bcd82e14bc8a44ada78e4c',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 101314624,
       'id': 'Q101314624'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2699': [{'snaktype': 'value',
       'property': 'P2699',
       'hash': '8a1d5986ff8c18b709f8c2ea627378adef2f0425',
       'datavalue': {'value': 'https://leanlogic.online/glossary/water/',
        'type': 'string'},
       'datatype': 'url'}]},
    'qualifiers-order': ['P2699'],
    'id': 'Q283$FF5E7EC3-4B18-4D14-B00A-E0B9E4B90A0B',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P1343',
     'hash': 'eda63bed5c3d7a3460033092338ab321a2374c7f',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2041543,
       'id': 'Q2041543'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P805': [{'snaktype': 'value',
       'property': 'P805',
       'hash': 'c09afcc41b2d5bab83208d5c7e2134f42f4ab8e7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 106562071,
         'id': 'Q106562071'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P805'],
    'id': 'Q283$80CD8BAF-CBA5-4611-9603-C0D9D00F833B',
    'rank': 'normal'}],
  'P31': [{'mainsnak': {'snaktype': 'value',
     'property': 'P31',
     'hash': 'e823b98d1498aa78e139709b1b02f5decd75c887',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 11173,
       'id': 'Q11173'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$3c3ba850-43a9-41d6-2230-ab81e34bf37f',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P31',
     'hash': '51e63fd978c17bc8583a393f081a5bd6ea7fbacc',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 113681859,
       'id': 'Q113681859'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$85C76573-4791-4B4E-89DE-7AD5C2220EEE',
    'rank': 'normal'}],
  'P1245': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1245',
     'hash': 'a5520a02173f3e9f9c87946071de2886ff22edd9',
     'datavalue': {'value': '4118', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$18A77249-84A8-4E27-B7C0-09E0901C2F78',
    'rank': 'normal'}],
  'P366': [{'mainsnak': {'snaktype': 'value',
     'property': 'P366',
     'hash': '81b2c46a6135567ce1849b999a7b2fa68f98c471',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 3535009,
       'id': 'Q3535009'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$91169563-438e-8a40-db76-80788565041c',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P366',
     'hash': 'c9a380d735814756b787afbefbe78e14f3bb9bc3',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 191667,
       'id': 'Q191667'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$96AE78DF-2784-4853-BD78-86F8D06D7A9B',
    'rank': 'normal'}],
  'P672': [{'mainsnak': {'snaktype': 'value',
     'property': 'P672',
     'hash': '38a431ddc6d4205bb3cd8f47e9a5db828c77fadf',
     'datavalue': {'value': 'D01.045.250.875', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6d751c27-4f3d-9836-9066-9c65024368f8',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P672',
     'hash': '0a82ea2636996a91c9c9f172933d734a656ea1b3',
     'datavalue': {'value': 'D01.248.497.158.459.650', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$d7c91a7b-4990-4d25-c1f4-89626768b78b',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P672',
     'hash': 'c57accbaa784c3afe0a65145ac8c98371a4a378c',
     'datavalue': {'value': 'D01.650.550.925', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$dc993d52-455a-3964-fa0b-0f52f3725d90',
    'rank': 'normal'}],
  'P3073': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3073',
     'hash': 'dda4dae548f081c53f64cd1ba3719a7aa7546934',
     'datavalue': {'value': '31959', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$05710FEA-66CB-4E50-9C43-8BBC01B13DA9',
    'rank': 'normal',
    'references': [{'hash': '7df7e6a34ff1eb633145e3a96c2255712036ae4a',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '54d98e9e650df3566f1958c98e484fd53a1b11da',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 26255597,
           'id': 'Q26255597'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P3073': [{'snaktype': 'value',
         'property': 'P3073',
         'hash': 'dda4dae548f081c53f64cd1ba3719a7aa7546934',
         'datavalue': {'value': '31959', 'type': 'string'},
         'datatype': 'external-id'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': 'd9cf81d79750d133ec6a9893d64f490d95eab21a',
         'datavalue': {'value': {'time': '+2019-12-28T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': 'd0da4c84a66d8fd0348d89f7642dd8b01c95c3cb',
         'datavalue': {'value': {'text': 'AQUA', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P1683': [{'snaktype': 'value',
         'property': 'P1683',
         'hash': 'e6f4e80965349ba85614857e31c755f080018e04',
         'datavalue': {'value': {'text': 'CAS no.: 7732-18-5',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}]},
      'snaks-order': ['P248', 'P3073', 'P813', 'P1476', 'P1683']}]}],
  'P2840': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2840',
     'hash': '401f1f03ef04fb03669ae42d3fd6ed9bdcaa26ec',
     'datavalue': {'value': '147337', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$989C0A4B-C65F-4614-9AB0-965F35138AFC',
    'rank': 'normal'}],
  'P7889': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7889',
     'hash': 'bcddb9bcc189c638875be3d539e664f6f959c1a9',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6F6E6279-0EFF-4A62-B9AD-8B8E69E8AA1B',
    'rank': 'normal'}],
  'P7818': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7818',
     'hash': 'ffd9e2fb1eef9b737e9ee40df5a59f70d7a38d13',
     'datavalue': {'value': 'Eau', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$80A9B897-E0A7-4F53-A2F1-9B5FFE82242D',
    'rank': 'normal'}],
  'P7829': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7829',
     'hash': 'd2f37d6b5cb9be191f7012a11cc892ccc2563912',
     'datavalue': {'value': 'Water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$472D2F80-7D7A-4CAD-BD77-5FA811EFFCA0',
    'rank': 'normal'}],
  'P7827': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7827',
     'hash': 'beda9f7e448b4b5987fa0c709ed1c892088bdbf7',
     'datavalue': {'value': 'Agua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$EC58387E-CD8E-41FF-926A-E526258E9FDB',
    'rank': 'normal'}],
  'P7832': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7832',
     'hash': '809e5db69b4590629367edd9338a08ce45b0d83f',
     'datavalue': {'value': 'Ur', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$A3704CAC-4B93-4803-BEDD-8A0505ADD34A',
    'rank': 'normal'}],
  'P7822': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7822',
     'hash': '897a0fda89795c337f9375534a0b9da84342ae51',
     'datavalue': {'value': 'Acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$E4C3165D-7E31-40F3-8305-618F8A189562',
    'rank': 'normal'}],
  'P2116': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2116',
     'hash': '222446555f7922959f1419a345fadde64d3aaf65',
     'datavalue': {'value': {'amount': '+40.656',
       'unit': 'http://www.wikidata.org/entity/Q752197'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'qualifiers': {'P2076': [{'snaktype': 'value',
       'property': 'P2076',
       'hash': 'cb85d6acd9abcc3967fd2c01daec57487167f182',
       'datavalue': {'value': {'amount': '+373.15',
         'unit': 'http://www.wikidata.org/entity/Q11579'},
        'type': 'quantity'},
       'datatype': 'quantity'}]},
    'qualifiers-order': ['P2076'],
    'id': 'Q283$b7fd8e49-4581-637c-11c5-ce2a124ec2bd',
    'rank': 'normal',
    'references': [{'hash': 'e4c979db595e274543e176027fba1f6f35b528a7',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'f94c26623578dae996db1668d1c71f728d5c8fcd',
         'datavalue': {'value': 'https://books.google.com/books?id=1cwceZhWU6oC&pg=PA64',
          'type': 'string'},
         'datatype': 'url'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '03d274777604aa6ea9320a1954b0f86517c1dda1',
         'datavalue': {'value': {'text': 'Atmospheric Thermodynamics: Elementary Physics and Chemistry',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P212': [{'snaktype': 'value',
         'property': 'P212',
         'hash': 'c2d168b7ee6da1324b07ec169c02dd9d74fd4523',
         'datavalue': {'value': '9780521899635', 'type': 'string'},
         'datatype': 'external-id'}],
       'P123': [{'snaktype': 'value',
         'property': 'P123',
         'hash': 'd1271cbb76fa542012ed70df06309e2386c30110',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 912887,
           'id': 'Q912887'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P304': [{'snaktype': 'value',
         'property': 'P304',
         'hash': 'c6dac74c66b6aa63cf2340b7a84967a28df21245',
         'datavalue': {'value': '64', 'type': 'string'},
         'datatype': 'string'}],
       'P577': [{'snaktype': 'value',
         'property': 'P577',
         'hash': '96e5681c2753ab46987172d844650c7211b6e589',
         'datavalue': {'value': {'time': '+2009-04-09T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P1476', 'P212', 'P123', 'P304', 'P577']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2116',
     'hash': '6dc47d18b5bc973dc429d76eb582831aac4d529d',
     'datavalue': {'value': {'amount': '+9.717',
       'unit': 'http://www.wikidata.org/entity/Q6408112'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'id': 'Q283$24cfd580-472f-70e0-421f-c0353a4a7206',
    'rank': 'normal',
    'references': [{'hash': '43839601a231c598d60887fe83070723cd055d52',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '86c00763fdfa6a62201787de1555817f5557a410',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 278487,
           'id': 'Q278487'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P662': [{'snaktype': 'value',
         'property': 'P662',
         'hash': '617d18aa95582833795142e30039cb06d15b2901',
         'datavalue': {'value': '962#section=Heat-of-Vaporization',
          'type': 'string'},
         'datatype': 'external-id'}]},
      'snaks-order': ['P248', 'P662']}]}],
  'P2347': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2347',
     'hash': 'e3c0f120b0db2b13e50a5cfc759807d39aa68277',
     'datavalue': {'value': '3792', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$F2482947-9F2B-4E2F-9C03-0E87EC46F8A6',
    'rank': 'normal',
    'references': [{'hash': 'f9bf1a1f034ddd51bd9928ac535e0f57d748e2cf',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '7133f11674741f52cadaae6029068fad9cbb52e3',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 89345680,
           'id': 'Q89345680'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P7901': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7901',
     'hash': '7d14b63e4e91ffa8674cc4ad1562c45671af75d9',
     'datavalue': {'value': '1324', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$61FF4716-F4CC-46CF-B71A-818CEC8EC31E',
    'rank': 'normal'}],
  'P7686': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7686',
     'hash': 'f04b50fb2fb8b32d3d210b4589cea528d3c1ad91',
     'datavalue': {'value': 'wat.001', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$D8497A5B-1C20-4E78-B152-BD6D5BDCDBA7',
    'rank': 'normal'}],
  'P7695': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7695',
     'hash': '9b2f0a97b3e016988215a8e9c9d1f9b665220b8f',
     'datavalue': {'value': '906', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$E7955B3D-4276-4694-92E1-9122BAF8897A',
    'rank': 'normal'}],
  'P8408': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8408',
     'hash': 'b9737f5717697e9206972980f3d0cb4eb8d63add',
     'datavalue': {'value': 'Water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$9E8BCDFA-5DB6-4976-B834-92D43858373C',
    'rank': 'normal',
    'references': [{'hash': '9a681f9dd95c90224547c404e11295f4f7dcf54e',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '9d5780dddffa8746637a9929a936ab6b0f601e24',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 64139102,
           'id': 'Q64139102'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '622a5a27fa5b25e7e7984974e9db494cf8460990',
         'datavalue': {'value': {'time': '+2020-07-09T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P813']}]}],
  'P7049': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7049',
     'hash': 'c545fc2eccb404eadf6a2cdcadd203e7bca66d8e',
     'datavalue': {'value': '11271', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$922E2161-2D5F-460E-8A08-EB92C175C819',
    'rank': 'normal'}],
  'P361': [{'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': 'c87264a56df1f38ff2a461d24feed9e63fbab9bd',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 2095,
       'id': 'Q2095'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$fa78e23e-4a32-09d5-b6c2-3d168f2e4fdd',
    'rank': 'normal',
    'references': [{'hash': '0b7adde46e5f7d811d080201ebbcff1a87bb4641',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'c7c424f6319a8174714b5c6536377f20b79b5fef',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 98106006,
           'id': 'Q98106006'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': 'd7cbd8be91654e90b2ee70aaafe18d70e4d10cf6',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 103135,
       'id': 'Q103135'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'ea2d716cfb5863f54c828c31f5b208add6960742',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 45342565,
         'id': 'Q45342565'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$1f41ee93-4473-1665-068b-df9b86ff0699',
    'rank': 'normal',
    'references': [{'hash': '0b7adde46e5f7d811d080201ebbcff1a87bb4641',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'c7c424f6319a8174714b5c6536377f20b79b5fef',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 98106006,
           'id': 'Q98106006'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '2f91847756cd59e765cc0f02d7641e85042075d4',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14902498,
       'id': 'Q14902498'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'ea2d716cfb5863f54c828c31f5b208add6960742',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 45342565,
         'id': 'Q45342565'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$70D60D34-86E6-46B0-B294-FDC49D3F9899',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '9e41a2b303436e87db4fa816da18a1c449f0fc48',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14904766,
       'id': 'Q14904766'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': '582dae0306f051572103767b1b7e1d290c39b9b7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 7247312,
         'id': 'Q7247312'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$45176E5F-E9DD-4105-A989-1E4F304A436A',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': 'f71f53749c1a471f76d84908417df564297bca06',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14820652,
       'id': 'Q14820652'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'a9840d445c9f96e9d0b045aa3d93e0e59ab46958',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 75152245,
         'id': 'Q75152245'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$226209D6-C0A5-4337-B9CE-E45DE339F2E4',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '2aad916ea3a43beba04d91f2cb928874daa25e96',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14863690,
       'id': 'Q14863690'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': '582dae0306f051572103767b1b7e1d290c39b9b7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 7247312,
         'id': 'Q7247312'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$79F87960-2A6F-4A78-B1FF-3E6B2DAB2842',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '5ff9b056c876bd2e67e6d7a0d84c3cfacb1c8617',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14902497,
       'id': 'Q14902497'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'a9840d445c9f96e9d0b045aa3d93e0e59ab46958',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 75152245,
         'id': 'Q75152245'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$4030F687-D259-4571-9BC2-EF2E0114A50D',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '6facaa8eb00ca0983a8b74d3b57793f9b16281f2',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 22272594,
       'id': 'Q22272594'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'ea2d716cfb5863f54c828c31f5b208add6960742',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 45342565,
         'id': 'Q45342565'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$5E367A6F-EAB2-488E-8B0F-1B6247E5BABF',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': 'b10e1ffcf567515552df9a05a732e41d8b7c59c0',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 14820677,
       'id': 'Q14820677'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': '582dae0306f051572103767b1b7e1d290c39b9b7',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 7247312,
         'id': 'Q7247312'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$408934E8-6295-4295-98B8-43D910A8B458',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P361',
     'hash': '3a51248bc0c8a6b86be3b684b3ddac43b38f8c8b',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 22272199,
       'id': 'Q22272199'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'qualifiers': {'P2868': [{'snaktype': 'value',
       'property': 'P2868',
       'hash': 'ea2d716cfb5863f54c828c31f5b208add6960742',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 45342565,
         'id': 'Q45342565'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}]},
    'qualifiers-order': ['P2868'],
    'id': 'Q283$C02538A5-C55B-43E5-BDB0-3075E478735B',
    'rank': 'normal',
    'references': [{'hash': '1357ea2732f2671bafee93c6c7d00780ccc271a9',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b1476a248819804550b2ef74b2df76b28ee05868',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112968510,
           'id': 'Q112968510'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P8494': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8494',
     'hash': 'e642a1b24a6cbdaab039dda3c4e29ecb1c4363a7',
     'datavalue': {'value': 'DTXCID106296', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$1E68157A-E4A6-4D8C-BDDE-F3BF37737A14',
    'rank': 'normal'}],
  'P8519': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8519',
     'hash': '0de5ed33a17f0cb0ad709cddf95f2cf31339aa8f',
     'datavalue': {'value': '63695', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6b8075fa-2494-4324-8dad-8fe0d3f25bfb',
    'rank': 'normal'}],
  'P279': [{'mainsnak': {'snaktype': 'value',
     'property': 'P279',
     'hash': '90cae216373d33b7b1a3be53fb34fbbbfd09d1a5',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 11723014,
       'id': 'Q11723014'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$ED7B460D-0ADF-4A8D-BD62-8BA741DF6DA4',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P279',
     'hash': '206e378312c2f22864267fff78785f26247f15da',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 50690,
       'id': 'Q50690'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$23E263F6-26E0-4DEF-B61A-7B107AA49AB2',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P279',
     'hash': '21af953cc70c07dec76807d5f5d2f992ce76bf12',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 188460,
       'id': 'Q188460'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$86a67daa-4210-b58c-01f1-c6cea3046b95',
    'rank': 'normal'}],
  'P3847': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3847',
     'hash': 'fe495d53aedf3c04b0d06db8dce75c21f980061f',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$e36d3f60-493f-c129-4f2d-c6a1e046a35e',
    'rank': 'normal'}],
  'P4212': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4212',
     'hash': '25afc1a6a3c6f03f7e42dc1c411b6502f04d33be',
     'datavalue': {'value': 'pcrtJYawSTtElG', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$54B2FFCE-B492-4071-831C-AC9C50D8379E',
    'rank': 'normal'}],
  'P8885': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8885',
     'hash': 'feba12bf98a777ba38c55b8b14326c0793fc2703',
     'datavalue': {'value': '물', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$d524d50b-4988-2062-81d4-9fc7c7261fa6',
    'rank': 'normal'}],
  'P1296': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1296',
     'hash': '1a588eb9bafc64b8c12ba9e9597f804a6d3a944e',
     'datavalue': {'value': '0219835', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$1c726055-460d-acfd-df3a-61edc13b40fa',
    'rank': 'normal'}],
  'P9106': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9106',
     'hash': '93cb0cef6924a5cb8951e66ae852f5f31f1de744',
     'datavalue': {'value': '6878', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$9DA291EE-5F5D-495F-A74B-DA1159BD6830',
    'rank': 'normal'}],
  'P4527': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4527',
     'hash': '87ab46051519aaf7b2a1da56cae5ffa3040cbda1',
     'datavalue': {'value': '95778', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$FC359C1C-16A0-42F9-B0CF-F73F493BA280',
    'rank': 'normal'}],
  'P9545': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9545',
     'hash': 'f666304f84ebf405f664c1949e9dcf91d62049a3',
     'datavalue': {'value': '231024', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$AD2DF6D6-0382-443A-A211-A283B6F6B1A3',
    'rank': 'normal'}],
  'P3984': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3984',
     'hash': '30cb45ba664c3441d33492fd81508d942bb659b0',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$ca86e3f9-4b74-6f0e-7915-702999e0646a',
    'rank': 'normal'}],
  'P2062': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2062',
     'hash': '362a7cf1a244d13d74705a6f2b100e678ba00cf9',
     'datavalue': {'value': '8183', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$01F31CCB-E1E3-4447-BD02-F1978CA32E98',
    'rank': 'normal',
    'references': [{'hash': 'f840a8456e92ceb5295952b0ed8c0e946dcb844f',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '033b3f586568ab8f4df3387db24bde2a794f22cf',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 5687720,
           'id': 'Q5687720'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P2062': [{'snaktype': 'value',
         'property': 'P2062',
         'hash': '362a7cf1a244d13d74705a6f2b100e678ba00cf9',
         'datavalue': {'value': '8183', 'type': 'string'},
         'datatype': 'external-id'}],
       'P577': [{'snaktype': 'value',
         'property': 'P577',
         'hash': 'efcf17f5fabf79f4543a44c57887b2c760f45e05',
         'datavalue': {'value': {'time': '+2019-10-28T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '677ad16e183e4954812c28ab2853d4e25928f500',
         'datavalue': {'value': {'text': 'Water', 'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '23728cfbdccdb9e4c1f99cd847c443a36e90c8d6',
         'datavalue': {'value': {'time': '+2021-05-10T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P248', 'P2062', 'P577', 'P1476', 'P813']}]}],
  'P9272': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9272',
     'hash': 'd600f3c74b513febf507cf40ec6271d4f9c8202e',
     'datavalue': {'value': '23127', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$64D96021-0EA6-42C6-8FD8-1EDCE0EDCC08',
    'rank': 'normal'}],
  'P3553': [{'mainsnak': {'snaktype': 'value',
     'property': 'P3553',
     'hash': '6ea6a02ce246e10e4beee0626d4884cf6ca079d5',
     'datavalue': {'value': '19558798', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$957FC182-AE40-4163-BF43-C26616C04BE9',
    'rank': 'normal'}],
  'P4839': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4839',
     'hash': 'db0f71c8fbea11a40293f8a600ce24e8b90b378d',
     'datavalue': {'value': 'Entity["FoodType", "Water"]', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$98B66686-8EC8-41F5-97EF-1B0BCE29D6F0',
    'rank': 'normal'}],
  'P6263': [{'mainsnak': {'snaktype': 'value',
     'property': 'P6263',
     'hash': 'de7cf1dd2dec155975049c1560ebbb2e42ef57ec',
     'datavalue': {'value': '49998', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$10192465-AB75-4811-8A83-33B52F1F1570',
    'rank': 'normal'}],
  'P9941': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9941',
     'hash': '039eb802d8ba85cc5b08811a9585612e9995959e',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '5abc33e036dcbe90655c95482a83b648023ec83e',
       'datavalue': {'value': 'Alberto Heimler', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'd9055dd2bc078778a99d237e655223766e6f0b90',
       'datavalue': {'value': {'time': '+2012-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$5a13cf8b-48b3-18d2-fc77-47c69e86e454',
    'rank': 'normal'}],
  'P9850': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9850',
     'hash': 'f7c34c5c83073409bab25239ebbd83a0954134b0',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '3e854eabae6b67383bf54e030a5c7d02e06cbc40',
       'datavalue': {'value': 'C. Frugoni', 'type': 'string'},
       'datatype': 'string'},
      {'snaktype': 'value',
       'property': 'P2093',
       'hash': '5d3d4abb948e593915101beb29c9d8e97711d798',
       'datavalue': {'value': 'A. Berger', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '60a408382a7e460d859c8f237729c131ab70b81c',
       'datavalue': {'value': {'time': '+1991-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$8b01109c-455e-728d-3cc8-f3f82a66700b',
    'rank': 'normal'}],
  'P9734': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9734',
     'hash': '5fc3978537441bb09fbe57d2750cd9575f2feb71',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '63d1258d3b31ba25f908ef91c453b5a925f9d6be',
       'datavalue': {'value': 'Domenico Consoli', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '7557f6c8a110b7b629b13fed69896c1ca85fedd6',
       'datavalue': {'value': {'time': '+1970-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$a20797fb-4295-d991-81c8-56eb42d6094c',
    'rank': 'normal'}],
  'P9775': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9775',
     'hash': '7d95befd2ce34bdfe4e90d2b75e1227066c320a7',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'd9055dd2bc078778a99d237e655223766e6f0b90',
       'datavalue': {'value': {'time': '+2012-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P577'],
    'id': 'Q283$9df7ec02-4382-4ff4-5966-7f24f9b9d1a3',
    'rank': 'normal'}],
  'P4223': [{'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': 'c3fec28d96236ed8ec5a399cdce8dab2863e1e94',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '6405578ffbad17394c136b926b3bf81c87b419e1',
       'datavalue': {'value': 'Camillo Porlezza, Riccardo Olivieri, Francesco Scurti, Donato Ottolenghi, Carlo Guido Fontana, Filippo Bottazzi, Plinio Fraccaro, Carlo Cecchelli',
        'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '553eb90bc113379eeacfab40cc1956fb1b32aacf',
       'datavalue': {'value': {'time': '+1929-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '585f4382f4aab7434102d16f63881d1c957b43a4',
       'datavalue': {'value': '1', 'type': 'string'},
       'datatype': 'string'}],
     'P304': [{'snaktype': 'value',
       'property': 'P304',
       'hash': '51cc761f9976fba3f8460cc1fd020b1a4e6e2b48',
       'datavalue': {'value': '355', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478', 'P304'],
    'id': 'Q283$c0c1a10f-463d-a7bc-8a06-039299dad9ce',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': '54dda86241188bbc84961cb66781a6cd93dad06d',
     'datavalue': {'value': 'acqua_res-0d3771c2-87e5-11dc-8e9d-0016357eee51',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P50': [{'snaktype': 'value',
       'property': 'P50',
       'hash': 'a42824f4360cd00043b5f9b8ebd589ddd0da173f',
       'datavalue': {'value': {'entity-type': 'item',
         'numeric-id': 65127205,
         'id': 'Q65127205'},
        'type': 'wikibase-entityid'},
       'datatype': 'wikibase-item'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '469a0b05012cce928bac6d336db022913c5cf6da',
       'datavalue': {'value': {'time': '+1948-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '8fe2821812f5ea7fb7c9f6e9ef4fe684dba6e5ec',
       'datavalue': {'value': 'II Appendice', 'type': 'string'},
       'datatype': 'string'}],
     'P304': [{'snaktype': 'value',
       'property': 'P304',
       'hash': '9e3a3e56e2ab5aabb24914b09a6ad436f6c40ce6',
       'datavalue': {'value': '16', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P50', 'P577', 'P478', 'P304'],
    'id': 'Q283$47395cbd-4e39-16ad-0b9f-4bb0d0dccc75',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': 'aa609aae7b15354402257fa34708794ae28e5657',
     'datavalue': {'value': 'acqua_res-2b2ce5e0-87e7-11dc-8e9d-0016357eee51',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '12c5815ba7dcdd97fcc496b13513ca3ae8a8e275',
       'datavalue': {'value': 'Pietro Venturini', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '08a21a4113ada32bbd1868f5ac382a39ceaa1ec7',
       'datavalue': {'value': {'time': '+1961-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': 'c988809310b2a1a84afc33487c565718b21896e4',
       'datavalue': {'value': 'III Appendice', 'type': 'string'},
       'datatype': 'string'}],
     'P304': [{'snaktype': 'value',
       'property': 'P304',
       'hash': 'baecbc4bdd8cf491e77fa62a4de555cc3510d97a',
       'datavalue': {'value': '12', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478', 'P304'],
    'id': 'Q283$d0a44a0a-4e08-f4e7-ef1f-e14e5b84d261',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': 'bc46c2a624324c6d0c14b13f0b901797dd9af6f7',
     'datavalue': {'value': 'acqua_res-24886344-87e9-11dc-8e9d-0016357eee51',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '7ae40bf36d7ad322b90ac75f389ec1e8d682818d',
       'datavalue': {'value': 'Eugenio Mariani', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '30acf3f5e021ae65e70b1bb6f8d14d5dd06513f5',
       'datavalue': {'value': {'time': '+1978-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '83e2ee4fa1d74990dc5e6c213fb6bd322810fbeb',
       'datavalue': {'value': 'IV Appendice', 'type': 'string'},
       'datatype': 'string'}],
     'P304': [{'snaktype': 'value',
       'property': 'P304',
       'hash': '26fc09289522fb4d0720942564c921c35a0d4db9',
       'datavalue': {'value': '21', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478', 'P304'],
    'id': 'Q283$a1a3928c-4e8f-1fe2-ef37-5583fc8fc387',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': '078795ea37a69969bf0eb58b98d10e2729039041',
     'datavalue': {'value': 'acqua_res-1ad4e8ea-87ea-11dc-8e9d-0016357eee51',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '8095d530014abada6c3a7f0f72577d1955a68e18',
       'datavalue': {'value': 'Paolo Migliorini', 'type': 'string'},
       'datatype': 'string'},
      {'snaktype': 'value',
       'property': 'P2093',
       'hash': 'f17ebfb27284f076e4929e9f774907895e6461db',
       'datavalue': {'value': 'Franco Medici', 'type': 'string'},
       'datatype': 'string'},
      {'snaktype': 'value',
       'property': 'P2093',
       'hash': '230886ddc2ca23180c41b35fa7ac6fd767f86c12',
       'datavalue': {'value': 'Bruno Giardina', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '78900812102608180c79f2feb02b2ea7840b3fd1',
       'datavalue': {'value': {'time': '+1991-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '467b67c17a45586f5f6ce26906c62d558745ea4a',
       'datavalue': {'value': 'V Appendice', 'type': 'string'},
       'datatype': 'string'}],
     'P304': [{'snaktype': 'value',
       'property': 'P304',
       'hash': '89345fc3502fc1bef8da95a557574f7a59bbfb23',
       'datavalue': {'value': '26', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478', 'P304'],
    'id': 'Q283$0334a809-410e-5a5c-b215-184cac6dd945',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': '1da3de77961167857d6f82718cb3a7ecff5fa2aa',
     'datavalue': {'value': 'acqua_res-55640e49-9b91-11e2-9d1b-00271042e8d9',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '61f93ceb63df2e099c9cfa14a2b2cc516a46a2bd',
       'datavalue': {'value': 'Mario Beccari', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'e00208bb20a6c87a148a10fccc613fc753888024',
       'datavalue': {'value': {'time': '+2000-00-00T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': 'f3d301fee58e800aa06c2ab9212bca95300c9f99',
       'datavalue': {'value': 'VI Appendice', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478'],
    'id': 'Q283$afc673e7-4b0e-c741-f1e2-7c56b46d32ed',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': 'b945976909f6d01fa03ba1e3aa8018c8fb67b834',
     'datavalue': {'value': 'acqua_res-2b268e44-9bbc-11e2-9d1b-00271042e8d9',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '04a0834f7a4d1d9db778fd178d356b90b6ab2b4e',
       'datavalue': {'value': 'Marcello Benedini', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'c0848793cfded1c7035708927f9d3859d1647170',
       'datavalue': {'value': {'time': '+2006-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '4c1c5ac86b6019e33d4d48214998568e8c04157f',
       'datavalue': {'value': 'VII Appendice', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478'],
    'id': 'Q283$48120d85-412b-bbee-4d29-ea02750902b3',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P4223',
     'hash': '3895cbeebe258afdb7b6525e17aac1567813ab90',
     'datavalue': {'value': 'acqua_res-5b295b3f-dd5e-11e6-add6-00271042e8d9',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '9966d506f48dd7b2d661d53fd131d80e30b16ed8',
       'datavalue': {'value': 'ACQUA', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '54fc89853793803ce17046332d779ab5096dae79',
       'datavalue': {'value': 'Silvia Lilli', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'a5bff3c39202e0be4172d6c13f11e58b05d97396',
       'datavalue': {'value': {'time': '+2015-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}],
     'P478': [{'snaktype': 'value',
       'property': 'P478',
       'hash': '858dd97a73019b22c4653043904de8ea27c1de0b',
       'datavalue': {'value': 'IX Appendice', 'type': 'string'},
       'datatype': 'string'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577', 'P478'],
    'id': 'Q283$e6d77eff-41b6-bae8-ff3a-a0bf930107de',
    'rank': 'normal'}],
  'P9983': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9983',
     'hash': '799776adae93ef0317964d1a1060e06bc7313a28',
     'datavalue': {'value': 'acqua_(Enciclopedia-dei-ragazzi)',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '250fbdea48281c841832500c659b1c0e70f9b923',
       'datavalue': {'value': 'Luigi Cerruti', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '23a6000b3a7a0173de37e7c6efeded056b7cdd9a',
       'datavalue': {'value': {'time': '+2005-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$86A86BF4-D121-4C84-A9B6-B2F2C67965D3',
    'rank': 'normal'}],
  'P10017': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10017',
     'hash': '363f35a27ab447d0f446345a3c268d824527ee58',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'b1aba267943f8156a85cb583c974b3e87b185207',
       'datavalue': {'value': 'àcqua', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '80128af06808f1cf7c4b66163f1fb8cff111f833',
       'datavalue': {'value': {'time': '+1996-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P577'],
    'id': 'Q283$B91A168B-29E4-4E69-A28B-F605E85CA050',
    'rank': 'normal'}],
  'P10022': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10022',
     'hash': '92db98926447fa018bc230e5879569fe83947a9a',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': 'fe46bb9cb0d4810c24bd6718415aa58e3cd116af',
       'datavalue': {'value': 'acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': 'ee04033b93df56fec66997b219da63168dc08e80',
       'datavalue': {'value': {'time': '+2010-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P577'],
    'id': 'Q283$A0B169BD-13BC-4EE2-978A-6F5CC9C36704',
    'rank': 'normal'}],
  'P10037': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10037',
     'hash': 'f5dc10284d391e2c5038edadbfa8fd774c579077',
     'datavalue': {'value': 'acqua', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'qualifiers': {'P1810': [{'snaktype': 'value',
       'property': 'P1810',
       'hash': '6185b756645a0f2f86436c908ed9ac367c3f966a',
       'datavalue': {'value': 'Acqua', 'type': 'string'},
       'datatype': 'string'}],
     'P2093': [{'snaktype': 'value',
       'property': 'P2093',
       'hash': '6c86a1de0964884634c5a70f1f73a863b86dd22d',
       'datavalue': {'value': 'Sergio Carrà', 'type': 'string'},
       'datatype': 'string'}],
     'P577': [{'snaktype': 'value',
       'property': 'P577',
       'hash': '6ce8334b9e3d1939ef77fe6baf39186464693bc3',
       'datavalue': {'value': {'time': '+2007-01-01T00:00:00Z',
         'timezone': 0,
         'before': 0,
         'after': 0,
         'precision': 9,
         'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
        'type': 'time'},
       'datatype': 'time'}]},
    'qualifiers-order': ['P1810', 'P2093', 'P577'],
    'id': 'Q283$F9B49DBA-1B95-48A6-8241-4BF034F97283',
    'rank': 'normal'}],
  'P5668': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5668',
     'hash': '5baee2ad2da0d7b1be9ac3ff3da9b0a651b7c744',
     'datavalue': {'value': {'amount': '+2.2',
       'unit': 'http://www.wikidata.org/entity/Q21062777'},
      'type': 'quantity'},
     'datatype': 'quantity'},
    'type': 'statement',
    'id': 'Q283$c0c6402a-4d71-c5e5-1cb3-021e2029ecd6',
    'rank': 'normal'}],
  'P8189': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8189',
     'hash': '148679956379613509cfa1997f16d67b2e6a0e8a',
     'datavalue': {'value': '987007551108905171', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$340A643C-8CC8-473D-A54D-502074491289',
    'rank': 'normal',
    'references': [{'hash': 'c8a47202c92936005b390eb36ddd267921b51f43',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '0ea73b3596b49258a7b7ec6495950779b99e875d',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 188915,
           'id': 'Q188915'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P9084': [{'mainsnak': {'snaktype': 'value',
     'property': 'P9084',
     'hash': '65e9548b43d92ca7d00d1cd48118f91c29e4a6bd',
     'datavalue': {'value': 'water', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$4A2DEAAC-6CF1-47E8-A901-A40637B7896C',
    'rank': 'normal'}],
  'P1953': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1953',
     'hash': '7ad1a8e33d00cff6123f732c6d0c37b36ed93e24',
     'datavalue': {'value': '4475323', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$159A668F-73A6-4325-9196-2F38E22E56C2',
    'rank': 'normal'}],
  'P10283': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10283',
     'hash': 'c5ad228f78a58d6920d571aa3b2bd3d2f8d6e21a',
     'datavalue': {'value': 'C2989277613', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$A7BBAAF3-E656-438A-A877-F5DA76A3FDFA',
    'rank': 'normal',
    'references': [{'hash': 'c13ba4d7902ead2693f79396bc25bd35d4d14030',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': '4a4f26a5361b5707266e48e425bf2be2f99fd2ab',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 107507571,
           'id': 'Q107507571'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '435834d08182bb9f3dbe974ba9840af0f12899cc',
         'datavalue': {'value': {'time': '+2022-01-26T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'a4a4bf53f22268815c51ec10fed608da703c9c7f',
         'datavalue': {'value': 'https://docs.openalex.org/download-snapshot/snapshot-data-format',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P248', 'P813', 'P854']}]}],
  'P10077': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10077',
     'hash': 'c40a42bfd0a875d0b4241e3ac218ac7dd6dff085',
     'datavalue': {'value': 'materias/1010120', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$6877fcb0-4e5c-b416-9d7b-e2aca8493853',
    'rank': 'normal'}],
  'P8313': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8313',
     'hash': '9260148ea1d51d733423693906f177e609b6f0d3',
     'datavalue': {'value': 'vand', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$D940941A-0FED-4116-910C-9DACC8A2EF35',
    'rank': 'normal'}],
  'P10': [{'mainsnak': {'snaktype': 'value',
     'property': 'P10',
     'hash': 'a0831d4e4eab904dab1bda74e05d12182ebf500c',
     'datavalue': {'value': 'Uraren indarra.webm', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'id': 'Q283$F3CF9335-A2F7-49F0-8FFE-B22565918750',
    'rank': 'normal'}],
  'P51': [{'mainsnak': {'snaktype': 'value',
     'property': 'P51',
     'hash': '4e479d647ad4bb6629329fc809172ab2adef4a15',
     'datavalue': {'value': 'Faucet water into sink.ogg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'id': 'Q283$A5E62312-569D-42A0-BB0A-5046F6B7BA06',
    'rank': 'normal'}],
  'P2716': [{'mainsnak': {'snaktype': 'value',
     'property': 'P2716',
     'hash': '837f88e16b199f3622b8d48c01badcf18d6f0484',
     'datavalue': {'value': 'Thomas Bresson - Creation-goutte-eau-redim (by).jpg',
      'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'id': 'Q283$072E2CF3-D99C-4831-9371-B750472866D5',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P2716',
     'hash': 'e734185f5f6b828de3465ecff2a06e20e9263d73',
     'datavalue': {'value': 'Ice water vapor.jpg', 'type': 'string'},
     'datatype': 'commonsMedia'},
    'type': 'statement',
    'id': 'Q283$1564aa5e-4573-f357-43f3-85ff29f994e7',
    'rank': 'normal'}],
  'P8814': [{'mainsnak': {'snaktype': 'value',
     'property': 'P8814',
     'hash': 'd55747ff4e49bca42f4e2f396a8febed701e3866',
     'datavalue': {'value': '14869913-n', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$1B767DEE-5E65-4271-91FF-4C9358F9AD5C',
    'rank': 'normal',
    'references': [{'hash': '3f8c4934cc38de77b597e01bd5028acb514abd2d',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'b43a9435cc2672909edd2b524141c9dbfa50f967',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 112258758,
           'id': 'Q112258758'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}],
  'P5247': [{'mainsnak': {'snaktype': 'value',
     'property': 'P5247',
     'hash': '2fe498afe69d38a610c542d2aa16cd80769e79e6',
     'datavalue': {'value': '3055-1072', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$CB001C1D-D8C2-48F5-BC28-4CFC44622833',
    'rank': 'normal',
    'references': [{'hash': '667b4c972735bfaff3c5647f11ee0d0b89f661f8',
      'snaks': {'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'c774dcea28154fe0a60cb57c95624632b8001f8a',
         'datavalue': {'value': 'https://www.giantbomb.com/water/3055-1072/',
          'type': 'string'},
         'datatype': 'url'}],
       'P1476': [{'snaktype': 'value',
         'property': 'P1476',
         'hash': '90429fe6ecc554eecf3e77cd666e84b40c2a80e6',
         'datavalue': {'value': {'text': 'Water (Object) - Giant Bomb',
           'language': 'en'},
          'type': 'monolingualtext'},
         'datatype': 'monolingualtext'}],
       'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': 'da9d8cb573df243b428d0420be69fe818f446195',
         'datavalue': {'value': {'time': '+2022-06-22T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}]},
      'snaks-order': ['P854', 'P1476', 'P813']}]}],
  'P691': [{'mainsnak': {'snaktype': 'value',
     'property': 'P691',
     'hash': '126fb91ba91b493388ec9684ee501e2c472b7b26',
     'datavalue': {'value': 'ph116596', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$4FA963FE-F0E2-476E-AB53-4CAC1E3BD3E2',
    'rank': 'normal'}],
  'P6385': [{'mainsnak': {'snaktype': 'value',
     'property': 'P6385',
     'hash': 'c1f7e9bdbc31250221f2c22c0bd7c30668b32182',
     'datavalue': {'value': 'nauka_i_tehnika/himiya/VODA_LED_I_PAR.html',
      'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$d14c4efd-4718-d1e8-5240-a76d06d4a18b',
    'rank': 'normal'},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P6385',
     'hash': '8aebf23db4ca1ae58c487878d8a87cc0563934c2',
     'datavalue': {'value': 'khimiya/voda', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$9028087d-454d-737e-9d75-61b744383789',
    'rank': 'normal'}],
  'P1424': [{'mainsnak': {'snaktype': 'value',
     'property': 'P1424',
     'hash': '03700488421a4b3412ebf6390da23c053def2375',
     'datavalue': {'value': {'entity-type': 'item',
       'numeric-id': 6395169,
       'id': 'Q6395169'},
      'type': 'wikibase-entityid'},
     'datatype': 'wikibase-item'},
    'type': 'statement',
    'id': 'Q283$30742ed8-79f7-4205-8956-875fb322f78c',
    'rank': 'normal',
    'references': [{'hash': '60c2e027ab9ac3bc124782634520d8dfcbaf2fed',
      'snaks': {'P3452': [{'snaktype': 'value',
         'property': 'P3452',
         'hash': 'daa4b152ffb93447d42f2ef407703c159273663a',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 6395169,
           'id': 'Q6395169'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P3452']}]}],
  'P7502': [{'mainsnak': {'snaktype': 'value',
     'property': 'P7502',
     'hash': '36b40a3b007771709ae1d11037f4878cd12ab7f5',
     'datavalue': {'value': 'Water-R68', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$E0AB8320-9794-4BC4-AA71-2CE22A90D5FC',
    'rank': 'normal',
    'references': [{'hash': '0eac820f2c9822ef65137bf6958f441515f6ce9d',
      'snaks': {'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '849bf31a75ee81eef52deceed6ee34b2f429e12c',
         'datavalue': {'value': {'time': '+2022-09-10T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'a3cd2e1b3a53212f3138c5aa92e8a5c1c9f4b8cf',
         'datavalue': {'value': 'https://golden.com/wiki/Water-R68',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P813', 'P854']}]},
   {'mainsnak': {'snaktype': 'value',
     'property': 'P7502',
     'hash': 'f493945ce8280f384bdbc450c5378713c103b477',
     'datavalue': {'value': 'Water-JKB56WR', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$14CFECED-A65E-4BBB-90D6-4670BD2D8D90',
    'rank': 'normal',
    'references': [{'hash': '47c78adad759c7ad51dbba8dfc340ebb33dba3f4',
      'snaks': {'P813': [{'snaktype': 'value',
         'property': 'P813',
         'hash': '849bf31a75ee81eef52deceed6ee34b2f429e12c',
         'datavalue': {'value': {'time': '+2022-09-10T00:00:00Z',
           'timezone': 0,
           'before': 0,
           'after': 0,
           'precision': 11,
           'calendarmodel': 'http://www.wikidata.org/entity/Q1985727'},
          'type': 'time'},
         'datatype': 'time'}],
       'P854': [{'snaktype': 'value',
         'property': 'P854',
         'hash': 'c12b48e7912d63d93dea192b281fa535a876d7c7',
         'datavalue': {'value': 'https://golden.com/wiki/Water-JKB56WR',
          'type': 'string'},
         'datatype': 'url'}]},
      'snaks-order': ['P813', 'P854']}]}],
  'P11160': [{'mainsnak': {'snaktype': 'value',
     'property': 'P11160',
     'hash': 'f4f56cdfab60c3d12fa440779951d475ec221ccc',
     'datavalue': {'value': '004934', 'type': 'string'},
     'datatype': 'external-id'},
    'type': 'statement',
    'id': 'Q283$5F8C192C-64B2-421E-9F7E-E5896C923AA0',
    'rank': 'normal',
    'references': [{'hash': '637845270197bfa65e8ef150f9356535055eaaa3',
      'snaks': {'P248': [{'snaktype': 'value',
         'property': 'P248',
         'hash': 'a8981e4dc08be5e0d1766170a46eb81199808905',
         'datavalue': {'value': {'entity-type': 'item',
           'numeric-id': 114598186,
           'id': 'Q114598186'},
          'type': 'wikibase-entityid'},
         'datatype': 'wikibase-item'}]},
      'snaks-order': ['P248']}]}]},
 'sitelinks': {'abwiki': {'site': 'abwiki',
   'title': 'Аӡы',
   'badges': [],
   'url': 'https://ab.wikipedia.org/wiki/%D0%90%D3%A1%D1%8B'},
  'afwiki': {'site': 'afwiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://af.wikipedia.org/wiki/Water'},
  'alswiki': {'site': 'alswiki',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://als.wikipedia.org/wiki/Wasser'},
  'amwiki': {'site': 'amwiki',
   'title': 'ውሃ',
   'badges': [],
   'url': 'https://am.wikipedia.org/wiki/%E1%8B%8D%E1%88%83'},
  'angwiki': {'site': 'angwiki',
   'title': 'Wæter',
   'badges': [],
   'url': 'https://ang.wikipedia.org/wiki/W%C3%A6ter'},
  'anwiki': {'site': 'anwiki',
   'title': 'Augua',
   'badges': [],
   'url': 'https://an.wikipedia.org/wiki/Augua'},
  'arcwiki': {'site': 'arcwiki',
   'title': 'ܡܝܐ',
   'badges': [],
   'url': 'https://arc.wikipedia.org/wiki/%DC%A1%DC%9D%DC%90'},
  'arwiki': {'site': 'arwiki',
   'title': 'ماء',
   'badges': ['Q17437796'],
   'url': 'https://ar.wikipedia.org/wiki/%D9%85%D8%A7%D8%A1'},
  'arwikiquote': {'site': 'arwikiquote',
   'title': 'ماء',
   'badges': [],
   'url': 'https://ar.wikiquote.org/wiki/%D9%85%D8%A7%D8%A1'},
  'arywiki': {'site': 'arywiki',
   'title': 'ما',
   'badges': [],
   'url': 'https://ary.wikipedia.org/wiki/%D9%85%D8%A7'},
  'arzwiki': {'site': 'arzwiki',
   'title': 'ميه',
   'badges': [],
   'url': 'https://arz.wikipedia.org/wiki/%D9%85%D9%8A%D9%87'},
  'astwiki': {'site': 'astwiki',
   'title': 'Agua',
   'badges': [],
   'url': 'https://ast.wikipedia.org/wiki/Agua'},
  'aswiki': {'site': 'aswiki',
   'title': 'পানী',
   'badges': [],
   'url': 'https://as.wikipedia.org/wiki/%E0%A6%AA%E0%A6%BE%E0%A6%A8%E0%A7%80'},
  'atjwiki': {'site': 'atjwiki',
   'title': 'Nipi',
   'badges': [],
   'url': 'https://atj.wikipedia.org/wiki/Nipi'},
  'avwiki': {'site': 'avwiki',
   'title': 'Лъим',
   'badges': [],
   'url': 'https://av.wikipedia.org/wiki/%D0%9B%D1%8A%D0%B8%D0%BC'},
  'aywiki': {'site': 'aywiki',
   'title': 'Uma',
   'badges': [],
   'url': 'https://ay.wikipedia.org/wiki/Uma'},
  'azbwiki': {'site': 'azbwiki',
   'title': 'سو',
   'badges': [],
   'url': 'https://azb.wikipedia.org/wiki/%D8%B3%D9%88'},
  'azwiki': {'site': 'azwiki',
   'title': 'Su',
   'badges': [],
   'url': 'https://az.wikipedia.org/wiki/Su'},
  'azwikiquote': {'site': 'azwikiquote',
   'title': 'Su',
   'badges': [],
   'url': 'https://az.wikiquote.org/wiki/Su'},
  'banwiki': {'site': 'banwiki',
   'title': 'Toya',
   'badges': [],
   'url': 'https://ban.wikipedia.org/wiki/Toya'},
  'barwiki': {'site': 'barwiki',
   'title': 'Wossa',
   'badges': [],
   'url': 'https://bar.wikipedia.org/wiki/Wossa'},
  'bat_smgwiki': {'site': 'bat_smgwiki',
   'title': 'Ondou',
   'badges': [],
   'url': 'https://bat-smg.wikipedia.org/wiki/Ondou'},
  'bawiki': {'site': 'bawiki',
   'title': 'Һыу',
   'badges': ['Q17437798'],
   'url': 'https://ba.wikipedia.org/wiki/%D2%BA%D1%8B%D1%83'},
  'bclwiki': {'site': 'bclwiki',
   'title': 'Tubig',
   'badges': [],
   'url': 'https://bcl.wikipedia.org/wiki/Tubig'},
  'be_x_oldwiki': {'site': 'be_x_oldwiki',
   'title': 'Вада',
   'badges': [],
   'url': 'https://be-tarask.wikipedia.org/wiki/%D0%92%D0%B0%D0%B4%D0%B0'},
  'bewiki': {'site': 'bewiki',
   'title': 'Вада',
   'badges': [],
   'url': 'https://be.wikipedia.org/wiki/%D0%92%D0%B0%D0%B4%D0%B0'},
  'bgwiki': {'site': 'bgwiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://bg.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'bhwiki': {'site': 'bhwiki',
   'title': 'पानी',
   'badges': [],
   'url': 'https://bh.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%A8%E0%A5%80'},
  'biwiki': {'site': 'biwiki',
   'title': 'Wota',
   'badges': [],
   'url': 'https://bi.wikipedia.org/wiki/Wota'},
  'bjnwiki': {'site': 'bjnwiki',
   'title': 'Banyu',
   'badges': ['Q17437796'],
   'url': 'https://bjn.wikipedia.org/wiki/Banyu'},
  'bmwiki': {'site': 'bmwiki',
   'title': 'Ji',
   'badges': [],
   'url': 'https://bm.wikipedia.org/wiki/Ji'},
  'bnwiki': {'site': 'bnwiki',
   'title': 'পানি',
   'badges': [],
   'url': 'https://bn.wikipedia.org/wiki/%E0%A6%AA%E0%A6%BE%E0%A6%A8%E0%A6%BF'},
  'bowiki': {'site': 'bowiki',
   'title': 'ཆུ།',
   'badges': [],
   'url': 'https://bo.wikipedia.org/wiki/%E0%BD%86%E0%BD%B4%E0%BC%8D'},
  'brwiki': {'site': 'brwiki',
   'title': 'Dour',
   'badges': [],
   'url': 'https://br.wikipedia.org/wiki/Dour'},
  'bswiki': {'site': 'bswiki',
   'title': 'Voda',
   'badges': ['Q17437796'],
   'url': 'https://bs.wikipedia.org/wiki/Voda'},
  'bswikiquote': {'site': 'bswikiquote',
   'title': 'Voda',
   'badges': [],
   'url': 'https://bs.wikiquote.org/wiki/Voda'},
  'bxrwiki': {'site': 'bxrwiki',
   'title': 'Уһан',
   'badges': [],
   'url': 'https://bxr.wikipedia.org/wiki/%D0%A3%D2%BB%D0%B0%D0%BD'},
  'cawiki': {'site': 'cawiki',
   'title': 'Aigua',
   'badges': [],
   'url': 'https://ca.wikipedia.org/wiki/Aigua'},
  'cawikiquote': {'site': 'cawikiquote',
   'title': 'Aigua',
   'badges': [],
   'url': 'https://ca.wikiquote.org/wiki/Aigua'},
  'cbk_zamwiki': {'site': 'cbk_zamwiki',
   'title': 'Agwa',
   'badges': [],
   'url': 'https://cbk-zam.wikipedia.org/wiki/Agwa'},
  'cdowiki': {'site': 'cdowiki',
   'title': 'Cūi',
   'badges': [],
   'url': 'https://cdo.wikipedia.org/wiki/C%C5%ABi'},
  'cebwiki': {'site': 'cebwiki',
   'title': 'Tubig',
   'badges': [],
   'url': 'https://ceb.wikipedia.org/wiki/Tubig'},
  'cewiki': {'site': 'cewiki',
   'title': 'Хи',
   'badges': [],
   'url': 'https://ce.wikipedia.org/wiki/%D0%A5%D0%B8'},
  'chrwiki': {'site': 'chrwiki',
   'title': 'ᎠᎹ',
   'badges': [],
   'url': 'https://chr.wikipedia.org/wiki/%E1%8E%A0%E1%8E%B9'},
  'chwiki': {'site': 'chwiki',
   'title': 'Hånom',
   'badges': [],
   'url': 'https://ch.wikipedia.org/wiki/H%C3%A5nom'},
  'chywiki': {'site': 'chywiki',
   'title': 'Mahpe',
   'badges': [],
   'url': 'https://chy.wikipedia.org/wiki/Mahpe'},
  'ckbwiki': {'site': 'ckbwiki',
   'title': 'ئاو',
   'badges': [],
   'url': 'https://ckb.wikipedia.org/wiki/%D8%A6%D8%A7%D9%88'},
  'commonswiki': {'site': 'commonswiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://commons.wikimedia.org/wiki/Water'},
  'cowiki': {'site': 'cowiki',
   'title': 'Acqua',
   'badges': [],
   'url': 'https://co.wikipedia.org/wiki/Acqua'},
  'crhwiki': {'site': 'crhwiki',
   'title': 'Suv',
   'badges': [],
   'url': 'https://crh.wikipedia.org/wiki/Suv'},
  'crwiki': {'site': 'crwiki',
   'title': 'ᓃᐲᔾ',
   'badges': [],
   'url': 'https://cr.wikipedia.org/wiki/%E1%93%83%E1%90%B2%E1%94%BE'},
  'cswiki': {'site': 'cswiki',
   'title': 'Voda',
   'badges': [],
   'url': 'https://cs.wikipedia.org/wiki/Voda'},
  'cswikiquote': {'site': 'cswikiquote',
   'title': 'Voda',
   'badges': [],
   'url': 'https://cs.wikiquote.org/wiki/Voda'},
  'cuwiki': {'site': 'cuwiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://cu.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'cvwiki': {'site': 'cvwiki',
   'title': 'Шыв',
   'badges': [],
   'url': 'https://cv.wikipedia.org/wiki/%D0%A8%D1%8B%D0%B2'},
  'cywiki': {'site': 'cywiki',
   'title': 'Dŵr',
   'badges': [],
   'url': 'https://cy.wikipedia.org/wiki/D%C5%B5r'},
  'dawiki': {'site': 'dawiki',
   'title': 'Vand',
   'badges': [],
   'url': 'https://da.wikipedia.org/wiki/Vand'},
  'dewiki': {'site': 'dewiki',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://de.wikipedia.org/wiki/Wasser'},
  'dewikinews': {'site': 'dewikinews',
   'title': 'Kategorie:Wasser',
   'badges': [],
   'url': 'https://de.wikinews.org/wiki/Kategorie:Wasser'},
  'dewikiquote': {'site': 'dewikiquote',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://de.wikiquote.org/wiki/Wasser'},
  'dewikisource': {'site': 'dewikisource',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://de.wikisource.org/wiki/Wasser'},
  'dewikiversity': {'site': 'dewikiversity',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://de.wikiversity.org/wiki/Wasser'},
  'dinwiki': {'site': 'dinwiki',
   'title': 'Piu',
   'badges': [],
   'url': 'https://din.wikipedia.org/wiki/Piu'},
  'diqwiki': {'site': 'diqwiki',
   'title': 'Awe',
   'badges': [],
   'url': 'https://diq.wikipedia.org/wiki/Awe'},
  'dsbwiki': {'site': 'dsbwiki',
   'title': 'Wóda',
   'badges': [],
   'url': 'https://dsb.wikipedia.org/wiki/W%C3%B3da'},
  'dtywiki': {'site': 'dtywiki',
   'title': 'पानि',
   'badges': [],
   'url': 'https://dty.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%A8%E0%A4%BF'},
  'dvwiki': {'site': 'dvwiki',
   'title': 'ފެން',
   'badges': [],
   'url': 'https://dv.wikipedia.org/wiki/%DE%8A%DE%AC%DE%82%DE%B0'},
  'elwiki': {'site': 'elwiki',
   'title': 'Νερό',
   'badges': [],
   'url': 'https://el.wikipedia.org/wiki/%CE%9D%CE%B5%CF%81%CF%8C'},
  'elwikiquote': {'site': 'elwikiquote',
   'title': 'Νερό',
   'badges': [],
   'url': 'https://el.wikiquote.org/wiki/%CE%9D%CE%B5%CF%81%CF%8C'},
  'emlwiki': {'site': 'emlwiki',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://eml.wikipedia.org/wiki/Aqua'},
  'enwiki': {'site': 'enwiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://en.wikipedia.org/wiki/Water'},
  'enwikiquote': {'site': 'enwikiquote',
   'title': 'Water',
   'badges': [],
   'url': 'https://en.wikiquote.org/wiki/Water'},
  'enwikiversity': {'site': 'enwikiversity',
   'title': 'Water',
   'badges': [],
   'url': 'https://en.wikiversity.org/wiki/Water'},
  'eowiki': {'site': 'eowiki',
   'title': 'Akvo',
   'badges': ['Q17437798'],
   'url': 'https://eo.wikipedia.org/wiki/Akvo'},
  'eowikinews': {'site': 'eowikinews',
   'title': 'Kategorio:Akvo',
   'badges': [],
   'url': 'https://eo.wikinews.org/wiki/Kategorio:Akvo'},
  'eowikiquote': {'site': 'eowikiquote',
   'title': 'Akvo',
   'badges': [],
   'url': 'https://eo.wikiquote.org/wiki/Akvo'},
  'eswiki': {'site': 'eswiki',
   'title': 'Agua',
   'badges': ['Q17437798'],
   'url': 'https://es.wikipedia.org/wiki/Agua'},
  'eswikinews': {'site': 'eswikinews',
   'title': 'Categoría:Agua',
   'badges': [],
   'url': 'https://es.wikinews.org/wiki/Categor%C3%ADa:Agua'},
  'eswikiquote': {'site': 'eswikiquote',
   'title': 'Agua',
   'badges': [],
   'url': 'https://es.wikiquote.org/wiki/Agua'},
  'etwiki': {'site': 'etwiki',
   'title': 'Vesi',
   'badges': [],
   'url': 'https://et.wikipedia.org/wiki/Vesi'},
  'etwikiquote': {'site': 'etwikiquote',
   'title': 'Vesi',
   'badges': [],
   'url': 'https://et.wikiquote.org/wiki/Vesi'},
  'euwiki': {'site': 'euwiki',
   'title': 'Ur',
   'badges': [],
   'url': 'https://eu.wikipedia.org/wiki/Ur'},
  'extwiki': {'site': 'extwiki',
   'title': 'Agua',
   'badges': [],
   'url': 'https://ext.wikipedia.org/wiki/Agua'},
  'fawiki': {'site': 'fawiki',
   'title': 'آب',
   'badges': [],
   'url': 'https://fa.wikipedia.org/wiki/%D8%A2%D8%A8'},
  'fawikiquote': {'site': 'fawikiquote',
   'title': 'آب',
   'badges': [],
   'url': 'https://fa.wikiquote.org/wiki/%D8%A2%D8%A8'},
  'ffwiki': {'site': 'ffwiki',
   'title': 'Ndiyam',
   'badges': [],
   'url': 'https://ff.wikipedia.org/wiki/Ndiyam'},
  'fiu_vrowiki': {'site': 'fiu_vrowiki',
   'title': 'Vesi',
   'badges': [],
   'url': 'https://fiu-vro.wikipedia.org/wiki/Vesi'},
  'fiwiki': {'site': 'fiwiki',
   'title': 'Vesi',
   'badges': [],
   'url': 'https://fi.wikipedia.org/wiki/Vesi'},
  'fiwikiquote': {'site': 'fiwikiquote',
   'title': 'Vesi',
   'badges': [],
   'url': 'https://fi.wikiquote.org/wiki/Vesi'},
  'fjwiki': {'site': 'fjwiki',
   'title': 'Wai',
   'badges': [],
   'url': 'https://fj.wikipedia.org/wiki/Wai'},
  'fowiki': {'site': 'fowiki',
   'title': 'Vatn',
   'badges': [],
   'url': 'https://fo.wikipedia.org/wiki/Vatn'},
  'frrwiki': {'site': 'frrwiki',
   'title': 'Weeder',
   'badges': [],
   'url': 'https://frr.wikipedia.org/wiki/Weeder'},
  'frwiki': {'site': 'frwiki',
   'title': 'Eau',
   'badges': [],
   'url': 'https://fr.wikipedia.org/wiki/Eau'},
  'frwikinews': {'site': 'frwikinews',
   'title': 'Catégorie:Eau',
   'badges': [],
   'url': 'https://fr.wikinews.org/wiki/Cat%C3%A9gorie:Eau'},
  'frwikiquote': {'site': 'frwikiquote',
   'title': 'Eau',
   'badges': [],
   'url': 'https://fr.wikiquote.org/wiki/Eau'},
  'frwikiversity': {'site': 'frwikiversity',
   'title': 'Eau',
   'badges': [],
   'url': 'https://fr.wikiversity.org/wiki/Eau'},
  'furwiki': {'site': 'furwiki',
   'title': 'Aghe',
   'badges': [],
   'url': 'https://fur.wikipedia.org/wiki/Aghe'},
  'fywiki': {'site': 'fywiki',
   'title': 'Wetter',
   'badges': [],
   'url': 'https://fy.wikipedia.org/wiki/Wetter'},
  'ganwiki': {'site': 'ganwiki',
   'title': '水',
   'badges': [],
   'url': 'https://gan.wikipedia.org/wiki/%E6%B0%B4'},
  'gawiki': {'site': 'gawiki',
   'title': 'Uisce',
   'badges': [],
   'url': 'https://ga.wikipedia.org/wiki/Uisce'},
  'gcrwiki': {'site': 'gcrwiki',
   'title': 'Dilo',
   'badges': [],
   'url': 'https://gcr.wikipedia.org/wiki/Dilo'},
  'gdwiki': {'site': 'gdwiki',
   'title': 'Uisge',
   'badges': [],
   'url': 'https://gd.wikipedia.org/wiki/Uisge'},
  'glkwiki': {'site': 'glkwiki',
   'title': 'آو',
   'badges': [],
   'url': 'https://glk.wikipedia.org/wiki/%D8%A2%D9%88'},
  'glwiki': {'site': 'glwiki',
   'title': 'Auga',
   'badges': [],
   'url': 'https://gl.wikipedia.org/wiki/Auga'},
  'gnwiki': {'site': 'gnwiki',
   'title': 'Y',
   'badges': [],
   'url': 'https://gn.wikipedia.org/wiki/Y'},
  'gomwiki': {'site': 'gomwiki',
   'title': 'उदक',
   'badges': [],
   'url': 'https://gom.wikipedia.org/wiki/%E0%A4%89%E0%A4%A6%E0%A4%95'},
  'gotwiki': {'site': 'gotwiki',
   'title': '𐍅𐌰𐍄𐍉',
   'badges': [],
   'url': 'https://got.wikipedia.org/wiki/%F0%90%8D%85%F0%90%8C%B0%F0%90%8D%84%F0%90%8D%89'},
  'guwiki': {'site': 'guwiki',
   'title': 'પાણી',
   'badges': [],
   'url': 'https://gu.wikipedia.org/wiki/%E0%AA%AA%E0%AA%BE%E0%AA%A3%E0%AB%80'},
  'gvwiki': {'site': 'gvwiki',
   'title': 'Ushtey',
   'badges': [],
   'url': 'https://gv.wikipedia.org/wiki/Ushtey'},
  'hakwiki': {'site': 'hakwiki',
   'title': 'Súi',
   'badges': [],
   'url': 'https://hak.wikipedia.org/wiki/S%C3%BAi'},
  'hawiki': {'site': 'hawiki',
   'title': 'Ruwa',
   'badges': [],
   'url': 'https://ha.wikipedia.org/wiki/Ruwa'},
  'hewiki': {'site': 'hewiki',
   'title': 'מים',
   'badges': [],
   'url': 'https://he.wikipedia.org/wiki/%D7%9E%D7%99%D7%9D'},
  'hewikiquote': {'site': 'hewikiquote',
   'title': 'מים',
   'badges': [],
   'url': 'https://he.wikiquote.org/wiki/%D7%9E%D7%99%D7%9D'},
  'hifwiki': {'site': 'hifwiki',
   'title': 'Paani',
   'badges': [],
   'url': 'https://hif.wikipedia.org/wiki/Paani'},
  'hiwiki': {'site': 'hiwiki',
   'title': 'जल',
   'badges': [],
   'url': 'https://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B2'},
  'hiwikiquote': {'site': 'hiwikiquote',
   'title': 'जल',
   'badges': [],
   'url': 'https://hi.wikiquote.org/wiki/%E0%A4%9C%E0%A4%B2'},
  'hrwiki': {'site': 'hrwiki',
   'title': 'Voda',
   'badges': [],
   'url': 'https://hr.wikipedia.org/wiki/Voda'},
  'hrwikiquote': {'site': 'hrwikiquote',
   'title': 'Voda',
   'badges': [],
   'url': 'https://hr.wikiquote.org/wiki/Voda'},
  'hsbwiki': {'site': 'hsbwiki',
   'title': 'Woda',
   'badges': [],
   'url': 'https://hsb.wikipedia.org/wiki/Woda'},
  'htwiki': {'site': 'htwiki',
   'title': 'Dlo',
   'badges': [],
   'url': 'https://ht.wikipedia.org/wiki/Dlo'},
  'huwiki': {'site': 'huwiki',
   'title': 'Víz',
   'badges': [],
   'url': 'https://hu.wikipedia.org/wiki/V%C3%ADz'},
  'hywiki': {'site': 'hywiki',
   'title': 'Ջուր',
   'badges': [],
   'url': 'https://hy.wikipedia.org/wiki/%D5%8B%D5%B8%D6%82%D6%80'},
  'hywikiquote': {'site': 'hywikiquote',
   'title': 'Ջուր',
   'badges': [],
   'url': 'https://hy.wikiquote.org/wiki/%D5%8B%D5%B8%D6%82%D6%80'},
  'hywwiki': {'site': 'hywwiki',
   'title': 'Ջուր',
   'badges': [],
   'url': 'https://hyw.wikipedia.org/wiki/%D5%8B%D5%B8%D6%82%D6%80'},
  'iawiki': {'site': 'iawiki',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://ia.wikipedia.org/wiki/Aqua'},
  'idwiki': {'site': 'idwiki',
   'title': 'Air',
   'badges': [],
   'url': 'https://id.wikipedia.org/wiki/Air'},
  'iewiki': {'site': 'iewiki',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://ie.wikipedia.org/wiki/Aqua'},
  'igwiki': {'site': 'igwiki',
   'title': 'Mmiri',
   'badges': [],
   'url': 'https://ig.wikipedia.org/wiki/Mmiri'},
  'ilowiki': {'site': 'ilowiki',
   'title': 'Danum',
   'badges': [],
   'url': 'https://ilo.wikipedia.org/wiki/Danum'},
  'inhwiki': {'site': 'inhwiki',
   'title': 'Хий',
   'badges': [],
   'url': 'https://inh.wikipedia.org/wiki/%D0%A5%D0%B8%D0%B9'},
  'iowiki': {'site': 'iowiki',
   'title': 'Aquo',
   'badges': [],
   'url': 'https://io.wikipedia.org/wiki/Aquo'},
  'iswiki': {'site': 'iswiki',
   'title': 'Vatn',
   'badges': [],
   'url': 'https://is.wikipedia.org/wiki/Vatn'},
  'itwiki': {'site': 'itwiki',
   'title': 'Acqua',
   'badges': ['Q17437796'],
   'url': 'https://it.wikipedia.org/wiki/Acqua'},
  'itwikiquote': {'site': 'itwikiquote',
   'title': 'Acqua',
   'badges': [],
   'url': 'https://it.wikiquote.org/wiki/Acqua'},
  'iuwiki': {'site': 'iuwiki',
   'title': 'ᐃᒪᖅ',
   'badges': [],
   'url': 'https://iu.wikipedia.org/wiki/%E1%90%83%E1%92%AA%E1%96%85'},
  'jamwiki': {'site': 'jamwiki',
   'title': 'Waata',
   'badges': [],
   'url': 'https://jam.wikipedia.org/wiki/Waata'},
  'jawiki': {'site': 'jawiki',
   'title': '水',
   'badges': [],
   'url': 'https://ja.wikipedia.org/wiki/%E6%B0%B4'},
  'jawikiquote': {'site': 'jawikiquote',
   'title': '水',
   'badges': [],
   'url': 'https://ja.wikiquote.org/wiki/%E6%B0%B4'},
  'jbowiki': {'site': 'jbowiki',
   'title': 'djacu',
   'badges': [],
   'url': 'https://jbo.wikipedia.org/wiki/djacu'},
  'jvwiki': {'site': 'jvwiki',
   'title': 'Banyu',
   'badges': ['Q17437796'],
   'url': 'https://jv.wikipedia.org/wiki/Banyu'},
  'kaawiki': {'site': 'kaawiki',
   'title': 'Suw',
   'badges': [],
   'url': 'https://kaa.wikipedia.org/wiki/Suw'},
  'kabwiki': {'site': 'kabwiki',
   'title': 'Aman',
   'badges': [],
   'url': 'https://kab.wikipedia.org/wiki/Aman'},
  'kawiki': {'site': 'kawiki',
   'title': 'წყალი',
   'badges': [],
   'url': 'https://ka.wikipedia.org/wiki/%E1%83%AC%E1%83%A7%E1%83%90%E1%83%9A%E1%83%98'},
  'kbpwiki': {'site': 'kbpwiki',
   'title': 'Lɩm',
   'badges': [],
   'url': 'https://kbp.wikipedia.org/wiki/L%C9%A9m'},
  'kcgwiki': {'site': 'kcgwiki',
   'title': 'A̱sa̱khwot',
   'badges': [],
   'url': 'https://kcg.wikipedia.org/wiki/A%CC%B1sa%CC%B1khwot'},
  'kgwiki': {'site': 'kgwiki',
   'title': 'Maza',
   'badges': [],
   'url': 'https://kg.wikipedia.org/wiki/Maza'},
  'kiwiki': {'site': 'kiwiki',
   'title': 'Mai',
   'badges': [],
   'url': 'https://ki.wikipedia.org/wiki/Mai'},
  'kkwiki': {'site': 'kkwiki',
   'title': 'Су',
   'badges': [],
   'url': 'https://kk.wikipedia.org/wiki/%D0%A1%D1%83'},
  'kmwiki': {'site': 'kmwiki',
   'title': 'ទឹក',
   'badges': [],
   'url': 'https://km.wikipedia.org/wiki/%E1%9E%91%E1%9E%B9%E1%9E%80'},
  'knwiki': {'site': 'knwiki',
   'title': 'ನೀರು',
   'badges': [],
   'url': 'https://kn.wikipedia.org/wiki/%E0%B2%A8%E0%B3%80%E0%B2%B0%E0%B3%81'},
  'kowiki': {'site': 'kowiki',
   'title': '물',
   'badges': [],
   'url': 'https://ko.wikipedia.org/wiki/%EB%AC%BC'},
  'kowikiquote': {'site': 'kowikiquote',
   'title': '물',
   'badges': [],
   'url': 'https://ko.wikiquote.org/wiki/%EB%AC%BC'},
  'kshwiki': {'site': 'kshwiki',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://ksh.wikipedia.org/wiki/Wasser'},
  'kswiki': {'site': 'kswiki',
   'title': 'پونؠ',
   'badges': [],
   'url': 'https://ks.wikipedia.org/wiki/%D9%BE%D9%88%D9%86%D8%A0'},
  'kuwiki': {'site': 'kuwiki',
   'title': 'Av',
   'badges': [],
   'url': 'https://ku.wikipedia.org/wiki/Av'},
  'kwwiki': {'site': 'kwwiki',
   'title': 'Dowr',
   'badges': [],
   'url': 'https://kw.wikipedia.org/wiki/Dowr'},
  'kywiki': {'site': 'kywiki',
   'title': 'Суу',
   'badges': [],
   'url': 'https://ky.wikipedia.org/wiki/%D0%A1%D1%83%D1%83'},
  'ladwiki': {'site': 'ladwiki',
   'title': 'Agua',
   'badges': [],
   'url': 'https://lad.wikipedia.org/wiki/Agua'},
  'lawiki': {'site': 'lawiki',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://la.wikipedia.org/wiki/Aqua'},
  'lawikiquote': {'site': 'lawikiquote',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://la.wikiquote.org/wiki/Aqua'},
  'lbwiki': {'site': 'lbwiki',
   'title': 'Waasser',
   'badges': [],
   'url': 'https://lb.wikipedia.org/wiki/Waasser'},
  'lezwiki': {'site': 'lezwiki',
   'title': 'Яд',
   'badges': [],
   'url': 'https://lez.wikipedia.org/wiki/%D0%AF%D0%B4'},
  'lfnwiki': {'site': 'lfnwiki',
   'title': 'Acua',
   'badges': [],
   'url': 'https://lfn.wikipedia.org/wiki/Acua'},
  'lgwiki': {'site': 'lgwiki',
   'title': 'Amazzi',
   'badges': [],
   'url': 'https://lg.wikipedia.org/wiki/Amazzi'},
  'lijwiki': {'site': 'lijwiki',
   'title': 'Ægoa',
   'badges': [],
   'url': 'https://lij.wikipedia.org/wiki/%C3%86goa'},
  'liwiki': {'site': 'liwiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://li.wikipedia.org/wiki/Water'},
  'lldwiki': {'site': 'lldwiki',
   'title': 'Èga',
   'badges': [],
   'url': 'https://lld.wikipedia.org/wiki/%C3%88ga'},
  'lmowiki': {'site': 'lmowiki',
   'title': 'Aqua',
   'badges': [],
   'url': 'https://lmo.wikipedia.org/wiki/Aqua'},
  'lnwiki': {'site': 'lnwiki',
   'title': 'Mái',
   'badges': [],
   'url': 'https://ln.wikipedia.org/wiki/M%C3%A1i'},
  'ltgwiki': {'site': 'ltgwiki',
   'title': 'Iudiņs',
   'badges': [],
   'url': 'https://ltg.wikipedia.org/wiki/Iudi%C5%86s'},
  'ltwiki': {'site': 'ltwiki',
   'title': 'Vanduo',
   'badges': [],
   'url': 'https://lt.wikipedia.org/wiki/Vanduo'},
  'ltwikiquote': {'site': 'ltwikiquote',
   'title': 'Vanduo',
   'badges': [],
   'url': 'https://lt.wikiquote.org/wiki/Vanduo'},
  'lvwiki': {'site': 'lvwiki',
   'title': 'Ūdens',
   'badges': [],
   'url': 'https://lv.wikipedia.org/wiki/%C5%AAdens'},
  'maiwiki': {'site': 'maiwiki',
   'title': 'पानी',
   'badges': [],
   'url': 'https://mai.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%A8%E0%A5%80'},
  'map_bmswiki': {'site': 'map_bmswiki',
   'title': 'Banyu',
   'badges': [],
   'url': 'https://map-bms.wikipedia.org/wiki/Banyu'},
  'mdfwiki': {'site': 'mdfwiki',
   'title': 'Ведь',
   'badges': [],
   'url': 'https://mdf.wikipedia.org/wiki/%D0%92%D0%B5%D0%B4%D1%8C'},
  'mgwiki': {'site': 'mgwiki',
   'title': 'Rano',
   'badges': [],
   'url': 'https://mg.wikipedia.org/wiki/Rano'},
  'minwiki': {'site': 'minwiki',
   'title': 'Aia',
   'badges': [],
   'url': 'https://min.wikipedia.org/wiki/Aia'},
  'miwiki': {'site': 'miwiki',
   'title': 'Wai',
   'badges': [],
   'url': 'https://mi.wikipedia.org/wiki/Wai'},
  'mkwiki': {'site': 'mkwiki',
   'title': 'Вода',
   'badges': ['Q17437796'],
   'url': 'https://mk.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'mlwiki': {'site': 'mlwiki',
   'title': 'ജലം',
   'badges': [],
   'url': 'https://ml.wikipedia.org/wiki/%E0%B4%9C%E0%B4%B2%E0%B4%82'},
  'mniwiki': {'site': 'mniwiki',
   'title': 'ꯏꯁꯤꯡ',
   'badges': [],
   'url': 'https://mni.wikipedia.org/wiki/%EA%AF%8F%EA%AF%81%EA%AF%A4%EA%AF%A1'},
  'mnwiki': {'site': 'mnwiki',
   'title': 'Ус',
   'badges': [],
   'url': 'https://mn.wikipedia.org/wiki/%D0%A3%D1%81'},
  'mrwiki': {'site': 'mrwiki',
   'title': 'पाणी',
   'badges': [],
   'url': 'https://mr.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%A3%E0%A5%80'},
  'mswiki': {'site': 'mswiki',
   'title': 'Air',
   'badges': [],
   'url': 'https://ms.wikipedia.org/wiki/Air'},
  'mwlwiki': {'site': 'mwlwiki',
   'title': 'Auga',
   'badges': [],
   'url': 'https://mwl.wikipedia.org/wiki/Auga'},
  'myvwiki': {'site': 'myvwiki',
   'title': 'Ведь',
   'badges': [],
   'url': 'https://myv.wikipedia.org/wiki/%D0%92%D0%B5%D0%B4%D1%8C'},
  'mywiki': {'site': 'mywiki',
   'title': 'ရေ',
   'badges': [],
   'url': 'https://my.wikipedia.org/wiki/%E1%80%9B%E1%80%B1'},
  'mznwiki': {'site': 'mznwiki',
   'title': 'ئو',
   'badges': [],
   'url': 'https://mzn.wikipedia.org/wiki/%D8%A6%D9%88'},
  'nahwiki': {'site': 'nahwiki',
   'title': 'Atl',
   'badges': [],
   'url': 'https://nah.wikipedia.org/wiki/Atl'},
  'napwiki': {'site': 'napwiki',
   'title': 'Acqua',
   'badges': [],
   'url': 'https://nap.wikipedia.org/wiki/Acqua'},
  'nawiki': {'site': 'nawiki',
   'title': 'Ebok',
   'badges': [],
   'url': 'https://na.wikipedia.org/wiki/Ebok'},
  'nds_nlwiki': {'site': 'nds_nlwiki',
   'title': 'Woater',
   'badges': [],
   'url': 'https://nds-nl.wikipedia.org/wiki/Woater'},
  'ndswiki': {'site': 'ndswiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://nds.wikipedia.org/wiki/Water'},
  'newiki': {'site': 'newiki',
   'title': 'पानी',
   'badges': [],
   'url': 'https://ne.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%A8%E0%A5%80'},
  'newwiki': {'site': 'newwiki',
   'title': 'लः',
   'badges': [],
   'url': 'https://new.wikipedia.org/wiki/%E0%A4%B2%E0%A4%83'},
  'nlwiki': {'site': 'nlwiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://nl.wikipedia.org/wiki/Water'},
  'nlwikinews': {'site': 'nlwikinews',
   'title': 'Categorie:Water',
   'badges': [],
   'url': 'https://nl.wikinews.org/wiki/Categorie:Water'},
  'nnwiki': {'site': 'nnwiki',
   'title': 'Vatn',
   'badges': [],
   'url': 'https://nn.wikipedia.org/wiki/Vatn'},
  'nnwikiquote': {'site': 'nnwikiquote',
   'title': 'Vatn',
   'badges': [],
   'url': 'https://nn.wikiquote.org/wiki/Vatn'},
  'nowiki': {'site': 'nowiki',
   'title': 'Vann',
   'badges': [],
   'url': 'https://no.wikipedia.org/wiki/Vann'},
  'nqowiki': {'site': 'nqowiki',
   'title': 'ߖߌ',
   'badges': [],
   'url': 'https://nqo.wikipedia.org/wiki/%DF%96%DF%8C'},
  'nrmwiki': {'site': 'nrmwiki',
   'title': 'Ieau',
   'badges': [],
   'url': 'https://nrm.wikipedia.org/wiki/Ieau'},
  'nvwiki': {'site': 'nvwiki',
   'title': 'Tó',
   'badges': [],
   'url': 'https://nv.wikipedia.org/wiki/T%C3%B3'},
  'ocwiki': {'site': 'ocwiki',
   'title': 'Aiga',
   'badges': [],
   'url': 'https://oc.wikipedia.org/wiki/Aiga'},
  'omwiki': {'site': 'omwiki',
   'title': 'Bishaan',
   'badges': [],
   'url': 'https://om.wikipedia.org/wiki/Bishaan'},
  'orwiki': {'site': 'orwiki',
   'title': 'ଜଳ',
   'badges': [],
   'url': 'https://or.wikipedia.org/wiki/%E0%AC%9C%E0%AC%B3'},
  'oswiki': {'site': 'oswiki',
   'title': 'Дон',
   'badges': [],
   'url': 'https://os.wikipedia.org/wiki/%D0%94%D0%BE%D0%BD'},
  'pamwiki': {'site': 'pamwiki',
   'title': 'Danum',
   'badges': [],
   'url': 'https://pam.wikipedia.org/wiki/Danum'},
  'papwiki': {'site': 'papwiki',
   'title': 'Awa',
   'badges': [],
   'url': 'https://pap.wikipedia.org/wiki/Awa'},
  'pawiki': {'site': 'pawiki',
   'title': 'ਪਾਣੀ',
   'badges': [],
   'url': 'https://pa.wikipedia.org/wiki/%E0%A8%AA%E0%A8%BE%E0%A8%A3%E0%A9%80'},
  'pcdwiki': {'site': 'pcdwiki',
   'title': 'Ieu',
   'badges': [],
   'url': 'https://pcd.wikipedia.org/wiki/Ieu'},
  'pdcwiki': {'site': 'pdcwiki',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://pdc.wikipedia.org/wiki/Wasser'},
  'pflwiki': {'site': 'pflwiki',
   'title': 'Wasser',
   'badges': [],
   'url': 'https://pfl.wikipedia.org/wiki/Wasser'},
  'pihwiki': {'site': 'pihwiki',
   'title': 'Worta',
   'badges': [],
   'url': 'https://pih.wikipedia.org/wiki/Worta'},
  'plwiki': {'site': 'plwiki',
   'title': 'Woda',
   'badges': [],
   'url': 'https://pl.wikipedia.org/wiki/Woda'},
  'plwikiquote': {'site': 'plwikiquote',
   'title': 'Woda',
   'badges': [],
   'url': 'https://pl.wikiquote.org/wiki/Woda'},
  'pmswiki': {'site': 'pmswiki',
   'title': 'Eva',
   'badges': [],
   'url': 'https://pms.wikipedia.org/wiki/Eva'},
  'pnbwiki': {'site': 'pnbwiki',
   'title': 'پاݨی',
   'badges': [],
   'url': 'https://pnb.wikipedia.org/wiki/%D9%BE%D8%A7%DD%A8%DB%8C'},
  'pswiki': {'site': 'pswiki',
   'title': 'اوبه',
   'badges': [],
   'url': 'https://ps.wikipedia.org/wiki/%D8%A7%D9%88%D8%A8%D9%87'},
  'ptwiki': {'site': 'ptwiki',
   'title': 'Água',
   'badges': ['Q17437796'],
   'url': 'https://pt.wikipedia.org/wiki/%C3%81gua'},
  'ptwikinews': {'site': 'ptwikinews',
   'title': 'Categoria:Água',
   'badges': [],
   'url': 'https://pt.wikinews.org/wiki/Categoria:%C3%81gua'},
  'ptwikiquote': {'site': 'ptwikiquote',
   'title': 'Água',
   'badges': [],
   'url': 'https://pt.wikiquote.org/wiki/%C3%81gua'},
  'quwiki': {'site': 'quwiki',
   'title': 'Yaku',
   'badges': [],
   'url': 'https://qu.wikipedia.org/wiki/Yaku'},
  'roa_rupwiki': {'site': 'roa_rupwiki',
   'title': 'Apâ',
   'badges': [],
   'url': 'https://roa-rup.wikipedia.org/wiki/Ap%C3%A2'},
  'rowiki': {'site': 'rowiki',
   'title': 'Apă',
   'badges': [],
   'url': 'https://ro.wikipedia.org/wiki/Ap%C4%83'},
  'ruewiki': {'site': 'ruewiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://rue.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'ruwiki': {'site': 'ruwiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://ru.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'ruwikinews': {'site': 'ruwikinews',
   'title': 'Категория:Вода',
   'badges': [],
   'url': 'https://ru.wikinews.org/wiki/%D0%9A%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D1%8F:%D0%92%D0%BE%D0%B4%D0%B0'},
  'ruwikiquote': {'site': 'ruwikiquote',
   'title': 'Вода',
   'badges': [],
   'url': 'https://ru.wikiquote.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'sahwiki': {'site': 'sahwiki',
   'title': 'Уу',
   'badges': [],
   'url': 'https://sah.wikipedia.org/wiki/%D0%A3%D1%83'},
  'satwiki': {'site': 'satwiki',
   'title': 'ᱫᱟᱜ',
   'badges': [],
   'url': 'https://sat.wikipedia.org/wiki/%E1%B1%AB%E1%B1%9F%E1%B1%9C'},
  'sawiki': {'site': 'sawiki',
   'title': 'जलम्',
   'badges': [],
   'url': 'https://sa.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B2%E0%A4%AE%E0%A5%8D'},
  'scnwiki': {'site': 'scnwiki',
   'title': 'Acqua (vìppita)',
   'badges': ['Q17437796'],
   'url': 'https://scn.wikipedia.org/wiki/Acqua_(v%C3%ACppita)'},
  'scowiki': {'site': 'scowiki',
   'title': 'Watter',
   'badges': [],
   'url': 'https://sco.wikipedia.org/wiki/Watter'},
  'scwiki': {'site': 'scwiki',
   'title': 'Aba',
   'badges': [],
   'url': 'https://sc.wikipedia.org/wiki/Aba'},
  'sdwiki': {'site': 'sdwiki',
   'title': 'پاڻي',
   'badges': [],
   'url': 'https://sd.wikipedia.org/wiki/%D9%BE%D8%A7%DA%BB%D9%8A'},
  'sewiki': {'site': 'sewiki',
   'title': 'Čáhci',
   'badges': [],
   'url': 'https://se.wikipedia.org/wiki/%C4%8C%C3%A1hci'},
  'shiwiki': {'site': 'shiwiki',
   'title': 'Aman',
   'badges': [],
   'url': 'https://shi.wikipedia.org/wiki/Aman'},
  'shnwiki': {'site': 'shnwiki',
   'title': 'ၼမ်ႉ',
   'badges': [],
   'url': 'https://shn.wikipedia.org/wiki/%E1%81%BC%E1%80%99%E1%80%BA%E1%82%89'},
  'shwiki': {'site': 'shwiki',
   'title': 'Voda',
   'badges': [],
   'url': 'https://sh.wikipedia.org/wiki/Voda'},
  'simplewiki': {'site': 'simplewiki',
   'title': 'Water',
   'badges': [],
   'url': 'https://simple.wikipedia.org/wiki/Water'},
  'siwiki': {'site': 'siwiki',
   'title': 'ජලය',
   'badges': [],
   'url': 'https://si.wikipedia.org/wiki/%E0%B6%A2%E0%B6%BD%E0%B6%BA'},
  'skrwiki': {'site': 'skrwiki',
   'title': 'پاݨی',
   'badges': [],
   'url': 'https://skr.wikipedia.org/wiki/%D9%BE%D8%A7%DD%A8%DB%8C'},
  'skwiki': {'site': 'skwiki',
   'title': 'Voda',
   'badges': [],
   'url': 'https://sk.wikipedia.org/wiki/Voda'},
  'skwikiquote': {'site': 'skwikiquote',
   'title': 'Voda',
   'badges': [],
   'url': 'https://sk.wikiquote.org/wiki/Voda'},
  'slwiki': {'site': 'slwiki',
   'title': 'Voda',
   'badges': ['Q17437796'],
   'url': 'https://sl.wikipedia.org/wiki/Voda'},
  'slwikiquote': {'site': 'slwikiquote',
   'title': 'Voda',
   'badges': [],
   'url': 'https://sl.wikiquote.org/wiki/Voda'},
  'smwiki': {'site': 'smwiki',
   'title': 'Vai',
   'badges': [],
   'url': 'https://sm.wikipedia.org/wiki/Vai'},
  'snwiki': {'site': 'snwiki',
   'title': 'Mvura',
   'badges': [],
   'url': 'https://sn.wikipedia.org/wiki/Mvura'},
  'sowiki': {'site': 'sowiki',
   'title': 'Biyo',
   'badges': [],
   'url': 'https://so.wikipedia.org/wiki/Biyo'},
  'sqwiki': {'site': 'sqwiki',
   'title': 'Uji',
   'badges': [],
   'url': 'https://sq.wikipedia.org/wiki/Uji'},
  'srwiki': {'site': 'srwiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://sr.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'srwikiquote': {'site': 'srwikiquote',
   'title': 'Вода',
   'badges': [],
   'url': 'https://sr.wikiquote.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'stqwiki': {'site': 'stqwiki',
   'title': 'Woater',
   'badges': [],
   'url': 'https://stq.wikipedia.org/wiki/Woater'},
  'stwiki': {'site': 'stwiki',
   'title': 'Metsi',
   'badges': [],
   'url': 'https://st.wikipedia.org/wiki/Metsi'},
  'suwiki': {'site': 'suwiki',
   'title': 'Cai',
   'badges': [],
   'url': 'https://su.wikipedia.org/wiki/Cai'},
  'svwiki': {'site': 'svwiki',
   'title': 'Vatten',
   'badges': [],
   'url': 'https://sv.wikipedia.org/wiki/Vatten'},
  'swwiki': {'site': 'swwiki',
   'title': 'Maji',
   'badges': [],
   'url': 'https://sw.wikipedia.org/wiki/Maji'},
  'szlwiki': {'site': 'szlwiki',
   'title': 'Woda',
   'badges': [],
   'url': 'https://szl.wikipedia.org/wiki/Woda'},
  'szywiki': {'site': 'szywiki',
   'title': 'nanum',
   'badges': [],
   'url': 'https://szy.wikipedia.org/wiki/nanum'},
  'tawiki': {'site': 'tawiki',
   'title': 'நீர்',
   'badges': [],
   'url': 'https://ta.wikipedia.org/wiki/%E0%AE%A8%E0%AF%80%E0%AE%B0%E0%AF%8D'},
  'taywiki': {'site': 'taywiki',
   'title': 'sya',
   'badges': [],
   'url': 'https://tay.wikipedia.org/wiki/%E2%80%99sya'},
  'tcywiki': {'site': 'tcywiki',
   'title': 'ನೀರ್',
   'badges': [],
   'url': 'https://tcy.wikipedia.org/wiki/%E0%B2%A8%E0%B3%80%E0%B2%B0%E0%B3%8D'},
  'tewiki': {'site': 'tewiki',
   'title': 'నీరు',
   'badges': [],
   'url': 'https://te.wikipedia.org/wiki/%E0%B0%A8%E0%B1%80%E0%B0%B0%E0%B1%81'},
  'tgwiki': {'site': 'tgwiki',
   'title': 'Об',
   'badges': [],
   'url': 'https://tg.wikipedia.org/wiki/%D0%9E%D0%B1'},
  'thwiki': {'site': 'thwiki',
   'title': 'น้ำ',
   'badges': [],
   'url': 'https://th.wikipedia.org/wiki/%E0%B8%99%E0%B9%89%E0%B8%B3'},
  'tkwiki': {'site': 'tkwiki',
   'title': 'Suw',
   'badges': [],
   'url': 'https://tk.wikipedia.org/wiki/Suw'},
  'tlwiki': {'site': 'tlwiki',
   'title': 'Tubig',
   'badges': [],
   'url': 'https://tl.wikipedia.org/wiki/Tubig'},
  'towiki': {'site': 'towiki',
   'title': 'Vai',
   'badges': [],
   'url': 'https://to.wikipedia.org/wiki/Vai'},
  'trwiki': {'site': 'trwiki',
   'title': 'Su',
   'badges': [],
   'url': 'https://tr.wikipedia.org/wiki/Su'},
  'trwikiquote': {'site': 'trwikiquote',
   'title': 'Su',
   'badges': [],
   'url': 'https://tr.wikiquote.org/wiki/Su'},
  'tswiki': {'site': 'tswiki',
   'title': 'Mati',
   'badges': [],
   'url': 'https://ts.wikipedia.org/wiki/Mati'},
  'ttwiki': {'site': 'ttwiki',
   'title': 'Су',
   'badges': [],
   'url': 'https://tt.wikipedia.org/wiki/%D0%A1%D1%83'},
  'twwiki': {'site': 'twwiki',
   'title': 'Nsuo',
   'badges': [],
   'url': 'https://tw.wikipedia.org/wiki/Nsuo'},
  'udmwiki': {'site': 'udmwiki',
   'title': 'Ву',
   'badges': [],
   'url': 'https://udm.wikipedia.org/wiki/%D0%92%D1%83'},
  'ugwiki': {'site': 'ugwiki',
   'title': 'سۇ',
   'badges': [],
   'url': 'https://ug.wikipedia.org/wiki/%D8%B3%DB%87'},
  'ukwiki': {'site': 'ukwiki',
   'title': 'Вода',
   'badges': [],
   'url': 'https://uk.wikipedia.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'ukwikiquote': {'site': 'ukwikiquote',
   'title': 'Вода',
   'badges': [],
   'url': 'https://uk.wikiquote.org/wiki/%D0%92%D0%BE%D0%B4%D0%B0'},
  'urwiki': {'site': 'urwiki',
   'title': 'پانی',
   'badges': [],
   'url': 'https://ur.wikipedia.org/wiki/%D9%BE%D8%A7%D9%86%DB%8C'},
  'urwikiquote': {'site': 'urwikiquote',
   'title': 'پانی',
   'badges': [],
   'url': 'https://ur.wikiquote.org/wiki/%D9%BE%D8%A7%D9%86%DB%8C'},
  'uzwiki': {'site': 'uzwiki',
   'title': 'Suv',
   'badges': [],
   'url': 'https://uz.wikipedia.org/wiki/Suv'},
  'uzwikiquote': {'site': 'uzwikiquote',
   'title': 'Suv',
   'badges': [],
   'url': 'https://uz.wikiquote.org/wiki/Suv'},
  'vecwiki': {'site': 'vecwiki',
   'title': 'Àcua',
   'badges': ['Q17437796'],
   'url': 'https://vec.wikipedia.org/wiki/%C3%80cua'},
  'vepwiki': {'site': 'vepwiki',
   'title': 'Vezi',
   'badges': [],
   'url': 'https://vep.wikipedia.org/wiki/Vezi'},
  'viwiki': {'site': 'viwiki',
   'title': 'Nước',
   'badges': [],
   'url': 'https://vi.wikipedia.org/wiki/N%C6%B0%E1%BB%9Bc'},
  'vlswiki': {'site': 'vlswiki',
   'title': 'Woater',
   'badges': [],
   'url': 'https://vls.wikipedia.org/wiki/Woater'},
  'vowiki': {'site': 'vowiki',
   'title': 'Vat',
   'badges': [],
   'url': 'https://vo.wikipedia.org/wiki/Vat'},
  'warwiki': {'site': 'warwiki',
   'title': 'Tubig',
   'badges': [],
   'url': 'https://war.wikipedia.org/wiki/Tubig'},
  'wawiki': {'site': 'wawiki',
   'title': 'Aiwe (tchimeye)',
   'badges': [],
   'url': 'https://wa.wikipedia.org/wiki/Aiwe_(tchimeye)'},
  'wowiki': {'site': 'wowiki',
   'title': 'Ndox',
   'badges': [],
   'url': 'https://wo.wikipedia.org/wiki/Ndox'},
  'wuuwiki': {'site': 'wuuwiki',
   'title': '水',
   'badges': [],
   'url': 'https://wuu.wikipedia.org/wiki/%E6%B0%B4'},
  'xhwiki': {'site': 'xhwiki',
   'title': 'Amanzi',
   'badges': [],
   'url': 'https://xh.wikipedia.org/wiki/Amanzi'},
  'xmfwiki': {'site': 'xmfwiki',
   'title': 'წყარი',
   'badges': [],
   'url': 'https://xmf.wikipedia.org/wiki/%E1%83%AC%E1%83%A7%E1%83%90%E1%83%A0%E1%83%98'},
  'yiwiki': {'site': 'yiwiki',
   'title': 'וואסער',
   'badges': [],
   'url': 'https://yi.wikipedia.org/wiki/%D7%95%D7%95%D7%90%D7%A1%D7%A2%D7%A8'},
  'yowiki': {'site': 'yowiki',
   'title': 'Omi',
   'badges': [],
   'url': 'https://yo.wikipedia.org/wiki/Omi'},
  'zawiki': {'site': 'zawiki',
   'title': 'Raemx',
   'badges': [],
   'url': 'https://za.wikipedia.org/wiki/Raemx'},
  'zh_classicalwiki': {'site': 'zh_classicalwiki',
   'title': '水',
   'badges': [],
   'url': 'https://zh-classical.wikipedia.org/wiki/%E6%B0%B4'},
  'zh_min_nanwiki': {'site': 'zh_min_nanwiki',
   'title': 'Chúi',
   'badges': [],
   'url': 'https://zh-min-nan.wikipedia.org/wiki/Ch%C3%BAi'},
  'zh_yuewiki': {'site': 'zh_yuewiki',
   'title': '水',
   'badges': [],
   'url': 'https://zh-yue.wikipedia.org/wiki/%E6%B0%B4'},
  'zhwiki': {'site': 'zhwiki',
   'title': '水',
   'badges': [],
   'url': 'https://zh.wikipedia.org/wiki/%E6%B0%B4'},
  'zhwikiquote': {'site': 'zhwikiquote',
   'title': '水',
   'badges': [],
   'url': 'https://zh.wikiquote.org/wiki/%E6%B0%B4'},
  'zuwiki': {'site': 'zuwiki',
   'title': 'Amanzi',
   'badges': [],
   'url': 'https://zu.wikipedia.org/wiki/Amanzi'}}}
In [86]:
 
Out[86]:
<re.Match object; span=(0, 24), match='http://www.wikidata.org/'>
In [84]:
url
Out[84]:
'http://www.wikidata.org/entity/Q283'
In [ ]: