<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wl.kgi.uni-mannheim.de/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin</id>
	<title>Wer Leitet? - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wl.kgi.uni-mannheim.de/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin"/>
	<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/wiki/Special:Contributions/Admin"/>
	<updated>2026-04-07T16:38:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.5</generator>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36498</id>
		<title>SPARQL examples</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36498"/>
		<updated>2024-08-05T14:12:08Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Persons==&lt;br /&gt;
&lt;br /&gt;
===Persons ordered by city with additional information if available===&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT ?city ?person ?personLabel ?birthDate ?birthPlace ?occupation ?mainInfo WHERE {&lt;br /&gt;
  ?person rdfs:label ?personLabel;&lt;br /&gt;
     wdt:P3 wd:Q2; &lt;br /&gt;
OPTIONAL {?person wdt:P381 ?city.}&lt;br /&gt;
OPTIONAL {?person wdt:P626 ?birthDate.}&lt;br /&gt;
OPTIONAL {?person wdt:P349 ?birthPlace.}&lt;br /&gt;
OPTIONAL {?person wdt:P999 ?occupation.}&lt;br /&gt;
OPTIONAL {?person wdt:P253 ?mainInfo.}&lt;br /&gt;
FILTER((LANG(?personLabel)) = &amp;quot;de&amp;quot;)&lt;br /&gt;
} ORDER BY ?city&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Persons in advisory boards in a time range===&lt;br /&gt;
&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT DISTINCT ?person ?personLabel ?beirat WHERE {&lt;br /&gt;
  ?person rdfs:label ?personLabel;&lt;br /&gt;
     wdt:P3 wd:Q2; &lt;br /&gt;
     wdt:P463 ?surname;&lt;br /&gt;
     p:P1012 [ps:P1012 ?beirat;&lt;br /&gt;
              pq:P4 ?pubDate].&lt;br /&gt;
FILTER((LANG(?personLabel)) = &amp;quot;de&amp;quot;)&lt;br /&gt;
FILTER(&amp;quot;1940-01-01&amp;quot;^^xsd:dateTime &amp;lt;= ?pubDate &amp;amp;&amp;amp; ?pubDate &amp;lt; &amp;quot;1941-01-01&amp;quot;^^xsd:dateTime).&lt;br /&gt;
} ORDER BY ?surname&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Count of occupations===&lt;br /&gt;
&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT DISTINCT (COUNT (?person) as ?noPeople) ?occupation WHERE {&lt;br /&gt;
 ?person wdt:P3 wd:Q2;&lt;br /&gt;
             wdt:P999 ?occupation.&lt;br /&gt;
 }&lt;br /&gt;
