-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkbga-organisations.xml
9929 lines (9929 loc) · 503 KB
/
kbga-organisations.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xml:id="kbga-organisations-file">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Karl Barth Gesamtausgabe: Liste der Organisationen</title>
</titleStmt>
<editionStmt>
<edition>Digitale Karl Barth-Gesamtausgabe</edition>
<sponsor>Schweizerische Akademie der Geistes- und Sozialwissenschaften (SAGW)</sponsor>
<sponsor>Schweizerischer Nationalfonds (SNF)</sponsor>
<sponsor>Karl Barth-Stiftung</sponsor>
</editionStmt>
<publicationStmt>
<publisher>Karl Barth-Archiv</publisher>
<pubPlace>Basel</pubPlace>
<date when="2025">2025</date>
<availability>
<licence target="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons BY-SA 4.0</licence>
</availability>
</publicationStmt>
<sourceDesc>
<p>Datenbankexport vom 2025-02-06 09:15:26</p>
<p>Es wurden die Datensätze exportiert die in den Bänden 1,3,5,12,19,27,29,39,40,50,53,55,56 verwendet wurden.</p>
</sourceDesc>
</fileDesc>
<profileDesc/>
<encodingDesc>
<listPrefixDef>
<prefixDef ident="kbga-actors-id" matchPattern="kbga-actors-(\d+)" replacementPattern="https://karl-barth.ch/actors/$1">
<p>kbga-actors-id verweist auf einen actor (Person, Organisation) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-places-id" matchPattern="kbga-places-(\d+)" replacementPattern="https://karl-barth.ch/places/$1">
<p>kbga-places-id verweist auf einen place (Ort, Stadt, Land) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-sources-id" matchPattern="kbga-sources-(\d+)" replacementPattern="https://karl-barth.ch/sources/$1">
<p>kbga-sources-id verweist auf eine source (Vorlage/Quelle) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-terms-id" matchPattern="kbga-terms-(\d+)" replacementPattern="https://karl-barth.ch/terms/$1">
<p>kbga-terms-id verweist auf einen term (Begriff) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-songs-id" matchPattern="kbga-songs-(\d+)" replacementPattern="https://karl-barth.ch/songs/$1">
<p>kbga-songs-id verweist auf einen song (Lied) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-bibls-id" matchPattern="kbga-bibls-(\d+)" replacementPattern="https://karl-barth.ch/bibls/$1">
<p>kbga-bibls-id verweist auf einen bibl (Literatureintrag) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kbga-texts-id" matchPattern="kbga-texts-(\d+)" replacementPattern="https://karl-barth.ch/texts/$1">
<p>kbga-texts-id verweist auf einen text (Text) in der Karl Barth-Gesamtausgabe</p>
</prefixDef>
<prefixDef ident="kba-actors-id" matchPattern="kba-actors-(\d+)" replacementPattern="https://kba.karl-barth.ch/actors/$1">
<p>kba-actors-id verweist auf einen actor (Person, Organisation o.ä.) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-places-id" matchPattern="kba-places-(\d+)" replacementPattern="https://kba.karl-barth.ch/places/$1">
<p>kba-places-id verweist auf einen place (Ort, Stadt, Land) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-keywords-id" matchPattern="kba-keywords-(\d+)" replacementPattern="https://kba.karl-barth.ch/keywords/$1">
<p>kba-keywords-id verweist auf ein keyword (Schlagwort) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-objects-id" matchPattern="kba-objects-(\d+)" replacementPattern="https://kba.karl-barth.ch/objects/$1">
<p>kba-objects-id verweist auf ein object (Verzeichnungseinheit) im Karl Barth-Archiv</p>
</prefixDef>
<prefixDef ident="kba-objects-identifier" matchPattern="kba-objects-([a-zA-Z0-9./]+)" replacementPattern="https://kba.karl-barth.ch/objects/identifier/$1">
<p>kba-objects-identifier verweist auf ein object (Verzeichnungseinheit) im Karl Barth-Archiv</p>
</prefixDef>
</listPrefixDef>
</encodingDesc>
<revisionDesc>
<change when="2025-02-06T09:15:26+01:00">teiHeader was automatically produced from the database 2025-02-06T09:15:26+01:00</change>
</revisionDesc>
</teiHeader>
<text>
<body>
<listOrg type="gloss" xml:id="kbga-organisations">
<head>Organisationen</head>
<org xml:id="kbga-actors-8246">
<orgName>(Religiös-soziales) Pfarrer-Kränzli, Aargau-Basel</orgName>
<orgName type="full">(Religiös-soziales) Pfarrer-Kränzli, Aargau-Basel</orgName>
<orgName type="alternative">Religiös-Soziales Kränzchen</orgName>
<listBibl/>
<desc>Regelmäßige, teils örtlich getrennt stattfindende Treffen sich nahestehender, zu Beginn v.a. religiös-sozial orientierter reformierter Pfarrer aus dem Aargau, Basel-Stadt und Basel-Land; an den zu Austausch und Weiterbildung gedachten Zusammenkünften nahmen neben Barth u.a. Lukas Christ, Max Dietschi, Paul Schild, Eduard Thurneysen und Gottlob Wieser häufig teil.</desc>
</org>
<org xml:id="kbga-actors-9824">
<orgName>Aarburger Kirchentag</orgName>
<orgName type="full">Aarburger Kirchentag</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-9010">
<orgName>Aargau (Kanton)</orgName>
<orgName type="full">Aargau (Kanton)</orgName>
<listBibl/>
<desc>Kanton im Nordwesten der Schweiz, 1803 der Eidgenossenschaft beigetreten.</desc>
</org>
<org xml:id="kbga-actors-4530">
<orgName>Aargauer Tagblatt</orgName>
<orgName type="full">Aargauer Tagblatt (1847-1996)</orgName>
<birth when="1847"/>
<death when="1996"/>
<ref target="https://de.wikipedia.org/wiki/Aargauer_Tagblatt">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Aargauer_Tagblatt"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-4531">
<orgName>Aargauer Volksblatt</orgName>
<orgName type="full">Aargauer Volksblatt (1911-1992)</orgName>
<birth when="1911"/>
<death when="1992"/>
<ref target="https://de.wikipedia.org/wiki/Aargauer_Volksblatt">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Aargauer_Volksblatt"/>
</bibl>
</listBibl>
<desc>Katholisch-konservative Schweizer Tageszeitung in Baden AG.</desc>
</org>
<org xml:id="kbga-actors-9779">
<orgName>Aargauische reformierte Kirchensynode</orgName>
<orgName type="full">Aargauische reformierte Kirchensynode</orgName>
<listBibl/>
<desc>Höchstes Gremium (‹Parlament›) der aargauischen reformierten Kantonalkirche.</desc>
</org>
<org xml:id="kbga-actors-8784">
<orgName>Ägypten</orgName>
<orgName type="full">Ägypten (1922- )</orgName>
<orgName type="alternative">Arabische Republik Ägypten</orgName>
<birth when="1922"/>
<ref target="https://de.wikipedia.org/wiki/Ägypten">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q79">wikidata</ref>
<ref target="https://viaf.org/viaf/130890862/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n80061791">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/viaf-4146635346841981376/">worldcat</ref>
<ref target="https://d-nb.info/gnd/4000556-2">gnd</ref>
<ref target="https://www.britannica.com/place/Egypt">encyclopaedia-britannica-online</ref>
<ref target="https://www.newadvent.org/cathen/05329b.htm">catholic-encyclopedia</ref>
<ref target="https://hls-dhs-dss.ch/de/articles/003431">hls</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Ägypten"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q79"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/130890862/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n80061791"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/viaf-4146635346841981376/"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/4000556-2"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/place/Egypt"/>
</bibl>
<bibl>
<ptr type="catholic-encyclopedia" target="https://www.newadvent.org/cathen/05329b.htm"/>
</bibl>
<bibl>
<ptr type="hls" target="https://hls-dhs-dss.ch/de/articles/003431"/>
</bibl>
</listBibl>
<desc>Als Königreich und britisches Protektorat von der Besatzungsmacht unabhängig gewordener Staat in Nordostafrika, der sich selbst als Nachfolgestaat des antiken Pharaonenreiches (Altes Ägypten) verstand; 1953 nach einem Militärputsch im Jahr zuvor neu als Arabische Republik konstituiert.</desc>
</org>
<org xml:id="kbga-actors-8475">
<orgName>Akademie von Saumur</orgName>
<orgName type="full">Akademie von Saumur</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8796">
<orgName>Alpirsbacher Bewegung</orgName>
<orgName type="full">Alpirsbacher Bewegung</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8734">
<orgName>Altes Ägypten</orgName>
<orgName type="full">Altes Ägypten</orgName>
<ref target="https://de.wikipedia.org/wiki/Altes_Ägypten">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q11768">wikidata</ref>
<ref target="https://d-nb.info/gnd/4068430-1">gnd</ref>
<ref target="https://viaf.org/viaf/106146462599127770328/">viaf</ref>
<ref target="https://www.britannica.com/place/ancient-Egypt">encyclopaedia-britannica-online</ref>
<ref target="https://www.worldcat.org/identities/viaf-106146462599127770328/">worldcat</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Altes_Ägypten"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q11768"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/4068430-1"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/106146462599127770328/"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/place/ancient-Egypt"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/viaf-106146462599127770328/"/>
</bibl>
</listBibl>
<desc>Ägypten im Altertum; Pharaonenreich.</desc>
</org>
<org xml:id="kbga-actors-8939">
<orgName>Am heiligen Quell deutscher Kraft</orgName>
<orgName type="full">Am heiligen Quell deutscher Kraft</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8213">
<orgName>Andover-Newton Theological School</orgName>
<orgName type="full">Andover-Newton Theological School</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-9909">
<orgName>Arbeiterverein Safenwil</orgName>
<orgName type="full">Arbeiterverein Safenwil</orgName>
<ref target="https://kba.karl-barth.ch/actors/548">kba</ref>
<listBibl>
<bibl>
<ptr type="kba" target="https://kba.karl-barth.ch/actors/548"/>
</bibl>
</listBibl>
<desc>Sozialdemokratisch orientierte Vereinigung von Arbeitern in Safenwil, an deren Versammlungen Barth mehrfach Vorträge hielt.</desc>
</org>
<org xml:id="kbga-actors-8251">
<orgName>Asketischen Gesellschaft</orgName>
<orgName type="full">Asketischen Gesellschaft</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8735">
<orgName>Assyrien</orgName>
<orgName type="full">Assyrien</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8589">
<orgName>Auswärtiges Amt (Deutsches Reich)</orgName>
<orgName type="full">Auswärtiges Amt (Deutsches Reich)</orgName>
<ref target="https://d-nb.info/gnd/2029553-4">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Auswärtiges_Amt">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/2029553-4"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Auswärtiges_Amt"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8540">
<orgName>Baptisten Weltkongress Berlin 1934</orgName>
<orgName type="full">Baptisten Weltkongress Berlin 1934</orgName>
<ref target="https://d-nb.info/gnd/1215860382">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1215860382"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8325">
<orgName>Baselland (Kanton)</orgName>
<orgName type="full">Baselland (Kanton) (1501- )</orgName>
<orgName type="alternative">Basel-Land</orgName>
<orgName type="alternative">Basel-Landschaft</orgName>
<orgName type="variant">Baselbiet</orgName>
<orgName type="abbreviation">BL</orgName>
<birth when="1501"/>
<ref target="https://de.wikipedia.org/wiki/Kanton_Basel-Landschaft">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q12146">wikidata</ref>
<ref target="https://viaf.org/viaf/138954768/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n95112386">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n95112386/">worldcat</ref>
<ref target="https://d-nb.info/gnd/4004619-9">gnd</ref>
<ref target="https://www.britannica.com/place/Basel-Landschaft">encyclopaedia-britannica-online</ref>
<ref target="https://hls-dhs-dss.ch/de/articles/007477">hls</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Kanton_Basel-Landschaft"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q12146"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/138954768/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n95112386"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n95112386/"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/4004619-9"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/place/Basel-Landschaft"/>
</bibl>
<bibl>
<ptr type="hls" target="https://hls-dhs-dss.ch/de/articles/007477"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8324">
<orgName>Basler Arbeiter-Zeitung</orgName>
<orgName type="full">Basler Arbeiter-Zeitung (1868-1992)</orgName>
<birth when="1868"/>
<death when="1992"/>
<ref target="https://d-nb.info/gnd/1086479920">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1086479920"/>
</bibl>
</listBibl>
<desc>Historische Schweizer Zeitung aus Basel mit sozialistischer, dann kommunistischer Ausrichtung; erschien unter verschiedenen Namen, 1921-1963 als „Basler Arbeiter-Zeitung“, bis zur Einstellung 1922 als „Die AZ Abend-Zeitung“.</desc>
</org>
<org xml:id="kbga-actors-9132">
<orgName>Basler Friedenskongress</orgName>
<orgName type="full">Basler Friedenskongress (1912)</orgName>
<orgName type="alternative">Internationaler Sozialisten-Kongress</orgName>
<birth when="1912-11-24"/>
<death when="1912-11-25"/>
<ref target="https://d-nb.info/gnd/5147498-0">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/5147498-0"/>
</bibl>
</listBibl>
<desc>Internationaler Kongress, an dem 500 führende Vertreter sozialistischer Parteien aus mehr als 20 Staaten teilnahmen.</desc>
</org>
<org xml:id="kbga-actors-8378">
<orgName>Basler Hilfswerk für deutsche Gelehrte</orgName>
<orgName type="full">Basler Hilfswerk für deutsche Gelehrte (1933- )</orgName>
<birth when="1933"/>
<ref target="https://d-nb.info/gnd/1086200098">gnd</ref>
<ref target="https://kba.karl-barth.ch/actors/4080">kba</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1086200098"/>
</bibl>
<bibl>
<ptr type="kba" target="https://kba.karl-barth.ch/actors/4080"/>
</bibl>
</listBibl>
<desc>Basler Zweig des Schweizerischen Hilfswerks für deutsche Gelehrte, dessen Leitung Barth 1935 übernahm.</desc>
</org>
<org xml:id="kbga-actors-8494">
<orgName>Basler Missionsgesellschaft</orgName>
<orgName type="full">Basler Missionsgesellschaft</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-5804">
<orgName>Basler Nachrichten</orgName>
<orgName type="full">Basler Nachrichten (1844-1977)</orgName>
<birth when="1844"/>
<death when="1977"/>
<ref target="https://de.wikipedia.org/wiki/Basler_Zeitung">wikipedia</ref>
<ref target="https://d-nb.info/gnd/1085892999">gnd</ref>
<ref target="https://kba.karl-barth.ch/actors/3063">kba</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Basler_Zeitung"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1085892999"/>
</bibl>
<bibl>
<ptr type="kba" target="https://kba.karl-barth.ch/actors/3063"/>
</bibl>
</listBibl>
<desc>Schweizerische regionale Tageszeitung der Stadt-Basel. Nach einer Fusion mit der National-Zeitung 1977 aufgegangen in der „Basler Zeitung“ (BaZ).</desc>
</org>
<org xml:id="kbga-actors-8618">
<orgName>Basler Volksblatt</orgName>
<orgName type="full">Basler Volksblatt (1873-1982)</orgName>
<birth when="1873"/>
<death when="1982"/>
<ref target="https://de.wikipedia.org/wiki/Basler_Volksblatt">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Basler_Volksblatt"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-487">
<orgName>Beck, C.H. (Verlag)</orgName>
<orgName type="full">Beck, C.H. (Verlag) (1763- )</orgName>
<birth when="1763"/>
<ref target="https://de.wikipedia.org/wiki/Verlag_C._H._Beck">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q896837">wikidata</ref>
<ref target="https://d-nb.info/gnd/2006624-7">gnd</ref>
<ref target="https://viaf.org/viaf/122629171/">viaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n88189619/">worldcat</ref>
<ref target="https://id.loc.gov/authorities/n88189619">lcnaf</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Verlag_C._H._Beck"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q896837"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/2006624-7"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/122629171/"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n88189619/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n88189619"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-7774">
<orgName>Bekennende Kirche</orgName>
<orgName type="full">Bekennende Kirche (1933-1945)</orgName>
<birth when="1933"/>
<death when="1945"/>
<ref target="https://de.wikipedia.org/wiki/Bekennende_Kirche">wikipedia</ref>
<ref target="https://kba.karl-barth.ch/actors/5412">kba</ref>
<ref target="https://d-nb.info/gnd/18072-5">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q161362">wikidata</ref>
<ref target="https://viaf.org/viaf/144788412/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n81082754">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n81082754/">worldcat</ref>
<ref target="https://www.britannica.com/topic/Confessing-Church">encyclopaedia-britannica-online</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekennende_Kirche"/>
</bibl>
<bibl>
<ptr type="kba" target="https://kba.karl-barth.ch/actors/5412"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/18072-5"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q161362"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/144788412/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n81082754"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n81082754/"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/topic/Confessing-Church"/>
</bibl>
</listBibl>
<desc>Sammelbezeichnung für die im Widerstand gegen die Machtübernahme der «Deutschen Christen» in der Deutschen Evangelischen Kirche sich seit 1933/34 sammelnden protestantischen Christen, die sich für ihr Handeln und bei der Bildung alternativer kirchenleitender Organe (Synoden, Bruderräte usw.) auf Bibel und Bekenntnis beriefen.</desc>
</org>
<org xml:id="kbga-actors-8273">
<orgName>Bekennende Kirche in Kurhessen</orgName>
<orgName type="full">Bekennende Kirche in Kurhessen</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8358">
<orgName>Bekenntniskirche</orgName>
<orgName type="full">Bekenntniskirche</orgName>
<orgName type="variant">Bekennende Kirche</orgName>
<ref target="https://d-nb.info/gnd/18072-5">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q161362">wikidata</ref>
<ref target="https://viaf.org/viaf/144788412/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n81082754">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n81082754/">worldcat</ref>
<ref target="https://www.britannica.com/topic/Confessing-Church">encyclopaedia-britannica-online</ref>
<ref target="https://de.wikipedia.org/wiki/Bekennende_Kirche">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/18072-5"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q161362"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/144788412/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n81082754"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n81082754/"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/topic/Confessing-Church"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekennende_Kirche"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8441">
<orgName>Bekenntnissynode Augsburg 1935 (Deutsche Evangelische Kirche)</orgName>
<orgName type="full">Bekenntnissynode Augsburg 1935 (Deutsche Evangelische Kirche) (1935)</orgName>
<birth when="1935-06-04"/>
<death when="1935-06-06"/>
<ref target="https://d-nb.info/gnd/3018482-4">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/3018482-4"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8432">
<orgName>Bekenntnissynode Bad Oeynhausen 1936 (Deutsche Evangelische Kirche)</orgName>
<orgName type="full">Bekenntnissynode Bad Oeynhausen 1936 (Deutsche Evangelische Kirche) (1936)</orgName>
<birth when="1936-02-18"/>
<death when="1936-02-22"/>
<ref target="https://d-nb.info/gnd/3018483-6">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/3018483-6"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-5393">
<orgName>Bekenntnissynode Barmen 1934 (Deutsche Evangelische Kirche)</orgName>
<orgName type="full">Bekenntnissynode Barmen 1934 (Deutsche Evangelische Kirche) (1934)</orgName>
<orgName type="variant">Reichsbekenntnissynode Barmen 1934</orgName>
<orgName type="variant">Barmer Bekenntnissynode von 1934</orgName>
<birth when="1934-05-29"/>
<death when="1934-05-31"/>
<ref target="https://de.wikipedia.org/wiki/Barmer_Bekenntnissynode">wikipedia</ref>
<ref target="https://d-nb.info/gnd/5049052-7">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q808359">wikidata</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Barmer_Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/5049052-7"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q808359"/>
</bibl>
</listBibl>
<desc>Die erste Bekenntnissynode der „Deutschen Evangelischen Kirche“ fand in der Gemarker Kirche Wuppertal-Barmen statt und war als konstituierende Synode der Bekennenden Kirche die erste von vier Reichsbekenntnissynoden der Bekennenden Kirche zur Zeit des Nationalsozialismus. Sie gilt als eines der wichtigsten Ereignisse der neueren Kirchengeschichte. Auf ihr wurde die Barmer Theologische Erklärung verabschiedet.</desc>
</org>
<org xml:id="kbga-actors-5873">
<orgName>Bekenntnissynode Barmen 1934 (Freie reformierte)</orgName>
<orgName type="full">Bekenntnissynode Barmen 1934 (Freie reformierte) (1934)</orgName>
<orgName type="variant">Freie reformiere Synode</orgName>
<birth when="1934-01-03"/>
<death when="1934-01-04"/>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<ref target="https://d-nb.info/gnd/5049052-7">gnd</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/5049052-7"/>
</bibl>
</listBibl>
<desc>Die erste Bekenntnissynode mit 167 Vertretern reformierter Gemeinden aus ganz Deutschland tagte in Wuppertal-Barmen und erhob die Forderung nach einer allein von Bibel und Bekenntnis her bestimmten (Neu-) Ordnung der Kirche; sie wandte sich damit gegen die Gleichschaltung der Kirchen durch die – der NS-Ideologie hörigen – „Deutschen Christen“.</desc>
</org>
<org xml:id="kbga-actors-8571">
<orgName>Bekenntnissynode Breslau 1936 (Evangelische Kirche der altpreußischen Union)</orgName>
<orgName type="full">Bekenntnissynode Breslau 1936 (Evangelische Kirche der altpreußischen Union)</orgName>
<ref target="https://de.wikipedia.org/wiki/Evangelische_Kirche_der_altpreußischen_Union">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q163202">wikidata</ref>
<ref target="https://viaf.org/viaf/135457733/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n80004103">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n80004103/">worldcat</ref>
<ref target="https://d-nb.info/gnd/26146-4">gnd</ref>
<ref target="https://www.britannica.com/topic/Prussian-Union-German-religious-history-1817">encyclopaedia-britannica-online</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Evangelische_Kirche_der_altpreußischen_Union"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q163202"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/135457733/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n80004103"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n80004103/"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/26146-4"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/topic/Prussian-Union-German-religious-history-1817"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8260">
<orgName>Bekenntnissynode Dahlem 1934 (Deutsche Evangelische Kirche)</orgName>
<orgName type="full">Bekenntnissynode Dahlem 1934 (Deutsche Evangelische Kirche)</orgName>
<ref target="https://d-nb.info/gnd/3018484-8">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/3018484-8"/>
</bibl>
</listBibl>
<desc>Zweite Reichsbekenntnissynode der Bekennenden Kirche am 19. und 20. Oktober 1934 in Berlin-Dahlem, auf der «kirchliche Notrecht» verabschiedet wurde und Karl Barth (für nur wenige Wochen) in das Leitungsorgan der Bekennenden Kirche berufen wurde.</desc>
</org>
<org xml:id="kbga-actors-8440">
<orgName>Bekenntnissynode Dahlem 1935 (Evangelische Kirche der altpreußischen Union)</orgName>
<orgName type="full">Bekenntnissynode Dahlem 1935 (Evangelische Kirche der altpreußischen Union) (1935)</orgName>
<birth when="1935"/>
<death when="1935"/>
<ref target="https://d-nb.info/gnd/6513593-3">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/6513593-3"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8510">
<orgName>Bekenntnissynode Dortmund 1936 (Westfalen)</orgName>
<orgName type="full">Bekenntnissynode Dortmund 1936 (Westfalen) (1936)</orgName>
<birth when="1936"/>
<death when="1936"/>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8636">
<orgName>Bekenntnissynode Halle/Saale 1937 (Evangelische Kirche der altpreußischen Union)</orgName>
<orgName type="full">Bekenntnissynode Halle/Saale 1937 (Evangelische Kirche der altpreußischen Union)</orgName>
<ref target="https://d-nb.info/gnd/1046397451">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Bekenntnissynode">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q815016">wikidata</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1046397451"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bekenntnissynode"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q815016"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8439">
<orgName>Bekenntnissynode Siegen 1935 (Freie reformierte)</orgName>
<orgName type="full">Bekenntnissynode Siegen 1935 (Freie reformierte)</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8730">
<orgName>Belgien</orgName>
<orgName type="full">Belgien (1830- )</orgName>
<birth when="1830-10-04"/>
<ref target="https://d-nb.info/gnd/4005406-8">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q31">wikidata</ref>
<ref target="https://www.newadvent.org/cathen/02395a.htm">catholic-encyclopedia</ref>
<ref target="https://hls-dhs-dss.ch/de/articles/003349">hls</ref>
<ref target="https://id.loc.gov/authorities/n80126041">lcnaf</ref>
<ref target="https://viaf.org/viaf/144248059/">viaf</ref>
<ref target="https://www.britannica.com/place/Belgium">encyclopaedia-britannica-online</ref>
<ref target="https://www.worldcat.org/identities/lccn-n80126041/">worldcat</ref>
<ref target="https://www.geonames.org/2802361">geonames</ref>
<ref target="https://de.wikipedia.org/wiki/Belgien">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/4005406-8"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q31"/>
</bibl>
<bibl>
<ptr type="catholic-encyclopedia" target="https://www.newadvent.org/cathen/02395a.htm"/>
</bibl>
<bibl>
<ptr type="hls" target="https://hls-dhs-dss.ch/de/articles/003349"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n80126041"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/144248059/"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/place/Belgium"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n80126041/"/>
</bibl>
<bibl>
<ptr type="geonames" target="https://www.geonames.org/2802361"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Belgien"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-8788">
<orgName>belgische Kolonie Kongo</orgName>
<orgName type="full">belgische Kolonie Kongo</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8291">
<orgName>Berliner Tageblatt</orgName>
<orgName type="full">Berliner Tageblatt</orgName>
<orgName type="variant">Berliner Tageblatt</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8351">
<orgName>Bern (Kanton)</orgName>
<orgName type="full">Bern (Kanton) (1353- )</orgName>
<orgName type="abbreviation">BE</orgName>
<birth when="1353"/>
<ref target="https://de.wikipedia.org/wiki/Kanton_Bern">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Kanton_Bern"/>
</bibl>
</listBibl>
<desc>Kanton in der westlichen Schweiz, dessen Hauptort die gleichnamige Bundesstadt ist; 1353 der Eidgenossenschaft beigetreten.</desc>
</org>
<org xml:id="kbga-actors-9043">
<orgName>Bern (Stadt und Republik)</orgName>
<orgName type="full">Bern (Stadt und Republik) ( -1798)</orgName>
<death when="1798"/>
<ref target="https://d-nb.info/gnd/1109823428">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q2326511">wikidata</ref>
<ref target="https://viaf.org/viaf/1112145428850186830931/">viaf</ref>
<ref target="https://www.worldcat.org/identities/viaf-1112145428850186830931/">worldcat</ref>
<ref target="https://de.wikipedia.org/wiki/Stadt_und_Republik_Bern">wikipedia</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1109823428"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q2326511"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/1112145428850186830931/"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/viaf-1112145428850186830931/"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Stadt_und_Republik_Bern"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-9046">
<orgName>Berne Land Company</orgName>
<orgName type="full">Berne Land Company</orgName>
<ref target="https://d-nb.info/gnd/108652442X">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/108652442X"/>
</bibl>
</listBibl>
<desc>Englische Finanzgesellschaft, die 1881 das Gebiet des heutigen Berner Stadtteils Kirchenfeld kaufte, um es nach der Erschliessung als Bauland zu verkaufen.</desc>
</org>
<org xml:id="kbga-actors-9045">
<orgName>Berner Burgergemeinde</orgName>
<orgName type="full">Berner Burgergemeinde (1833- )</orgName>
<birth when="1833"/>
<ref target="https://de.wikipedia.org/wiki/Burgergemeinde_Bern">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q1014896">wikidata</ref>
<ref target="https://id.loc.gov/authorities/n2015047129">lcnaf</ref>
<ref target="https://viaf.org/viaf/133233820/">viaf</ref>
<ref target="https://d-nb.info/gnd/10096512-X">gnd</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Burgergemeinde_Bern"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q1014896"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n2015047129"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/133233820/"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/10096512-X"/>
</bibl>
</listBibl>
<desc>Gemeinde der Burger Berns, die unabhängig von ihrem Wohnort das Heimatrecht der Burgergemeinde besitzen; ausser in den Kantonen Bern und Wallis heissen diese Schweizer Gemeinden Bürgergemeinden.</desc>
</org>
<org xml:id="kbga-actors-9765">
<orgName>Berner Konferenz</orgName>
<orgName type="full">Berner Konferenz</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-8768">
<orgName>Berner Tagwacht</orgName>
<orgName type="full">Berner Tagwacht</orgName>
<listBibl/>
</org>
<org xml:id="kbga-actors-9136">
<orgName>Berner Volkszeitung</orgName>
<orgName type="full">Berner Volkszeitung (1857- )</orgName>
<orgName type="alternative">Buchsi-Zeitung</orgName>
<birth when="1857"/>
<ref target="https://d-nb.info/gnd/1086451481">gnd</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/1086451481"/>
</bibl>
</listBibl>
<desc>Zunächst freisinnig, dann konservativ ausgerichtete Zeitung, die in Herzogenbuchsee erschien. Ihr prägender Chefredakteur Ulrich Dürrenmatt benannte 1880 ihr Programm mit «Christentum und konservative Demokratie».</desc>
</org>
<org xml:id="kbga-actors-8613">
<orgName>Blaues Kreuz</orgName>
<orgName type="full">Blaues Kreuz (1877- )</orgName>
<orgName type="alternative">Blaukreuzverein</orgName>
<orgName type="alternative">Blaues Kreuz der Schweiz</orgName>
<birth when="1877-09-21"/>
<ref target="https://de.wikipedia.org/wiki/Blaues_Kreuz">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q683721">wikidata</ref>
<ref target="https://viaf.org/viaf/138372057/">viaf</ref>
<ref target="https://id.loc.gov/authorities/n80060636">lcnaf</ref>
<ref target="https://www.worldcat.org/identities/lccn-n80060636/">worldcat</ref>
<ref target="https://d-nb.info/gnd/2021778-X">gnd</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Blaues_Kreuz"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q683721"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/138372057/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/n80060636"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/lccn-n80060636/"/>
</bibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/2021778-X"/>
</bibl>
</listBibl>
<desc>In der Schweiz gegründete, im deutschsprachigen Raum verbreitete, christlich geprägte Organisation der Abstinenzbewegung.</desc>
</org>
<org xml:id="kbga-actors-9846">
<orgName>Böhmen</orgName>
<orgName type="full">Böhmen</orgName>
<ref target="https://d-nb.info/gnd/4007467-5">gnd</ref>
<ref target="https://de.wikipedia.org/wiki/Böhmen">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q39193">wikidata</ref>
<ref target="https://www.britannica.com/place/Bohemia">encyclopaedia-britannica-online</ref>
<ref target="https://worldcat.org/identities/lccn-n83139163/">worldcat</ref>
<ref target="https://www.newadvent.org/cathen/02612b.htm">catholic-encyclopedia</ref>
<ref target="https://id.loc.gov/authorities/sh85015303">lcnaf</ref>
<ref target="https://viaf.org/viaf/246065600/">viaf</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/4007467-5"/>
</bibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Böhmen"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q39193"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/place/Bohemia"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://worldcat.org/identities/lccn-n83139163/"/>
</bibl>
<bibl>
<ptr type="catholic-encyclopedia" target="https://www.newadvent.org/cathen/02612b.htm"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/sh85015303"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/246065600/"/>
</bibl>
</listBibl>
<desc>Historisches Herzogtum, später Königreich in Mitteleuropa; 1198-1806 Teil des Heiligen Römischen Reiches deutscher Nation, ab 1804 Kronland im Kaisertum Österreich.</desc>
</org>
<org xml:id="kbga-actors-8745">
<orgName>Bolschewiki</orgName>
<orgName type="full">Bolschewiki (1912-1991)</orgName>
<orgName type="alternative">Kommunistische Partei Russlands (Bolschewiki)</orgName>
<orgName type="alternative">Kommunistische Partei der Sowjetunion</orgName>
<orgName type="variant">Bolschewisten</orgName>
<orgName type="variant">Bolschewistische Partei</orgName>
<birth when="1912"/>
<death when="1991-08-29"/>
<ref target="https://de.wikipedia.org/wiki/Bolschewiki">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q83372">wikidata</ref>
<ref target="https://www.britannica.com/topic/Bolshevik">encyclopaedia-britannica-online</ref>
<ref target="https://worldcat.org/identities/lccn-n82154776/">worldcat</ref>
<ref target="https://id.loc.gov/authorities/no2016018217">lcnaf</ref>
<ref target="https://viaf.org/viaf/125556967/">viaf</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Bolschewiki"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q83372"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/topic/Bolshevik"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://worldcat.org/identities/lccn-n82154776/"/>
</bibl>
<bibl>
<ptr type="lcnaf" target="https://id.loc.gov/authorities/no2016018217"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/125556967/"/>
</bibl>
</listBibl>
<desc>Ursprünglich die von Lenin angeführte radikale Fraktion innerhalb der «Sozialdemokratischen Arbeiterpartei Russlands», nach deren Spaltung 1912 eigenständig, seit 1918 «Kommunistische Partei Russlands (Bolschewiki)», seit 1952 «Kommunistische Partei der Sowjetunion» (KPdSU).</desc>
</org>
<org xml:id="kbga-actors-8285">
<orgName>Bonner Landgericht</orgName>
<orgName type="full">Bonner Landgericht</orgName>
<ref target="https://d-nb.info/gnd/2087979-9">gnd</ref>
<ref target="https://www.wikidata.org/wiki/Q1802819">wikidata</ref>
<ref target="https://viaf.org/viaf/146087719/">viaf</ref>
<ref target="https://www.worldcat.org/identities/viaf-146087719/">worldcat</ref>
<listBibl>
<bibl>
<ptr type="gnd" target="https://d-nb.info/gnd/2087979-9"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q1802819"/>
</bibl>
<bibl>
<ptr type="viaf" target="https://viaf.org/viaf/146087719/"/>
</bibl>
<bibl>
<ptr type="worldcat" target="https://www.worldcat.org/identities/viaf-146087719/"/>
</bibl>
</listBibl>
</org>
<org xml:id="kbga-actors-9362">
<orgName>Borgia</orgName>
<orgName type="full">Borgia</orgName>
<ref target="https://de.wikipedia.org/wiki/Borgia">wikipedia</ref>
<ref target="https://www.wikidata.org/wiki/Q237599">wikidata</ref>
<ref target="https://www.britannica.com/topic/Borgia-family">encyclopaedia-britannica-online</ref>
<ref target="https://id.loc.gov/authorities/sh94009678">lcnaf</ref>
<ref target="https://viaf.org/viaf/5146825076207631790/">viaf</ref>
<ref target="https://d-nb.info/gnd/118661817">gnd</ref>
<listBibl>
<bibl>
<ptr type="wikipedia" target="https://de.wikipedia.org/wiki/Borgia"/>
</bibl>
<bibl>
<ptr type="wikidata" target="https://www.wikidata.org/wiki/Q237599"/>
</bibl>
<bibl>
<ptr type="encyclopaedia-britannica-online" target="https://www.britannica.com/topic/Borgia-family"/>