GROUP BY ?occupation HAVING (?noPeople  &amp;gt; 1)&lt;br /&gt;
ORDER BY DESC(?noPeople)&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Template:SPARQL&amp;diff=36497</id>
		<title>Template:SPARQL</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Template:SPARQL&amp;diff=36497"/>
		<updated>2024-08-05T12:54:52Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;Template to show syntax-highlighted SPARQL query and a few links at the bottom&amp;lt;/noinclude&amp;gt;{{#tag:syntaxhighlight|{{{query}}}|highlight=&amp;quot;{{{highlight|}}}&amp;quot;|start=&amp;quot;{{{start|1}}}&amp;quot;|{{{line|line}}}=line|lang=&amp;quot;sparql&amp;quot;|style=&amp;quot;margin:.5em; max-width: -moz-max-content;&lt;br /&gt;
min-width: 20em;&amp;quot;}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;displayonly&amp;quot;&amp;gt;[https://query.wl.kgi.uni-mannheim.de/#{{urlencode: {{{query}}} | PATH }} Try it!]&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36496</id>
		<title>SPARQL examples</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36496"/>
		<updated>2024-08-05T12:51:52Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Persons==&lt;br /&gt;
&lt;br /&gt;
===Persons in advisory boards in a time range===&lt;br /&gt;
&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT DISTINCT ?person ?personLabel ?beirat WHERE {&lt;br /&gt;
  ?person rdfs:label ?personLabel;&lt;br /&gt;
     wdt:P3 wd:Q2; &lt;br /&gt;
     wdt:P463 ?surname;&lt;br /&gt;
     p:P1012 [ps:P1012 ?beirat;&lt;br /&gt;
              pq:P4 ?pubDate].&lt;br /&gt;
FILTER((LANG(?personLabel)) = &amp;quot;de&amp;quot;)&lt;br /&gt;
FILTER(&amp;quot;1940-01-01&amp;quot;^^xsd:dateTime &amp;lt;= ?pubDate &amp;amp;&amp;amp; ?pubDate &amp;lt; &amp;quot;1941-01-01&amp;quot;^^xsd:dateTime).&lt;br /&gt;
} ORDER BY ?surname&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Count of occupations===&lt;br /&gt;
&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT DISTINCT (COUNT (?person) as ?noPeople) ?occupation WHERE {&lt;br /&gt;
 ?person wdt:P3 wd:Q2;&lt;br /&gt;
             wdt:P999 ?occupation.&lt;br /&gt;
 }&lt;br /&gt;
GROUP BY ?occupation HAVING (?noPeople  &amp;gt; 1)&lt;br /&gt;
ORDER BY DESC(?noPeople)&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36495</id>
		<title>SPARQL examples</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=SPARQL_examples&amp;diff=36495"/>
		<updated>2024-08-05T12:49:00Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;==Persons==  ===Persons in advisory boards in a time range===  {{SPARQL|query= SELECT DISTINCT ?person ?personLabel ?beirat WHERE {   ?person rdfs:label ?personLabel;      wdt:P3 wd:Q2;       wdt:P463 ?surname;      p:P1012 [ps:P1012 ?beirat;               pq:P4 ?pubDate]. FILTER((LANG(?personLabel)) = &amp;quot;de&amp;quot;) FILTER(&amp;quot;1940-01-01&amp;quot;^^xsd:dateTime &amp;lt;= ?pubDate &amp;amp;&amp;amp; ?pubDate &amp;lt; &amp;quot;1941-01-01&amp;quot;^^xsd:dateTime). } ORDER BY ?surname }}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Persons==&lt;br /&gt;
&lt;br /&gt;
===Persons in advisory boards in a time range===&lt;br /&gt;
&lt;br /&gt;
{{SPARQL|query=&lt;br /&gt;
SELECT DISTINCT ?person ?personLabel ?beirat WHERE {&lt;br /&gt;
  ?person rdfs:label ?personLabel;&lt;br /&gt;
     wdt:P3 wd:Q2; &lt;br /&gt;
     wdt:P463 ?surname;&lt;br /&gt;
     p:P1012 [ps:P1012 ?beirat;&lt;br /&gt;
              pq:P4 ?pubDate].&lt;br /&gt;
FILTER((LANG(?personLabel)) = &amp;quot;de&amp;quot;)&lt;br /&gt;
FILTER(&amp;quot;1940-01-01&amp;quot;^^xsd:dateTime &amp;lt;= ?pubDate &amp;amp;&amp;amp; ?pubDate &amp;lt; &amp;quot;1941-01-01&amp;quot;^^xsd:dateTime).&lt;br /&gt;
} ORDER BY ?surname&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Template:SPARQL&amp;diff=36494</id>
		<title>Template:SPARQL</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Template:SPARQL&amp;diff=36494"/>
		<updated>2024-08-05T12:47:27Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;&amp;lt;noinclude&amp;gt;Template to show syntax-highlighted SPARQL query and a few links at the bottom&amp;lt;/noinclude&amp;gt;{{#tag:syntaxhighlight|{{{query}}}|highlight=&amp;quot;{{{highlight|}}}&amp;quot;|start=&amp;quot;{{{start|1}}}&amp;quot;|{{{line|line}}}=line|lang=&amp;quot;sparql&amp;quot;|style=&amp;quot;margin:.5em; max-width: -moz-max-content; min-width: 20em;&amp;quot;}} &amp;lt;div class=&amp;quot;displayonly&amp;quot;&amp;gt;[https://query.akf.kgi.uni-mannheim.de/#{{urlencode: {{{query}}} | PATH }} Try it!]&amp;lt;/div&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;Template to show syntax-highlighted SPARQL query and a few links at the bottom&amp;lt;/noinclude&amp;gt;{{#tag:syntaxhighlight|{{{query}}}|highlight=&amp;quot;{{{highlight|}}}&amp;quot;|start=&amp;quot;{{{start|1}}}&amp;quot;|{{{line|line}}}=line|lang=&amp;quot;sparql&amp;quot;|style=&amp;quot;margin:.5em; max-width: -moz-max-content;&lt;br /&gt;
min-width: 20em;&amp;quot;}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;displayonly&amp;quot;&amp;gt;[https://query.akf.kgi.uni-mannheim.de/#{{urlencode: {{{query}}} | PATH }} Try it!]&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36493</id>
		<title>Item:Q10</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36493"/>
		<updated>2024-02-01T10:59:32Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Brettorf/Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36492</id>
		<title>Item:Q10</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36492"/>
		<updated>2024-02-01T10:58:38Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1|2 */ Property:P381: Brettorf/Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36491</id>
		<title>Item:Q10</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36491"/>
		<updated>2024-02-01T10:58:14Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1|1 */ Property:P381: Brettorf/Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36490</id>
		<title>Item:Q10</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36490"/>
		<updated>2024-02-01T10:57:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1|1 */ Property:P381: Brettorf/Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36489</id>
		<title>Item:Q10</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q10&amp;diff=36489"/>
		<updated>2024-02-01T10:42:43Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1|1 */ Property:P381: Brettorf/Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36488</id>
		<title>Item:Q1622</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36488"/>
		<updated>2023-11-24T13:00:41Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Nürnberg-A.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36487</id>
		<title>Item:Q1622</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36487"/>
		<updated>2023-11-24T13:00:34Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Nürnberg-A.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36486</id>
		<title>Item:Q1622</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36486"/>
		<updated>2023-11-24T13:00:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Altdorf, Ob. Amt Böblingen/Wttb.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36485</id>
		<title>Item:Q1622</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36485"/>
		<updated>2023-11-24T13:00:03Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Altdorf, Ob. Amt Böblingen/ Wttb.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36484</id>
		<title>Item:Q1622</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1622&amp;diff=36484"/>
		<updated>2023-11-24T12:59:31Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P206: Mauthalle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36483</id>
		<title>Item:Q1614</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36483"/>
		<updated>2023-11-24T12:58:52Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P349: Wien&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36482</id>
		<title>Item:Q1614</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36482"/>
		<updated>2023-11-24T12:58:23Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Leoben-Leitendorf/Steiermark&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36481</id>
		<title>Item:Q1614</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1614&amp;diff=36481"/>
		<updated>2023-11-24T12:58:13Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P808: Dipl.-Ing., Dr. jur.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1599&amp;diff=36480</id>
		<title>Item:Q1599</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1599&amp;diff=36480"/>
		<updated>2023-11-24T12:57:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: oProfessor für wirtschaftliche Staatswissenschaften an der Universität Köln&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1599&amp;diff=36479</id>
		<title>Item:Q1599</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1599&amp;diff=36479"/>
		<updated>2023-11-24T12:57:30Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P808: Professor, Dr.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1580&amp;diff=36478</id>
		<title>Item:Q1580</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1580&amp;diff=36478"/>
		<updated>2023-11-24T12:56:23Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: St. Andreasberg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1580&amp;diff=36477</id>
		<title>Item:Q1580</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1580&amp;diff=36477"/>
		<updated>2023-11-24T12:56:19Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: St. Andreasberg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1573&amp;diff=36476</id>
		<title>Item:Q1573</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1573&amp;diff=36476"/>
		<updated>2023-11-24T12:55:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Heidelberg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1573&amp;diff=36475</id>
		<title>Item:Q1573</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1573&amp;diff=36475"/>
		<updated>2023-11-24T12:55:25Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P206: Richard-Wagner-Straße 9&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36474</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36474"/>
		<updated>2023-11-24T12:54:53Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P349: Birnbaum&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36473</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36473"/>
		<updated>2023-11-24T12:54:20Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P381: Meseritz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36472</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36472"/>
		<updated>2023-11-24T12:54:10Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P381: Meseritz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36471</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36471"/>
		<updated>2023-11-24T12:53:40Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbremoveclaims-remove:1| */ Property:P999: Meseritz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36470</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36470"/>
		<updated>2023-11-24T12:53:38Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbremoveclaims-remove:1| */ Property:P999: Meseritz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36469</id>
		<title>Item:Q1547</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1547&amp;diff=36469"/>
		<updated>2023-11-24T12:53:13Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P206: Wilhelmstraße 1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1522&amp;diff=36468</id>
		<title>Item:Q1522</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1522&amp;diff=36468"/>
		<updated>2023-11-24T12:52:09Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Berlin NW 40&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1522&amp;diff=36467</id>
		<title>Item:Q1522</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1522&amp;diff=36467"/>
		<updated>2023-11-24T12:51:53Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P206: Helgoländer Ufer 6&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1506&amp;diff=36466</id>
		<title>Item:Q1506</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1506&amp;diff=36466"/>
		<updated>2023-11-24T12:50:31Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Stargard/Pommern&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1406&amp;diff=36465</id>
		<title>Item:Q1406</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1406&amp;diff=36465"/>
		<updated>2023-11-24T11:11:43Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: Landwirt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1405&amp;diff=36464</id>
		<title>Item:Q1405</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1405&amp;diff=36464"/>
		<updated>2023-11-24T11:11:21Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: Direktor&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1406&amp;diff=36463</id>
		<title>Item:Q1406</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1406&amp;diff=36463"/>
		<updated>2023-11-24T10:59:28Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Gohren, Krs. Stolp/Pommern&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36462</id>
		<title>Item:Q1400</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36462"/>
		<updated>2023-11-24T10:57:44Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: Direktor bei der Reichsbank, Zweiter Vorstandsbeamter der Reichsbankhauptstelle Königsberg/Preußen&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36461</id>
		<title>Item:Q1400</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36461"/>
		<updated>2023-11-24T10:57:11Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Königsberg/Preußen&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36460</id>
		<title>Item:Q1400</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36460"/>
		<updated>2023-11-24T10:56:43Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Neuruppin&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36459</id>
		<title>Item:Q1400</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1400&amp;diff=36459"/>
		<updated>2023-11-24T10:56:16Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P206: Schloßplatz 2/3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1330&amp;diff=36458</id>
		<title>Item:Q1330</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1330&amp;diff=36458"/>
		<updated>2023-11-23T14:57:01Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Ahstedt Krs. Marienburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1330&amp;diff=36457</id>
		<title>Item:Q1330</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1330&amp;diff=36457"/>
		<updated>2023-11-23T14:56:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Ahstedt Krs. Marienburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36456</id>
		<title>Item:Q1320</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36456"/>
		<updated>2023-11-23T14:55:11Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: Ingenieur&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36455</id>
		<title>Item:Q1320</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36455"/>
		<updated>2023-11-23T14:55:07Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P999: Ingenieur&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36454</id>
		<title>Item:Q1320</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36454"/>
		<updated>2023-11-23T14:54:48Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Löningen in Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36453</id>
		<title>Item:Q1320</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1320&amp;diff=36453"/>
		<updated>2023-11-23T14:54:44Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P349: Löningen in Oldenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1302&amp;diff=36452</id>
		<title>Item:Q1302</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1302&amp;diff=36452"/>
		<updated>2023-11-23T14:54:05Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P206: Adolf-Hitler-Ring 41&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1302&amp;diff=36451</id>
		<title>Item:Q1302</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1302&amp;diff=36451"/>
		<updated>2023-11-23T14:53:25Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P381: Eilenburg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1243&amp;diff=36450</id>
		<title>Item:Q1243</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1243&amp;diff=36450"/>
		<updated>2023-11-23T14:52:12Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-create:2||1 */ Property:P626: 8.0.1888&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1243&amp;diff=36449</id>
		<title>Item:Q1243</title>
		<link rel="alternate" type="text/html" href="https://wl.kgi.uni-mannheim.de/w/index.php?title=Item:Q1243&amp;diff=36449"/>
		<updated>2023-11-23T14:51:50Z</updated>

		<summary type="html">&lt;p&gt;Admin: /* wbsetclaim-update:2||1 */ Property:P596: 8.0.1888&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>