From f4bb0efff364472d008cd857a4dcdf4dcc92136a Mon Sep 17 00:00:00 2001 From: Christian Boulanger <info@bibliograph.org> Date: Fri, 12 Jul 2024 18:02:40 +0200 Subject: [PATCH] Added convert-anystyle-data experiment --- .../anystyle-to-prodigy.ipynb | 5 +- .../anystyle-to-simple-json.ipynb | 115 +++++++ .../in/10.1515_zfrs-1980-0103.ttx | 2 +- .../in/10.1515_zfrs-1980-0103.xml | 65 ++-- .../in/10.1515_zfrs-1980-0104.ttx | 0 .../in/10.1515_zfrs-1980-0104.xml | 86 ++--- llm-nervaluate/llm-nervaluate.ipynb | 301 ++++++++++++------ .../out/10.1515_zfrs-1980-0103-parser.jsonl | 64 ---- .../out/10.1515_zfrs-1980-0104-parser.jsonl | 79 ----- 9 files changed, 388 insertions(+), 329 deletions(-) rename {prodigy => convert-anystyle-data}/anystyle-to-prodigy.ipynb (98%) create mode 100644 convert-anystyle-data/anystyle-to-simple-json.ipynb rename {prodigy => convert-anystyle-data}/in/10.1515_zfrs-1980-0103.ttx (99%) mode change 100755 => 100644 rename {prodigy => convert-anystyle-data}/in/10.1515_zfrs-1980-0103.xml (90%) mode change 100755 => 100644 rename {prodigy => convert-anystyle-data}/in/10.1515_zfrs-1980-0104.ttx (100%) mode change 100755 => 100644 rename {prodigy => convert-anystyle-data}/in/10.1515_zfrs-1980-0104.xml (93%) mode change 100755 => 100644 delete mode 100644 prodigy/out/10.1515_zfrs-1980-0103-parser.jsonl delete mode 100644 prodigy/out/10.1515_zfrs-1980-0104-parser.jsonl diff --git a/prodigy/anystyle-to-prodigy.ipynb b/convert-anystyle-data/anystyle-to-prodigy.ipynb similarity index 98% rename from prodigy/anystyle-to-prodigy.ipynb rename to convert-anystyle-data/anystyle-to-prodigy.ipynb index 3dca855..f8f5fbd 100644 --- a/prodigy/anystyle-to-prodigy.ipynb +++ b/convert-anystyle-data/anystyle-to-prodigy.ipynb @@ -6,7 +6,7 @@ "source": [ "# Convert AnyStyle training files to the Prodigy format\n", "\n", - "Converter functions written by GPT-4, see https://chat.openai.com/share/3f42ae1d-3066-4563-944d-3139b5e1e867" + "Converter functions written with the help GPT-4, see https://chat.openai.com/share/3f42ae1d-3066-4563-944d-3139b5e1e867 and https://chat.openai.com/share/b6832876-9424-4ff9-bd83-157f3197f805" ], "id": "cb631197c03a0768" }, @@ -36,9 +36,8 @@ }, "source": [ "import xml.etree.ElementTree as ET\n", - "import json\n", - "import regex as re\n", "import spacy\n", + "import json\n", "\n", "# Load the German NLP model\n", "nlp = spacy.load('de_core_news_sm')\n", diff --git a/convert-anystyle-data/anystyle-to-simple-json.ipynb b/convert-anystyle-data/anystyle-to-simple-json.ipynb new file mode 100644 index 0000000..a5ebe56 --- /dev/null +++ b/convert-anystyle-data/anystyle-to-simple-json.ipynb @@ -0,0 +1,115 @@ +{ + "cells": [ + { + "metadata": {}, + "cell_type": "markdown", + "source": "Convert AmyStyle training data to a simple JSONL format", + "id": "ae7e001161d678cc" + }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2024-07-12T15:57:59.317356Z", + "start_time": "2024-07-12T15:57:59.198914Z" + } + }, + "cell_type": "code", + "source": [ + "import xml.etree.ElementTree as ET\n", + "import json\n", + "import regex as re\n", + "import string\n", + "import glob\n", + "import os\n", + "\n", + "def xml_to_jsonl(input_xml_path, output_jsonl_path, tags):\n", + " tree = ET.parse(input_xml_path)\n", + " root = tree.getroot()\n", + "\n", + " with open(output_jsonl_path, 'w', encoding='utf-8') as f:\n", + " for sequence in root.findall('sequence'):\n", + " output = []\n", + " for element in sequence:\n", + " for tag in tags:\n", + " if type(tag) is tuple:\n", + " tag, fn = tag\n", + " if element.tag == tag:\n", + " value = fn(element.text) if callable(fn) else element.text\n", + " if len(output) == 0 or tag in output[-1]:\n", + " output.append({}) \n", + " output[-1][tag] = value\n", + " if len(output) > 0:\n", + " instance = {\n", + " \"in\" : \" \".join(element.text.strip() if element.text else '' for element in sequence),\n", + " \"out\" : output\n", + " }\n", + " f.write(json.dumps(instance) + '\\n')\n", + "\n", + "def remove_punctuation(text):\n", + " punctuation = set(string.punctuation)\n", + " start, end = 0, len(text)\n", + " while start < len(text) and text[start] in punctuation:\n", + " start += 1\n", + " while end > start and text[end - 1] in punctuation:\n", + " end -= 1\n", + " return text[start:end].strip()\n", + "\n", + "def clean_editor(text):\n", + " return remove_punctuation(re.sub(r'hrsg\\. v\\.|hg\\. v|hrsg|ed\\.|eds\\.|in:', '', text, flags=re.IGNORECASE))\n", + "\n", + "def clean_container(text):\n", + " return remove_punctuation(re.sub(r'in:|aus:|from:', '', text, flags=re.IGNORECASE))\n", + " \n", + "def extract_year(text): \n", + " m = re.search( r'[12][0-9]{3}', text)\n", + " return m.group(0) if m else None\n", + "\n", + "for input_file in glob.glob('in/*.xml'):\n", + " base_name = os.path.basename(input_file)\n", + " output_file = f'out/{os.path.splitext(base_name)[0]}-simple.jsonl'\n", + " xml_to_jsonl(input_file, output_file, [\n", + " (\"author\", remove_punctuation),\n", + " (\"editor\", clean_editor),\n", + " (\"authority\", remove_punctuation),\n", + " (\"title\", remove_punctuation),\n", + " (\"container-title\", clean_container),\n", + " (\"journal\", clean_container),\n", + " (\"date\", extract_year)\n", + " ])\n", + "\n" + ], + "id": "f101a4e2408d6313", + "outputs": [], + "execution_count": 30 + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "43e2040fed89c0bd" + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/prodigy/in/10.1515_zfrs-1980-0103.ttx b/convert-anystyle-data/in/10.1515_zfrs-1980-0103.ttx old mode 100755 new mode 100644 similarity index 99% rename from prodigy/in/10.1515_zfrs-1980-0103.ttx rename to convert-anystyle-data/in/10.1515_zfrs-1980-0103.ttx index 878d470..fa6568a --- a/prodigy/in/10.1515_zfrs-1980-0103.ttx +++ b/convert-anystyle-data/in/10.1515_zfrs-1980-0103.ttx @@ -969,7 +969,7 @@ blank | | | text | Quellen: 1 GMD-Erhebung, Amtsgerichte BRD 1971 -ref | 2 Eigene Erhebung, Arbeitsgericht Berlin, Gerichtsregister 1976 + | 2 Eigene Erhebung, Arbeitsgericht Berlin, Gerichtsregister 1976 | 3 Zählkarten-Statistik, Statist. Bundesamt: Fachserie 10 (Rechtspflege), Reihe 2, 1 (Zi | vilgerichte), 1971 und 1978 blank | diff --git a/prodigy/in/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/in/10.1515_zfrs-1980-0103.xml old mode 100755 new mode 100644 similarity index 90% rename from prodigy/in/10.1515_zfrs-1980-0103.xml rename to convert-anystyle-data/in/10.1515_zfrs-1980-0103.xml index 4e19912..acfacf3 --- a/prodigy/in/10.1515_zfrs-1980-0103.xml +++ b/convert-anystyle-data/in/10.1515_zfrs-1980-0103.xml @@ -11,14 +11,18 @@ <signal>Vgl.</signal> <author>Feest/Blankenburg,</author> <date>1972.</date> - <signal>Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über </signal> + <signal>Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle</signal> + <author>ich</author> + <note>ausführlicher in meinem Beitrag über </note> <title>,Nichtkriminalisierung als Struktur und Routine',</title> <date>1976.</date> </sequence> <sequence> <citation-number>3</citation-number> - <note>Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur</note> - <title>.Bereitschaft zur Anzeigeerstattung' </title> + <signal>Angaben aus einer Befragung von </signal> + <author>Peter MacNaughton-Smith und Richard Rosellen</author> + <note>zur</note> + <title>'Bereitschaft zur Anzeigeerstattung'</title> <note>Manuskript</note> <publisher> Max-Planck-Institut für Strafrecht,</publisher> <location>Freiburg</location> @@ -53,7 +57,7 @@ <sequence> <citation-number>7</citation-number> <signal>Zum Konzept der .Thematisierung von Recht' vgl.</signal> - <journal>Luhmann</journal> + <author>Luhmann</author> <date>1980,</date> <pages>S. 99—112.</pages> </sequence> @@ -118,7 +122,7 @@ </sequence> <sequence> <citation-number>17</citation-number> - <location>Steinbach</location> + <author>Steinbach</author> <date>1979,</date> <pages>S. 66 ff.;</pages> <author>Blankenburg/Blankenburg/Morasch</author> @@ -129,7 +133,9 @@ <citation-number>18</citation-number> <title>Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher*,</title> <author>(Blankenburg/Gorges/Reifner; Ticmann). </author> - <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für Ende 1980. Quelle: Eigene Befragung in West-Berlin 1979, Zu falls auswähl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen.</note> + <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für </note> + <date>Ende 1980. </date> + <note>Quelle: Eigene Befragung in West-Berlin 1979, Zufallsauswahl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen.</note> </sequence> <sequence> <citation-number>19</citation-number> @@ -144,10 +150,10 @@ </sequence> <sequence> <citation-number>21</citation-number> - <signal>Projektbericht</signal> - <author>.Rechtsschutzversicherung* (Blankenburg; Fiedler),</author> - <title>Veröffentlichung voraussichtlich Mitte</title> - <date>1980.</date> + <title>Projektbericht Rechtsschutzversicherung*.</title> + <author>(Blankenburg; Fiedler),</author> + <note>Veröffentlichung voraussichtlich</note> + <date>Mitte 1980.</date> </sequence> <sequence> <citation-number>22</citation-number> @@ -179,26 +185,13 @@ </sequence> <sequence> <citation-number>26</citation-number> - <author>Bender/Schumachcr</author> + <author>Bender/Schumacher</author> <date>1980,</date> <pages>S. 138.</pages> </sequence> - <sequence> - <citation-number>2</citation-number> - <title>Eigene Erhebung,</title> - <location>Arbeitsgericht Berlin, Gerichtsregister</location> - <date>1976</date> - </sequence> - <sequence> - <citation-number>3</citation-number> - <author>Zählkarten-Statistik, Statist. Bundesamt:</author> - <title>Fachserie 10 (Rechtspflege), Reihe</title> - <volume>2, 1 (Zivilgerichte),</volume> - <date>1971 und 1978</date> - </sequence> <sequence> <citation-number>27</citation-number> - <location>Steinbach</location> + <author>Steinbach</author> <date>1979,</date> <pages>S. 96 ff,</pages> <signal>vgl. auch</signal> @@ -219,14 +212,14 @@ </sequence> <sequence> <citation-number>30</citation-number> - <signal>Vgl. zum</signal> - <title>.Verrechtlichungs’begriff meinen Beitrag über: Recht als gradualisiertes Konzept</title> + <signal>Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: </signal> + <title>Recht als gradualisiertes Konzept</title> <date>1980,</date> <pages>S. 83—98.</pages> </sequence> <sequence> <citation-number>31</citation-number> - <location>Steinbach</location> + <author>Steinbach</author> <date>1979,</date> <pages>S. 35;</pages> <author>Bender/Schumacher</author> @@ -238,7 +231,9 @@ <author>Wanner</author> <date>1975,</date> <pages>S. 293—306</pages> - <note>hebt dies deutlich hervor, ebenso Bender/Schumacher</note> + <note>hebt dies deutlich hervor,</note> + <signal>ebenso</signal> + <author>Bender/Schumacher</author> <date>1980, </date> <pages>S. 72 ff.; </pages> <signal>sowie</signal> @@ -377,7 +372,7 @@ <location>Tübingen.</location> </sequence> <sequence> - <location>Hilden, Hartmut,</location> + <author>Hilden, Hartmut,</author> <date>1976:</date> <title>Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</title> </sequence> @@ -394,7 +389,8 @@ <author>Koch, Hartmut,</author> <date>1975:</date> <title>Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen.</title> - <location>Diss. Hamburg.</location> + <note>Diss.</note> + <location>Hamburg.</location> </sequence> <sequence> <author>Luhmann, Niklas,</author> @@ -415,19 +411,18 @@ <author>Reifner, Udo,</author> <date>1978:</date> <title>Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative,</title> - <location>Wissenschaftszentrum Berlin,</location> + <publisher>Wissenschaftszentrum Berlin,</publisher> <pages>IIM-dp/78—70.</pages> </sequence> <sequence> <author>Reifner, Udo,</author> <date>1979:</date> <title>Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.</title> - <location>Wissenschaftszentrum Berlin</location> + <publisher>Wissenschaftszentrum Berlin</publisher> <pages>IIM-dp/79—104.</pages> </sequence> <sequence> - <author>Reifner,</author> - <title>Udo und Irmela Gorges,</title> + <author>Reifner, Udo und Irmela Gorges,</author> <date>1980;</date> <title>Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe,</title> <editor>in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.):</editor> diff --git a/prodigy/in/10.1515_zfrs-1980-0104.ttx b/convert-anystyle-data/in/10.1515_zfrs-1980-0104.ttx old mode 100755 new mode 100644 similarity index 100% rename from prodigy/in/10.1515_zfrs-1980-0104.ttx rename to convert-anystyle-data/in/10.1515_zfrs-1980-0104.ttx diff --git a/prodigy/in/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/in/10.1515_zfrs-1980-0104.xml old mode 100755 new mode 100644 similarity index 93% rename from prodigy/in/10.1515_zfrs-1980-0104.xml rename to convert-anystyle-data/in/10.1515_zfrs-1980-0104.xml index 3be592a..c0f04ff --- a/prodigy/in/10.1515_zfrs-1980-0104.xml +++ b/convert-anystyle-data/in/10.1515_zfrs-1980-0104.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <dataset> <sequence> - <ignore>tiny. - Abgekürzt werden zitiert:</ignore> + <ignore>Abgekürzt werden zitiert:</ignore> <editor>Armer/Grimshaw (Hrsg.),</editor> <title>Comparative Social ResearchMethodological Problems and Strategies</title> <location>(New York, London, Sydney, Tokio</location> @@ -29,7 +29,8 @@ <title>Comparative Methods in Sociology</title> <location>(Berkeley, Los Angeles, London</location> <date>1971);</date> - <title>Zweigert/Kötz. Einführung in die Rechtsvergleichung</title> + <author>Zweigert/Kötz.</author> + <title>Einführung in die Rechtsvergleichung</title> <volume>Bd. I</volume> <date>(1971).</date> </sequence> @@ -92,8 +93,9 @@ <citation-number>7</citation-number> <author>Nowak,</author> <title>The Strategy of Cross-National Survey Research for the Development of Social Theory,</title> - <editor>in: Szalai/Petrella 3 (9 ff.):</editor> - <author> Rose,</author> + <editor>in: Szalai/Petrella</editor> + <pages>3 (9 ff.):</pages> + <author>Rose,</author> <title>Interkulturelle Forschung in der Rechtssoziologie,</title> <editor>in: Drobnig/Rehbinder</editor> <pages>171 ff.</pages> @@ -134,35 +136,39 @@ <signal>Dazu</signal> <author> Grimshau,</author> <title>Comparative Sociology - In What Ways Different From Other Sociologies?,</title> - <editor>in: Armer/Grimshaw </editor> + <editor>in: Armer/Grimshaw</editor> <pages>3 (18).</pages> - <title>Auch der Oberbegriff „cross System comparison" wird vorge schlagen, Tomasson, Introduction; Comparative Sociology — The State of the Art,</title> - <editor>in: Tomas son (Hrsg.),</editor> + <note>Auch der Oberbegriff „cross System comparison" wird vorgeschlagen,</note> + <author>Tomasson,</author> + <title>Introduction; Comparative Sociology — The State of the Art,</title> + <editor>in: Tomasson (Hrsg.),</editor> <container-title>Comparative Studies in Sociology</container-title> <volume>Vol. 1</volume> <location>(Greenwich, Conn.</location> <date>1978)</date> <pages>1.</pages> - <note>— Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen. Bi bliographien finden sich etwa bei Rokkan/Verba/Viet/Almasy</note> + <note>— Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen.</note> + <signal>Bibliographien finden sich etwa bei</signal> + <author>Rokkan/Verba/Viet/Almasy</author> <pages>117 ff.;</pages> - <author> Vallier</author> + <author>Vallier</author> <pages> 423 ff.;</pages> <author>Almasy/Balandier/Delatte,</author> <title>Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973 </title> <location>(Beverly Hills, London</location> <date>1976)</date> - <author>sowie bei Marsh</author> - <title>, Comparative Sociology</title> + <signal>sowie bei</signal> + <author>Marsh,</author> + <title>Comparative Sociology</title> <location>(New York, Chicago, San Francisco, Atlanta</location> <date>1967)</date> <pages>375 ff.</pages> - <ignore> Recbtsvergleichung und vergleichende Rechtssoziologie 69</ignore> </sequence> <sequence> <citation-number>12</citation-number> - <author>Dürkheim,</author> - <title>Les rigles de la methode sociologique </title> - <location>(PUF,</location> + <author>Durkheim,</author> + <title>Les règles de la methode sociologique </title> + <publisher>(PUF,</publisher> <location>Paris</location> <date>1977)</date> <pages>137.</pages> @@ -204,7 +210,7 @@ <signal>sowie</signal> <author>Smelser</author> <pages> 168 f.;</pages> - <author> Wir sing </author> + <author>Wirsing</author> <backref>(oben N. 8)</backref> <pages> 115.</pages> </sequence> @@ -212,8 +218,8 @@ <citation-number>15</citation-number> <signal>Näher dazu</signal> <author>Zelditch,</author> - <title>Intelligible Cotnparisons,</title> - <container-title>in: Vallier</container-title> + <title>Intelligible Comparisons,</title> + <editor>in: Vallier</editor> <pages>267 (270 ff.).</pages> </sequence> <sequence> @@ -224,7 +230,8 @@ </sequence> <sequence> <citation-number>17</citation-number> - <author>Siehe Zweigert,</author> + <signal>Siehe</signal> + <author>Zweigert,</author> <title>Die soziologische Dimension der Rechtsvergleichung,</title> <editor>in: Drobnig/Rebbinder</editor> <pages>151 (159).</pages> @@ -243,7 +250,8 @@ <citation-number>19</citation-number> <signal>Beispiel von</signal> <author>Carbonnier,</author> - <title>Sociologie juridique (Paris</title> + <title>Sociologie juridique</title> + <location>(Paris</location> <date>1972)</date> <pages>188 N. 1.</pages> </sequence> @@ -274,7 +282,7 @@ <pages>79 ff.</pages> <signal>— Siehe auch</signal> <author>Villmow/Albrecht,</author> - <title>Die Vergleichung als Metho de der Strafrechtswissenschaft und der Kriminologie,</title> + <title>Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie,</title> <journal>MschrKrim.</journal> <volume>62</volume> <date>(1979)</date> @@ -285,8 +293,7 @@ <signal>So etwa</signal> <author>K. H. Neumayer,</author> <title>Ziele und Methoden der Rechtsvergleichung,</title> - <journal>i</journal> - <container-title>n: Recueil des travaux suisses pr6sent6s au IXe Congris international de droit compare</container-title> + <container-title>in: Recueil des travaux suisses présentés au IXe Congrès international de droit compare</container-title> <date>(1976)</date> <pages>45 (48).</pages> </sequence> @@ -294,15 +301,15 @@ <citation-number>24</citation-number> <signal>Zur Abgrenzung näher</signal> <author>Rehbinder,</author> - <title>Erkenntnistheoretisches zum Verhältnis von Rechtsso ziologie und Rechtsvergleichung,</title> + <title>Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung,</title> <editor>in: Drobnig/Rehbinder</editor> <pages>56 ff.</pages> </sequence> <sequence> - <citation-number>25 </citation-number> - <signal>Näher dazu </signal> - <author>Merryman (oben N.</author> - <volume>18)</volume> + <citation-number>25</citation-number> + <signal>Näher dazu</signal> + <author>Merryman</author> + <backref>(oben N. 18)</backref> <pages>101 ff.</pages> </sequence> <sequence> @@ -355,7 +362,7 @@ <volume>6</volume> <date>(1978)</date> <pages>233 (240).</pages> - <note>Als besonders gefährlich hat sich die unkritische Übertra gung solcher Konzepte auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Er gebnis: „The U. S. law and development movement was largely a parochial expression of the American legal style“,</note> + <note>Als besonders gefährlich hat sich die unkritische Übertragung solcher Konzepte auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: „The U. S. law and development movement was largely a parochial expression of the American legal style“,</note> <author>Merryman,</author> <title>Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement,</title> <journal>Am. J. Comp. L.</journal> @@ -364,8 +371,8 @@ <pages>457 (479).</pages> </sequence> <sequence> - <citation-number>31 </citation-number> - <author>Payne </author> + <citation-number>31</citation-number> + <author>Payne</author> <backref>(oben N. 13)</backref> <pages> 15, 25 f.</pages> </sequence> @@ -373,7 +380,7 @@ <citation-number>32</citation-number> <author>Däubler,</author> <title>Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen,</title> - <journal>De mokratie und Recht</journal> + <journal>Demokratie und Recht</journal> <date>1979</date> <volume>/1</volume> <pages>S. 23 (31 ff.). -</pages> @@ -388,8 +395,8 @@ <sequence> <citation-number>33</citation-number> <author>Blankenburg,</author> - <title>Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration (</title> - <journal>HM discussion papers</journal> + <title>Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration</title> + <journal>(HM discussion papers</journal> <date>1978</date> <volume>—23)</volume> <pages>5 ff.</pages> @@ -491,7 +498,7 @@ <pages>194 ff., 221 f. -</pages> <signal>Siehe auch</signal> <author>Wilpert,</author> - <title>Die Messung von Mitbestimmungsnor men — Darstellung eines international vergleichenden Forschungsansatzes </title> + <title>Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes </title> <authority>(HM-Paper</authority> <date>1979—</date> <pages>13) 2 ff.</pages> @@ -808,11 +815,8 @@ <author>Rokkan,</author> <title>Vergleichende Sozialwissenschaft</title> <date>(1972)</date> - </sequence> - <sequence> - <citation-number>9</citation-number> - <ignore>ff.;</ignore> - <author> Szalai,</author> + <pages>9 ff.;</pages> + <author>Szalai,</author> <title>The Organization and Execution of Cross-National Survey Research Projects,</title> <editor>in: Szalai/Petrella</editor> <pages>49 ff.</pages> @@ -826,7 +830,7 @@ <signal>Siehe</signal> <author>Blegvad,</author> <title>Methodological Aspects of the Project „Local Legal Systems“,</title> - <editor>in.- Kulcsär (Hrsg.),</editor> + <editor>in: Kulcsár (Hrsg.),</editor> <container-title>Sociology of Law and Legal Sciences</container-title> <location>(Budapest</location> <date>1977)</date> diff --git a/llm-nervaluate/llm-nervaluate.ipynb b/llm-nervaluate/llm-nervaluate.ipynb index 007f170..e8ec072 100644 --- a/llm-nervaluate/llm-nervaluate.ipynb +++ b/llm-nervaluate/llm-nervaluate.ipynb @@ -1,13 +1,203 @@ { "cells": [ { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "# Prompt design\n", + "\n", + "Template has been adapted from https://sadlynothavocdinosaur.com/posts/diagram-sentence/" + ], + "id": "233c437cd1f9a650" + }, + { + "metadata": {}, "cell_type": "code", + "outputs": [], "execution_count": null, - "id": "initial_id", - "metadata": { - "collapsed": true - }, + "source": [ + "prompt_template = \"\"\"\n", + "Below I will provide you with German language references that have been extracted from the footnotes of academic texts. Your job is to segment the references contained in the lines into their constituent parts, and to produce an XML representation of the structure of the references, in such a way that when the text content of the XML nodes are joined by whitespace, the original text can be reconstructed (additional inserted whitespace does not matter).\n", + " \n", + "1. XML Structure:\n", + "\n", + "The XML consists of a <dataset> root and <sequence> nodes, one for each reference in the list with subnodes having the following tags: \n", + "- author: the author or authors of the references work. create one author node for each author\n", + "- backref: back-reference such as \"footnote 5, above\", \"ibid.\", \"ebd.\", etc., if the reference string is from a footnote \n", + "- citation-number: the number of the footnote, if applicable\n", + "- collection-title: the title of the series that contains a work, if applicable\n", + "- container-title: the title of the work containing the referenced work, if applicable\n", + "- date: the date of the work. in most cases, the year of publication\n", + "- editor: if the work has editors, provide one editor node per person. \n", + "- ignore: this node contains all text that does not belong to any other node. It is needed in the segmentation of footnotes, which contain additional commentary unrelated to the bibliographic information. \n", + "- journal: the name of the journal. In many cases, the journal name is abbreviated\n", + "- location: the location of the publisher, if given\n", + "- note: this nodes is for information that is not bibliographic but is relevant for the citation. see examples below\n", + "- pages: page numbers\n", + "- publisher: the name of the publisher, if given\n", + "- signal: the introductory signal phrase indicating the character of, and motivation for, the citation, such as \"see also\", \"cf.\", \"so auch\", \"anderer Meinung\", \"vgl.\". etc. In many cases, the signal phrase contains additional commentary.\n", + "- title: the title of the referenced work\n", + "- volume: volume and issue of the work, if applicable\n", + "\n", + "Note: \n", + "\n", + "2. Example input and output:\n", + "\n", + "INPUT: \n", + "\n", + "1 Geiger 1964, insbesondere S. 65—83.\n", + "2 Vgl. Feest/Blankenburg, 1972. Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über ,Nichtkriminalisierung als Struktur und Routine', 1976.\n", + "3 Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur 'Bereitschaft zur Anzeigeerstattung' Manuskript Max-Planck-Institut für Strafrecht, Freiburg 1978.\n", + "Der ausführliche Forschungsbericht von Richard Rosellen erscheint in Kürze unter dem Titel 'Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung', Berlin, voraussichtlich 1980.\n", + "4 Vgl. Blankenburg/ Sessar/ Steffen, 1978, S. 66-85.\n", + "27 Siehe etwa die Erklärung, warum das „Access to justice movement\" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von Blankenburg, Patterns of Legal Culture as a Variable for the Chances of Legal Innovation, in: Blankenburg (Hrsg.), innovations in the Legal Services (Cambridge, Mass.; Meisenheim 1980).\n", + "2 Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925), abgedruckt in: Rabel, Gesammelte Aufsätze III (Hrsg. Leser, 1967) 1 (3).\n", + "18 Zu entsprechenden Versuchen etwa Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Brüssel 1974) 81 (89 ff.).\n", + "\n", + "OUTPUT: \n", + "\n", + "<dataset>\n", + " <sequence>\n", + " <citation-number>1</citation-number>\n", + " <author>Geiger</author>\n", + " <date>1964,</date>\n", + " <pages>insbesondere S. 65—83.</pages>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>2</citation-number>\n", + " <signal>Vgl.</signal>\n", + " <author>Feest/Blankenburg,</author>\n", + " <date>1972.</date>\n", + " </sequence>\n", + " <sequence>\n", + " <signal>Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über </signal>\n", + " <title>,Nichtkriminalisierung als Struktur und Routine',</title>\n", + " <date>1976.</date>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>3</citation-number>\n", + " <note>Angaben aus einer Befragung von</note>\n", + " <author>Peter MacNaughton-Smith</author>\n", + " <ignore>und</ignore> \n", + " <author>Richard Rosellen</author>\n", + " <ignore>zur</ignore>\n", + " <title>'Bereitschaft zur Anzeigeerstattung' </title>\n", + " <note>Manuskript</note>\n", + " <publisher> Max-Planck-Institut für Strafrecht,</publisher>\n", + " <location>Freiburg</location>\n", + " <date>1978.</date>\n", + " </sequence>\n", + " <sequence>\n", + " <signal>Der ausführliche Forschungsbericht von </signal>\n", + " <author>Richard Rosellen</author>\n", + " <note>erscheint in Kürze unter dem Titel</note>\n", + " <title>'Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung',</title>\n", + " <location>Berlin,</location>\n", + " <date>voraussichtlich 1980.</date>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>4</citation-number>\n", + " <signal>Vgl.</signal>\n", + " <author>Blankenburg/</author>\n", + " <author>Sessar/</author>\n", + " <author>Steffen,</author>\n", + " <date>1978,</date>\n", + " <pages>S. 66-85.</pages>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>27</citation-number>\n", + " <signal>Siehe etwa die Erklärung, warum das „Access to justice movement" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von</signal>\n", + " <author>Blankenburg,</author>\n", + " <title>Patterns of Legal Culture as a Variable for the Chances of Legal Innovation,</title>\n", + " <editor>in: Blankenburg (Hrsg.),</editor>\n", + " <container-title>innovations in the Legal Services</container-title>\n", + " <location>(Cambridge, Mass.; Meisenheim</location>\n", + " <date>1980).</date>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>2</citation-number>\n", + " <author>Rabel,</author>\n", + " <title>Aufgabe und Notwendigkeit der Rechtsvergleichung (1925),</title>\n", + " <note>abgedruckt in:</note>\n", + " <author>Rabel,</author>\n", + " <title>Gesammelte Aufsätze</title>\n", + " <volume>III</volume>\n", + " <editor>(Hrsg. Leser,</editor>\n", + " <date>1967)</date>\n", + " <pages>1 (3).</pages>\n", + " </sequence>\n", + " <sequence>\n", + " <citation-number>18</citation-number>\n", + " <signal>Zu entsprechenden Versuchen etwa</signal>\n", + " <author>Merryman,</author>\n", + " <title>Comparative Law and Scientific Explanation,</title>\n", + " <container-title>in: Law in the United States of America in Social and Technological Revolution</container-title>\n", + " <location>(Brüssel</location>\n", + " <date>1974)</date>\n", + " <pages>81 (89 ff.).</pages>\n", + " </sequence>\n", + "</dataset>\n", + "\n", + "3. Conclusion:\n", + "\n", + "Now that I've given you these specifications, your job is to make such an object for the following list of references:\n", + "\n", + "{reference}\n", + "\n", + "DO NOT provide any additional commentary, simply return the XML data as per the specifications:\n", + "\n", + "\"\"\"" + ], + "id": "bc99427770b546bc" + }, + { + "metadata": {}, + "cell_type": "code", + "outputs": [], + "execution_count": null, + "source": "", + "id": "7268ce5243d868ff" + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": "", + "id": "850189270f4120f" + }, + { + "metadata": {}, + "cell_type": "code", + "execution_count": 29, + "source": [ + "import json\n", + "import regex as re \n", + "\n", + "input_path = \"data/10.1515_zfrs-1980-0103-finder.jsonl\"\n", + "\n", + "with open(input_path, 'r', encoding='utf-8') as file:\n", + " lines = file.readlines()\n", + " input = \"\"\n", + " \n", + "for line in lines[:3]:\n", + " item = json.loads(line)\n", + " text, spans = item['text'], item['spans']\n", + " for span in spans:\n", + " span_text = re.sub(r'^[\\p{P} ]+|[\\p{P} ]+$','',text[span['start']:span['end']])\n", + " output.append(f\"Text:{span_text}\\nLabel:{span['label']}\")\n", + " output = \"\\n\".join(output)\n", + " system_prompt += f'\\n>>EXAMPLE INPUT{input}\\n\\n>>EXAMPLE OUTPUT:\\n{output}\\n'\n", + " \n", + "\n", + "print(system_prompt)" + ], + "id": "50175a95d764932e", + "outputs": [] + }, + { + "metadata": {}, + "cell_type": "code", "outputs": [], + "execution_count": null, "source": [ "import os\n", "\n", @@ -39,109 +229,8 @@ "# Print full response as JSON\n", "content = response.choices[0].message.content\n", "print(content)" - ] - }, - { - "metadata": { - "ExecuteTime": { - "end_time": "2024-05-12T16:10:07.885095Z", - "start_time": "2024-05-12T16:10:07.875204Z" - } - }, - "cell_type": "code", - "source": [ - "import json\n", - "import regex as re \n", - "from random import shuffle\n", - "\n", - "system_prompt = \"\"\"\n", - "You are a named entity recognition agent, tasked with segmenting German language reference strings into their constituent parts. You will be provided with the reference strings, which can be footnotes or bibliography entries, and return the segmented parts as a sequence of \"text\" and \"label\" pairs. Separate each reference with a blank line. Recognize the following labels: author, backref (meaning: back-reference), citation-number, collection-title, container-title, date, editor, ignore, journal, location, note, pages, publisher, signal, title, volume. DO NOT provide any additional commentary, simply return the text-label pairs. Below are some examples, followed by the reference strings to be segmented.\n", - "\"\"\"\n", - "input_path = \"data/10.1515_zfrs-1980-0103-parser.jsonl\"\n", - "with open(input_path, 'r', encoding='utf-8') as file:\n", - " lines = file.readlines()\n", - " input = \"\"\n", - " \n", - "shuffle(lines)\n", - "\n", - "# Few-shot examples\n", - "for line in lines[:3]:\n", - " item = json.loads(line)\n", - " text, spans = item['text'], item['spans']\n", - " input += \"\\n\" + text\n", - " output = []\n", - " for span in spans:\n", - " span_text = re.sub(r'^[\\p{P} ]+|[\\p{P} ]+$','',text[span['start']:span['end']])\n", - " output.append(f\"Text:{span_text}\\nLabel:{span['label']}\")\n", - " output = \"\\n\".join(output)\n", - " system_prompt += f'\\n>>EXAMPLE INPUT{input}\\n\\n>>EXAMPLE OUTPUT:\\n{output}\\n'\n", - " \n", - "\n", - "print(system_prompt)" - ], - "id": "50175a95d764932e", - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "You are a named entity recognition agent, tasked with segmenting German language reference strings into their constituent parts. You will be provided with the reference strings, which can be footnotes or bibliography entries, and return the segmented parts as a sequence of \"text\" and \"label\" pairs. Separate each reference with a blank line. Recognize the following labels: author, backref (meaning: back-reference), citation-number, collection-title, container-title, date, editor, ignore, journal, location, note, pages, publisher, signal, title, volume. DO NOT provide any additional commentary, simply return the text-label pairs. Below are some examples, followed by the reference strings to be segmented.\n", - "\n", - ">>EXAMPLE INPUT\n", - "Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart.\n", - "\n", - ">>EXAMPLE OUTPUT:\n", - "Text:Blankenburg, Erhard\n", - "Label:author\n", - "Text:1976\n", - "Label:date\n", - "Text:Nichtkriminalisierung als Struktur und Routine\n", - "Label:title\n", - "Text:in: Göppinger\n", - "Label:editor\n", - "Text:Hans und Günter Kaiser: Kriminologie und Strafverfahren\n", - "Label:title\n", - "Text:Stuttgart\n", - "Label:location\n", - "\n", - ">>EXAMPLE INPUT\n", - "Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart.\n", - "3 Zählkarten-Statistik, Statist. Bundesamt: Fachserie 10 (Rechtspflege), Reihe 2, 1 (Zivilgerichte), 1971 und 1978\n", - "\n", - ">>EXAMPLE OUTPUT:\n", - "Text:3\n", - "Label:citation-number\n", - "Text:Zählkarten-Statistik, Statist. Bundesamt\n", - "Label:author\n", - "Text:Fachserie 10 (Rechtspflege), Reihe\n", - "Label:title\n", - "Text:2, 1 (Zivilgerichte\n", - "Label:volume\n", - "Text:1971 und 1978\n", - "Label:date\n", - "\n", - ">>EXAMPLE INPUT\n", - "Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart.\n", - "3 Zählkarten-Statistik, Statist. Bundesamt: Fachserie 10 (Rechtspflege), Reihe 2, 1 (Zivilgerichte), 1971 und 1978\n", - "21 Projektbericht .Rechtsschutzversicherung* (Blankenburg; Fiedler), Veröffentlichung voraussichtlich Mitte 1980.\n", - "\n", - ">>EXAMPLE OUTPUT:\n", - "Text:21\n", - "Label:citation-number\n", - "Text:Projektbericht\n", - "Label:signal\n", - "Text:Rechtsschutzversicherung* (Blankenburg; Fiedler\n", - "Label:author\n", - "Text:Veröffentlichung voraussichtlich Mitte\n", - "Label:title\n", - "Text:1980\n", - "Label:date\n", - "\n" - ] - } ], - "execution_count": 29 + "id": "initial_id" }, { "metadata": { diff --git a/prodigy/out/10.1515_zfrs-1980-0103-parser.jsonl b/prodigy/out/10.1515_zfrs-1980-0103-parser.jsonl deleted file mode 100644 index b9592e4..0000000 --- a/prodigy/out/10.1515_zfrs-1980-0103-parser.jsonl +++ /dev/null @@ -1,64 +0,0 @@ -{"text": "1 Geiger 1964, insbesondere S. 65\u201483.", "tokens": [{"text": "1", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Geiger", "start": 2, "end": 8, "id": 1, "ws": true}, {"text": "1964", "start": 9, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "insbesondere", "start": 15, "end": 27, "id": 4, "ws": true}, {"text": "S.", "start": 28, "end": 30, "id": 5, "ws": true}, {"text": "65\u201483.", "start": 31, "end": 37, "id": 6, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 8, "label": "author", "token_start": 1, "token_end": 1}, {"start": 9, "end": 14, "label": "date", "token_start": 2, "token_end": 3}, {"start": 15, "end": 37, "label": "pages", "token_start": 4, "token_end": 6}]} -{"text": "2 Vgl. Feest/Blankenburg, 1972. Die Konsequenz einer gr\u00f6\u00dferen Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausf\u00fchrlicher in meinem Beitrag \u00fcber ,Nichtkriminalisierung als Struktur und Routine', 1976.", "tokens": [{"text": "2", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Vgl", "start": 2, "end": 5, "id": 1, "ws": false}, {"text": ".", "start": 5, "end": 6, "id": 2, "ws": true}, {"text": "Feest", "start": 7, "end": 12, "id": 3, "ws": false}, {"text": "/", "start": 12, "end": 13, "id": 4, "ws": false}, {"text": "Blankenburg", "start": 13, "end": 24, "id": 5, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 6, "ws": true}, {"text": "1972.", "start": 26, "end": 31, "id": 7, "ws": true}, {"text": "Die", "start": 32, "end": 35, "id": 8, "ws": true}, {"text": "Konsequenz", "start": 36, "end": 46, "id": 9, "ws": true}, {"text": "einer", "start": 47, "end": 52, "id": 10, "ws": true}, {"text": "gr\u00f6\u00dferen", "start": 53, "end": 61, "id": 11, "ws": true}, {"text": "Dunkelziffer", "start": 62, "end": 74, "id": 12, "ws": true}, {"text": "bei", "start": 75, "end": 78, "id": 13, "ws": true}, {"text": "den", "start": 79, "end": 82, "id": 14, "ws": true}, {"text": "von", "start": 83, "end": 86, "id": 15, "ws": true}, {"text": "der", "start": 87, "end": 90, "id": 16, "ws": true}, {"text": "Polizei", "start": 91, "end": 98, "id": 17, "ws": true}, {"text": "selbst", "start": 99, "end": 105, "id": 18, "ws": true}, {"text": "entdeckten", "start": 106, "end": 116, "id": 19, "ws": true}, {"text": "Straftaten", "start": 117, "end": 127, "id": 20, "ws": true}, {"text": "entwickle", "start": 128, "end": 137, "id": 21, "ws": true}, {"text": "ich", "start": 138, "end": 141, "id": 22, "ws": true}, {"text": "ausf\u00fchrlicher", "start": 142, "end": 155, "id": 23, "ws": true}, {"text": "in", "start": 156, "end": 158, "id": 24, "ws": true}, {"text": "meinem", "start": 159, "end": 165, "id": 25, "ws": true}, {"text": "Beitrag", "start": 166, "end": 173, "id": 26, "ws": true}, {"text": "\u00fcber", "start": 174, "end": 178, "id": 27, "ws": true}, {"text": ",", "start": 179, "end": 180, "id": 28, "ws": false}, {"text": "Nichtkriminalisierung", "start": 180, "end": 201, "id": 29, "ws": true}, {"text": "als", "start": 202, "end": 205, "id": 30, "ws": true}, {"text": "Struktur", "start": 206, "end": 214, "id": 31, "ws": true}, {"text": "und", "start": 215, "end": 218, "id": 32, "ws": true}, {"text": "Routine", "start": 219, "end": 226, "id": 33, "ws": false}, {"text": "'", "start": 226, "end": 227, "id": 34, "ws": false}, {"text": ",", "start": 227, "end": 228, "id": 35, "ws": true}, {"text": "1976.", "start": 229, "end": 234, "id": 36, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 6, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 7, "end": 25, "label": "author", "token_start": 3, "token_end": 6}, {"start": 26, "end": 31, "label": "date", "token_start": 7, "token_end": 7}, {"start": 32, "end": 178, "label": "signal", "token_start": 8, "token_end": 27}, {"start": 179, "end": 228, "label": "title", "token_start": 28, "token_end": 35}, {"start": 229, "end": 234, "label": "date", "token_start": 36, "token_end": 36}]} -{"text": "3 Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur .Bereitschaft zur Anzeigeerstattung' Manuskript Max-Planck-Institut f\u00fcr Strafrecht, Freiburg 1978. Der ausf\u00fchrliche Forschungsbericht von Richard Rosellen erscheint in K\u00fcrze unter dem Titel .Private Verbrechenskontrolle \u2014 eine empirische Untersuchung zur Anzeigeerstattung', Berlin, voraussichtlich 1980.", "tokens": [{"text": "3", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Angaben", "start": 2, "end": 9, "id": 1, "ws": true}, {"text": "aus", "start": 10, "end": 13, "id": 2, "ws": true}, {"text": "einer", "start": 14, "end": 19, "id": 3, "ws": true}, {"text": "Befragung", "start": 20, "end": 29, "id": 4, "ws": true}, {"text": "von", "start": 30, "end": 33, "id": 5, "ws": true}, {"text": "Peter", "start": 34, "end": 39, "id": 6, "ws": true}, {"text": "MacNaughton-Smith", "start": 40, "end": 57, "id": 7, "ws": true}, {"text": "und", "start": 58, "end": 61, "id": 8, "ws": true}, {"text": "Richard", "start": 62, "end": 69, "id": 9, "ws": true}, {"text": "Rosellen", "start": 70, "end": 78, "id": 10, "ws": true}, {"text": "zur", "start": 79, "end": 82, "id": 11, "ws": true}, {"text": ".Bereitschaft", "start": 83, "end": 96, "id": 12, "ws": true}, {"text": "zur", "start": 97, "end": 100, "id": 13, "ws": true}, {"text": "Anzeigeerstattung", "start": 101, "end": 118, "id": 14, "ws": false}, {"text": "'", "start": 118, "end": 119, "id": 15, "ws": true}, {"text": "Manuskript", "start": 120, "end": 130, "id": 16, "ws": true}, {"text": "Max-Planck-Institut", "start": 131, "end": 150, "id": 17, "ws": true}, {"text": "f\u00fcr", "start": 151, "end": 154, "id": 18, "ws": true}, {"text": "Strafrecht", "start": 155, "end": 165, "id": 19, "ws": false}, {"text": ",", "start": 165, "end": 166, "id": 20, "ws": true}, {"text": "Freiburg", "start": 167, "end": 175, "id": 21, "ws": true}, {"text": "1978.", "start": 176, "end": 181, "id": 22, "ws": true}, {"text": "Der", "start": 182, "end": 185, "id": 23, "ws": true}, {"text": "ausf\u00fchrliche", "start": 186, "end": 198, "id": 24, "ws": true}, {"text": "Forschungsbericht", "start": 199, "end": 216, "id": 25, "ws": true}, {"text": "von", "start": 217, "end": 220, "id": 26, "ws": true}, {"text": "Richard", "start": 221, "end": 228, "id": 27, "ws": true}, {"text": " ", "start": 229, "end": 230, "id": 28, "ws": false}, {"text": "Rosellen", "start": 230, "end": 238, "id": 29, "ws": true}, {"text": "erscheint", "start": 239, "end": 248, "id": 30, "ws": true}, {"text": "in", "start": 249, "end": 251, "id": 31, "ws": true}, {"text": "K\u00fcrze", "start": 252, "end": 257, "id": 32, "ws": true}, {"text": "unter", "start": 258, "end": 263, "id": 33, "ws": true}, {"text": "dem", "start": 264, "end": 267, "id": 34, "ws": true}, {"text": "Titel", "start": 268, "end": 273, "id": 35, "ws": true}, {"text": ".Private", "start": 274, "end": 282, "id": 36, "ws": true}, {"text": "Verbrechenskontrolle", "start": 283, "end": 303, "id": 37, "ws": true}, {"text": "\u2014", "start": 304, "end": 305, "id": 38, "ws": true}, {"text": "eine", "start": 306, "end": 310, "id": 39, "ws": true}, {"text": "empirische", "start": 311, "end": 321, "id": 40, "ws": true}, {"text": "Untersuchung", "start": 322, "end": 334, "id": 41, "ws": true}, {"text": "zur", "start": 335, "end": 338, "id": 42, "ws": true}, {"text": "Anzeigeerstattung", "start": 339, "end": 356, "id": 43, "ws": false}, {"text": "'", "start": 356, "end": 357, "id": 44, "ws": false}, {"text": ",", "start": 357, "end": 358, "id": 45, "ws": true}, {"text": "Berlin", "start": 359, "end": 365, "id": 46, "ws": false}, {"text": ",", "start": 365, "end": 366, "id": 47, "ws": true}, {"text": "voraussichtlich", "start": 367, "end": 382, "id": 48, "ws": true}, {"text": "1980.", "start": 383, "end": 388, "id": 49, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 82, "label": "note", "token_start": 1, "token_end": 11}, {"start": 83, "end": 119, "label": "title", "token_start": 12, "token_end": 15}, {"start": 120, "end": 130, "label": "note", "token_start": 16, "token_end": 16}, {"start": 131, "end": 166, "label": "publisher", "token_start": 17, "token_end": 20}, {"start": 167, "end": 175, "label": "location", "token_start": 21, "token_end": 21}, {"start": 176, "end": 181, "label": "date", "token_start": 22, "token_end": 22}, {"start": 182, "end": 220, "label": "signal", "token_start": 23, "token_end": 26}, {"start": 221, "end": 238, "label": "author", "token_start": 27, "token_end": 29}, {"start": 239, "end": 273, "label": "note", "token_start": 30, "token_end": 35}, {"start": 274, "end": 358, "label": "title", "token_start": 36, "token_end": 45}, {"start": 359, "end": 366, "label": "location", "token_start": 46, "token_end": 47}, {"start": 367, "end": 388, "label": "date", "token_start": 48, "token_end": 49}]} -{"text": "4 Vgl. Blankenburg/Sessar/Steffen, 1978, S. 66-85.", "tokens": [{"text": "4", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Vgl", "start": 2, "end": 5, "id": 1, "ws": false}, {"text": ".", "start": 5, "end": 6, "id": 2, "ws": true}, {"text": "Blankenburg", "start": 7, "end": 18, "id": 3, "ws": false}, {"text": "/", "start": 18, "end": 19, "id": 4, "ws": false}, {"text": "Sessar", "start": 19, "end": 25, "id": 5, "ws": false}, {"text": "/", "start": 25, "end": 26, "id": 6, "ws": false}, {"text": "Steffen", "start": 26, "end": 33, "id": 7, "ws": false}, {"text": ",", "start": 33, "end": 34, "id": 8, "ws": true}, {"text": "1978", "start": 35, "end": 39, "id": 9, "ws": false}, {"text": ",", "start": 39, "end": 40, "id": 10, "ws": true}, {"text": "S.", "start": 41, "end": 43, "id": 11, "ws": true}, {"text": "66", "start": 44, "end": 46, "id": 12, "ws": false}, {"text": "-", "start": 46, "end": 47, "id": 13, "ws": false}, {"text": "85.", "start": 47, "end": 50, "id": 14, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 6, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 7, "end": 34, "label": "author", "token_start": 3, "token_end": 8}, {"start": 35, "end": 40, "label": "date", "token_start": 9, "token_end": 10}, {"start": 41, "end": 50, "label": "pages", "token_start": 11, "token_end": 14}]} -{"text": "5 Black 1973, S. 125 ff.", "tokens": [{"text": "5", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Black", "start": 2, "end": 7, "id": 1, "ws": true}, {"text": "1973", "start": 8, "end": 12, "id": 2, "ws": false}, {"text": ",", "start": 12, "end": 13, "id": 3, "ws": true}, {"text": "S.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "125", "start": 17, "end": 20, "id": 5, "ws": true}, {"text": "ff", "start": 21, "end": 23, "id": 6, "ws": false}, {"text": ".", "start": 23, "end": 24, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 13, "label": "date", "token_start": 2, "token_end": 3}, {"start": 14, "end": 24, "label": "pages", "token_start": 4, "token_end": 7}]} -{"text": "6 Zur h\u00f6heren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von Gessner 1976, insbesondere S. 170\u2014183.", "tokens": [{"text": "6", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Zur", "start": 2, "end": 5, "id": 1, "ws": true}, {"text": "h\u00f6heren", "start": 6, "end": 13, "id": 2, "ws": true}, {"text": "Wahrscheinlichkeit", "start": 14, "end": 32, "id": 3, "ws": true}, {"text": "der", "start": 33, "end": 36, "id": 4, "ws": true}, {"text": "Normierung", "start": 37, "end": 47, "id": 5, "ws": true}, {"text": "von", "start": 48, "end": 51, "id": 6, "ws": true}, {"text": "Verhalten", "start": 52, "end": 61, "id": 7, "ws": true}, {"text": "in", "start": 62, "end": 64, "id": 8, "ws": true}, {"text": "weniger", "start": 65, "end": 72, "id": 9, "ws": true}, {"text": "komplexen", "start": 73, "end": 82, "id": 10, "ws": true}, {"text": "Beziehungen", "start": 83, "end": 94, "id": 11, "ws": true}, {"text": "vgl.", "start": 95, "end": 99, "id": 12, "ws": true}, {"text": "die", "start": 100, "end": 103, "id": 13, "ws": true}, {"text": "Konflikttheorie", "start": 104, "end": 119, "id": 14, "ws": true}, {"text": "von", "start": 120, "end": 123, "id": 15, "ws": true}, {"text": "Gessner", "start": 124, "end": 131, "id": 16, "ws": true}, {"text": "1976", "start": 132, "end": 136, "id": 17, "ws": false}, {"text": ",", "start": 136, "end": 137, "id": 18, "ws": true}, {"text": "insbesondere", "start": 138, "end": 150, "id": 19, "ws": true}, {"text": "S.", "start": 151, "end": 153, "id": 20, "ws": true}, {"text": "170\u2014183.", "start": 154, "end": 162, "id": 21, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 123, "label": "signal", "token_start": 1, "token_end": 15}, {"start": 124, "end": 131, "label": "author", "token_start": 16, "token_end": 16}, {"start": 132, "end": 137, "label": "date", "token_start": 17, "token_end": 18}, {"start": 138, "end": 162, "label": "pages", "token_start": 19, "token_end": 21}]} -{"text": "7 Zum Konzept der .Thematisierung von Recht' vgl. Luhmann 1980, S. 99\u2014112.", "tokens": [{"text": "7", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Zum", "start": 2, "end": 5, "id": 1, "ws": true}, {"text": "Konzept", "start": 6, "end": 13, "id": 2, "ws": true}, {"text": "der", "start": 14, "end": 17, "id": 3, "ws": true}, {"text": ".Thematisierung", "start": 18, "end": 33, "id": 4, "ws": true}, {"text": "von", "start": 34, "end": 37, "id": 5, "ws": true}, {"text": "Recht", "start": 38, "end": 43, "id": 6, "ws": false}, {"text": "'", "start": 43, "end": 44, "id": 7, "ws": true}, {"text": "vgl.", "start": 45, "end": 49, "id": 8, "ws": true}, {"text": "Luhmann", "start": 50, "end": 57, "id": 9, "ws": true}, {"text": "1980", "start": 58, "end": 62, "id": 10, "ws": false}, {"text": ",", "start": 62, "end": 63, "id": 11, "ws": true}, {"text": "S.", "start": 64, "end": 66, "id": 12, "ws": true}, {"text": "99\u2014112.", "start": 67, "end": 74, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 49, "label": "signal", "token_start": 1, "token_end": 8}, {"start": 50, "end": 57, "label": "journal", "token_start": 9, "token_end": 9}, {"start": 58, "end": 63, "label": "date", "token_start": 10, "token_end": 11}, {"start": 64, "end": 74, "label": "pages", "token_start": 12, "token_end": 13}]} -{"text": "8 Ausf\u00fchrlicher bei Gessner 1976", "tokens": [{"text": "8", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Ausf\u00fchrlicher", "start": 2, "end": 15, "id": 1, "ws": true}, {"text": "bei", "start": 16, "end": 19, "id": 2, "ws": true}, {"text": "Gessner", "start": 20, "end": 27, "id": 3, "ws": true}, {"text": "1976", "start": 28, "end": 32, "id": 4, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 19, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 20, "end": 27, "label": "author", "token_start": 3, "token_end": 3}, {"start": 28, "end": 32, "label": "date", "token_start": 4, "token_end": 4}]} -{"text": "9 Vgl. Sch\u00f6nholz 1980.", "tokens": [{"text": "9", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Vgl", "start": 2, "end": 5, "id": 1, "ws": false}, {"text": ".", "start": 5, "end": 6, "id": 2, "ws": true}, {"text": "Sch\u00f6nholz", "start": 7, "end": 16, "id": 3, "ws": true}, {"text": "1980.", "start": 17, "end": 22, "id": 4, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 6, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 7, "end": 16, "label": "author", "token_start": 3, "token_end": 3}, {"start": 17, "end": 22, "label": "date", "token_start": 4, "token_end": 4}]} -{"text": "10 Blankenburg/Sch\u00f6nholz; Rogowski 1979, S. 64 ff.", "tokens": [{"text": "10", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Blankenburg", "start": 3, "end": 14, "id": 1, "ws": false}, {"text": "/", "start": 14, "end": 15, "id": 2, "ws": false}, {"text": "Sch\u00f6nholz", "start": 15, "end": 24, "id": 3, "ws": false}, {"text": ";", "start": 24, "end": 25, "id": 4, "ws": true}, {"text": "Rogowski", "start": 26, "end": 34, "id": 5, "ws": true}, {"text": "1979", "start": 35, "end": 39, "id": 6, "ws": false}, {"text": ",", "start": 39, "end": 40, "id": 7, "ws": true}, {"text": "S.", "start": 41, "end": 43, "id": 8, "ws": true}, {"text": "64", "start": 44, "end": 46, "id": 9, "ws": true}, {"text": "ff", "start": 47, "end": 49, "id": 10, "ws": false}, {"text": ".", "start": 49, "end": 50, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 34, "label": "author", "token_start": 1, "token_end": 5}, {"start": 35, "end": 40, "label": "date", "token_start": 6, "token_end": 7}, {"start": 41, "end": 50, "label": "pages", "token_start": 8, "token_end": 11}]} -{"text": "11 Hilden 1976, S. 64 ff.", "tokens": [{"text": "11", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Hilden", "start": 3, "end": 9, "id": 1, "ws": true}, {"text": "1976", "start": 10, "end": 14, "id": 2, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 3, "ws": true}, {"text": "S.", "start": 16, "end": 18, "id": 4, "ws": true}, {"text": "64", "start": 19, "end": 21, "id": 5, "ws": true}, {"text": "ff", "start": 22, "end": 24, "id": 6, "ws": false}, {"text": ".", "start": 24, "end": 25, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 9, "label": "author", "token_start": 1, "token_end": 1}, {"start": 10, "end": 15, "label": "date", "token_start": 2, "token_end": 3}, {"start": 16, "end": 25, "label": "pages", "token_start": 4, "token_end": 7}]} -{"text": "12 Koch 1975, S. 75, der allerdings nur streitige Urteile und Vergleiche untersucht hat.", "tokens": [{"text": "12", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Koch", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "1975", "start": 8, "end": 12, "id": 2, "ws": false}, {"text": ",", "start": 12, "end": 13, "id": 3, "ws": true}, {"text": "S.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "75", "start": 17, "end": 19, "id": 5, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 6, "ws": true}, {"text": "der", "start": 21, "end": 24, "id": 7, "ws": true}, {"text": "allerdings", "start": 25, "end": 35, "id": 8, "ws": true}, {"text": "nur", "start": 36, "end": 39, "id": 9, "ws": true}, {"text": "streitige", "start": 40, "end": 49, "id": 10, "ws": true}, {"text": "Urteile", "start": 50, "end": 57, "id": 11, "ws": true}, {"text": "und", "start": 58, "end": 61, "id": 12, "ws": true}, {"text": "Vergleiche", "start": 62, "end": 72, "id": 13, "ws": true}, {"text": "untersucht", "start": 73, "end": 83, "id": 14, "ws": true}, {"text": "hat", "start": 84, "end": 87, "id": 15, "ws": false}, {"text": ".", "start": 87, "end": 88, "id": 16, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 13, "label": "date", "token_start": 2, "token_end": 3}, {"start": 14, "end": 20, "label": "pages", "token_start": 4, "token_end": 6}, {"start": 21, "end": 88, "label": "note", "token_start": 7, "token_end": 16}]} -{"text": "Mobilisierung von Recht 41", "tokens": [{"text": "Mobilisierung", "start": 0, "end": 13, "id": 0, "ws": true}, {"text": "von", "start": 14, "end": 17, "id": 1, "ws": true}, {"text": "Recht", "start": 18, "end": 23, "id": 2, "ws": true}, {"text": "41", "start": 24, "end": 26, "id": 3, "ws": false}], "spans": [{"start": 0, "end": 26, "label": "ignore", "token_start": 0, "token_end": 3}]} -{"text": "13 F\u00fcr Angaben der Z\u00e4hlkartenstatistik f\u00fcr die Familiengerichte siehe: Statistisches Bundesamt Wiesbaden, Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10, Wiesbaden 1978.", "tokens": [{"text": "13", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "F\u00fcr", "start": 3, "end": 6, "id": 1, "ws": true}, {"text": "Angaben", "start": 7, "end": 14, "id": 2, "ws": true}, {"text": "der", "start": 15, "end": 18, "id": 3, "ws": true}, {"text": "Z\u00e4hlkartenstatistik", "start": 19, "end": 38, "id": 4, "ws": true}, {"text": "f\u00fcr", "start": 39, "end": 42, "id": 5, "ws": true}, {"text": "die", "start": 43, "end": 46, "id": 6, "ws": true}, {"text": "Familiengerichte", "start": 47, "end": 63, "id": 7, "ws": true}, {"text": "siehe", "start": 64, "end": 69, "id": 8, "ws": false}, {"text": ":", "start": 69, "end": 70, "id": 9, "ws": true}, {"text": "Statistisches", "start": 71, "end": 84, "id": 10, "ws": true}, {"text": "Bundesamt", "start": 85, "end": 94, "id": 11, "ws": true}, {"text": "Wiesbaden", "start": 95, "end": 104, "id": 12, "ws": false}, {"text": ",", "start": 104, "end": 105, "id": 13, "ws": true}, {"text": "Fachserie", "start": 106, "end": 115, "id": 14, "ws": true}, {"text": "10", "start": 116, "end": 118, "id": 15, "ws": true}, {"text": "(", "start": 119, "end": 120, "id": 16, "ws": false}, {"text": "Rechtspflege", "start": 120, "end": 132, "id": 17, "ws": false}, {"text": ")", "start": 132, "end": 133, "id": 18, "ws": true}, {"text": "Reihe", "start": 134, "end": 139, "id": 19, "ws": true}, {"text": "2.1", "start": 140, "end": 143, "id": 20, "ws": false}, {"text": ",", "start": 143, "end": 144, "id": 21, "ws": true}, {"text": "Tabelle", "start": 145, "end": 152, "id": 22, "ws": true}, {"text": "10", "start": 153, "end": 155, "id": 23, "ws": false}, {"text": ",", "start": 155, "end": 156, "id": 24, "ws": true}, {"text": "Wiesbaden", "start": 157, "end": 166, "id": 25, "ws": true}, {"text": "1978.", "start": 167, "end": 172, "id": 26, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 70, "label": "signal", "token_start": 1, "token_end": 9}, {"start": 71, "end": 105, "label": "author", "token_start": 10, "token_end": 13}, {"start": 106, "end": 156, "label": "title", "token_start": 14, "token_end": 24}, {"start": 95, "end": 104, "label": "location", "token_start": 12, "token_end": 12}, {"start": 167, "end": 172, "label": "date", "token_start": 26, "token_end": 26}]} -{"text": "14 Blankenburg/Sch\u00f6nholz; Rogowski 1979, S. 78 ff.", "tokens": [{"text": "14", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Blankenburg", "start": 3, "end": 14, "id": 1, "ws": false}, {"text": "/", "start": 14, "end": 15, "id": 2, "ws": false}, {"text": "Sch\u00f6nholz", "start": 15, "end": 24, "id": 3, "ws": false}, {"text": ";", "start": 24, "end": 25, "id": 4, "ws": true}, {"text": "Rogowski", "start": 26, "end": 34, "id": 5, "ws": true}, {"text": "1979", "start": 35, "end": 39, "id": 6, "ws": false}, {"text": ",", "start": 39, "end": 40, "id": 7, "ws": true}, {"text": "S.", "start": 41, "end": 43, "id": 8, "ws": true}, {"text": "78", "start": 44, "end": 46, "id": 9, "ws": true}, {"text": "ff", "start": 47, "end": 49, "id": 10, "ws": false}, {"text": ".", "start": 49, "end": 50, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 34, "label": "author", "token_start": 1, "token_end": 5}, {"start": 35, "end": 40, "label": "date", "token_start": 6, "token_end": 7}, {"start": 41, "end": 50, "label": "pages", "token_start": 8, "token_end": 11}]} -{"text": "15 Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den Jahren 1974\u20141976 ein Verh\u00e4ltnis von 1 R\u00e4umungsklage je 1,2 Forderungsklagen, in Berlin allerdings von 1 R\u00e4umungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert.", "tokens": [{"text": "15", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Steinbach", "start": 3, "end": 12, "id": 1, "ws": true}, {"text": "1979", "start": 13, "end": 17, "id": 2, "ws": true}, {"text": "hat", "start": 18, "end": 21, "id": 3, "ws": true}, {"text": "in", "start": 22, "end": 24, "id": 4, "ws": true}, {"text": "einer", "start": 25, "end": 30, "id": 5, "ws": true}, {"text": "Erhebung", "start": 31, "end": 39, "id": 6, "ws": true}, {"text": "von", "start": 40, "end": 43, "id": 7, "ws": true}, {"text": "1144", "start": 44, "end": 48, "id": 8, "ws": true}, {"text": "Amtsgerichtsprozessen", "start": 49, "end": 70, "id": 9, "ws": true}, {"text": "in", "start": 71, "end": 73, "id": 10, "ws": true}, {"text": "der", "start": 74, "end": 77, "id": 11, "ws": true}, {"text": "Bundesrepublik", "start": 78, "end": 92, "id": 12, "ws": true}, {"text": "ohne", "start": 93, "end": 97, "id": 13, "ws": true}, {"text": "Berlin", "start": 98, "end": 104, "id": 14, "ws": true}, {"text": "in", "start": 105, "end": 107, "id": 15, "ws": true}, {"text": "den", "start": 108, "end": 111, "id": 16, "ws": true}, {"text": "Jahren", "start": 112, "end": 118, "id": 17, "ws": true}, {"text": "1974\u20141976", "start": 119, "end": 128, "id": 18, "ws": true}, {"text": "ein", "start": 129, "end": 132, "id": 19, "ws": true}, {"text": "Verh\u00e4ltnis", "start": 133, "end": 143, "id": 20, "ws": true}, {"text": "von", "start": 144, "end": 147, "id": 21, "ws": true}, {"text": "1", "start": 148, "end": 149, "id": 22, "ws": true}, {"text": "R\u00e4umungsklage", "start": 150, "end": 163, "id": 23, "ws": true}, {"text": "je", "start": 164, "end": 166, "id": 24, "ws": true}, {"text": "1,2", "start": 167, "end": 170, "id": 25, "ws": true}, {"text": "Forderungsklagen", "start": 171, "end": 187, "id": 26, "ws": false}, {"text": ",", "start": 187, "end": 188, "id": 27, "ws": true}, {"text": "in", "start": 189, "end": 191, "id": 28, "ws": true}, {"text": "Berlin", "start": 192, "end": 198, "id": 29, "ws": true}, {"text": "allerdings", "start": 199, "end": 209, "id": 30, "ws": true}, {"text": "von", "start": 210, "end": 213, "id": 31, "ws": true}, {"text": "1", "start": 214, "end": 215, "id": 32, "ws": true}, {"text": "R\u00e4umungsklage", "start": 216, "end": 229, "id": 33, "ws": true}, {"text": "je", "start": 230, "end": 232, "id": 34, "ws": true}, {"text": "0,12", "start": 233, "end": 237, "id": 35, "ws": true}, {"text": "Forderungsklagen", "start": 238, "end": 254, "id": 36, "ws": true}, {"text": "ermittelt", "start": 255, "end": 264, "id": 37, "ws": false}, {"text": ".", "start": 264, "end": 265, "id": 38, "ws": true}, {"text": "Im", "start": 266, "end": 268, "id": 39, "ws": true}, {"text": "folgenden", "start": 269, "end": 278, "id": 40, "ws": true}, {"text": "auch", "start": 279, "end": 283, "id": 41, "ws": true}, {"text": "als", "start": 284, "end": 287, "id": 42, "ws": true}, {"text": "GMD-Erhebung", "start": 288, "end": 300, "id": 43, "ws": true}, {"text": "zitiert", "start": 301, "end": 308, "id": 44, "ws": false}, {"text": ".", "start": 308, "end": 309, "id": 45, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 309, "label": "note", "token_start": 1, "token_end": 45}]} -{"text": "16 Johnson 1979 berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Ber\u00fccksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation), S. 90 ff.", "tokens": [{"text": "16", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Johnson", "start": 3, "end": 10, "id": 1, "ws": true}, {"text": "1979", "start": 11, "end": 15, "id": 2, "ws": true}, {"text": "berichtet", "start": 16, "end": 25, "id": 3, "ws": true}, {"text": "von", "start": 26, "end": 29, "id": 4, "ws": true}, {"text": "dem", "start": 30, "end": 33, "id": 5, "ws": true}, {"text": "erfolgreichen", "start": 34, "end": 47, "id": 6, "ws": true}, {"text": "Versuch", "start": 48, "end": 55, "id": 7, "ws": true}, {"text": "einer", "start": 56, "end": 61, "id": 8, "ws": true}, {"text": "Unfall-Schadensregulierung", "start": 62, "end": 88, "id": 9, "ws": true}, {"text": "ohne", "start": 89, "end": 93, "id": 10, "ws": true}, {"text": "Ber\u00fccksichtigung", "start": 94, "end": 110, "id": 11, "ws": true}, {"text": "einer", "start": 111, "end": 116, "id": 12, "ws": true}, {"text": "Schuldzuschreibung", "start": 117, "end": 135, "id": 13, "ws": true}, {"text": "in", "start": 136, "end": 138, "id": 14, "ws": true}, {"text": "Neuseeland", "start": 139, "end": 149, "id": 15, "ws": true}, {"text": "(", "start": 150, "end": 151, "id": 16, "ws": false}, {"text": "no", "start": 151, "end": 153, "id": 17, "ws": true}, {"text": "fault", "start": 154, "end": 159, "id": 18, "ws": true}, {"text": "accident", "start": 160, "end": 168, "id": 19, "ws": true}, {"text": "compensation", "start": 169, "end": 181, "id": 20, "ws": false}, {"text": ")", "start": 181, "end": 182, "id": 21, "ws": false}, {"text": ",", "start": 182, "end": 183, "id": 22, "ws": true}, {"text": "S.", "start": 184, "end": 186, "id": 23, "ws": true}, {"text": "90", "start": 187, "end": 189, "id": 24, "ws": true}, {"text": "ff", "start": 190, "end": 192, "id": 25, "ws": false}, {"text": ".", "start": 192, "end": 193, "id": 26, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 1}, {"start": 11, "end": 15, "label": "date", "token_start": 2, "token_end": 2}, {"start": 16, "end": 183, "label": "note", "token_start": 3, "token_end": 22}, {"start": 184, "end": 193, "label": "pages", "token_start": 23, "token_end": 26}]} -{"text": "17 Steinbach 1979, S. 66 ff.; Blankenburg/Blankenburg/Morasch 1972, S. 82 ff.", "tokens": [{"text": "17", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Steinbach", "start": 3, "end": 12, "id": 1, "ws": true}, {"text": "1979", "start": 13, "end": 17, "id": 2, "ws": false}, {"text": ",", "start": 17, "end": 18, "id": 3, "ws": true}, {"text": "S.", "start": 19, "end": 21, "id": 4, "ws": true}, {"text": "66", "start": 22, "end": 24, "id": 5, "ws": true}, {"text": "ff", "start": 25, "end": 27, "id": 6, "ws": false}, {"text": ".", "start": 27, "end": 28, "id": 7, "ws": false}, {"text": ";", "start": 28, "end": 29, "id": 8, "ws": true}, {"text": "Blankenburg", "start": 30, "end": 41, "id": 9, "ws": false}, {"text": "/", "start": 41, "end": 42, "id": 10, "ws": false}, {"text": "Blankenburg", "start": 42, "end": 53, "id": 11, "ws": false}, {"text": "/", "start": 53, "end": 54, "id": 12, "ws": false}, {"text": "Morasch", "start": 54, "end": 61, "id": 13, "ws": true}, {"text": "1972", "start": 62, "end": 66, "id": 14, "ws": false}, {"text": ",", "start": 66, "end": 67, "id": 15, "ws": true}, {"text": "S.", "start": 68, "end": 70, "id": 16, "ws": true}, {"text": "82", "start": 71, "end": 73, "id": 17, "ws": true}, {"text": "ff", "start": 74, "end": 76, "id": 18, "ws": false}, {"text": ".", "start": 76, "end": 77, "id": 19, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "location", "token_start": 1, "token_end": 1}, {"start": 13, "end": 18, "label": "date", "token_start": 2, "token_end": 3}, {"start": 19, "end": 29, "label": "pages", "token_start": 4, "token_end": 8}, {"start": 30, "end": 61, "label": "author", "token_start": 9, "token_end": 13}, {"start": 62, "end": 67, "label": "date", "token_start": 14, "token_end": 15}, {"start": 68, "end": 77, "label": "pages", "token_start": 16, "token_end": 19}]} -{"text": "18 Projektbericht ,Rechtshilfebed\u00fcrfnisse sozial Schwacher*, (Blankenburg/Gorges/Reifner; Ticmann). Befragt wurden im Januar bis M\u00e4rz 1979 je eine Person in 835 Haushalten Westberlins. Ver\u00f6ffentlichung ist vorgesehen f\u00fcr Ende 1980. Quelle: Eigene Befragung in West-Berlin 1979, Zu falls ausw\u00e4hl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen.", "tokens": [{"text": "18", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Projektbericht", "start": 3, "end": 17, "id": 1, "ws": true}, {"text": ",", "start": 18, "end": 19, "id": 2, "ws": false}, {"text": "Rechtshilfebed\u00fcrfnisse", "start": 19, "end": 41, "id": 3, "ws": true}, {"text": "sozial", "start": 42, "end": 48, "id": 4, "ws": true}, {"text": "Schwacher", "start": 49, "end": 58, "id": 5, "ws": false}, {"text": "*", "start": 58, "end": 59, "id": 6, "ws": false}, {"text": ",", "start": 59, "end": 60, "id": 7, "ws": true}, {"text": "(", "start": 61, "end": 62, "id": 8, "ws": false}, {"text": "Blankenburg", "start": 62, "end": 73, "id": 9, "ws": false}, {"text": "/", "start": 73, "end": 74, "id": 10, "ws": false}, {"text": "Gorges", "start": 74, "end": 80, "id": 11, "ws": false}, {"text": "/", "start": 80, "end": 81, "id": 12, "ws": false}, {"text": "Reifner", "start": 81, "end": 88, "id": 13, "ws": false}, {"text": ";", "start": 88, "end": 89, "id": 14, "ws": true}, {"text": "Ticmann", "start": 90, "end": 97, "id": 15, "ws": false}, {"text": ")", "start": 97, "end": 98, "id": 16, "ws": false}, {"text": ".", "start": 98, "end": 99, "id": 17, "ws": true}, {"text": "Befragt", "start": 100, "end": 107, "id": 18, "ws": true}, {"text": " ", "start": 108, "end": 109, "id": 19, "ws": false}, {"text": "wurden", "start": 109, "end": 115, "id": 20, "ws": true}, {"text": "im", "start": 116, "end": 118, "id": 21, "ws": true}, {"text": "Januar", "start": 119, "end": 125, "id": 22, "ws": true}, {"text": "bis", "start": 126, "end": 129, "id": 23, "ws": true}, {"text": "M\u00e4rz", "start": 130, "end": 134, "id": 24, "ws": true}, {"text": "1979", "start": 135, "end": 139, "id": 25, "ws": true}, {"text": "je", "start": 140, "end": 142, "id": 26, "ws": true}, {"text": "eine", "start": 143, "end": 147, "id": 27, "ws": true}, {"text": "Person", "start": 148, "end": 154, "id": 28, "ws": true}, {"text": "in", "start": 155, "end": 157, "id": 29, "ws": true}, {"text": "835", "start": 158, "end": 161, "id": 30, "ws": true}, {"text": "Haushalten", "start": 162, "end": 172, "id": 31, "ws": true}, {"text": "Westberlins", "start": 173, "end": 184, "id": 32, "ws": false}, {"text": ".", "start": 184, "end": 185, "id": 33, "ws": true}, {"text": "Ver\u00f6ffentlichung", "start": 186, "end": 202, "id": 34, "ws": true}, {"text": "ist", "start": 203, "end": 206, "id": 35, "ws": true}, {"text": "vorgesehen", "start": 207, "end": 217, "id": 36, "ws": true}, {"text": "f\u00fcr", "start": 218, "end": 221, "id": 37, "ws": true}, {"text": "Ende", "start": 222, "end": 226, "id": 38, "ws": true}, {"text": "1980.", "start": 227, "end": 232, "id": 39, "ws": true}, {"text": "Quelle", "start": 233, "end": 239, "id": 40, "ws": false}, {"text": ":", "start": 239, "end": 240, "id": 41, "ws": true}, {"text": "Eigene", "start": 241, "end": 247, "id": 42, "ws": true}, {"text": "Befragung", "start": 248, "end": 257, "id": 43, "ws": true}, {"text": "in", "start": 258, "end": 260, "id": 44, "ws": true}, {"text": "West-Berlin", "start": 261, "end": 272, "id": 45, "ws": true}, {"text": "1979", "start": 273, "end": 277, "id": 46, "ws": false}, {"text": ",", "start": 277, "end": 278, "id": 47, "ws": true}, {"text": "Zu", "start": 279, "end": 281, "id": 48, "ws": true}, {"text": "falls", "start": 282, "end": 287, "id": 49, "ws": true}, {"text": "ausw\u00e4hl", "start": 288, "end": 295, "id": 50, "ws": true}, {"text": "aus", "start": 296, "end": 299, "id": 51, "ws": true}, {"text": "allen", "start": 300, "end": 305, "id": 52, "ws": true}, {"text": "Haushalten", "start": 306, "end": 316, "id": 53, "ws": true}, {"text": "mit", "start": 317, "end": 320, "id": 54, "ws": true}, {"text": "Deutschen", "start": 321, "end": 330, "id": 55, "ws": false}, {"text": ".", "start": 330, "end": 331, "id": 56, "ws": true}, {"text": "Mehrfachnennungen", "start": 332, "end": 349, "id": 57, "ws": false}, {"text": ",", "start": 349, "end": 350, "id": 58, "ws": true}, {"text": "%", "start": 351, "end": 352, "id": 59, "ws": true}, {"text": "jeweils", "start": 353, "end": 360, "id": 60, "ws": true}, {"text": "bezogen", "start": 361, "end": 368, "id": 61, "ws": true}, {"text": "auf", "start": 369, "end": 372, "id": 62, "ws": true}, {"text": "Personen", "start": 373, "end": 381, "id": 63, "ws": false}, {"text": ",", "start": 381, "end": 382, "id": 64, "ws": true}, {"text": "die", "start": 383, "end": 386, "id": 65, "ws": true}, {"text": "im", "start": 387, "end": 389, "id": 66, "ws": true}, {"text": "jeweiligen", "start": 390, "end": 400, "id": 67, "ws": true}, {"text": "Bereich", "start": 401, "end": 408, "id": 68, "ws": true}, {"text": "ein", "start": 409, "end": 412, "id": 69, "ws": true}, {"text": "Problem", "start": 413, "end": 420, "id": 70, "ws": true}, {"text": "nennen", "start": 421, "end": 427, "id": 71, "ws": false}, {"text": ".", "start": 427, "end": 428, "id": 72, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 60, "label": "title", "token_start": 1, "token_end": 7}, {"start": 61, "end": 99, "label": "author", "token_start": 8, "token_end": 17}, {"start": 100, "end": 428, "label": "note", "token_start": 18, "token_end": 72}]} -{"text": "19 Explizit bei Baumg\u00e4rtei 1976, S. 113-128.", "tokens": [{"text": "19", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Explizit", "start": 3, "end": 11, "id": 1, "ws": true}, {"text": "bei", "start": 12, "end": 15, "id": 2, "ws": true}, {"text": "Baumg\u00e4rtei", "start": 16, "end": 26, "id": 3, "ws": true}, {"text": "1976", "start": 27, "end": 31, "id": 4, "ws": false}, {"text": ",", "start": 31, "end": 32, "id": 5, "ws": true}, {"text": "S.", "start": 33, "end": 35, "id": 6, "ws": true}, {"text": "113", "start": 36, "end": 39, "id": 7, "ws": false}, {"text": "-", "start": 39, "end": 40, "id": 8, "ws": false}, {"text": "128.", "start": 40, "end": 44, "id": 9, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 15, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 16, "end": 26, "label": "author", "token_start": 3, "token_end": 3}, {"start": 27, "end": 32, "label": "date", "token_start": 4, "token_end": 5}, {"start": 33, "end": 44, "label": "pages", "token_start": 6, "token_end": 9}]} -{"text": "20 Laut einer GMD-Erhebung aus der Z\u00e4hlkartenstatistik wurde in Baden-W\u00fcrttemberg 1978 in", "tokens": [{"text": "20", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Laut", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "einer", "start": 8, "end": 13, "id": 2, "ws": true}, {"text": "GMD-Erhebung", "start": 14, "end": 26, "id": 3, "ws": true}, {"text": "aus", "start": 27, "end": 30, "id": 4, "ws": true}, {"text": "der", "start": 31, "end": 34, "id": 5, "ws": true}, {"text": "Z\u00e4hlkartenstatistik", "start": 35, "end": 54, "id": 6, "ws": true}, {"text": "wurde", "start": 55, "end": 60, "id": 7, "ws": true}, {"text": "in", "start": 61, "end": 63, "id": 8, "ws": true}, {"text": "Baden-W\u00fcrttemberg", "start": 64, "end": 81, "id": 9, "ws": true}, {"text": "1978", "start": 82, "end": 86, "id": 10, "ws": true}, {"text": "in", "start": 87, "end": 89, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 89, "label": "note", "token_start": 1, "token_end": 11}]} -{"text": "21 Projektbericht .Rechtsschutzversicherung* (Blankenburg; Fiedler), Ver\u00f6ffentlichung voraussichtlich Mitte 1980.", "tokens": [{"text": "21", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Projektbericht", "start": 3, "end": 17, "id": 1, "ws": true}, {"text": ".Rechtsschutzversicherung", "start": 18, "end": 43, "id": 2, "ws": false}, {"text": "*", "start": 43, "end": 44, "id": 3, "ws": true}, {"text": "(", "start": 45, "end": 46, "id": 4, "ws": false}, {"text": "Blankenburg", "start": 46, "end": 57, "id": 5, "ws": false}, {"text": ";", "start": 57, "end": 58, "id": 6, "ws": true}, {"text": "Fiedler", "start": 59, "end": 66, "id": 7, "ws": false}, {"text": ")", "start": 66, "end": 67, "id": 8, "ws": false}, {"text": ",", "start": 67, "end": 68, "id": 9, "ws": true}, {"text": "Ver\u00f6ffentlichung", "start": 69, "end": 85, "id": 10, "ws": true}, {"text": "voraussichtlich", "start": 86, "end": 101, "id": 11, "ws": true}, {"text": "Mitte", "start": 102, "end": 107, "id": 12, "ws": true}, {"text": "1980.", "start": 108, "end": 113, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 17, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 18, "end": 68, "label": "author", "token_start": 2, "token_end": 9}, {"start": 69, "end": 107, "label": "title", "token_start": 10, "token_end": 12}, {"start": 108, "end": 113, "label": "date", "token_start": 13, "token_end": 13}]} -{"text": "22 Vgl. auch Reifner/Gorges 1980.", "tokens": [{"text": "22", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Vgl", "start": 3, "end": 6, "id": 1, "ws": false}, {"text": ".", "start": 6, "end": 7, "id": 2, "ws": true}, {"text": "auch", "start": 8, "end": 12, "id": 3, "ws": true}, {"text": "Reifner", "start": 13, "end": 20, "id": 4, "ws": false}, {"text": "/", "start": 20, "end": 21, "id": 5, "ws": false}, {"text": "Gorges", "start": 21, "end": 27, "id": 6, "ws": true}, {"text": "1980.", "start": 28, "end": 33, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "signal", "token_start": 1, "token_end": 3}, {"start": 13, "end": 27, "label": "author", "token_start": 4, "token_end": 6}, {"start": 28, "end": 33, "label": "date", "token_start": 7, "token_end": 7}]} -{"text": "23 Reifner 1979.", "tokens": [{"text": "23", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Reifner", "start": 3, "end": 10, "id": 1, "ws": true}, {"text": "1979.", "start": 11, "end": 16, "id": 2, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 1}, {"start": 11, "end": 16, "label": "date", "token_start": 2, "token_end": 2}]} -{"text": "24 Klassisch bei Carlin/Howard/Messinger 1967.", "tokens": [{"text": "24", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Klassisch", "start": 3, "end": 12, "id": 1, "ws": true}, {"text": "bei", "start": 13, "end": 16, "id": 2, "ws": true}, {"text": "Carlin", "start": 17, "end": 23, "id": 3, "ws": false}, {"text": "/", "start": 23, "end": 24, "id": 4, "ws": false}, {"text": "Howard", "start": 24, "end": 30, "id": 5, "ws": false}, {"text": "/", "start": 30, "end": 31, "id": 6, "ws": false}, {"text": "Messinger", "start": 31, "end": 40, "id": 7, "ws": true}, {"text": "1967.", "start": 41, "end": 46, "id": 8, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 16, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 17, "end": 40, "label": "author", "token_start": 3, "token_end": 7}, {"start": 41, "end": 46, "label": "date", "token_start": 8, "token_end": 8}]} -{"text": "25 Grunds\u00e4tzlich vgl. hierzu den klassischen Beitrag von Galanter 1974, S. 95\u2014160. Die gr\u00f6sseren Chancen von Firmen, insbesondere bei der gro\u00dfen Zahl von vorstreitigen Erledigungen zeigt Sarat 1976, S. 339-375.", "tokens": [{"text": "25", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Grunds\u00e4tzlich", "start": 3, "end": 16, "id": 1, "ws": true}, {"text": "vgl.", "start": 17, "end": 21, "id": 2, "ws": true}, {"text": "hierzu", "start": 22, "end": 28, "id": 3, "ws": true}, {"text": "den", "start": 29, "end": 32, "id": 4, "ws": true}, {"text": "klassischen", "start": 33, "end": 44, "id": 5, "ws": true}, {"text": "Beitrag", "start": 45, "end": 52, "id": 6, "ws": true}, {"text": "von", "start": 53, "end": 56, "id": 7, "ws": true}, {"text": "Galanter", "start": 57, "end": 65, "id": 8, "ws": true}, {"text": "1974", "start": 66, "end": 70, "id": 9, "ws": false}, {"text": ",", "start": 70, "end": 71, "id": 10, "ws": true}, {"text": "S.", "start": 72, "end": 74, "id": 11, "ws": true}, {"text": "95\u2014160.", "start": 75, "end": 82, "id": 12, "ws": true}, {"text": "Die", "start": 83, "end": 86, "id": 13, "ws": true}, {"text": "gr\u00f6sseren", "start": 87, "end": 96, "id": 14, "ws": true}, {"text": "Chancen", "start": 97, "end": 104, "id": 15, "ws": true}, {"text": "von", "start": 105, "end": 108, "id": 16, "ws": true}, {"text": "Firmen", "start": 109, "end": 115, "id": 17, "ws": false}, {"text": ",", "start": 115, "end": 116, "id": 18, "ws": true}, {"text": "insbesondere", "start": 117, "end": 129, "id": 19, "ws": true}, {"text": "bei", "start": 130, "end": 133, "id": 20, "ws": true}, {"text": "der", "start": 134, "end": 137, "id": 21, "ws": true}, {"text": "gro\u00dfen", "start": 138, "end": 144, "id": 22, "ws": true}, {"text": "Zahl", "start": 145, "end": 149, "id": 23, "ws": true}, {"text": "von", "start": 150, "end": 153, "id": 24, "ws": true}, {"text": "vorstreitigen", "start": 154, "end": 167, "id": 25, "ws": true}, {"text": "Erledigungen", "start": 168, "end": 180, "id": 26, "ws": true}, {"text": "zeigt", "start": 181, "end": 186, "id": 27, "ws": true}, {"text": "Sarat", "start": 187, "end": 192, "id": 28, "ws": true}, {"text": "1976", "start": 193, "end": 197, "id": 29, "ws": false}, {"text": ",", "start": 197, "end": 198, "id": 30, "ws": true}, {"text": "S.", "start": 199, "end": 201, "id": 31, "ws": true}, {"text": "339", "start": 202, "end": 205, "id": 32, "ws": false}, {"text": "-", "start": 205, "end": 206, "id": 33, "ws": false}, {"text": "375.", "start": 206, "end": 210, "id": 34, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 56, "label": "signal", "token_start": 1, "token_end": 7}, {"start": 57, "end": 65, "label": "author", "token_start": 8, "token_end": 8}, {"start": 66, "end": 71, "label": "date", "token_start": 9, "token_end": 10}, {"start": 72, "end": 82, "label": "pages", "token_start": 11, "token_end": 12}, {"start": 83, "end": 186, "label": "note", "token_start": 13, "token_end": 27}, {"start": 187, "end": 192, "label": "author", "token_start": 28, "token_end": 28}, {"start": 193, "end": 198, "label": "date", "token_start": 29, "token_end": 30}, {"start": 199, "end": 210, "label": "pages", "token_start": 31, "token_end": 34}]} -{"text": "26 Bender/Schumachcr 1980, S. 138.", "tokens": [{"text": "26", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Bender", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": "/", "start": 9, "end": 10, "id": 2, "ws": false}, {"text": "Schumachcr", "start": 10, "end": 20, "id": 3, "ws": true}, {"text": "1980", "start": 21, "end": 25, "id": 4, "ws": false}, {"text": ",", "start": 25, "end": 26, "id": 5, "ws": true}, {"text": "S.", "start": 27, "end": 29, "id": 6, "ws": true}, {"text": "138.", "start": 30, "end": 34, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 20, "label": "author", "token_start": 1, "token_end": 3}, {"start": 21, "end": 26, "label": "date", "token_start": 4, "token_end": 5}, {"start": 27, "end": 34, "label": "pages", "token_start": 6, "token_end": 7}]} -{"text": "2 Eigene Erhebung, Arbeitsgericht Berlin, Gerichtsregister 1976", "tokens": [{"text": "2", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Eigene", "start": 2, "end": 8, "id": 1, "ws": true}, {"text": "Erhebung", "start": 9, "end": 17, "id": 2, "ws": false}, {"text": ",", "start": 17, "end": 18, "id": 3, "ws": true}, {"text": "Arbeitsgericht", "start": 19, "end": 33, "id": 4, "ws": true}, {"text": "Berlin", "start": 34, "end": 40, "id": 5, "ws": false}, {"text": ",", "start": 40, "end": 41, "id": 6, "ws": true}, {"text": "Gerichtsregister", "start": 42, "end": 58, "id": 7, "ws": true}, {"text": "1976", "start": 59, "end": 63, "id": 8, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 18, "label": "title", "token_start": 1, "token_end": 3}, {"start": 19, "end": 58, "label": "location", "token_start": 4, "token_end": 7}, {"start": 59, "end": 63, "label": "date", "token_start": 8, "token_end": 8}]} -{"text": "3 Z\u00e4hlkarten-Statistik, Statist. Bundesamt: Fachserie 10 (Rechtspflege), Reihe 2, 1 (Zivilgerichte), 1971 und 1978", "tokens": [{"text": "3", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Z\u00e4hlkarten-Statistik", "start": 2, "end": 22, "id": 1, "ws": false}, {"text": ",", "start": 22, "end": 23, "id": 2, "ws": true}, {"text": "Statist", "start": 24, "end": 31, "id": 3, "ws": false}, {"text": ".", "start": 31, "end": 32, "id": 4, "ws": true}, {"text": "Bundesamt", "start": 33, "end": 42, "id": 5, "ws": false}, {"text": ":", "start": 42, "end": 43, "id": 6, "ws": true}, {"text": "Fachserie", "start": 44, "end": 53, "id": 7, "ws": true}, {"text": "10", "start": 54, "end": 56, "id": 8, "ws": true}, {"text": "(", "start": 57, "end": 58, "id": 9, "ws": false}, {"text": "Rechtspflege", "start": 58, "end": 70, "id": 10, "ws": false}, {"text": ")", "start": 70, "end": 71, "id": 11, "ws": false}, {"text": ",", "start": 71, "end": 72, "id": 12, "ws": true}, {"text": "Reihe", "start": 73, "end": 78, "id": 13, "ws": true}, {"text": "2", "start": 79, "end": 80, "id": 14, "ws": false}, {"text": ",", "start": 80, "end": 81, "id": 15, "ws": true}, {"text": "1", "start": 82, "end": 83, "id": 16, "ws": true}, {"text": "(", "start": 84, "end": 85, "id": 17, "ws": false}, {"text": "Zivilgerichte", "start": 85, "end": 98, "id": 18, "ws": false}, {"text": ")", "start": 98, "end": 99, "id": 19, "ws": false}, {"text": ",", "start": 99, "end": 100, "id": 20, "ws": true}, {"text": "1971", "start": 101, "end": 105, "id": 21, "ws": true}, {"text": "und", "start": 106, "end": 109, "id": 22, "ws": true}, {"text": "1978", "start": 110, "end": 114, "id": 23, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 43, "label": "author", "token_start": 1, "token_end": 6}, {"start": 44, "end": 78, "label": "title", "token_start": 7, "token_end": 13}, {"start": 79, "end": 100, "label": "volume", "token_start": 14, "token_end": 20}, {"start": 101, "end": 114, "label": "date", "token_start": 21, "token_end": 23}]} -{"text": "27 Steinbach 1979, S. 96 ff, vgl. auch Blankenburg/Blankenburg/Morasch 1972, S. 89, Fn. 17,", "tokens": [{"text": "27", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Steinbach", "start": 3, "end": 12, "id": 1, "ws": true}, {"text": "1979", "start": 13, "end": 17, "id": 2, "ws": false}, {"text": ",", "start": 17, "end": 18, "id": 3, "ws": true}, {"text": "S.", "start": 19, "end": 21, "id": 4, "ws": true}, {"text": "96", "start": 22, "end": 24, "id": 5, "ws": true}, {"text": "ff", "start": 25, "end": 27, "id": 6, "ws": false}, {"text": ",", "start": 27, "end": 28, "id": 7, "ws": true}, {"text": "vgl.", "start": 29, "end": 33, "id": 8, "ws": true}, {"text": "auch", "start": 34, "end": 38, "id": 9, "ws": true}, {"text": "Blankenburg", "start": 39, "end": 50, "id": 10, "ws": false}, {"text": "/", "start": 50, "end": 51, "id": 11, "ws": false}, {"text": "Blankenburg", "start": 51, "end": 62, "id": 12, "ws": false}, {"text": "/", "start": 62, "end": 63, "id": 13, "ws": false}, {"text": "Morasch", "start": 63, "end": 70, "id": 14, "ws": true}, {"text": "1972", "start": 71, "end": 75, "id": 15, "ws": false}, {"text": ",", "start": 75, "end": 76, "id": 16, "ws": true}, {"text": "S.", "start": 77, "end": 79, "id": 17, "ws": true}, {"text": "89", "start": 80, "end": 82, "id": 18, "ws": false}, {"text": ",", "start": 82, "end": 83, "id": 19, "ws": true}, {"text": "Fn", "start": 84, "end": 86, "id": 20, "ws": false}, {"text": ".", "start": 86, "end": 87, "id": 21, "ws": true}, {"text": "17", "start": 88, "end": 90, "id": 22, "ws": false}, {"text": ",", "start": 90, "end": 91, "id": 23, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "location", "token_start": 1, "token_end": 1}, {"start": 13, "end": 18, "label": "date", "token_start": 2, "token_end": 3}, {"start": 19, "end": 28, "label": "pages", "token_start": 4, "token_end": 7}, {"start": 29, "end": 38, "label": "signal", "token_start": 8, "token_end": 9}, {"start": 39, "end": 70, "label": "author", "token_start": 10, "token_end": 14}, {"start": 71, "end": 76, "label": "date", "token_start": 15, "token_end": 16}, {"start": 77, "end": 91, "label": "pages", "token_start": 17, "token_end": 23}]} -{"text": "28 Reifner 1978.", "tokens": [{"text": "28", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Reifner", "start": 3, "end": 10, "id": 1, "ws": true}, {"text": "1978.", "start": 11, "end": 16, "id": 2, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 1}, {"start": 11, "end": 16, "label": "date", "token_start": 2, "token_end": 2}]} -{"text": "29 Blankenburg/Sch\u00f6nholz; Rogowski 1979, S. 102 ff.", "tokens": [{"text": "29", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Blankenburg", "start": 3, "end": 14, "id": 1, "ws": false}, {"text": "/", "start": 14, "end": 15, "id": 2, "ws": false}, {"text": "Sch\u00f6nholz", "start": 15, "end": 24, "id": 3, "ws": false}, {"text": ";", "start": 24, "end": 25, "id": 4, "ws": true}, {"text": "Rogowski", "start": 26, "end": 34, "id": 5, "ws": true}, {"text": "1979", "start": 35, "end": 39, "id": 6, "ws": false}, {"text": ",", "start": 39, "end": 40, "id": 7, "ws": true}, {"text": "S.", "start": 41, "end": 43, "id": 8, "ws": true}, {"text": "102", "start": 44, "end": 47, "id": 9, "ws": true}, {"text": "ff", "start": 48, "end": 50, "id": 10, "ws": false}, {"text": ".", "start": 50, "end": 51, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 34, "label": "author", "token_start": 1, "token_end": 5}, {"start": 35, "end": 40, "label": "date", "token_start": 6, "token_end": 7}, {"start": 41, "end": 51, "label": "pages", "token_start": 8, "token_end": 11}]} -{"text": "30 Vgl. zum .Verrechtlichungs\u2019begriff meinen Beitrag \u00fcber: Recht als gradualisiertes Konzept 1980, S. 83\u201498.", "tokens": [{"text": "30", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Vgl", "start": 3, "end": 6, "id": 1, "ws": false}, {"text": ".", "start": 6, "end": 7, "id": 2, "ws": true}, {"text": "zum", "start": 8, "end": 11, "id": 3, "ws": true}, {"text": ".Verrechtlichungs", "start": 12, "end": 29, "id": 4, "ws": false}, {"text": "\u2019", "start": 29, "end": 30, "id": 5, "ws": false}, {"text": "begriff", "start": 30, "end": 37, "id": 6, "ws": true}, {"text": "meinen", "start": 38, "end": 44, "id": 7, "ws": true}, {"text": "Beitrag", "start": 45, "end": 52, "id": 8, "ws": true}, {"text": "\u00fcber", "start": 53, "end": 57, "id": 9, "ws": false}, {"text": ":", "start": 57, "end": 58, "id": 10, "ws": true}, {"text": "Recht", "start": 59, "end": 64, "id": 11, "ws": true}, {"text": "als", "start": 65, "end": 68, "id": 12, "ws": true}, {"text": "gradualisiertes", "start": 69, "end": 84, "id": 13, "ws": true}, {"text": "Konzept", "start": 85, "end": 92, "id": 14, "ws": true}, {"text": "1980", "start": 93, "end": 97, "id": 15, "ws": false}, {"text": ",", "start": 97, "end": 98, "id": 16, "ws": true}, {"text": "S.", "start": 99, "end": 101, "id": 17, "ws": true}, {"text": "83\u201498.", "start": 102, "end": 108, "id": 18, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 11, "label": "signal", "token_start": 1, "token_end": 3}, {"start": 12, "end": 92, "label": "title", "token_start": 4, "token_end": 14}, {"start": 93, "end": 98, "label": "date", "token_start": 15, "token_end": 16}, {"start": 99, "end": 108, "label": "pages", "token_start": 17, "token_end": 18}]} -{"text": "31 Steinbach 1979, S. 35; Bender/Schumacher 1980, S. 24 und S. 49.", "tokens": [{"text": "31", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Steinbach", "start": 3, "end": 12, "id": 1, "ws": true}, {"text": "1979", "start": 13, "end": 17, "id": 2, "ws": false}, {"text": ",", "start": 17, "end": 18, "id": 3, "ws": true}, {"text": "S.", "start": 19, "end": 21, "id": 4, "ws": true}, {"text": "35", "start": 22, "end": 24, "id": 5, "ws": false}, {"text": ";", "start": 24, "end": 25, "id": 6, "ws": true}, {"text": "Bender", "start": 26, "end": 32, "id": 7, "ws": false}, {"text": "/", "start": 32, "end": 33, "id": 8, "ws": false}, {"text": "Schumacher", "start": 33, "end": 43, "id": 9, "ws": true}, {"text": "1980", "start": 44, "end": 48, "id": 10, "ws": false}, {"text": ",", "start": 48, "end": 49, "id": 11, "ws": true}, {"text": "S.", "start": 50, "end": 52, "id": 12, "ws": true}, {"text": "24", "start": 53, "end": 55, "id": 13, "ws": true}, {"text": "und", "start": 56, "end": 59, "id": 14, "ws": true}, {"text": "S.", "start": 60, "end": 62, "id": 15, "ws": true}, {"text": "49.", "start": 63, "end": 66, "id": 16, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "location", "token_start": 1, "token_end": 1}, {"start": 13, "end": 18, "label": "date", "token_start": 2, "token_end": 3}, {"start": 19, "end": 25, "label": "pages", "token_start": 4, "token_end": 6}, {"start": 26, "end": 43, "label": "author", "token_start": 7, "token_end": 9}, {"start": 44, "end": 49, "label": "date", "token_start": 10, "token_end": 11}, {"start": 50, "end": 66, "label": "pages", "token_start": 12, "token_end": 16}]} -{"text": "32 Wanner 1975, S. 293\u2014306 hebt dies deutlich hervor, ebenso Bender/Schumacher 1980, S. 72 ff.; sowie Galanter 1974; Sarat 1976.", "tokens": [{"text": "32", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Wanner", "start": 3, "end": 9, "id": 1, "ws": true}, {"text": "1975", "start": 10, "end": 14, "id": 2, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 3, "ws": true}, {"text": "S.", "start": 16, "end": 18, "id": 4, "ws": true}, {"text": "293\u2014306", "start": 19, "end": 26, "id": 5, "ws": true}, {"text": "hebt", "start": 27, "end": 31, "id": 6, "ws": true}, {"text": "dies", "start": 32, "end": 36, "id": 7, "ws": true}, {"text": "deutlich", "start": 37, "end": 45, "id": 8, "ws": true}, {"text": "hervor", "start": 46, "end": 52, "id": 9, "ws": false}, {"text": ",", "start": 52, "end": 53, "id": 10, "ws": true}, {"text": "ebenso", "start": 54, "end": 60, "id": 11, "ws": true}, {"text": "Bender", "start": 61, "end": 67, "id": 12, "ws": false}, {"text": "/", "start": 67, "end": 68, "id": 13, "ws": false}, {"text": "Schumacher", "start": 68, "end": 78, "id": 14, "ws": true}, {"text": "1980", "start": 79, "end": 83, "id": 15, "ws": false}, {"text": ",", "start": 83, "end": 84, "id": 16, "ws": true}, {"text": "S.", "start": 85, "end": 87, "id": 17, "ws": true}, {"text": "72", "start": 88, "end": 90, "id": 18, "ws": true}, {"text": "ff", "start": 91, "end": 93, "id": 19, "ws": false}, {"text": ".", "start": 93, "end": 94, "id": 20, "ws": false}, {"text": ";", "start": 94, "end": 95, "id": 21, "ws": true}, {"text": "sowie", "start": 96, "end": 101, "id": 22, "ws": true}, {"text": "Galanter", "start": 102, "end": 110, "id": 23, "ws": true}, {"text": "1974", "start": 111, "end": 115, "id": 24, "ws": false}, {"text": ";", "start": 115, "end": 116, "id": 25, "ws": true}, {"text": "Sarat", "start": 117, "end": 122, "id": 26, "ws": true}, {"text": "1976.", "start": 123, "end": 128, "id": 27, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 9, "label": "author", "token_start": 1, "token_end": 1}, {"start": 10, "end": 15, "label": "date", "token_start": 2, "token_end": 3}, {"start": 16, "end": 26, "label": "pages", "token_start": 4, "token_end": 5}, {"start": 27, "end": 78, "label": "note", "token_start": 6, "token_end": 14}, {"start": 79, "end": 84, "label": "date", "token_start": 15, "token_end": 16}, {"start": 85, "end": 95, "label": "pages", "token_start": 17, "token_end": 21}, {"start": 96, "end": 101, "label": "signal", "token_start": 22, "token_end": 22}, {"start": 102, "end": 110, "label": "author", "token_start": 23, "token_end": 23}, {"start": 111, "end": 116, "label": "date", "token_start": 24, "token_end": 25}, {"start": 117, "end": 122, "label": "author", "token_start": 26, "token_end": 26}, {"start": 123, "end": 128, "label": "date", "token_start": 27, "token_end": 27}]} -{"text": "33 Blankenburg/Sch\u00f6nholz; Rogowski 1979, S. 78 ff.", "tokens": [{"text": "33", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Blankenburg", "start": 3, "end": 14, "id": 1, "ws": false}, {"text": "/", "start": 14, "end": 15, "id": 2, "ws": false}, {"text": "Sch\u00f6nholz", "start": 15, "end": 24, "id": 3, "ws": false}, {"text": ";", "start": 24, "end": 25, "id": 4, "ws": true}, {"text": "Rogowski", "start": 26, "end": 34, "id": 5, "ws": true}, {"text": "1979", "start": 35, "end": 39, "id": 6, "ws": false}, {"text": ",", "start": 39, "end": 40, "id": 7, "ws": true}, {"text": "S.", "start": 41, "end": 43, "id": 8, "ws": true}, {"text": "78", "start": 44, "end": 46, "id": 9, "ws": true}, {"text": "ff", "start": 47, "end": 49, "id": 10, "ws": false}, {"text": ".", "start": 49, "end": 50, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 34, "label": "author", "token_start": 1, "token_end": 5}, {"start": 35, "end": 40, "label": "date", "token_start": 6, "token_end": 7}, {"start": 41, "end": 50, "label": "pages", "token_start": 8, "token_end": 11}]} -{"text": "34 Ebenda, S. 138-186.", "tokens": [{"text": "34", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Ebenda", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 2, "ws": true}, {"text": "S.", "start": 11, "end": 13, "id": 3, "ws": true}, {"text": "138", "start": 14, "end": 17, "id": 4, "ws": false}, {"text": "-", "start": 17, "end": 18, "id": 5, "ws": false}, {"text": "186.", "start": 18, "end": 22, "id": 6, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "backref", "token_start": 1, "token_end": 2}, {"start": 11, "end": 22, "label": "pages", "token_start": 3, "token_end": 6}]} -{"text": "35 Luhmann 1969.", "tokens": [{"text": "35", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Luhmann", "start": 3, "end": 10, "id": 1, "ws": true}, {"text": "1969.", "start": 11, "end": 16, "id": 2, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 1}, {"start": 11, "end": 16, "label": "date", "token_start": 2, "token_end": 2}]} -{"text": "36 F\u00fcr eine \u00fcberaus positive Bewertung des .Vermeidens1 vgl. Felstiner und Danzig/Lowy in Law and Society Review, vol. 9, 1974/75.", "tokens": [{"text": "36", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "F\u00fcr", "start": 3, "end": 6, "id": 1, "ws": true}, {"text": "eine", "start": 7, "end": 11, "id": 2, "ws": true}, {"text": "\u00fcberaus", "start": 12, "end": 19, "id": 3, "ws": true}, {"text": "positive", "start": 20, "end": 28, "id": 4, "ws": true}, {"text": "Bewertung", "start": 29, "end": 38, "id": 5, "ws": true}, {"text": "des", "start": 39, "end": 42, "id": 6, "ws": true}, {"text": ".Vermeidens1", "start": 43, "end": 55, "id": 7, "ws": true}, {"text": "vgl.", "start": 56, "end": 60, "id": 8, "ws": true}, {"text": "Felstiner", "start": 61, "end": 70, "id": 9, "ws": true}, {"text": "und", "start": 71, "end": 74, "id": 10, "ws": true}, {"text": "Danzig", "start": 75, "end": 81, "id": 11, "ws": false}, {"text": "/", "start": 81, "end": 82, "id": 12, "ws": false}, {"text": "Lowy", "start": 82, "end": 86, "id": 13, "ws": true}, {"text": "in", "start": 87, "end": 89, "id": 14, "ws": true}, {"text": "Law", "start": 90, "end": 93, "id": 15, "ws": true}, {"text": "and", "start": 94, "end": 97, "id": 16, "ws": true}, {"text": "Society", "start": 98, "end": 105, "id": 17, "ws": true}, {"text": "Review", "start": 106, "end": 112, "id": 18, "ws": false}, {"text": ",", "start": 112, "end": 113, "id": 19, "ws": true}, {"text": "vol", "start": 114, "end": 117, "id": 20, "ws": false}, {"text": ".", "start": 117, "end": 118, "id": 21, "ws": true}, {"text": "9", "start": 119, "end": 120, "id": 22, "ws": false}, {"text": ",", "start": 120, "end": 121, "id": 23, "ws": true}, {"text": "1974", "start": 122, "end": 126, "id": 24, "ws": false}, {"text": "/", "start": 126, "end": 127, "id": 25, "ws": false}, {"text": "75.", "start": 127, "end": 130, "id": 26, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 60, "label": "signal", "token_start": 1, "token_end": 8}, {"start": 61, "end": 86, "label": "author", "token_start": 9, "token_end": 13}, {"start": 87, "end": 113, "label": "journal", "token_start": 14, "token_end": 19}, {"start": 114, "end": 121, "label": "volume", "token_start": 20, "token_end": 23}, {"start": 122, "end": 130, "label": "date", "token_start": 24, "token_end": 26}]} -{"text": "Baumg\u00e4rtei, Gottfried, 1976: Gleicher Zugang zum Recht f\u00fcr alle. K\u00f6ln.", "tokens": [{"text": "Baumg\u00e4rtei", "start": 0, "end": 10, "id": 0, "ws": false}, {"text": ",", "start": 10, "end": 11, "id": 1, "ws": true}, {"text": "Gottfried", "start": 12, "end": 21, "id": 2, "ws": false}, {"text": ",", "start": 21, "end": 22, "id": 3, "ws": true}, {"text": "1976", "start": 23, "end": 27, "id": 4, "ws": false}, {"text": ":", "start": 27, "end": 28, "id": 5, "ws": true}, {"text": "Gleicher", "start": 29, "end": 37, "id": 6, "ws": true}, {"text": "Zugang", "start": 38, "end": 44, "id": 7, "ws": true}, {"text": "zum", "start": 45, "end": 48, "id": 8, "ws": true}, {"text": "Recht", "start": 49, "end": 54, "id": 9, "ws": true}, {"text": "f\u00fcr", "start": 55, "end": 58, "id": 10, "ws": true}, {"text": "alle", "start": 59, "end": 63, "id": 11, "ws": false}, {"text": ".", "start": 63, "end": 64, "id": 12, "ws": true}, {"text": "K\u00f6ln", "start": 65, "end": 69, "id": 13, "ws": false}, {"text": ".", "start": 69, "end": 70, "id": 14, "ws": false}], "spans": [{"start": 0, "end": 22, "label": "author", "token_start": 0, "token_end": 3}, {"start": 23, "end": 28, "label": "date", "token_start": 4, "token_end": 5}, {"start": 29, "end": 64, "label": "title", "token_start": 6, "token_end": 12}, {"start": 65, "end": 70, "label": "location", "token_start": 13, "token_end": 14}]} -{"text": "Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T\u00fcbingen. Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.", "tokens": [{"text": "Bender", "start": 0, "end": 6, "id": 0, "ws": false}, {"text": ",", "start": 6, "end": 7, "id": 1, "ws": true}, {"text": "Rolf", "start": 8, "end": 12, "id": 2, "ws": true}, {"text": "und", "start": 13, "end": 16, "id": 3, "ws": true}, {"text": "Rolf", "start": 17, "end": 21, "id": 4, "ws": true}, {"text": "Schumacher", "start": 22, "end": 32, "id": 5, "ws": false}, {"text": ",", "start": 32, "end": 33, "id": 6, "ws": true}, {"text": "1980", "start": 34, "end": 38, "id": 7, "ws": false}, {"text": ":", "start": 38, "end": 39, "id": 8, "ws": true}, {"text": "Erfolgsbarrieren", "start": 40, "end": 56, "id": 9, "ws": true}, {"text": "vor", "start": 57, "end": 60, "id": 10, "ws": true}, {"text": "Gericht", "start": 61, "end": 68, "id": 11, "ws": false}, {"text": ".", "start": 68, "end": 69, "id": 12, "ws": true}, {"text": "T\u00fcbingen", "start": 70, "end": 78, "id": 13, "ws": false}, {"text": ".", "start": 78, "end": 79, "id": 14, "ws": true}, {"text": "Black", "start": 80, "end": 85, "id": 15, "ws": false}, {"text": ",", "start": 85, "end": 86, "id": 16, "ws": true}, {"text": "Donald", "start": 87, "end": 93, "id": 17, "ws": false}, {"text": ",", "start": 93, "end": 94, "id": 18, "ws": true}, {"text": "1973", "start": 95, "end": 99, "id": 19, "ws": false}, {"text": ":", "start": 99, "end": 100, "id": 20, "ws": true}, {"text": "The", "start": 101, "end": 104, "id": 21, "ws": true}, {"text": "Mobilization", "start": 105, "end": 117, "id": 22, "ws": true}, {"text": "of", "start": 118, "end": 120, "id": 23, "ws": true}, {"text": "Law", "start": 121, "end": 124, "id": 24, "ws": false}, {"text": ",", "start": 124, "end": 125, "id": 25, "ws": true}, {"text": "in", "start": 126, "end": 128, "id": 26, "ws": false}, {"text": ":", "start": 128, "end": 129, "id": 27, "ws": true}, {"text": "Journal", "start": 130, "end": 137, "id": 28, "ws": true}, {"text": "of", "start": 138, "end": 140, "id": 29, "ws": true}, {"text": "Legal", "start": 141, "end": 146, "id": 30, "ws": true}, {"text": "Studies", "start": 147, "end": 154, "id": 31, "ws": true}, {"text": "2.", "start": 155, "end": 157, "id": 32, "ws": false}], "spans": [{"start": 0, "end": 33, "label": "author", "token_start": 0, "token_end": 6}, {"start": 34, "end": 39, "label": "date", "token_start": 7, "token_end": 8}, {"start": 40, "end": 69, "label": "title", "token_start": 9, "token_end": 12}, {"start": 70, "end": 79, "label": "location", "token_start": 13, "token_end": 14}, {"start": 80, "end": 94, "label": "author", "token_start": 15, "token_end": 18}, {"start": 95, "end": 100, "label": "date", "token_start": 19, "token_end": 20}, {"start": 101, "end": 125, "label": "title", "token_start": 21, "token_end": 25}, {"start": 126, "end": 154, "label": "journal", "token_start": 26, "token_end": 31}, {"start": 155, "end": 157, "label": "volume", "token_start": 32, "token_end": 32}]} -{"text": "Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T\u00fcbingen.", "tokens": [{"text": "Blankenburg", "start": 0, "end": 11, "id": 0, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 1, "ws": true}, {"text": "Erhard", "start": 13, "end": 19, "id": 2, "ws": false}, {"text": "/", "start": 19, "end": 20, "id": 3, "ws": false}, {"text": "Blankenburg", "start": 20, "end": 31, "id": 4, "ws": false}, {"text": ",", "start": 31, "end": 32, "id": 5, "ws": true}, {"text": "Viola", "start": 33, "end": 38, "id": 6, "ws": false}, {"text": "/", "start": 38, "end": 39, "id": 7, "ws": false}, {"text": "Morasch", "start": 39, "end": 46, "id": 8, "ws": false}, {"text": ",", "start": 46, "end": 47, "id": 9, "ws": true}, {"text": "Helmut", "start": 48, "end": 54, "id": 10, "ws": false}, {"text": ",", "start": 54, "end": 55, "id": 11, "ws": true}, {"text": "1972", "start": 56, "end": 60, "id": 12, "ws": false}, {"text": ":", "start": 60, "end": 61, "id": 13, "ws": true}, {"text": "Der", "start": 62, "end": 65, "id": 14, "ws": true}, {"text": "lange", "start": 66, "end": 71, "id": 15, "ws": true}, {"text": "Weg", "start": 72, "end": 75, "id": 16, "ws": true}, {"text": "in", "start": 76, "end": 78, "id": 17, "ws": true}, {"text": "die", "start": 79, "end": 82, "id": 18, "ws": true}, {"text": "Berufung", "start": 83, "end": 91, "id": 19, "ws": false}, {"text": ",", "start": 91, "end": 92, "id": 20, "ws": true}, {"text": "in", "start": 93, "end": 95, "id": 21, "ws": false}, {"text": ":", "start": 95, "end": 96, "id": 22, "ws": true}, {"text": "Bender", "start": 97, "end": 103, "id": 23, "ws": false}, {"text": ",", "start": 103, "end": 104, "id": 24, "ws": true}, {"text": "Rolf", "start": 105, "end": 109, "id": 25, "ws": true}, {"text": "(", "start": 110, "end": 111, "id": 26, "ws": false}, {"text": "Hrsg.", "start": 111, "end": 116, "id": 27, "ws": false}, {"text": "):", "start": 116, "end": 118, "id": 28, "ws": true}, {"text": "Tatsachenforschung", "start": 119, "end": 137, "id": 29, "ws": true}, {"text": "in", "start": 138, "end": 140, "id": 30, "ws": true}, {"text": "der", "start": 141, "end": 144, "id": 31, "ws": true}, {"text": "Justiz", "start": 145, "end": 151, "id": 32, "ws": false}, {"text": ".", "start": 151, "end": 152, "id": 33, "ws": true}, {"text": "T\u00fcbingen", "start": 153, "end": 161, "id": 34, "ws": false}, {"text": ".", "start": 161, "end": 162, "id": 35, "ws": false}], "spans": [{"start": 0, "end": 55, "label": "author", "token_start": 0, "token_end": 11}, {"start": 56, "end": 61, "label": "date", "token_start": 12, "token_end": 13}, {"start": 62, "end": 92, "label": "title", "token_start": 14, "token_end": 20}, {"start": 93, "end": 118, "label": "editor", "token_start": 21, "token_end": 28}, {"start": 119, "end": 152, "label": "container-title", "token_start": 29, "token_end": 33}, {"start": 153, "end": 162, "label": "location", "token_start": 34, "token_end": 35}]} -{"text": "Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G\u00f6ppinger, Hans und G\u00fcnter Kaiser: Kriminologie und Strafverfahren. Stuttgart.", "tokens": [{"text": "Blankenburg", "start": 0, "end": 11, "id": 0, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 1, "ws": true}, {"text": "Erhard", "start": 13, "end": 19, "id": 2, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 3, "ws": true}, {"text": "1976", "start": 21, "end": 25, "id": 4, "ws": false}, {"text": ":", "start": 25, "end": 26, "id": 5, "ws": true}, {"text": "Nichtkriminalisierung", "start": 27, "end": 48, "id": 6, "ws": true}, {"text": "als", "start": 49, "end": 52, "id": 7, "ws": true}, {"text": "Struktur", "start": 53, "end": 61, "id": 8, "ws": true}, {"text": "und", "start": 62, "end": 65, "id": 9, "ws": true}, {"text": "Routine", "start": 66, "end": 73, "id": 10, "ws": false}, {"text": ",", "start": 73, "end": 74, "id": 11, "ws": true}, {"text": "in", "start": 75, "end": 77, "id": 12, "ws": false}, {"text": ":", "start": 77, "end": 78, "id": 13, "ws": true}, {"text": "G\u00f6ppinger", "start": 79, "end": 88, "id": 14, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 15, "ws": true}, {"text": "Hans", "start": 90, "end": 94, "id": 16, "ws": true}, {"text": "und", "start": 95, "end": 98, "id": 17, "ws": true}, {"text": "G\u00fcnter", "start": 99, "end": 105, "id": 18, "ws": true}, {"text": "Kaiser", "start": 106, "end": 112, "id": 19, "ws": false}, {"text": ":", "start": 112, "end": 113, "id": 20, "ws": true}, {"text": "Kriminologie", "start": 114, "end": 126, "id": 21, "ws": true}, {"text": "und", "start": 127, "end": 130, "id": 22, "ws": true}, {"text": "Strafverfahren", "start": 131, "end": 145, "id": 23, "ws": false}, {"text": ".", "start": 145, "end": 146, "id": 24, "ws": true}, {"text": "Stuttgart", "start": 147, "end": 156, "id": 25, "ws": false}, {"text": ".", "start": 156, "end": 157, "id": 26, "ws": false}], "spans": [{"start": 0, "end": 20, "label": "author", "token_start": 0, "token_end": 3}, {"start": 21, "end": 26, "label": "date", "token_start": 4, "token_end": 5}, {"start": 27, "end": 74, "label": "title", "token_start": 6, "token_end": 11}, {"start": 75, "end": 89, "label": "editor", "token_start": 12, "token_end": 15}, {"start": 90, "end": 146, "label": "title", "token_start": 16, "token_end": 24}, {"start": 147, "end": 157, "label": "location", "token_start": 25, "token_end": 26}]} -{"text": "Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze\u00df strafrechtlicher Sozialkontrolle. Berlin.", "tokens": [{"text": "Blankenburg", "start": 0, "end": 11, "id": 0, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 1, "ws": true}, {"text": "Erhard", "start": 13, "end": 19, "id": 2, "ws": false}, {"text": "/", "start": 19, "end": 20, "id": 3, "ws": false}, {"text": "Sessar", "start": 20, "end": 26, "id": 4, "ws": false}, {"text": ",", "start": 26, "end": 27, "id": 5, "ws": true}, {"text": "Klaus", "start": 28, "end": 33, "id": 6, "ws": false}, {"text": "/", "start": 33, "end": 34, "id": 7, "ws": false}, {"text": "Steffen", "start": 34, "end": 41, "id": 8, "ws": false}, {"text": ",", "start": 41, "end": 42, "id": 9, "ws": true}, {"text": "Wiebke", "start": 43, "end": 49, "id": 10, "ws": false}, {"text": ",", "start": 49, "end": 50, "id": 11, "ws": true}, {"text": "1978", "start": 51, "end": 55, "id": 12, "ws": false}, {"text": ":", "start": 55, "end": 56, "id": 13, "ws": true}, {"text": "Die", "start": 57, "end": 60, "id": 14, "ws": true}, {"text": "Staatsanwaltschaft", "start": 61, "end": 79, "id": 15, "ws": true}, {"text": "im", "start": 80, "end": 82, "id": 16, "ws": true}, {"text": "Proze\u00df", "start": 83, "end": 89, "id": 17, "ws": true}, {"text": "strafrechtlicher", "start": 90, "end": 106, "id": 18, "ws": true}, {"text": "Sozialkontrolle", "start": 107, "end": 122, "id": 19, "ws": false}, {"text": ".", "start": 122, "end": 123, "id": 20, "ws": true}, {"text": "Berlin", "start": 124, "end": 130, "id": 21, "ws": false}, {"text": ".", "start": 130, "end": 131, "id": 22, "ws": false}], "spans": [{"start": 0, "end": 50, "label": "author", "token_start": 0, "token_end": 11}, {"start": 51, "end": 56, "label": "date", "token_start": 12, "token_end": 13}, {"start": 57, "end": 123, "label": "title", "token_start": 14, "token_end": 20}, {"start": 124, "end": 131, "label": "location", "token_start": 21, "token_end": 22}]} -{"text": "Blankenburg, Erhard; Sch\u00f6nholz, Siegfried, unter Mitarbeit von Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.", "tokens": [{"text": "Blankenburg", "start": 0, "end": 11, "id": 0, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 1, "ws": true}, {"text": "Erhard", "start": 13, "end": 19, "id": 2, "ws": false}, {"text": ";", "start": 19, "end": 20, "id": 3, "ws": true}, {"text": "Sch\u00f6nholz", "start": 21, "end": 30, "id": 4, "ws": false}, {"text": ",", "start": 30, "end": 31, "id": 5, "ws": true}, {"text": "Siegfried", "start": 32, "end": 41, "id": 6, "ws": false}, {"text": ",", "start": 41, "end": 42, "id": 7, "ws": true}, {"text": "unter", "start": 43, "end": 48, "id": 8, "ws": true}, {"text": "Mitarbeit", "start": 49, "end": 58, "id": 9, "ws": true}, {"text": "von", "start": 59, "end": 62, "id": 10, "ws": true}, {"text": "Ralf", "start": 63, "end": 67, "id": 11, "ws": true}, {"text": "Rogowski", "start": 68, "end": 76, "id": 12, "ws": false}, {"text": ",", "start": 76, "end": 77, "id": 13, "ws": true}, {"text": "1979", "start": 78, "end": 82, "id": 14, "ws": false}, {"text": ":", "start": 82, "end": 83, "id": 15, "ws": true}, {"text": "Zur", "start": 84, "end": 87, "id": 16, "ws": true}, {"text": "Soziologie", "start": 88, "end": 98, "id": 17, "ws": true}, {"text": "des", "start": 99, "end": 102, "id": 18, "ws": true}, {"text": "Arbeitsgerichtsverfahrens", "start": 103, "end": 128, "id": 19, "ws": false}, {"text": ".", "start": 128, "end": 129, "id": 20, "ws": true}, {"text": "Neuwied", "start": 130, "end": 137, "id": 21, "ws": true}, {"text": "und", "start": 138, "end": 141, "id": 22, "ws": true}, {"text": "Darmstadt", "start": 142, "end": 151, "id": 23, "ws": false}, {"text": ".", "start": 151, "end": 152, "id": 24, "ws": false}], "spans": [{"start": 0, "end": 77, "label": "author", "token_start": 0, "token_end": 13}, {"start": 78, "end": 83, "label": "date", "token_start": 14, "token_end": 15}, {"start": 84, "end": 129, "label": "title", "token_start": 16, "token_end": 20}, {"start": 130, "end": 152, "label": "location", "token_start": 21, "token_end": 24}]} -{"text": "Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.", "tokens": [{"text": "Blankenburg", "start": 0, "end": 11, "id": 0, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 1, "ws": true}, {"text": "Erhard", "start": 13, "end": 19, "id": 2, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 3, "ws": true}, {"text": "1980", "start": 21, "end": 25, "id": 4, "ws": false}, {"text": ":", "start": 25, "end": 26, "id": 5, "ws": true}, {"text": "Recht", "start": 27, "end": 32, "id": 6, "ws": true}, {"text": "als", "start": 33, "end": 36, "id": 7, "ws": true}, {"text": "gradualisiertes", "start": 37, "end": 52, "id": 8, "ws": true}, {"text": "Konzept", "start": 53, "end": 60, "id": 9, "ws": false}, {"text": ",", "start": 60, "end": 61, "id": 10, "ws": true}, {"text": "in", "start": 62, "end": 64, "id": 11, "ws": false}, {"text": ":", "start": 64, "end": 65, "id": 12, "ws": true}, {"text": "Blankenburg", "start": 66, "end": 77, "id": 13, "ws": false}, {"text": ",", "start": 77, "end": 78, "id": 14, "ws": true}, {"text": "Erhard", "start": 79, "end": 85, "id": 15, "ws": false}, {"text": ";", "start": 85, "end": 86, "id": 16, "ws": true}, {"text": "Klausa", "start": 87, "end": 93, "id": 17, "ws": false}, {"text": ",", "start": 93, "end": 94, "id": 18, "ws": true}, {"text": "Ekkehard", "start": 95, "end": 103, "id": 19, "ws": true}, {"text": "und", "start": 104, "end": 107, "id": 20, "ws": true}, {"text": "Hubert", "start": 108, "end": 114, "id": 21, "ws": true}, {"text": "Rottleuthner", "start": 115, "end": 127, "id": 22, "ws": true}, {"text": "(", "start": 128, "end": 129, "id": 23, "ws": false}, {"text": "Hrsg.", "start": 129, "end": 134, "id": 24, "ws": false}, {"text": "):", "start": 134, "end": 136, "id": 25, "ws": true}, {"text": "Alternative", "start": 137, "end": 148, "id": 26, "ws": true}, {"text": "Rechtsformen", "start": 149, "end": 161, "id": 27, "ws": true}, {"text": "und", "start": 162, "end": 165, "id": 28, "ws": true}, {"text": "Alternativen", "start": 166, "end": 178, "id": 29, "ws": true}, {"text": "zum", "start": 179, "end": 182, "id": 30, "ws": true}, {"text": "Recht", "start": 183, "end": 188, "id": 31, "ws": false}, {"text": ",", "start": 188, "end": 189, "id": 32, "ws": true}, {"text": "Jahrbuch", "start": 190, "end": 198, "id": 33, "ws": true}, {"text": "f\u00fcr", "start": 199, "end": 202, "id": 34, "ws": true}, {"text": "Rechtssoziologie", "start": 203, "end": 219, "id": 35, "ws": true}, {"text": "und", "start": 220, "end": 223, "id": 36, "ws": true}, {"text": "Rechtstheorie", "start": 224, "end": 237, "id": 37, "ws": true}, {"text": "Bd.", "start": 238, "end": 241, "id": 38, "ws": true}, {"text": "6.", "start": 242, "end": 244, "id": 39, "ws": true}, {"text": "Opladen", "start": 245, "end": 252, "id": 40, "ws": false}, {"text": ".", "start": 252, "end": 253, "id": 41, "ws": false}], "spans": [{"start": 0, "end": 20, "label": "author", "token_start": 0, "token_end": 3}, {"start": 21, "end": 26, "label": "date", "token_start": 4, "token_end": 5}, {"start": 27, "end": 61, "label": "title", "token_start": 6, "token_end": 10}, {"start": 62, "end": 136, "label": "editor", "token_start": 11, "token_end": 25}, {"start": 137, "end": 189, "label": "container-title", "token_start": 26, "token_end": 32}, {"start": 190, "end": 237, "label": "collection-title", "token_start": 33, "token_end": 37}, {"start": 238, "end": 253, "label": "volume", "token_start": 38, "token_end": 41}]} -{"text": "Carlin, Jerome-, Jan Howard und Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard /Lowy, Michael, 1974/75; Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675\u2014694.", "tokens": [{"text": "Carlin", "start": 0, "end": 6, "id": 0, "ws": false}, {"text": ",", "start": 6, "end": 7, "id": 1, "ws": true}, {"text": "Jerome-", "start": 8, "end": 15, "id": 2, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 3, "ws": true}, {"text": "Jan", "start": 17, "end": 20, "id": 4, "ws": true}, {"text": "Howard", "start": 21, "end": 27, "id": 5, "ws": true}, {"text": "und", "start": 28, "end": 31, "id": 6, "ws": true}, {"text": "Sheldon", "start": 32, "end": 39, "id": 7, "ws": true}, {"text": "Messinger", "start": 40, "end": 49, "id": 8, "ws": false}, {"text": ",", "start": 49, "end": 50, "id": 9, "ws": true}, {"text": "1967", "start": 51, "end": 55, "id": 10, "ws": false}, {"text": ":", "start": 55, "end": 56, "id": 11, "ws": true}, {"text": "Civil", "start": 57, "end": 62, "id": 12, "ws": true}, {"text": "Justice", "start": 63, "end": 70, "id": 13, "ws": true}, {"text": "and", "start": 71, "end": 74, "id": 14, "ws": true}, {"text": "the", "start": 75, "end": 78, "id": 15, "ws": true}, {"text": "Poor", "start": 79, "end": 83, "id": 16, "ws": false}, {"text": ".", "start": 83, "end": 84, "id": 17, "ws": true}, {"text": "New", "start": 85, "end": 88, "id": 18, "ws": true}, {"text": "York", "start": 89, "end": 93, "id": 19, "ws": false}, {"text": ".", "start": 93, "end": 94, "id": 20, "ws": true}, {"text": "Danzig", "start": 95, "end": 101, "id": 21, "ws": false}, {"text": ",", "start": 101, "end": 102, "id": 22, "ws": true}, {"text": "Richard", "start": 103, "end": 110, "id": 23, "ws": true}, {"text": "/Lowy", "start": 111, "end": 116, "id": 24, "ws": false}, {"text": ",", "start": 116, "end": 117, "id": 25, "ws": true}, {"text": "Michael", "start": 118, "end": 125, "id": 26, "ws": false}, {"text": ",", "start": 125, "end": 126, "id": 27, "ws": true}, {"text": "1974", "start": 127, "end": 131, "id": 28, "ws": false}, {"text": "/", "start": 131, "end": 132, "id": 29, "ws": false}, {"text": "75", "start": 132, "end": 134, "id": 30, "ws": false}, {"text": ";", "start": 134, "end": 135, "id": 31, "ws": true}, {"text": "Everday", "start": 136, "end": 143, "id": 32, "ws": true}, {"text": "Disputes", "start": 144, "end": 152, "id": 33, "ws": true}, {"text": "and", "start": 153, "end": 156, "id": 34, "ws": true}, {"text": "Mediation", "start": 157, "end": 166, "id": 35, "ws": true}, {"text": "in", "start": 167, "end": 169, "id": 36, "ws": true}, {"text": "the", "start": 170, "end": 173, "id": 37, "ws": true}, {"text": "United", "start": 174, "end": 180, "id": 38, "ws": true}, {"text": "States", "start": 181, "end": 187, "id": 39, "ws": false}, {"text": ":", "start": 187, "end": 188, "id": 40, "ws": true}, {"text": "A", "start": 189, "end": 190, "id": 41, "ws": true}, {"text": "Reply", "start": 191, "end": 196, "id": 42, "ws": true}, {"text": "to", "start": 197, "end": 199, "id": 43, "ws": true}, {"text": "Professor", "start": 200, "end": 209, "id": 44, "ws": true}, {"text": "Felstiner", "start": 210, "end": 219, "id": 45, "ws": false}, {"text": ",", "start": 219, "end": 220, "id": 46, "ws": true}, {"text": "Law", "start": 221, "end": 224, "id": 47, "ws": true}, {"text": "and", "start": 225, "end": 228, "id": 48, "ws": true}, {"text": "Society", "start": 229, "end": 236, "id": 49, "ws": true}, {"text": "Review", "start": 237, "end": 243, "id": 50, "ws": false}, {"text": ",", "start": 243, "end": 244, "id": 51, "ws": true}, {"text": "vol", "start": 245, "end": 248, "id": 52, "ws": false}, {"text": ".", "start": 248, "end": 249, "id": 53, "ws": true}, {"text": "9", "start": 250, "end": 251, "id": 54, "ws": false}, {"text": ",", "start": 251, "end": 252, "id": 55, "ws": true}, {"text": "pp", "start": 253, "end": 255, "id": 56, "ws": false}, {"text": ".", "start": 255, "end": 256, "id": 57, "ws": true}, {"text": "675\u2014694.", "start": 257, "end": 265, "id": 58, "ws": false}], "spans": [{"start": 0, "end": 50, "label": "author", "token_start": 0, "token_end": 9}, {"start": 51, "end": 56, "label": "date", "token_start": 10, "token_end": 11}, {"start": 57, "end": 84, "label": "title", "token_start": 12, "token_end": 17}, {"start": 85, "end": 102, "label": "location", "token_start": 18, "token_end": 22}, {"start": 103, "end": 126, "label": "author", "token_start": 23, "token_end": 27}, {"start": 127, "end": 135, "label": "date", "token_start": 28, "token_end": 31}, {"start": 136, "end": 220, "label": "title", "token_start": 32, "token_end": 46}, {"start": 221, "end": 244, "label": "journal", "token_start": 47, "token_end": 51}, {"start": 245, "end": 252, "label": "volume", "token_start": 52, "token_end": 55}, {"start": 253, "end": 265, "label": "pages", "token_start": 56, "token_end": 58}]} -{"text": "Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D\u00fcsseldorf.", "tokens": [{"text": "Feest", "start": 0, "end": 5, "id": 0, "ws": false}, {"text": ",", "start": 5, "end": 6, "id": 1, "ws": true}, {"text": "Johannes", "start": 7, "end": 15, "id": 2, "ws": false}, {"text": "/", "start": 15, "end": 16, "id": 3, "ws": false}, {"text": "Blankenburg", "start": 16, "end": 27, "id": 4, "ws": false}, {"text": ",", "start": 27, "end": 28, "id": 5, "ws": true}, {"text": "Erhard", "start": 29, "end": 35, "id": 6, "ws": false}, {"text": ",", "start": 35, "end": 36, "id": 7, "ws": true}, {"text": "1972", "start": 37, "end": 41, "id": 8, "ws": false}, {"text": ":", "start": 41, "end": 42, "id": 9, "ws": true}, {"text": "Die", "start": 43, "end": 46, "id": 10, "ws": true}, {"text": "Definitionsmacht", "start": 47, "end": 63, "id": 11, "ws": true}, {"text": "der", "start": 64, "end": 67, "id": 12, "ws": true}, {"text": "Polizei", "start": 68, "end": 75, "id": 13, "ws": false}, {"text": ".", "start": 75, "end": 76, "id": 14, "ws": true}, {"text": "D\u00fcsseldorf", "start": 77, "end": 87, "id": 15, "ws": false}, {"text": ".", "start": 87, "end": 88, "id": 16, "ws": false}], "spans": [{"start": 0, "end": 36, "label": "author", "token_start": 0, "token_end": 7}, {"start": 37, "end": 42, "label": "date", "token_start": 8, "token_end": 9}, {"start": 43, "end": 76, "label": "title", "token_start": 10, "token_end": 14}, {"start": 77, "end": 88, "label": "location", "token_start": 15, "token_end": 16}]} -{"text": "Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in: Law and Society Review, vol. 9, pp. 63\u201494.", "tokens": [{"text": "Felstiner", "start": 0, "end": 9, "id": 0, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 1, "ws": true}, {"text": "William", "start": 11, "end": 18, "id": 2, "ws": true}, {"text": "L.", "start": 19, "end": 21, "id": 3, "ws": true}, {"text": "F.", "start": 22, "end": 24, "id": 4, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 5, "ws": true}, {"text": "1974", "start": 26, "end": 30, "id": 6, "ws": false}, {"text": "/", "start": 30, "end": 31, "id": 7, "ws": false}, {"text": "75", "start": 31, "end": 33, "id": 8, "ws": false}, {"text": ":", "start": 33, "end": 34, "id": 9, "ws": true}, {"text": "Influences", "start": 35, "end": 45, "id": 10, "ws": true}, {"text": "of", "start": 46, "end": 48, "id": 11, "ws": true}, {"text": "Social", "start": 49, "end": 55, "id": 12, "ws": true}, {"text": "Organization", "start": 56, "end": 68, "id": 13, "ws": true}, {"text": "on", "start": 69, "end": 71, "id": 14, "ws": true}, {"text": "Dispute", "start": 72, "end": 79, "id": 15, "ws": true}, {"text": "processing", "start": 80, "end": 90, "id": 16, "ws": false}, {"text": ",", "start": 90, "end": 91, "id": 17, "ws": true}, {"text": "in", "start": 92, "end": 94, "id": 18, "ws": false}, {"text": ":", "start": 94, "end": 95, "id": 19, "ws": true}, {"text": "Law", "start": 96, "end": 99, "id": 20, "ws": true}, {"text": "and", "start": 100, "end": 103, "id": 21, "ws": true}, {"text": "Society", "start": 104, "end": 111, "id": 22, "ws": true}, {"text": "Review", "start": 112, "end": 118, "id": 23, "ws": false}, {"text": ",", "start": 118, "end": 119, "id": 24, "ws": true}, {"text": "vol", "start": 120, "end": 123, "id": 25, "ws": false}, {"text": ".", "start": 123, "end": 124, "id": 26, "ws": true}, {"text": "9", "start": 125, "end": 126, "id": 27, "ws": false}, {"text": ",", "start": 126, "end": 127, "id": 28, "ws": true}, {"text": "pp", "start": 128, "end": 130, "id": 29, "ws": false}, {"text": ".", "start": 130, "end": 131, "id": 30, "ws": true}, {"text": "63\u201494.", "start": 132, "end": 138, "id": 31, "ws": false}], "spans": [{"start": 0, "end": 25, "label": "author", "token_start": 0, "token_end": 5}, {"start": 26, "end": 34, "label": "date", "token_start": 6, "token_end": 9}, {"start": 35, "end": 91, "label": "title", "token_start": 10, "token_end": 17}, {"start": 92, "end": 119, "label": "journal", "token_start": 18, "token_end": 24}, {"start": 120, "end": 127, "label": "volume", "token_start": 25, "token_end": 28}, {"start": 128, "end": 138, "label": "pages", "token_start": 29, "token_end": 31}]} -{"text": "Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp. 695-706.", "tokens": [{"text": "Felstiner", "start": 0, "end": 9, "id": 0, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 1, "ws": true}, {"text": "William", "start": 11, "end": 18, "id": 2, "ws": true}, {"text": "L.", "start": 19, "end": 21, "id": 3, "ws": true}, {"text": "F.", "start": 22, "end": 24, "id": 4, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 5, "ws": true}, {"text": "1974", "start": 26, "end": 30, "id": 6, "ws": false}, {"text": "/", "start": 30, "end": 31, "id": 7, "ws": false}, {"text": "75", "start": 31, "end": 33, "id": 8, "ws": false}, {"text": ":", "start": 33, "end": 34, "id": 9, "ws": true}, {"text": "Avoidance", "start": 35, "end": 44, "id": 10, "ws": true}, {"text": "as", "start": 45, "end": 47, "id": 11, "ws": true}, {"text": "Dispute", "start": 48, "end": 55, "id": 12, "ws": true}, {"text": "Processing", "start": 56, "end": 66, "id": 13, "ws": false}, {"text": ":", "start": 66, "end": 67, "id": 14, "ws": true}, {"text": "An", "start": 68, "end": 70, "id": 15, "ws": true}, {"text": "Elaboration", "start": 71, "end": 82, "id": 16, "ws": false}, {"text": ",", "start": 82, "end": 83, "id": 17, "ws": true}, {"text": "in", "start": 84, "end": 86, "id": 18, "ws": false}, {"text": ":", "start": 86, "end": 87, "id": 19, "ws": true}, {"text": "Law", "start": 88, "end": 91, "id": 20, "ws": true}, {"text": "and", "start": 92, "end": 95, "id": 21, "ws": true}, {"text": "Society", "start": 96, "end": 103, "id": 22, "ws": true}, {"text": "Review", "start": 104, "end": 110, "id": 23, "ws": false}, {"text": ",", "start": 110, "end": 111, "id": 24, "ws": true}, {"text": "vol", "start": 112, "end": 115, "id": 25, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 26, "ws": true}, {"text": "9", "start": 117, "end": 118, "id": 27, "ws": false}, {"text": ",", "start": 118, "end": 119, "id": 28, "ws": true}, {"text": "pp", "start": 120, "end": 122, "id": 29, "ws": false}, {"text": ".", "start": 122, "end": 123, "id": 30, "ws": true}, {"text": "695", "start": 124, "end": 127, "id": 31, "ws": false}, {"text": "-", "start": 127, "end": 128, "id": 32, "ws": false}, {"text": "706.", "start": 128, "end": 132, "id": 33, "ws": false}], "spans": [{"start": 0, "end": 25, "label": "author", "token_start": 0, "token_end": 5}, {"start": 26, "end": 34, "label": "date", "token_start": 6, "token_end": 9}, {"start": 35, "end": 83, "label": "title", "token_start": 10, "token_end": 17}, {"start": 84, "end": 111, "label": "journal", "token_start": 18, "token_end": 24}, {"start": 112, "end": 119, "label": "volume", "token_start": 25, "token_end": 28}, {"start": 120, "end": 132, "label": "pages", "token_start": 29, "token_end": 33}]} -{"text": "Galanter, Marc, 1974: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95\u2014160.", "tokens": [{"text": "Galanter", "start": 0, "end": 8, "id": 0, "ws": false}, {"text": ",", "start": 8, "end": 9, "id": 1, "ws": true}, {"text": "Marc", "start": 10, "end": 14, "id": 2, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 3, "ws": true}, {"text": "1974", "start": 16, "end": 20, "id": 4, "ws": false}, {"text": ":", "start": 20, "end": 21, "id": 5, "ws": true}, {"text": "Why", "start": 22, "end": 25, "id": 6, "ws": true}, {"text": "the", "start": 26, "end": 29, "id": 7, "ws": true}, {"text": ",", "start": 30, "end": 31, "id": 8, "ws": false}, {"text": "Haves", "start": 31, "end": 36, "id": 9, "ws": false}, {"text": "*", "start": 36, "end": 37, "id": 10, "ws": true}, {"text": "Come", "start": 38, "end": 42, "id": 11, "ws": true}, {"text": "out", "start": 43, "end": 46, "id": 12, "ws": true}, {"text": "Ahead", "start": 47, "end": 52, "id": 13, "ws": false}, {"text": ":", "start": 52, "end": 53, "id": 14, "ws": true}, {"text": "Speculations", "start": 54, "end": 66, "id": 15, "ws": true}, {"text": "on", "start": 67, "end": 69, "id": 16, "ws": true}, {"text": "the", "start": 70, "end": 73, "id": 17, "ws": true}, {"text": "Limits", "start": 74, "end": 80, "id": 18, "ws": true}, {"text": "of", "start": 81, "end": 83, "id": 19, "ws": true}, {"text": "Legal", "start": 84, "end": 89, "id": 20, "ws": true}, {"text": "Change", "start": 90, "end": 96, "id": 21, "ws": false}, {"text": ",", "start": 96, "end": 97, "id": 22, "ws": true}, {"text": "in", "start": 98, "end": 100, "id": 23, "ws": false}, {"text": ":", "start": 100, "end": 101, "id": 24, "ws": true}, {"text": "Law", "start": 102, "end": 105, "id": 25, "ws": true}, {"text": "and", "start": 106, "end": 109, "id": 26, "ws": true}, {"text": "Society", "start": 110, "end": 117, "id": 27, "ws": true}, {"text": "Review", "start": 118, "end": 124, "id": 28, "ws": false}, {"text": ",", "start": 124, "end": 125, "id": 29, "ws": true}, {"text": "vol", "start": 126, "end": 129, "id": 30, "ws": false}, {"text": ".", "start": 129, "end": 130, "id": 31, "ws": true}, {"text": "9", "start": 131, "end": 132, "id": 32, "ws": false}, {"text": ",", "start": 132, "end": 133, "id": 33, "ws": true}, {"text": "pp", "start": 134, "end": 136, "id": 34, "ws": false}, {"text": ".", "start": 136, "end": 137, "id": 35, "ws": true}, {"text": "95\u2014160.", "start": 138, "end": 145, "id": 36, "ws": false}], "spans": [{"start": 0, "end": 15, "label": "author", "token_start": 0, "token_end": 3}, {"start": 16, "end": 21, "label": "date", "token_start": 4, "token_end": 5}, {"start": 22, "end": 97, "label": "title", "token_start": 6, "token_end": 22}, {"start": 98, "end": 125, "label": "journal", "token_start": 23, "token_end": 29}, {"start": 126, "end": 133, "label": "volume", "token_start": 30, "token_end": 33}, {"start": 134, "end": 145, "label": "pages", "token_start": 34, "token_end": 36}]} -{"text": "Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T\u00fcbingen.", "tokens": [{"text": "Geiger", "start": 0, "end": 6, "id": 0, "ws": false}, {"text": ",", "start": 6, "end": 7, "id": 1, "ws": true}, {"text": "Theodor", "start": 8, "end": 15, "id": 2, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 3, "ws": true}, {"text": "1964", "start": 17, "end": 21, "id": 4, "ws": false}, {"text": ":", "start": 21, "end": 22, "id": 5, "ws": true}, {"text": "Vorstudien", "start": 23, "end": 33, "id": 6, "ws": true}, {"text": "zu", "start": 34, "end": 36, "id": 7, "ws": true}, {"text": "einer", "start": 37, "end": 42, "id": 8, "ws": true}, {"text": "Soziologie", "start": 43, "end": 53, "id": 9, "ws": true}, {"text": "des", "start": 54, "end": 57, "id": 10, "ws": true}, {"text": "Rechts", "start": 58, "end": 64, "id": 11, "ws": false}, {"text": ".", "start": 64, "end": 65, "id": 12, "ws": true}, {"text": "Neuwied", "start": 66, "end": 73, "id": 13, "ws": false}, {"text": ".", "start": 73, "end": 74, "id": 14, "ws": true}, {"text": "Gessner", "start": 75, "end": 82, "id": 15, "ws": false}, {"text": ",", "start": 82, "end": 83, "id": 16, "ws": true}, {"text": "Volkmar", "start": 84, "end": 91, "id": 17, "ws": false}, {"text": ",", "start": 91, "end": 92, "id": 18, "ws": true}, {"text": "1976", "start": 93, "end": 97, "id": 19, "ws": false}, {"text": ":", "start": 97, "end": 98, "id": 20, "ws": true}, {"text": "Recht", "start": 99, "end": 104, "id": 21, "ws": true}, {"text": "und", "start": 105, "end": 108, "id": 22, "ws": true}, {"text": "Konflikt", "start": 109, "end": 117, "id": 23, "ws": false}, {"text": ".", "start": 117, "end": 118, "id": 24, "ws": true}, {"text": "T\u00fcbingen", "start": 119, "end": 127, "id": 25, "ws": false}, {"text": ".", "start": 127, "end": 128, "id": 26, "ws": false}], "spans": [{"start": 0, "end": 16, "label": "author", "token_start": 0, "token_end": 3}, {"start": 17, "end": 22, "label": "date", "token_start": 4, "token_end": 5}, {"start": 23, "end": 65, "label": "title", "token_start": 6, "token_end": 12}, {"start": 66, "end": 92, "label": "author", "token_start": 13, "token_end": 18}, {"start": 93, "end": 98, "label": "date", "token_start": 19, "token_end": 20}, {"start": 99, "end": 118, "label": "title", "token_start": 21, "token_end": 24}, {"start": 119, "end": 128, "label": "location", "token_start": 25, "token_end": 26}]} -{"text": "Hilden, Hartmut, 1976: Rechtstatsachen im R\u00e4umungsstreit. Frankfurt/Main.", "tokens": [{"text": "Hilden", "start": 0, "end": 6, "id": 0, "ws": false}, {"text": ",", "start": 6, "end": 7, "id": 1, "ws": true}, {"text": "Hartmut", "start": 8, "end": 15, "id": 2, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 3, "ws": true}, {"text": "1976", "start": 17, "end": 21, "id": 4, "ws": false}, {"text": ":", "start": 21, "end": 22, "id": 5, "ws": true}, {"text": "Rechtstatsachen", "start": 23, "end": 38, "id": 6, "ws": true}, {"text": "im", "start": 39, "end": 41, "id": 7, "ws": true}, {"text": "R\u00e4umungsstreit", "start": 42, "end": 56, "id": 8, "ws": false}, {"text": ".", "start": 56, "end": 57, "id": 9, "ws": true}, {"text": "Frankfurt", "start": 58, "end": 67, "id": 10, "ws": false}, {"text": "/", "start": 67, "end": 68, "id": 11, "ws": false}, {"text": "Main", "start": 68, "end": 72, "id": 12, "ws": false}, {"text": ".", "start": 72, "end": 73, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 16, "label": "location", "token_start": 0, "token_end": 3}, {"start": 17, "end": 22, "label": "date", "token_start": 4, "token_end": 5}, {"start": 23, "end": 73, "label": "title", "token_start": 6, "token_end": 13}]} -{"text": "Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/ Rijn.", "tokens": [{"text": "Johnson", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Earl", "start": 9, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "1979", "start": 15, "end": 19, "id": 4, "ws": false}, {"text": ";", "start": 19, "end": 20, "id": 5, "ws": true}, {"text": "Thinking", "start": 21, "end": 29, "id": 6, "ws": true}, {"text": "about", "start": 30, "end": 35, "id": 7, "ws": true}, {"text": "Access", "start": 36, "end": 42, "id": 8, "ws": false}, {"text": ":", "start": 42, "end": 43, "id": 9, "ws": true}, {"text": "A", "start": 44, "end": 45, "id": 10, "ws": true}, {"text": "Preliminary", "start": 46, "end": 57, "id": 11, "ws": true}, {"text": "Typology", "start": 58, "end": 66, "id": 12, "ws": true}, {"text": "of", "start": 67, "end": 69, "id": 13, "ws": true}, {"text": "Possible", "start": 70, "end": 78, "id": 14, "ws": true}, {"text": "Strategies", "start": 79, "end": 89, "id": 15, "ws": false}, {"text": ".", "start": 89, "end": 90, "id": 16, "ws": true}, {"text": "In", "start": 91, "end": 93, "id": 17, "ws": false}, {"text": ":", "start": 93, "end": 94, "id": 18, "ws": true}, {"text": "Cappelletti", "start": 95, "end": 106, "id": 19, "ws": false}, {"text": ",", "start": 106, "end": 107, "id": 20, "ws": true}, {"text": "Mauro", "start": 108, "end": 113, "id": 21, "ws": true}, {"text": "und", "start": 114, "end": 117, "id": 22, "ws": true}, {"text": "Bryant", "start": 118, "end": 124, "id": 23, "ws": true}, {"text": "Garth", "start": 125, "end": 130, "id": 24, "ws": true}, {"text": "(", "start": 131, "end": 132, "id": 25, "ws": false}, {"text": "Hrsg.", "start": 132, "end": 137, "id": 26, "ws": false}, {"text": "):", "start": 137, "end": 139, "id": 27, "ws": true}, {"text": "Access", "start": 140, "end": 146, "id": 28, "ws": true}, {"text": "to", "start": 147, "end": 149, "id": 29, "ws": true}, {"text": "Justice", "start": 150, "end": 157, "id": 30, "ws": false}, {"text": ",", "start": 157, "end": 158, "id": 31, "ws": true}, {"text": "Bd.", "start": 159, "end": 162, "id": 32, "ws": true}, {"text": "III.", "start": 163, "end": 167, "id": 33, "ws": true}, {"text": "Milan", "start": 168, "end": 173, "id": 34, "ws": true}, {"text": "und", "start": 174, "end": 177, "id": 35, "ws": true}, {"text": "Alphen", "start": 178, "end": 184, "id": 36, "ws": false}, {"text": "/", "start": 184, "end": 185, "id": 37, "ws": true}, {"text": "Rijn", "start": 186, "end": 190, "id": 38, "ws": false}, {"text": ".", "start": 190, "end": 191, "id": 39, "ws": false}], "spans": [{"start": 0, "end": 14, "label": "author", "token_start": 0, "token_end": 3}, {"start": 15, "end": 20, "label": "date", "token_start": 4, "token_end": 5}, {"start": 21, "end": 90, "label": "title", "token_start": 6, "token_end": 16}, {"start": 91, "end": 139, "label": "editor", "token_start": 17, "token_end": 27}, {"start": 140, "end": 158, "label": "container-title", "token_start": 28, "token_end": 31}, {"start": 159, "end": 167, "label": "volume", "token_start": 32, "token_end": 33}, {"start": 168, "end": 191, "label": "editor", "token_start": 34, "token_end": 39}]} -{"text": "Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl\u00f6sungsproze\u00df \u2014 Einstellung von Kl\u00e4gern und Beklagten zu Mietprozessen. Diss. Hamburg.", "tokens": [{"text": "Koch", "start": 0, "end": 4, "id": 0, "ws": false}, {"text": ",", "start": 4, "end": 5, "id": 1, "ws": true}, {"text": "Hartmut", "start": 6, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "1975", "start": 15, "end": 19, "id": 4, "ws": false}, {"text": ":", "start": 19, "end": 20, "id": 5, "ws": true}, {"text": "Das", "start": 21, "end": 24, "id": 6, "ws": true}, {"text": "Gerichtsverfahren", "start": 25, "end": 42, "id": 7, "ws": true}, {"text": "als", "start": 43, "end": 46, "id": 8, "ws": true}, {"text": "Konfliktl\u00f6sungsproze\u00df", "start": 47, "end": 68, "id": 9, "ws": true}, {"text": "\u2014", "start": 69, "end": 70, "id": 10, "ws": true}, {"text": "Einstellung", "start": 71, "end": 82, "id": 11, "ws": true}, {"text": "von", "start": 83, "end": 86, "id": 12, "ws": true}, {"text": "Kl\u00e4gern", "start": 87, "end": 94, "id": 13, "ws": true}, {"text": "und", "start": 95, "end": 98, "id": 14, "ws": true}, {"text": "Beklagten", "start": 99, "end": 108, "id": 15, "ws": true}, {"text": "zu", "start": 109, "end": 111, "id": 16, "ws": true}, {"text": "Mietprozessen", "start": 112, "end": 125, "id": 17, "ws": false}, {"text": ".", "start": 125, "end": 126, "id": 18, "ws": true}, {"text": "Diss", "start": 127, "end": 131, "id": 19, "ws": false}, {"text": ".", "start": 131, "end": 132, "id": 20, "ws": true}, {"text": "Hamburg", "start": 133, "end": 140, "id": 21, "ws": false}, {"text": ".", "start": 140, "end": 141, "id": 22, "ws": false}], "spans": [{"start": 0, "end": 14, "label": "author", "token_start": 0, "token_end": 3}, {"start": 15, "end": 20, "label": "date", "token_start": 4, "token_end": 5}, {"start": 21, "end": 126, "label": "title", "token_start": 6, "token_end": 18}, {"start": 127, "end": 141, "label": "location", "token_start": 19, "token_end": 22}]} -{"text": "Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.", "tokens": [{"text": "Luhmann", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Niklas", "start": 9, "end": 15, "id": 2, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 3, "ws": true}, {"text": "1969", "start": 17, "end": 21, "id": 4, "ws": false}, {"text": ":", "start": 21, "end": 22, "id": 5, "ws": true}, {"text": "Legitimation", "start": 23, "end": 35, "id": 6, "ws": true}, {"text": "durch", "start": 36, "end": 41, "id": 7, "ws": true}, {"text": "Verfahren", "start": 42, "end": 51, "id": 8, "ws": false}, {"text": ".", "start": 51, "end": 52, "id": 9, "ws": true}, {"text": "Neuwied", "start": 53, "end": 60, "id": 10, "ws": true}, {"text": "und", "start": 61, "end": 64, "id": 11, "ws": true}, {"text": "Darmstadt", "start": 65, "end": 74, "id": 12, "ws": false}, {"text": ".", "start": 74, "end": 75, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 16, "label": "author", "token_start": 0, "token_end": 3}, {"start": 17, "end": 22, "label": "date", "token_start": 4, "token_end": 5}, {"start": 23, "end": 52, "label": "title", "token_start": 6, "token_end": 9}, {"start": 53, "end": 75, "label": "location", "token_start": 10, "token_end": 13}]} -{"text": "Luhmann, Niklas, 1980: Kommunikation \u00fcber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.", "tokens": [{"text": "Luhmann", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Niklas", "start": 9, "end": 15, "id": 2, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 3, "ws": true}, {"text": "1980", "start": 17, "end": 21, "id": 4, "ws": false}, {"text": ":", "start": 21, "end": 22, "id": 5, "ws": true}, {"text": "Kommunikation", "start": 23, "end": 36, "id": 6, "ws": true}, {"text": "\u00fcber", "start": 37, "end": 41, "id": 7, "ws": true}, {"text": "Recht", "start": 42, "end": 47, "id": 8, "ws": true}, {"text": "in", "start": 48, "end": 50, "id": 9, "ws": true}, {"text": "Interaktionssystemen", "start": 51, "end": 71, "id": 10, "ws": false}, {"text": ",", "start": 71, "end": 72, "id": 11, "ws": true}, {"text": "in", "start": 73, "end": 75, "id": 12, "ws": false}, {"text": ":", "start": 75, "end": 76, "id": 13, "ws": true}, {"text": "Blankenburg", "start": 77, "end": 88, "id": 14, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 15, "ws": true}, {"text": "Erhard", "start": 90, "end": 96, "id": 16, "ws": false}, {"text": ";", "start": 96, "end": 97, "id": 17, "ws": true}, {"text": "Klausa", "start": 98, "end": 104, "id": 18, "ws": false}, {"text": ",", "start": 104, "end": 105, "id": 19, "ws": true}, {"text": "Ekkehard", "start": 106, "end": 114, "id": 20, "ws": true}, {"text": "und", "start": 115, "end": 118, "id": 21, "ws": true}, {"text": "Hubert", "start": 119, "end": 125, "id": 22, "ws": true}, {"text": "Rottleuthner", "start": 126, "end": 138, "id": 23, "ws": true}, {"text": "(", "start": 139, "end": 140, "id": 24, "ws": false}, {"text": "Hrsg.", "start": 140, "end": 145, "id": 25, "ws": false}, {"text": "):", "start": 145, "end": 147, "id": 26, "ws": true}, {"text": "Alternative", "start": 148, "end": 159, "id": 27, "ws": true}, {"text": "Rechtsformen", "start": 160, "end": 172, "id": 28, "ws": true}, {"text": "und", "start": 173, "end": 176, "id": 29, "ws": true}, {"text": "Alternativen", "start": 177, "end": 189, "id": 30, "ws": true}, {"text": "zum", "start": 190, "end": 193, "id": 31, "ws": true}, {"text": "Recht", "start": 194, "end": 199, "id": 32, "ws": false}, {"text": ",", "start": 199, "end": 200, "id": 33, "ws": true}, {"text": "Jahrbuch", "start": 201, "end": 209, "id": 34, "ws": true}, {"text": "f\u00fcr", "start": 210, "end": 213, "id": 35, "ws": true}, {"text": "Rechtssoziologie", "start": 214, "end": 230, "id": 36, "ws": true}, {"text": "und", "start": 231, "end": 234, "id": 37, "ws": true}, {"text": "Rechtstheorie", "start": 235, "end": 248, "id": 38, "ws": true}, {"text": "Bd.", "start": 249, "end": 252, "id": 39, "ws": true}, {"text": "6.", "start": 253, "end": 255, "id": 40, "ws": true}, {"text": "Opladen", "start": 256, "end": 263, "id": 41, "ws": false}, {"text": ".", "start": 263, "end": 264, "id": 42, "ws": false}], "spans": [{"start": 0, "end": 16, "label": "author", "token_start": 0, "token_end": 3}, {"start": 17, "end": 22, "label": "date", "token_start": 4, "token_end": 5}, {"start": 23, "end": 72, "label": "title", "token_start": 6, "token_end": 11}, {"start": 73, "end": 147, "label": "editor", "token_start": 12, "token_end": 26}, {"start": 148, "end": 200, "label": "container-title", "token_start": 27, "token_end": 33}, {"start": 201, "end": 248, "label": "collection-title", "token_start": 34, "token_end": 38}, {"start": 249, "end": 264, "label": "volume", "token_start": 39, "token_end": 42}]} -{"text": "Reifner, Udo, 1978: Rechtshilfebed\u00fcrfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78\u201470.", "tokens": [{"text": "Reifner", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Udo", "start": 9, "end": 12, "id": 2, "ws": false}, {"text": ",", "start": 12, "end": 13, "id": 3, "ws": true}, {"text": "1978", "start": 14, "end": 18, "id": 4, "ws": false}, {"text": ":", "start": 18, "end": 19, "id": 5, "ws": true}, {"text": "Rechtshilfebed\u00fcrfnis", "start": 20, "end": 40, "id": 6, "ws": true}, {"text": "und", "start": 41, "end": 44, "id": 7, "ws": true}, {"text": "Verrechtlichung", "start": 45, "end": 60, "id": 8, "ws": true}, {"text": "am", "start": 61, "end": 63, "id": 9, "ws": true}, {"text": "Beispiel", "start": 64, "end": 72, "id": 10, "ws": true}, {"text": "einer", "start": 73, "end": 78, "id": 11, "ws": true}, {"text": "Berliner", "start": 79, "end": 87, "id": 12, "ws": true}, {"text": "Mieterinitiative", "start": 88, "end": 104, "id": 13, "ws": false}, {"text": ",", "start": 104, "end": 105, "id": 14, "ws": true}, {"text": "Wissenschaftszentrum", "start": 106, "end": 126, "id": 15, "ws": true}, {"text": "Berlin", "start": 127, "end": 133, "id": 16, "ws": false}, {"text": ",", "start": 133, "end": 134, "id": 17, "ws": true}, {"text": "IIM-dp", "start": 135, "end": 141, "id": 18, "ws": false}, {"text": "/", "start": 141, "end": 142, "id": 19, "ws": false}, {"text": "78\u201470.", "start": 142, "end": 148, "id": 20, "ws": false}], "spans": [{"start": 0, "end": 13, "label": "author", "token_start": 0, "token_end": 3}, {"start": 14, "end": 19, "label": "date", "token_start": 4, "token_end": 5}, {"start": 20, "end": 105, "label": "title", "token_start": 6, "token_end": 14}, {"start": 106, "end": 134, "label": "location", "token_start": 15, "token_end": 17}, {"start": 135, "end": 148, "label": "pages", "token_start": 18, "token_end": 20}]} -{"text": "Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz \u2014 Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894\u20141945. Wissenschaftszentrum Berlin IIM-dp/79\u2014104.", "tokens": [{"text": "Reifner", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Udo", "start": 9, "end": 12, "id": 2, "ws": false}, {"text": ",", "start": 12, "end": 13, "id": 3, "ws": true}, {"text": "1979", "start": 14, "end": 18, "id": 4, "ws": false}, {"text": ":", "start": 18, "end": 19, "id": 5, "ws": true}, {"text": "Gewerkschaftlicher", "start": 20, "end": 38, "id": 6, "ws": true}, {"text": "Rechtsschutz", "start": 39, "end": 51, "id": 7, "ws": true}, {"text": "\u2014", "start": 52, "end": 53, "id": 8, "ws": true}, {"text": "Geschichte", "start": 54, "end": 64, "id": 9, "ws": true}, {"text": "des", "start": 65, "end": 68, "id": 10, "ws": true}, {"text": "freigewerkschaftlichen", "start": 69, "end": 91, "id": 11, "ws": true}, {"text": "Rechtsschutzes", "start": 92, "end": 106, "id": 12, "ws": true}, {"text": "und", "start": 107, "end": 110, "id": 13, "ws": true}, {"text": "der", "start": 111, "end": 114, "id": 14, "ws": true}, {"text": "Rechtsberatung", "start": 115, "end": 129, "id": 15, "ws": true}, {"text": "der", "start": 130, "end": 133, "id": 16, "ws": true}, {"text": "Deutschen", "start": 134, "end": 143, "id": 17, "ws": true}, {"text": "Arbeitsfront", "start": 144, "end": 156, "id": 18, "ws": true}, {"text": "von", "start": 157, "end": 160, "id": 19, "ws": true}, {"text": "1894\u20141945.", "start": 161, "end": 171, "id": 20, "ws": true}, {"text": "Wissenschaftszentrum", "start": 172, "end": 192, "id": 21, "ws": true}, {"text": "Berlin", "start": 193, "end": 199, "id": 22, "ws": true}, {"text": "IIM-dp", "start": 200, "end": 206, "id": 23, "ws": false}, {"text": "/", "start": 206, "end": 207, "id": 24, "ws": false}, {"text": "79\u2014104.", "start": 207, "end": 214, "id": 25, "ws": false}], "spans": [{"start": 0, "end": 13, "label": "author", "token_start": 0, "token_end": 3}, {"start": 14, "end": 19, "label": "date", "token_start": 4, "token_end": 5}, {"start": 20, "end": 171, "label": "title", "token_start": 6, "token_end": 20}, {"start": 172, "end": 199, "label": "location", "token_start": 21, "token_end": 22}, {"start": 200, "end": 214, "label": "pages", "token_start": 23, "token_end": 25}]} -{"text": "Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F\u00fcrsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.", "tokens": [{"text": "Reifner", "start": 0, "end": 7, "id": 0, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 1, "ws": true}, {"text": "Udo", "start": 9, "end": 12, "id": 2, "ws": true}, {"text": "und", "start": 13, "end": 16, "id": 3, "ws": true}, {"text": "Irmela", "start": 17, "end": 23, "id": 4, "ws": true}, {"text": "Gorges", "start": 24, "end": 30, "id": 5, "ws": false}, {"text": ",", "start": 30, "end": 31, "id": 6, "ws": true}, {"text": "1980", "start": 32, "end": 36, "id": 7, "ws": false}, {"text": ";", "start": 36, "end": 37, "id": 8, "ws": true}, {"text": "Alternativen", "start": 38, "end": 50, "id": 9, "ws": true}, {"text": "der", "start": 51, "end": 54, "id": 10, "ws": true}, {"text": "Rechtsberatung", "start": 55, "end": 69, "id": 11, "ws": false}, {"text": ":", "start": 69, "end": 70, "id": 12, "ws": true}, {"text": "Dienstleistung", "start": 71, "end": 85, "id": 13, "ws": false}, {"text": ",", "start": 85, "end": 86, "id": 14, "ws": true}, {"text": "F\u00fcrsorge", "start": 87, "end": 95, "id": 15, "ws": true}, {"text": "und", "start": 96, "end": 99, "id": 16, "ws": true}, {"text": "kollektive", "start": 100, "end": 110, "id": 17, "ws": true}, {"text": "Selbsthilfe", "start": 111, "end": 122, "id": 18, "ws": false}, {"text": ",", "start": 122, "end": 123, "id": 19, "ws": true}, {"text": "in", "start": 124, "end": 126, "id": 20, "ws": false}, {"text": ":", "start": 126, "end": 127, "id": 21, "ws": true}, {"text": "Blankenburg", "start": 128, "end": 139, "id": 22, "ws": false}, {"text": ",", "start": 139, "end": 140, "id": 23, "ws": true}, {"text": "Erhard", "start": 141, "end": 147, "id": 24, "ws": false}, {"text": ";", "start": 147, "end": 148, "id": 25, "ws": true}, {"text": "Klausa", "start": 149, "end": 155, "id": 26, "ws": false}, {"text": ",", "start": 155, "end": 156, "id": 27, "ws": true}, {"text": "Ekkehard", "start": 157, "end": 165, "id": 28, "ws": true}, {"text": "und", "start": 166, "end": 169, "id": 29, "ws": true}, {"text": "Hubert", "start": 170, "end": 176, "id": 30, "ws": true}, {"text": "Rottleuthner", "start": 177, "end": 189, "id": 31, "ws": true}, {"text": "(", "start": 190, "end": 191, "id": 32, "ws": false}, {"text": "Hrsg.", "start": 191, "end": 196, "id": 33, "ws": false}, {"text": "):", "start": 196, "end": 198, "id": 34, "ws": true}, {"text": "Alternative", "start": 199, "end": 210, "id": 35, "ws": true}, {"text": "Rechtsformen", "start": 211, "end": 223, "id": 36, "ws": true}, {"text": "und", "start": 224, "end": 227, "id": 37, "ws": true}, {"text": "Alternativen", "start": 228, "end": 240, "id": 38, "ws": true}, {"text": "zum", "start": 241, "end": 244, "id": 39, "ws": true}, {"text": "Recht", "start": 245, "end": 250, "id": 40, "ws": false}, {"text": ",", "start": 250, "end": 251, "id": 41, "ws": true}, {"text": "Jahrbuch", "start": 252, "end": 260, "id": 42, "ws": true}, {"text": "f\u00fcr", "start": 261, "end": 264, "id": 43, "ws": true}, {"text": "Rechtssoziologie", "start": 265, "end": 281, "id": 44, "ws": true}, {"text": "und", "start": 282, "end": 285, "id": 45, "ws": true}, {"text": "Rechtstheorie", "start": 286, "end": 299, "id": 46, "ws": true}, {"text": "Bd.", "start": 300, "end": 303, "id": 47, "ws": true}, {"text": "6.", "start": 304, "end": 306, "id": 48, "ws": true}, {"text": "Opladen", "start": 307, "end": 314, "id": 49, "ws": false}, {"text": ".", "start": 314, "end": 315, "id": 50, "ws": false}], "spans": [{"start": 0, "end": 8, "label": "author", "token_start": 0, "token_end": 1}, {"start": 9, "end": 31, "label": "title", "token_start": 2, "token_end": 6}, {"start": 32, "end": 37, "label": "date", "token_start": 7, "token_end": 8}, {"start": 38, "end": 123, "label": "title", "token_start": 9, "token_end": 19}, {"start": 124, "end": 198, "label": "editor", "token_start": 20, "token_end": 34}, {"start": 199, "end": 251, "label": "container-title", "token_start": 35, "token_end": 41}, {"start": 252, "end": 299, "label": "collection-title", "token_start": 42, "token_end": 46}, {"start": 300, "end": 315, "label": "volume", "token_start": 47, "token_end": 50}]} -{"text": "Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339\u2014375.", "tokens": [{"text": "Sarat", "start": 0, "end": 5, "id": 0, "ws": false}, {"text": ",", "start": 5, "end": 6, "id": 1, "ws": true}, {"text": "Austin", "start": 7, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "1976", "start": 15, "end": 19, "id": 4, "ws": false}, {"text": ":", "start": 19, "end": 20, "id": 5, "ws": true}, {"text": "Alternatives", "start": 21, "end": 33, "id": 6, "ws": true}, {"text": "in", "start": 34, "end": 36, "id": 7, "ws": true}, {"text": "Dispute", "start": 37, "end": 44, "id": 8, "ws": true}, {"text": "Processing", "start": 45, "end": 55, "id": 9, "ws": true}, {"text": "in", "start": 56, "end": 58, "id": 10, "ws": true}, {"text": "a", "start": 59, "end": 60, "id": 11, "ws": true}, {"text": "Small", "start": 61, "end": 66, "id": 12, "ws": true}, {"text": "Claim", "start": 67, "end": 72, "id": 13, "ws": true}, {"text": "Court", "start": 73, "end": 78, "id": 14, "ws": false}, {"text": ",", "start": 78, "end": 79, "id": 15, "ws": true}, {"text": "in", "start": 80, "end": 82, "id": 16, "ws": false}, {"text": ":", "start": 82, "end": 83, "id": 17, "ws": true}, {"text": "Law", "start": 84, "end": 87, "id": 18, "ws": true}, {"text": "and", "start": 88, "end": 91, "id": 19, "ws": true}, {"text": "Society", "start": 92, "end": 99, "id": 20, "ws": true}, {"text": "Review", "start": 100, "end": 106, "id": 21, "ws": false}, {"text": ",", "start": 106, "end": 107, "id": 22, "ws": true}, {"text": "vol", "start": 108, "end": 111, "id": 23, "ws": false}, {"text": ".", "start": 111, "end": 112, "id": 24, "ws": true}, {"text": "10", "start": 113, "end": 115, "id": 25, "ws": false}, {"text": ",", "start": 115, "end": 116, "id": 26, "ws": true}, {"text": "pp", "start": 117, "end": 119, "id": 27, "ws": false}, {"text": ".", "start": 119, "end": 120, "id": 28, "ws": true}, {"text": "339\u2014375.", "start": 121, "end": 129, "id": 29, "ws": false}], "spans": [{"start": 0, "end": 6, "label": "author", "token_start": 0, "token_end": 1}, {"start": 7, "end": 14, "label": "location", "token_start": 2, "token_end": 3}, {"start": 15, "end": 20, "label": "date", "token_start": 4, "token_end": 5}, {"start": 21, "end": 79, "label": "title", "token_start": 6, "token_end": 15}, {"start": 80, "end": 107, "label": "journal", "token_start": 16, "token_end": 22}, {"start": 108, "end": 116, "label": "volume", "token_start": 23, "token_end": 26}, {"start": 117, "end": 129, "label": "pages", "token_start": 27, "token_end": 29}]} -{"text": "Sch\u00f6nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung f\u00fcr Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden-Baden.", "tokens": [{"text": "Sch\u00f6nholz", "start": 0, "end": 9, "id": 0, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 1, "ws": true}, {"text": "Siegfried", "start": 11, "end": 20, "id": 2, "ws": false}, {"text": ",", "start": 20, "end": 21, "id": 3, "ws": true}, {"text": "1980", "start": 22, "end": 26, "id": 4, "ws": false}, {"text": ":", "start": 26, "end": 27, "id": 5, "ws": true}, {"text": "Arbeitsplatzsicherung", "start": 28, "end": 49, "id": 6, "ws": true}, {"text": "oder", "start": 50, "end": 54, "id": 7, "ws": true}, {"text": "Kompensation", "start": 55, "end": 67, "id": 8, "ws": true}, {"text": "-", "start": 68, "end": 69, "id": 9, "ws": true}, {"text": "Rechtliche", "start": 70, "end": 80, "id": 10, "ws": true}, {"text": "Formen", "start": 81, "end": 87, "id": 11, "ws": true}, {"text": "des", "start": 88, "end": 91, "id": 12, "ws": true}, {"text": "Bestandsschutzes", "start": 92, "end": 108, "id": 13, "ws": true}, {"text": "im", "start": 109, "end": 111, "id": 14, "ws": true}, {"text": "Vergleich", "start": 112, "end": 121, "id": 15, "ws": true}, {"text": "in", "start": 122, "end": 124, "id": 16, "ws": false}, {"text": ":", "start": 124, "end": 125, "id": 17, "ws": true}, {"text": "Vereinigung", "start": 126, "end": 137, "id": 18, "ws": true}, {"text": "f\u00fcr", "start": 138, "end": 141, "id": 19, "ws": true}, {"text": "Rechtssoziologie", "start": 142, "end": 158, "id": 20, "ws": true}, {"text": "(", "start": 159, "end": 160, "id": 21, "ws": false}, {"text": "Hrsg.", "start": 160, "end": 165, "id": 22, "ws": false}, {"text": "):", "start": 165, "end": 167, "id": 23, "ws": true}, {"text": "Arbeitslosigkeit", "start": 168, "end": 184, "id": 24, "ws": true}, {"text": "und", "start": 185, "end": 188, "id": 25, "ws": true}, {"text": "Recht", "start": 189, "end": 194, "id": 26, "ws": false}, {"text": ".", "start": 194, "end": 195, "id": 27, "ws": true}, {"text": "Baden-Baden", "start": 196, "end": 207, "id": 28, "ws": false}, {"text": ".", "start": 207, "end": 208, "id": 29, "ws": false}], "spans": [{"start": 0, "end": 21, "label": "author", "token_start": 0, "token_end": 3}, {"start": 22, "end": 27, "label": "date", "token_start": 4, "token_end": 5}, {"start": 28, "end": 121, "label": "title", "token_start": 6, "token_end": 15}, {"start": 122, "end": 167, "label": "editor", "token_start": 16, "token_end": 23}, {"start": 168, "end": 195, "label": "container-title", "token_start": 24, "token_end": 27}, {"start": 196, "end": 208, "label": "location", "token_start": 28, "token_end": 29}]} -{"text": "Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f\u00fcr Mathematik und Datenverarbeitung. Birlinghoven bei Bonn.", "tokens": [{"text": "Steinbach", "start": 0, "end": 9, "id": 0, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 1, "ws": true}, {"text": "E.", "start": 11, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "1979", "start": 15, "end": 19, "id": 4, "ws": false}, {"text": ":", "start": 19, "end": 20, "id": 5, "ws": true}, {"text": "GMD-Bericht", "start": 21, "end": 32, "id": 6, "ws": false}, {"text": ",", "start": 32, "end": 33, "id": 7, "ws": true}, {"text": "Manuskript", "start": 34, "end": 44, "id": 8, "ws": false}, {"text": ".", "start": 44, "end": 45, "id": 9, "ws": true}, {"text": "Gesellschaft", "start": 46, "end": 58, "id": 10, "ws": true}, {"text": "f\u00fcr", "start": 59, "end": 62, "id": 11, "ws": true}, {"text": "Mathematik", "start": 63, "end": 73, "id": 12, "ws": true}, {"text": "und", "start": 74, "end": 77, "id": 13, "ws": true}, {"text": "Datenverarbeitung", "start": 78, "end": 95, "id": 14, "ws": false}, {"text": ".", "start": 95, "end": 96, "id": 15, "ws": true}, {"text": "Birlinghoven", "start": 97, "end": 109, "id": 16, "ws": true}, {"text": "bei", "start": 110, "end": 113, "id": 17, "ws": true}, {"text": "Bonn", "start": 114, "end": 118, "id": 18, "ws": false}, {"text": ".", "start": 118, "end": 119, "id": 19, "ws": false}], "spans": [{"start": 0, "end": 14, "label": "author", "token_start": 0, "token_end": 3}, {"start": 15, "end": 20, "label": "date", "token_start": 4, "token_end": 5}, {"start": 21, "end": 96, "label": "title", "token_start": 6, "token_end": 15}, {"start": 97, "end": 119, "label": "location", "token_start": 16, "token_end": 19}]} -{"text": "Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.", "tokens": [{"text": "Wanner", "start": 0, "end": 6, "id": 0, "ws": false}, {"text": ",", "start": 6, "end": 7, "id": 1, "ws": true}, {"text": "Craig", "start": 8, "end": 13, "id": 2, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 3, "ws": true}, {"text": "1975", "start": 15, "end": 19, "id": 4, "ws": false}, {"text": ":", "start": 19, "end": 20, "id": 5, "ws": true}, {"text": "The", "start": 21, "end": 24, "id": 6, "ws": true}, {"text": "Public", "start": 25, "end": 31, "id": 7, "ws": true}, {"text": "Ordering", "start": 32, "end": 40, "id": 8, "ws": true}, {"text": "of", "start": 41, "end": 43, "id": 9, "ws": true}, {"text": "Private", "start": 44, "end": 51, "id": 10, "ws": true}, {"text": "Cases", "start": 52, "end": 57, "id": 11, "ws": false}, {"text": ";", "start": 57, "end": 58, "id": 12, "ws": true}, {"text": "Winning", "start": 59, "end": 66, "id": 13, "ws": true}, {"text": "Civil", "start": 67, "end": 72, "id": 14, "ws": true}, {"text": "Court", "start": 73, "end": 78, "id": 15, "ws": true}, {"text": "Cases", "start": 79, "end": 84, "id": 16, "ws": false}, {"text": ",", "start": 84, "end": 85, "id": 17, "ws": true}, {"text": "in", "start": 86, "end": 88, "id": 18, "ws": false}, {"text": ":", "start": 88, "end": 89, "id": 19, "ws": true}, {"text": "Law", "start": 90, "end": 93, "id": 20, "ws": true}, {"text": "and", "start": 94, "end": 97, "id": 21, "ws": true}, {"text": "Society", "start": 98, "end": 105, "id": 22, "ws": true}, {"text": "Review", "start": 106, "end": 112, "id": 23, "ws": false}, {"text": ",", "start": 112, "end": 113, "id": 24, "ws": true}, {"text": "vol", "start": 114, "end": 117, "id": 25, "ws": false}, {"text": ".", "start": 117, "end": 118, "id": 26, "ws": true}, {"text": "9", "start": 119, "end": 120, "id": 27, "ws": false}, {"text": ",", "start": 120, "end": 121, "id": 28, "ws": true}, {"text": "pp", "start": 122, "end": 124, "id": 29, "ws": false}, {"text": ".", "start": 124, "end": 125, "id": 30, "ws": true}, {"text": "293", "start": 126, "end": 129, "id": 31, "ws": false}, {"text": "-", "start": 129, "end": 130, "id": 32, "ws": false}, {"text": "306.", "start": 130, "end": 134, "id": 33, "ws": false}], "spans": [{"start": 0, "end": 14, "label": "author", "token_start": 0, "token_end": 3}, {"start": 15, "end": 20, "label": "date", "token_start": 4, "token_end": 5}, {"start": 21, "end": 85, "label": "title", "token_start": 6, "token_end": 17}, {"start": 86, "end": 113, "label": "journal", "token_start": 18, "token_end": 24}, {"start": 114, "end": 121, "label": "volume", "token_start": 25, "token_end": 28}, {"start": 122, "end": 134, "label": "pages", "token_start": 29, "token_end": 33}]} diff --git a/prodigy/out/10.1515_zfrs-1980-0104-parser.jsonl b/prodigy/out/10.1515_zfrs-1980-0104-parser.jsonl deleted file mode 100644 index ce13bbd..0000000 --- a/prodigy/out/10.1515_zfrs-1980-0104-parser.jsonl +++ /dev/null @@ -1,79 +0,0 @@ -{"text": "tiny. - Abgek\u00fcrzt werden zitiert: Armer/Grimshaw (Hrsg.), Comparative Social ResearchMethodological Problems and Strategies (New York, London, Sydney, Tokio 1973); Drobnig/ Rebbinder (Hrsg.), Rechtssoziologie und Rechtsvergleichung (1977); Rokkan (Hrsg.), Compa rative Research Across Cultures and Nations (Paris, Den Haag 1968); Rokkan/Verba/Viet/ Almasy (Hrsg.), Comparative Sutvey Analysis (Den Haag, Paris 1969); Smelser, Comparative Methods in the Social Sciences (Englewood Cliffs, N. J. 1976) ; Szalai/Petrella (Hrsg.), Cross National Comparative Survey Research (Oxford, New York, Toronto, Sydney, Paris, Frank furt 1977); Vallier (Hrsg.), Comparative Methods in Sociology (Berkeley, Los Angeles, London 1971); Zweigert/K\u00f6tz. Einf\u00fchrung in die Rechtsvergleichung Bd. I (1971).", "tokens": [{"text": "tiny", "start": 0, "end": 4, "id": 0, "ws": false}, {"text": ".", "start": 4, "end": 5, "id": 1, "ws": true}, {"text": "-", "start": 6, "end": 7, "id": 2, "ws": true}, {"text": "Abgek\u00fcrzt", "start": 8, "end": 17, "id": 3, "ws": true}, {"text": "werden", "start": 18, "end": 24, "id": 4, "ws": true}, {"text": "zitiert", "start": 25, "end": 32, "id": 5, "ws": false}, {"text": ":", "start": 32, "end": 33, "id": 6, "ws": true}, {"text": "Armer", "start": 34, "end": 39, "id": 7, "ws": false}, {"text": "/", "start": 39, "end": 40, "id": 8, "ws": false}, {"text": "Grimshaw", "start": 40, "end": 48, "id": 9, "ws": true}, {"text": "(", "start": 49, "end": 50, "id": 10, "ws": false}, {"text": "Hrsg.", "start": 50, "end": 55, "id": 11, "ws": false}, {"text": ")", "start": 55, "end": 56, "id": 12, "ws": false}, {"text": ",", "start": 56, "end": 57, "id": 13, "ws": true}, {"text": "Comparative", "start": 58, "end": 69, "id": 14, "ws": true}, {"text": "Social", "start": 70, "end": 76, "id": 15, "ws": true}, {"text": "ResearchMethodological", "start": 77, "end": 99, "id": 16, "ws": true}, {"text": "Problems", "start": 100, "end": 108, "id": 17, "ws": true}, {"text": "and", "start": 109, "end": 112, "id": 18, "ws": true}, {"text": "Strategies", "start": 113, "end": 123, "id": 19, "ws": true}, {"text": "(", "start": 124, "end": 125, "id": 20, "ws": false}, {"text": "New", "start": 125, "end": 128, "id": 21, "ws": true}, {"text": "York", "start": 129, "end": 133, "id": 22, "ws": false}, {"text": ",", "start": 133, "end": 134, "id": 23, "ws": true}, {"text": "London", "start": 135, "end": 141, "id": 24, "ws": false}, {"text": ",", "start": 141, "end": 142, "id": 25, "ws": true}, {"text": "Sydney", "start": 143, "end": 149, "id": 26, "ws": false}, {"text": ",", "start": 149, "end": 150, "id": 27, "ws": true}, {"text": "Tokio", "start": 151, "end": 156, "id": 28, "ws": true}, {"text": "1973", "start": 157, "end": 161, "id": 29, "ws": false}, {"text": ")", "start": 161, "end": 162, "id": 30, "ws": false}, {"text": ";", "start": 162, "end": 163, "id": 31, "ws": true}, {"text": "Drobnig", "start": 164, "end": 171, "id": 32, "ws": false}, {"text": "/", "start": 171, "end": 172, "id": 33, "ws": true}, {"text": "Rebbinder", "start": 173, "end": 182, "id": 34, "ws": true}, {"text": "(", "start": 183, "end": 184, "id": 35, "ws": false}, {"text": "Hrsg.", "start": 184, "end": 189, "id": 36, "ws": false}, {"text": ")", "start": 189, "end": 190, "id": 37, "ws": false}, {"text": ",", "start": 190, "end": 191, "id": 38, "ws": true}, {"text": "Rechtssoziologie", "start": 192, "end": 208, "id": 39, "ws": true}, {"text": "und", "start": 209, "end": 212, "id": 40, "ws": true}, {"text": "Rechtsvergleichung", "start": 213, "end": 231, "id": 41, "ws": true}, {"text": "(", "start": 232, "end": 233, "id": 42, "ws": false}, {"text": "1977", "start": 233, "end": 237, "id": 43, "ws": false}, {"text": ")", "start": 237, "end": 238, "id": 44, "ws": false}, {"text": ";", "start": 238, "end": 239, "id": 45, "ws": true}, {"text": "Rokkan", "start": 240, "end": 246, "id": 46, "ws": true}, {"text": "(", "start": 247, "end": 248, "id": 47, "ws": false}, {"text": "Hrsg.", "start": 248, "end": 253, "id": 48, "ws": false}, {"text": ")", "start": 253, "end": 254, "id": 49, "ws": false}, {"text": ",", "start": 254, "end": 255, "id": 50, "ws": true}, {"text": "Compa", "start": 256, "end": 261, "id": 51, "ws": true}, {"text": "rative", "start": 262, "end": 268, "id": 52, "ws": true}, {"text": "Research", "start": 269, "end": 277, "id": 53, "ws": true}, {"text": "Across", "start": 278, "end": 284, "id": 54, "ws": true}, {"text": "Cultures", "start": 285, "end": 293, "id": 55, "ws": true}, {"text": "and", "start": 294, "end": 297, "id": 56, "ws": true}, {"text": "Nations", "start": 298, "end": 305, "id": 57, "ws": true}, {"text": "(", "start": 306, "end": 307, "id": 58, "ws": false}, {"text": "Paris", "start": 307, "end": 312, "id": 59, "ws": false}, {"text": ",", "start": 312, "end": 313, "id": 60, "ws": true}, {"text": "Den", "start": 314, "end": 317, "id": 61, "ws": true}, {"text": "Haag", "start": 318, "end": 322, "id": 62, "ws": true}, {"text": "1968", "start": 323, "end": 327, "id": 63, "ws": false}, {"text": ")", "start": 327, "end": 328, "id": 64, "ws": false}, {"text": ";", "start": 328, "end": 329, "id": 65, "ws": true}, {"text": "Rokkan", "start": 330, "end": 336, "id": 66, "ws": false}, {"text": "/", "start": 336, "end": 337, "id": 67, "ws": false}, {"text": "Verba", "start": 337, "end": 342, "id": 68, "ws": false}, {"text": "/", "start": 342, "end": 343, "id": 69, "ws": false}, {"text": "Viet", "start": 343, "end": 347, "id": 70, "ws": false}, {"text": "/", "start": 347, "end": 348, "id": 71, "ws": true}, {"text": "Almasy", "start": 349, "end": 355, "id": 72, "ws": true}, {"text": "(", "start": 356, "end": 357, "id": 73, "ws": false}, {"text": "Hrsg.", "start": 357, "end": 362, "id": 74, "ws": false}, {"text": ")", "start": 362, "end": 363, "id": 75, "ws": false}, {"text": ",", "start": 363, "end": 364, "id": 76, "ws": true}, {"text": "Comparative", "start": 365, "end": 376, "id": 77, "ws": true}, {"text": "Sutvey", "start": 377, "end": 383, "id": 78, "ws": true}, {"text": "Analysis", "start": 384, "end": 392, "id": 79, "ws": true}, {"text": "(", "start": 393, "end": 394, "id": 80, "ws": false}, {"text": "Den", "start": 394, "end": 397, "id": 81, "ws": true}, {"text": "Haag", "start": 398, "end": 402, "id": 82, "ws": false}, {"text": ",", "start": 402, "end": 403, "id": 83, "ws": true}, {"text": "Paris", "start": 404, "end": 409, "id": 84, "ws": true}, {"text": "1969", "start": 410, "end": 414, "id": 85, "ws": false}, {"text": ")", "start": 414, "end": 415, "id": 86, "ws": false}, {"text": ";", "start": 415, "end": 416, "id": 87, "ws": true}, {"text": "Smelser", "start": 417, "end": 424, "id": 88, "ws": false}, {"text": ",", "start": 424, "end": 425, "id": 89, "ws": true}, {"text": "Comparative", "start": 426, "end": 437, "id": 90, "ws": true}, {"text": "Methods", "start": 438, "end": 445, "id": 91, "ws": true}, {"text": "in", "start": 446, "end": 448, "id": 92, "ws": true}, {"text": "the", "start": 449, "end": 452, "id": 93, "ws": true}, {"text": "Social", "start": 453, "end": 459, "id": 94, "ws": true}, {"text": "Sciences", "start": 460, "end": 468, "id": 95, "ws": true}, {"text": "(", "start": 469, "end": 470, "id": 96, "ws": false}, {"text": "Englewood", "start": 470, "end": 479, "id": 97, "ws": true}, {"text": "Cliffs", "start": 480, "end": 486, "id": 98, "ws": false}, {"text": ",", "start": 486, "end": 487, "id": 99, "ws": true}, {"text": "N.", "start": 488, "end": 490, "id": 100, "ws": true}, {"text": "J.", "start": 491, "end": 493, "id": 101, "ws": true}, {"text": "1976", "start": 494, "end": 498, "id": 102, "ws": false}, {"text": ")", "start": 498, "end": 499, "id": 103, "ws": true}, {"text": ";", "start": 500, "end": 501, "id": 104, "ws": true}, {"text": "Szalai", "start": 502, "end": 508, "id": 105, "ws": false}, {"text": "/", "start": 508, "end": 509, "id": 106, "ws": false}, {"text": "Petrella", "start": 509, "end": 517, "id": 107, "ws": true}, {"text": "(", "start": 518, "end": 519, "id": 108, "ws": false}, {"text": "Hrsg.", "start": 519, "end": 524, "id": 109, "ws": false}, {"text": ")", "start": 524, "end": 525, "id": 110, "ws": false}, {"text": ",", "start": 525, "end": 526, "id": 111, "ws": true}, {"text": "Cross", "start": 527, "end": 532, "id": 112, "ws": true}, {"text": "National", "start": 533, "end": 541, "id": 113, "ws": true}, {"text": "Comparative", "start": 542, "end": 553, "id": 114, "ws": true}, {"text": "Survey", "start": 554, "end": 560, "id": 115, "ws": true}, {"text": "Research", "start": 561, "end": 569, "id": 116, "ws": true}, {"text": "(", "start": 570, "end": 571, "id": 117, "ws": false}, {"text": "Oxford", "start": 571, "end": 577, "id": 118, "ws": false}, {"text": ",", "start": 577, "end": 578, "id": 119, "ws": true}, {"text": "New", "start": 579, "end": 582, "id": 120, "ws": true}, {"text": "York", "start": 583, "end": 587, "id": 121, "ws": false}, {"text": ",", "start": 587, "end": 588, "id": 122, "ws": true}, {"text": "Toronto", "start": 589, "end": 596, "id": 123, "ws": false}, {"text": ",", "start": 596, "end": 597, "id": 124, "ws": true}, {"text": "Sydney", "start": 598, "end": 604, "id": 125, "ws": false}, {"text": ",", "start": 604, "end": 605, "id": 126, "ws": true}, {"text": "Paris", "start": 606, "end": 611, "id": 127, "ws": false}, {"text": ",", "start": 611, "end": 612, "id": 128, "ws": true}, {"text": "Frank", "start": 613, "end": 618, "id": 129, "ws": true}, {"text": "furt", "start": 619, "end": 623, "id": 130, "ws": true}, {"text": "1977", "start": 624, "end": 628, "id": 131, "ws": false}, {"text": ")", "start": 628, "end": 629, "id": 132, "ws": false}, {"text": ";", "start": 629, "end": 630, "id": 133, "ws": true}, {"text": "Vallier", "start": 631, "end": 638, "id": 134, "ws": true}, {"text": "(", "start": 639, "end": 640, "id": 135, "ws": false}, {"text": "Hrsg.", "start": 640, "end": 645, "id": 136, "ws": false}, {"text": ")", "start": 645, "end": 646, "id": 137, "ws": false}, {"text": ",", "start": 646, "end": 647, "id": 138, "ws": true}, {"text": "Comparative", "start": 648, "end": 659, "id": 139, "ws": true}, {"text": "Methods", "start": 660, "end": 667, "id": 140, "ws": true}, {"text": "in", "start": 668, "end": 670, "id": 141, "ws": true}, {"text": "Sociology", "start": 671, "end": 680, "id": 142, "ws": true}, {"text": "(", "start": 681, "end": 682, "id": 143, "ws": false}, {"text": "Berkeley", "start": 682, "end": 690, "id": 144, "ws": false}, {"text": ",", "start": 690, "end": 691, "id": 145, "ws": true}, {"text": "Los", "start": 692, "end": 695, "id": 146, "ws": true}, {"text": "Angeles", "start": 696, "end": 703, "id": 147, "ws": false}, {"text": ",", "start": 703, "end": 704, "id": 148, "ws": true}, {"text": "London", "start": 705, "end": 711, "id": 149, "ws": true}, {"text": "1971", "start": 712, "end": 716, "id": 150, "ws": false}, {"text": ")", "start": 716, "end": 717, "id": 151, "ws": false}, {"text": ";", "start": 717, "end": 718, "id": 152, "ws": true}, {"text": "Zweigert", "start": 719, "end": 727, "id": 153, "ws": false}, {"text": "/", "start": 727, "end": 728, "id": 154, "ws": false}, {"text": "K\u00f6tz", "start": 728, "end": 732, "id": 155, "ws": false}, {"text": ".", "start": 732, "end": 733, "id": 156, "ws": true}, {"text": "Einf\u00fchrung", "start": 734, "end": 744, "id": 157, "ws": true}, {"text": "in", "start": 745, "end": 747, "id": 158, "ws": true}, {"text": "die", "start": 748, "end": 751, "id": 159, "ws": true}, {"text": "Rechtsvergleichung", "start": 752, "end": 770, "id": 160, "ws": true}, {"text": "Bd.", "start": 771, "end": 774, "id": 161, "ws": true}, {"text": "I", "start": 775, "end": 776, "id": 162, "ws": true}, {"text": "(", "start": 777, "end": 778, "id": 163, "ws": false}, {"text": "1971", "start": 778, "end": 782, "id": 164, "ws": false}, {"text": ")", "start": 782, "end": 783, "id": 165, "ws": false}, {"text": ".", "start": 783, "end": 784, "id": 166, "ws": false}], "spans": [{"start": 0, "end": 33, "label": "ignore", "token_start": 0, "token_end": 6}, {"start": 34, "end": 57, "label": "editor", "token_start": 7, "token_end": 13}, {"start": 58, "end": 123, "label": "title", "token_start": 14, "token_end": 19}, {"start": 124, "end": 156, "label": "location", "token_start": 20, "token_end": 28}, {"start": 157, "end": 163, "label": "date", "token_start": 29, "token_end": 31}, {"start": 164, "end": 191, "label": "editor", "token_start": 32, "token_end": 38}, {"start": 192, "end": 231, "label": "title", "token_start": 39, "token_end": 41}, {"start": 232, "end": 239, "label": "date", "token_start": 42, "token_end": 45}, {"start": 240, "end": 255, "label": "editor", "token_start": 46, "token_end": 50}, {"start": 256, "end": 305, "label": "title", "token_start": 51, "token_end": 57}, {"start": 306, "end": 322, "label": "location", "token_start": 58, "token_end": 62}, {"start": 323, "end": 329, "label": "date", "token_start": 63, "token_end": 65}, {"start": 330, "end": 364, "label": "editor", "token_start": 66, "token_end": 76}, {"start": 365, "end": 392, "label": "title", "token_start": 77, "token_end": 79}, {"start": 393, "end": 409, "label": "location", "token_start": 80, "token_end": 84}, {"start": 410, "end": 416, "label": "date", "token_start": 85, "token_end": 87}, {"start": 417, "end": 425, "label": "author", "token_start": 88, "token_end": 89}, {"start": 426, "end": 468, "label": "title", "token_start": 90, "token_end": 95}, {"start": 469, "end": 493, "label": "author", "token_start": 96, "token_end": 101}, {"start": 494, "end": 499, "label": "date", "token_start": 102, "token_end": 103}, {"start": 500, "end": 526, "label": "editor", "token_start": 104, "token_end": 111}, {"start": 527, "end": 569, "label": "title", "token_start": 112, "token_end": 116}, {"start": 570, "end": 623, "label": "location", "token_start": 117, "token_end": 130}, {"start": 233, "end": 239, "label": "date", "token_start": 43, "token_end": 45}, {"start": 631, "end": 647, "label": "editor", "token_start": 134, "token_end": 138}, {"start": 648, "end": 680, "label": "title", "token_start": 139, "token_end": 142}, {"start": 681, "end": 711, "label": "location", "token_start": 143, "token_end": 149}, {"start": 712, "end": 718, "label": "date", "token_start": 150, "token_end": 152}, {"start": 719, "end": 770, "label": "title", "token_start": 153, "token_end": 160}, {"start": 771, "end": 776, "label": "volume", "token_start": 161, "token_end": 162}, {"start": 777, "end": 784, "label": "date", "token_start": 163, "token_end": 166}]} -{"text": "1 Siehe n\u00e4her Zweigert/K\u00f6tz I 12 ff.", "tokens": [{"text": "1", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Siehe", "start": 2, "end": 7, "id": 1, "ws": true}, {"text": "n\u00e4her", "start": 8, "end": 13, "id": 2, "ws": true}, {"text": "Zweigert", "start": 14, "end": 22, "id": 3, "ws": false}, {"text": "/", "start": 22, "end": 23, "id": 4, "ws": false}, {"text": "K\u00f6tz", "start": 23, "end": 27, "id": 5, "ws": true}, {"text": "I", "start": 28, "end": 29, "id": 6, "ws": true}, {"text": "12", "start": 30, "end": 32, "id": 7, "ws": true}, {"text": "ff", "start": 33, "end": 35, "id": 8, "ws": false}, {"text": ".", "start": 35, "end": 36, "id": 9, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 27, "label": "author", "token_start": 3, "token_end": 5}, {"start": 28, "end": 29, "label": "volume", "token_start": 6, "token_end": 6}, {"start": 30, "end": 36, "label": "pages", "token_start": 7, "token_end": 9}]} -{"text": "2 Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925), abgedruckt in: Rabel, Gesammelte Aufs\u00e4tze III (Hrsg. Leser, 1967) 1 (3).", "tokens": [{"text": "2", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Rabel", "start": 2, "end": 7, "id": 1, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 2, "ws": true}, {"text": "Aufgabe", "start": 9, "end": 16, "id": 3, "ws": true}, {"text": "und", "start": 17, "end": 20, "id": 4, "ws": true}, {"text": "Notwendigkeit", "start": 21, "end": 34, "id": 5, "ws": true}, {"text": "der", "start": 35, "end": 38, "id": 6, "ws": true}, {"text": "Rechtsvergleichung", "start": 39, "end": 57, "id": 7, "ws": true}, {"text": "(", "start": 58, "end": 59, "id": 8, "ws": false}, {"text": "1925", "start": 59, "end": 63, "id": 9, "ws": false}, {"text": ")", "start": 63, "end": 64, "id": 10, "ws": false}, {"text": ",", "start": 64, "end": 65, "id": 11, "ws": true}, {"text": "abgedruckt", "start": 66, "end": 76, "id": 12, "ws": true}, {"text": "in", "start": 77, "end": 79, "id": 13, "ws": false}, {"text": ":", "start": 79, "end": 80, "id": 14, "ws": true}, {"text": "Rabel", "start": 81, "end": 86, "id": 15, "ws": false}, {"text": ",", "start": 86, "end": 87, "id": 16, "ws": true}, {"text": "Gesammelte", "start": 88, "end": 98, "id": 17, "ws": true}, {"text": "Aufs\u00e4tze", "start": 99, "end": 107, "id": 18, "ws": true}, {"text": "III", "start": 108, "end": 111, "id": 19, "ws": true}, {"text": "(", "start": 112, "end": 113, "id": 20, "ws": false}, {"text": "Hrsg.", "start": 113, "end": 118, "id": 21, "ws": true}, {"text": "Leser", "start": 119, "end": 124, "id": 22, "ws": false}, {"text": ",", "start": 124, "end": 125, "id": 23, "ws": true}, {"text": "1967", "start": 126, "end": 130, "id": 24, "ws": false}, {"text": ")", "start": 130, "end": 131, "id": 25, "ws": true}, {"text": "1", "start": 132, "end": 133, "id": 26, "ws": true}, {"text": "(", "start": 134, "end": 135, "id": 27, "ws": false}, {"text": "3", "start": 135, "end": 136, "id": 28, "ws": false}, {"text": ")", "start": 136, "end": 137, "id": 29, "ws": false}, {"text": ".", "start": 137, "end": 138, "id": 30, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 8, "label": "author", "token_start": 1, "token_end": 2}, {"start": 9, "end": 57, "label": "title", "token_start": 3, "token_end": 7}, {"start": 58, "end": 65, "label": "date", "token_start": 8, "token_end": 11}, {"start": 66, "end": 80, "label": "signal", "token_start": 12, "token_end": 14}, {"start": 2, "end": 8, "label": "author", "token_start": 1, "token_end": 2}, {"start": 88, "end": 107, "label": "title", "token_start": 17, "token_end": 18}, {"start": 108, "end": 111, "label": "volume", "token_start": 19, "token_end": 19}, {"start": 112, "end": 125, "label": "editor", "token_start": 20, "token_end": 23}, {"start": 126, "end": 131, "label": "date", "token_start": 24, "token_end": 25}, {"start": 132, "end": 138, "label": "pages", "token_start": 26, "token_end": 30}]} -{"text": "3 Siehe insbes. die Beitr\u00e4ge in Drobnig/Rehbinder.", "tokens": [{"text": "3", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Siehe", "start": 2, "end": 7, "id": 1, "ws": true}, {"text": "insbes", "start": 8, "end": 14, "id": 2, "ws": false}, {"text": ".", "start": 14, "end": 15, "id": 3, "ws": true}, {"text": "die", "start": 16, "end": 19, "id": 4, "ws": true}, {"text": "Beitr\u00e4ge", "start": 20, "end": 28, "id": 5, "ws": true}, {"text": "in", "start": 29, "end": 31, "id": 6, "ws": true}, {"text": "Drobnig", "start": 32, "end": 39, "id": 7, "ws": false}, {"text": "/", "start": 39, "end": 40, "id": 8, "ws": false}, {"text": "Rehbinder", "start": 40, "end": 49, "id": 9, "ws": false}, {"text": ".", "start": 49, "end": 50, "id": 10, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 31, "label": "signal", "token_start": 1, "token_end": 6}, {"start": 32, "end": 50, "label": "author", "token_start": 7, "token_end": 10}]} -{"text": "4 Dazu R. Abel, Law Books and Books About Law, Stanford Law Rev. 26 (1973) 174 ff.; Benda-Beckmann, Einige Anmerkungen \u00fcber die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung, ZvglRW 78 (1979) 51 ff.", "tokens": [{"text": "4", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Dazu", "start": 2, "end": 6, "id": 1, "ws": true}, {"text": "R.", "start": 7, "end": 9, "id": 2, "ws": true}, {"text": "Abel", "start": 10, "end": 14, "id": 3, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 4, "ws": true}, {"text": "Law", "start": 16, "end": 19, "id": 5, "ws": true}, {"text": "Books", "start": 20, "end": 25, "id": 6, "ws": true}, {"text": "and", "start": 26, "end": 29, "id": 7, "ws": true}, {"text": "Books", "start": 30, "end": 35, "id": 8, "ws": true}, {"text": "About", "start": 36, "end": 41, "id": 9, "ws": true}, {"text": "Law", "start": 42, "end": 45, "id": 10, "ws": false}, {"text": ",", "start": 45, "end": 46, "id": 11, "ws": true}, {"text": "Stanford", "start": 47, "end": 55, "id": 12, "ws": true}, {"text": "Law", "start": 56, "end": 59, "id": 13, "ws": true}, {"text": "Rev", "start": 60, "end": 63, "id": 14, "ws": false}, {"text": ".", "start": 63, "end": 64, "id": 15, "ws": true}, {"text": "26", "start": 65, "end": 67, "id": 16, "ws": true}, {"text": "(", "start": 68, "end": 69, "id": 17, "ws": false}, {"text": "1973", "start": 69, "end": 73, "id": 18, "ws": false}, {"text": ")", "start": 73, "end": 74, "id": 19, "ws": true}, {"text": "174", "start": 75, "end": 78, "id": 20, "ws": true}, {"text": "ff", "start": 79, "end": 81, "id": 21, "ws": false}, {"text": ".", "start": 81, "end": 82, "id": 22, "ws": false}, {"text": ";", "start": 82, "end": 83, "id": 23, "ws": true}, {"text": "Benda-Beckmann", "start": 84, "end": 98, "id": 24, "ws": false}, {"text": ",", "start": 98, "end": 99, "id": 25, "ws": true}, {"text": "Einige", "start": 100, "end": 106, "id": 26, "ws": true}, {"text": "Anmerkungen", "start": 107, "end": 118, "id": 27, "ws": true}, {"text": "\u00fcber", "start": 119, "end": 123, "id": 28, "ws": true}, {"text": "die", "start": 124, "end": 127, "id": 29, "ws": true}, {"text": "Beziehung", "start": 128, "end": 137, "id": 30, "ws": true}, {"text": "zwischen", "start": 138, "end": 146, "id": 31, "ws": true}, {"text": "Rechtssoziologie", "start": 147, "end": 163, "id": 32, "ws": true}, {"text": "und", "start": 164, "end": 167, "id": 33, "ws": true}, {"text": "Rechtsvergleichung", "start": 168, "end": 186, "id": 34, "ws": false}, {"text": ",", "start": 186, "end": 187, "id": 35, "ws": true}, {"text": "ZvglRW", "start": 188, "end": 194, "id": 36, "ws": true}, {"text": "78", "start": 195, "end": 197, "id": 37, "ws": true}, {"text": "(", "start": 198, "end": 199, "id": 38, "ws": false}, {"text": "1979", "start": 199, "end": 203, "id": 39, "ws": false}, {"text": ")", "start": 203, "end": 204, "id": 40, "ws": true}, {"text": "51", "start": 205, "end": 207, "id": 41, "ws": true}, {"text": "ff", "start": 208, "end": 210, "id": 42, "ws": false}, {"text": ".", "start": 210, "end": 211, "id": 43, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 6, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 7, "end": 15, "label": "author", "token_start": 2, "token_end": 4}, {"start": 16, "end": 46, "label": "title", "token_start": 5, "token_end": 11}, {"start": 47, "end": 64, "label": "journal", "token_start": 12, "token_end": 15}, {"start": 65, "end": 67, "label": "volume", "token_start": 16, "token_end": 16}, {"start": 68, "end": 74, "label": "date", "token_start": 17, "token_end": 19}, {"start": 75, "end": 83, "label": "pages", "token_start": 20, "token_end": 23}, {"start": 84, "end": 99, "label": "author", "token_start": 24, "token_end": 25}, {"start": 100, "end": 187, "label": "title", "token_start": 26, "token_end": 35}, {"start": 188, "end": 194, "label": "journal", "token_start": 36, "token_end": 36}, {"start": 195, "end": 197, "label": "volume", "token_start": 37, "token_end": 37}, {"start": 198, "end": 204, "label": "date", "token_start": 38, "token_end": 40}, {"start": 205, "end": 211, "label": "pages", "token_start": 41, "token_end": 43}]} -{"text": "5 Carbonnier, L\u2019apport du droit compare \u00e4 la sociologie juridique, in: Livre du centenaire de la Societe de legislation comparee (Paris 1969) 75 (83).", "tokens": [{"text": "5", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Carbonnier", "start": 2, "end": 12, "id": 1, "ws": false}, {"text": ",", "start": 12, "end": 13, "id": 2, "ws": true}, {"text": "L\u2019", "start": 14, "end": 16, "id": 3, "ws": false}, {"text": "apport", "start": 16, "end": 22, "id": 4, "ws": true}, {"text": "du", "start": 23, "end": 25, "id": 5, "ws": true}, {"text": "droit", "start": 26, "end": 31, "id": 6, "ws": true}, {"text": "compare", "start": 32, "end": 39, "id": 7, "ws": true}, {"text": "\u00e4", "start": 40, "end": 41, "id": 8, "ws": true}, {"text": "la", "start": 42, "end": 44, "id": 9, "ws": true}, {"text": "sociologie", "start": 45, "end": 55, "id": 10, "ws": true}, {"text": "juridique", "start": 56, "end": 65, "id": 11, "ws": false}, {"text": ",", "start": 65, "end": 66, "id": 12, "ws": true}, {"text": "in", "start": 67, "end": 69, "id": 13, "ws": false}, {"text": ":", "start": 69, "end": 70, "id": 14, "ws": true}, {"text": "Livre", "start": 71, "end": 76, "id": 15, "ws": true}, {"text": "du", "start": 77, "end": 79, "id": 16, "ws": true}, {"text": "centenaire", "start": 80, "end": 90, "id": 17, "ws": true}, {"text": "de", "start": 91, "end": 93, "id": 18, "ws": true}, {"text": "la", "start": 94, "end": 96, "id": 19, "ws": true}, {"text": "Societe", "start": 97, "end": 104, "id": 20, "ws": true}, {"text": "de", "start": 105, "end": 107, "id": 21, "ws": true}, {"text": "legislation", "start": 108, "end": 119, "id": 22, "ws": true}, {"text": "comparee", "start": 120, "end": 128, "id": 23, "ws": true}, {"text": "(", "start": 129, "end": 130, "id": 24, "ws": false}, {"text": "Paris", "start": 130, "end": 135, "id": 25, "ws": true}, {"text": "1969", "start": 136, "end": 140, "id": 26, "ws": false}, {"text": ")", "start": 140, "end": 141, "id": 27, "ws": true}, {"text": "75", "start": 142, "end": 144, "id": 28, "ws": true}, {"text": "(", "start": 145, "end": 146, "id": 29, "ws": false}, {"text": "83", "start": 146, "end": 148, "id": 30, "ws": false}, {"text": ")", "start": 148, "end": 149, "id": 31, "ws": false}, {"text": ".", "start": 149, "end": 150, "id": 32, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 13, "label": "author", "token_start": 1, "token_end": 2}, {"start": 14, "end": 66, "label": "title", "token_start": 3, "token_end": 12}, {"start": 67, "end": 128, "label": "container-title", "token_start": 13, "token_end": 23}, {"start": 129, "end": 135, "label": "location", "token_start": 24, "token_end": 25}, {"start": 136, "end": 141, "label": "date", "token_start": 26, "token_end": 27}, {"start": 142, "end": 150, "label": "pages", "token_start": 28, "token_end": 32}]} -{"text": "6 Carbonnier (vorige N.) a.a.O.", "tokens": [{"text": "6", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Carbonnier", "start": 2, "end": 12, "id": 1, "ws": true}, {"text": "(", "start": 13, "end": 14, "id": 2, "ws": false}, {"text": "vorige", "start": 14, "end": 20, "id": 3, "ws": true}, {"text": "N.", "start": 21, "end": 23, "id": 4, "ws": false}, {"text": ")", "start": 23, "end": 24, "id": 5, "ws": true}, {"text": "a.a", "start": 25, "end": 28, "id": 6, "ws": false}, {"text": ".", "start": 28, "end": 29, "id": 7, "ws": false}, {"text": "O.", "start": 29, "end": 31, "id": 8, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 12, "label": "author", "token_start": 1, "token_end": 1}, {"start": 13, "end": 31, "label": "backref", "token_start": 2, "token_end": 8}]} -{"text": "7 Nowak, The Strategy of Cross-National Survey Research for the Development of Social Theory, in: Szalai/Petrella 3 (9 ff.): Rose, Interkulturelle Forschung in der Rechtssoziologie, in: Drobnig/Rehbinder 171 ff.", "tokens": [{"text": "7", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Nowak", "start": 2, "end": 7, "id": 1, "ws": false}, {"text": ",", "start": 7, "end": 8, "id": 2, "ws": true}, {"text": "The", "start": 9, "end": 12, "id": 3, "ws": true}, {"text": "Strategy", "start": 13, "end": 21, "id": 4, "ws": true}, {"text": "of", "start": 22, "end": 24, "id": 5, "ws": true}, {"text": "Cross-National", "start": 25, "end": 39, "id": 6, "ws": true}, {"text": "Survey", "start": 40, "end": 46, "id": 7, "ws": true}, {"text": "Research", "start": 47, "end": 55, "id": 8, "ws": true}, {"text": "for", "start": 56, "end": 59, "id": 9, "ws": true}, {"text": "the", "start": 60, "end": 63, "id": 10, "ws": true}, {"text": "Development", "start": 64, "end": 75, "id": 11, "ws": true}, {"text": "of", "start": 76, "end": 78, "id": 12, "ws": true}, {"text": "Social", "start": 79, "end": 85, "id": 13, "ws": true}, {"text": "Theory", "start": 86, "end": 92, "id": 14, "ws": false}, {"text": ",", "start": 92, "end": 93, "id": 15, "ws": true}, {"text": "in", "start": 94, "end": 96, "id": 16, "ws": false}, {"text": ":", "start": 96, "end": 97, "id": 17, "ws": true}, {"text": "Szalai", "start": 98, "end": 104, "id": 18, "ws": false}, {"text": "/", "start": 104, "end": 105, "id": 19, "ws": false}, {"text": "Petrella", "start": 105, "end": 113, "id": 20, "ws": true}, {"text": "3", "start": 114, "end": 115, "id": 21, "ws": true}, {"text": "(", "start": 116, "end": 117, "id": 22, "ws": false}, {"text": "9", "start": 117, "end": 118, "id": 23, "ws": true}, {"text": "ff", "start": 119, "end": 121, "id": 24, "ws": false}, {"text": ".", "start": 121, "end": 122, "id": 25, "ws": false}, {"text": "):", "start": 122, "end": 124, "id": 26, "ws": true}, {"text": "Rose", "start": 125, "end": 129, "id": 27, "ws": false}, {"text": ",", "start": 129, "end": 130, "id": 28, "ws": true}, {"text": "Interkulturelle", "start": 131, "end": 146, "id": 29, "ws": true}, {"text": "Forschung", "start": 147, "end": 156, "id": 30, "ws": true}, {"text": "in", "start": 157, "end": 159, "id": 31, "ws": true}, {"text": "der", "start": 160, "end": 163, "id": 32, "ws": true}, {"text": "Rechtssoziologie", "start": 164, "end": 180, "id": 33, "ws": false}, {"text": ",", "start": 180, "end": 181, "id": 34, "ws": true}, {"text": "in", "start": 182, "end": 184, "id": 35, "ws": false}, {"text": ":", "start": 184, "end": 185, "id": 36, "ws": true}, {"text": "Drobnig", "start": 186, "end": 193, "id": 37, "ws": false}, {"text": "/", "start": 193, "end": 194, "id": 38, "ws": false}, {"text": "Rehbinder", "start": 194, "end": 203, "id": 39, "ws": true}, {"text": "171", "start": 204, "end": 207, "id": 40, "ws": true}, {"text": "ff", "start": 208, "end": 210, "id": 41, "ws": false}, {"text": ".", "start": 210, "end": 211, "id": 42, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 8, "label": "author", "token_start": 1, "token_end": 2}, {"start": 9, "end": 93, "label": "title", "token_start": 3, "token_end": 15}, {"start": 94, "end": 124, "label": "editor", "token_start": 16, "token_end": 26}, {"start": 125, "end": 130, "label": "author", "token_start": 27, "token_end": 28}, {"start": 131, "end": 181, "label": "title", "token_start": 29, "token_end": 34}, {"start": 182, "end": 203, "label": "editor", "token_start": 35, "token_end": 39}, {"start": 204, "end": 211, "label": "pages", "token_start": 40, "token_end": 42}]} -{"text": "8 Dazu n\u00e4her Wirsing, Probleme des interkulturellen Vergleichs in der Ethnologie, Sociologus 25 (1975) 97 ff. - Vgl. auch Poirier, Situation actuelle et Programme de travail de Techno logie juridique, Rev. int. Sc. Soc. 22 (1970) 509 (526).", "tokens": [{"text": "8", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Dazu", "start": 2, "end": 6, "id": 1, "ws": true}, {"text": "n\u00e4her", "start": 7, "end": 12, "id": 2, "ws": true}, {"text": "Wirsing", "start": 13, "end": 20, "id": 3, "ws": false}, {"text": ",", "start": 20, "end": 21, "id": 4, "ws": true}, {"text": "Probleme", "start": 22, "end": 30, "id": 5, "ws": true}, {"text": "des", "start": 31, "end": 34, "id": 6, "ws": true}, {"text": "interkulturellen", "start": 35, "end": 51, "id": 7, "ws": true}, {"text": "Vergleichs", "start": 52, "end": 62, "id": 8, "ws": true}, {"text": "in", "start": 63, "end": 65, "id": 9, "ws": true}, {"text": "der", "start": 66, "end": 69, "id": 10, "ws": true}, {"text": "Ethnologie", "start": 70, "end": 80, "id": 11, "ws": false}, {"text": ",", "start": 80, "end": 81, "id": 12, "ws": true}, {"text": "Sociologus", "start": 82, "end": 92, "id": 13, "ws": true}, {"text": "25", "start": 93, "end": 95, "id": 14, "ws": true}, {"text": "(", "start": 96, "end": 97, "id": 15, "ws": false}, {"text": "1975", "start": 97, "end": 101, "id": 16, "ws": false}, {"text": ")", "start": 101, "end": 102, "id": 17, "ws": true}, {"text": "97", "start": 103, "end": 105, "id": 18, "ws": true}, {"text": "ff", "start": 106, "end": 108, "id": 19, "ws": false}, {"text": ".", "start": 108, "end": 109, "id": 20, "ws": true}, {"text": "-", "start": 110, "end": 111, "id": 21, "ws": true}, {"text": "Vgl", "start": 112, "end": 115, "id": 22, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 23, "ws": true}, {"text": "auch", "start": 117, "end": 121, "id": 24, "ws": true}, {"text": "Poirier", "start": 122, "end": 129, "id": 25, "ws": false}, {"text": ",", "start": 129, "end": 130, "id": 26, "ws": true}, {"text": "Situation", "start": 131, "end": 140, "id": 27, "ws": true}, {"text": "actuelle", "start": 141, "end": 149, "id": 28, "ws": true}, {"text": "et", "start": 150, "end": 152, "id": 29, "ws": true}, {"text": "Programme", "start": 153, "end": 162, "id": 30, "ws": true}, {"text": "de", "start": 163, "end": 165, "id": 31, "ws": true}, {"text": "travail", "start": 166, "end": 173, "id": 32, "ws": true}, {"text": "de", "start": 174, "end": 176, "id": 33, "ws": true}, {"text": "Techno", "start": 177, "end": 183, "id": 34, "ws": true}, {"text": "logie", "start": 184, "end": 189, "id": 35, "ws": true}, {"text": "juridique", "start": 190, "end": 199, "id": 36, "ws": false}, {"text": ",", "start": 199, "end": 200, "id": 37, "ws": true}, {"text": "Rev", "start": 201, "end": 204, "id": 38, "ws": false}, {"text": ".", "start": 204, "end": 205, "id": 39, "ws": true}, {"text": "int", "start": 206, "end": 209, "id": 40, "ws": false}, {"text": ".", "start": 209, "end": 210, "id": 41, "ws": true}, {"text": "Sc", "start": 211, "end": 213, "id": 42, "ws": false}, {"text": ".", "start": 213, "end": 214, "id": 43, "ws": true}, {"text": "Soc", "start": 215, "end": 218, "id": 44, "ws": false}, {"text": ".", "start": 218, "end": 219, "id": 45, "ws": true}, {"text": "22", "start": 220, "end": 222, "id": 46, "ws": true}, {"text": "(", "start": 223, "end": 224, "id": 47, "ws": false}, {"text": "1970", "start": 224, "end": 228, "id": 48, "ws": false}, {"text": ")", "start": 228, "end": 229, "id": 49, "ws": true}, {"text": "509", "start": 230, "end": 233, "id": 50, "ws": true}, {"text": "(", "start": 234, "end": 235, "id": 51, "ws": false}, {"text": "526", "start": 235, "end": 238, "id": 52, "ws": false}, {"text": ")", "start": 238, "end": 239, "id": 53, "ws": false}, {"text": ".", "start": 239, "end": 240, "id": 54, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 12, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 13, "end": 21, "label": "author", "token_start": 3, "token_end": 4}, {"start": 22, "end": 81, "label": "title", "token_start": 5, "token_end": 12}, {"start": 82, "end": 92, "label": "journal", "token_start": 13, "token_end": 13}, {"start": 93, "end": 95, "label": "volume", "token_start": 14, "token_end": 14}, {"start": 96, "end": 111, "label": "date", "token_start": 15, "token_end": 21}, {"start": 112, "end": 121, "label": "signal", "token_start": 22, "token_end": 24}, {"start": 122, "end": 130, "label": "author", "token_start": 25, "token_end": 26}, {"start": 131, "end": 200, "label": "title", "token_start": 27, "token_end": 37}, {"start": 201, "end": 219, "label": "journal", "token_start": 38, "token_end": 45}, {"start": 220, "end": 222, "label": "volume", "token_start": 46, "token_end": 46}, {"start": 223, "end": 229, "label": "date", "token_start": 47, "token_end": 49}, {"start": 230, "end": 240, "label": "pages", "token_start": 50, "token_end": 54}]} -{"text": "9 Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff.", "tokens": [{"text": "9", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "Macaulay", "start": 2, "end": 10, "id": 1, "ws": false}, {"text": ",", "start": 10, "end": 11, "id": 2, "ws": true}, {"text": "Elegant", "start": 12, "end": 19, "id": 3, "ws": true}, {"text": "Models", "start": 20, "end": 26, "id": 4, "ws": false}, {"text": ",", "start": 26, "end": 27, "id": 5, "ws": true}, {"text": "Empirical", "start": 28, "end": 37, "id": 6, "ws": true}, {"text": "Pictures", "start": 38, "end": 46, "id": 7, "ws": false}, {"text": ",", "start": 46, "end": 47, "id": 8, "ws": true}, {"text": "and", "start": 48, "end": 51, "id": 9, "ws": true}, {"text": "the", "start": 52, "end": 55, "id": 10, "ws": true}, {"text": "Complexities", "start": 56, "end": 68, "id": 11, "ws": true}, {"text": "of", "start": 69, "end": 71, "id": 12, "ws": true}, {"text": "Contract", "start": 72, "end": 80, "id": 13, "ws": false}, {"text": ",", "start": 80, "end": 81, "id": 14, "ws": true}, {"text": "Law", "start": 82, "end": 85, "id": 15, "ws": true}, {"text": "&", "start": 86, "end": 87, "id": 16, "ws": true}, {"text": "Soc", "start": 88, "end": 91, "id": 17, "ws": false}, {"text": ".", "start": 91, "end": 92, "id": 18, "ws": true}, {"text": "Rev", "start": 93, "end": 96, "id": 19, "ws": false}, {"text": ".", "start": 96, "end": 97, "id": 20, "ws": true}, {"text": "11", "start": 98, "end": 100, "id": 21, "ws": true}, {"text": "(", "start": 101, "end": 102, "id": 22, "ws": false}, {"text": "1977", "start": 102, "end": 106, "id": 23, "ws": false}, {"text": ")", "start": 106, "end": 107, "id": 24, "ws": true}, {"text": "507", "start": 108, "end": 111, "id": 25, "ws": true}, {"text": "ff", "start": 112, "end": 114, "id": 26, "ws": false}, {"text": ".", "start": 114, "end": 115, "id": 27, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 11, "label": "author", "token_start": 1, "token_end": 2}, {"start": 12, "end": 81, "label": "title", "token_start": 3, "token_end": 14}, {"start": 82, "end": 97, "label": "journal", "token_start": 15, "token_end": 20}, {"start": 98, "end": 100, "label": "volume", "token_start": 21, "token_end": 21}, {"start": 101, "end": 107, "label": "date", "token_start": 22, "token_end": 24}, {"start": 108, "end": 115, "label": "pages", "token_start": 25, "token_end": 27}]} -{"text": "10 Rose (oben N. 7) 175.", "tokens": [{"text": "10", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Rose", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "(", "start": 8, "end": 9, "id": 2, "ws": false}, {"text": "oben", "start": 9, "end": 13, "id": 3, "ws": true}, {"text": "N.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "7", "start": 17, "end": 18, "id": 5, "ws": false}, {"text": ")", "start": 18, "end": 19, "id": 6, "ws": true}, {"text": "175.", "start": 20, "end": 24, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 19, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 20, "end": 24, "label": "pages", "token_start": 7, "token_end": 7}]} -{"text": "11 Dazu Grimshau, Comparative Sociology - In What Ways Different From Other Sociologies?, in: Armer/Grimshaw 3 (18). Auch der Oberbegriff \u201ecross System comparison\" wird vorge schlagen, Tomasson, Introduction; Comparative Sociology \u2014 The State of the Art, in: Tomas son (Hrsg.), Comparative Studies in Sociology Vol. 1 (Greenwich, Conn. 1978) 1. \u2014 \u00dcber die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, da\u00df nicht nur die F\u00fclle des Materials schon wieder abschreckend wirkt, sondern da\u00df es auch gen\u00fcgt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen. Bi bliographien finden sich etwa bei Rokkan/Verba/Viet/Almasy 117 ff.; Vallier 423 ff.; Almasy/Balandier/Delatte, Comparative Survey Analysis \u2014 An Annotated Bibliography 1967 \u2014 1973 (Beverly Hills, London 1976) sowie bei Marsh , Comparative Sociology (New York, Chicago, San Francisco, Atlanta 1967) 375 ff. Recbtsvergleichung und vergleichende Rechtssoziologie 69", "tokens": [{"text": "11", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "Grimshau", "start": 8, "end": 16, "id": 2, "ws": false}, {"text": ",", "start": 16, "end": 17, "id": 3, "ws": true}, {"text": "Comparative", "start": 18, "end": 29, "id": 4, "ws": true}, {"text": "Sociology", "start": 30, "end": 39, "id": 5, "ws": true}, {"text": "-", "start": 40, "end": 41, "id": 6, "ws": true}, {"text": "In", "start": 42, "end": 44, "id": 7, "ws": true}, {"text": "What", "start": 45, "end": 49, "id": 8, "ws": true}, {"text": "Ways", "start": 50, "end": 54, "id": 9, "ws": true}, {"text": "Different", "start": 55, "end": 64, "id": 10, "ws": true}, {"text": "From", "start": 65, "end": 69, "id": 11, "ws": true}, {"text": "Other", "start": 70, "end": 75, "id": 12, "ws": true}, {"text": "Sociologies", "start": 76, "end": 87, "id": 13, "ws": false}, {"text": "?", "start": 87, "end": 88, "id": 14, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 15, "ws": true}, {"text": "in", "start": 90, "end": 92, "id": 16, "ws": false}, {"text": ":", "start": 92, "end": 93, "id": 17, "ws": true}, {"text": "Armer", "start": 94, "end": 99, "id": 18, "ws": false}, {"text": "/", "start": 99, "end": 100, "id": 19, "ws": false}, {"text": "Grimshaw", "start": 100, "end": 108, "id": 20, "ws": true}, {"text": "3", "start": 109, "end": 110, "id": 21, "ws": true}, {"text": "(", "start": 111, "end": 112, "id": 22, "ws": false}, {"text": "18", "start": 112, "end": 114, "id": 23, "ws": false}, {"text": ")", "start": 114, "end": 115, "id": 24, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 25, "ws": true}, {"text": "Auch", "start": 117, "end": 121, "id": 26, "ws": true}, {"text": "der", "start": 122, "end": 125, "id": 27, "ws": true}, {"text": "Oberbegriff", "start": 126, "end": 137, "id": 28, "ws": true}, {"text": "\u201e", "start": 138, "end": 139, "id": 29, "ws": false}, {"text": "cross", "start": 139, "end": 144, "id": 30, "ws": true}, {"text": "System", "start": 145, "end": 151, "id": 31, "ws": true}, {"text": "comparison", "start": 152, "end": 162, "id": 32, "ws": false}, {"text": "\"", "start": 162, "end": 163, "id": 33, "ws": true}, {"text": "wird", "start": 164, "end": 168, "id": 34, "ws": true}, {"text": "vorge", "start": 169, "end": 174, "id": 35, "ws": true}, {"text": "schlagen", "start": 175, "end": 183, "id": 36, "ws": false}, {"text": ",", "start": 183, "end": 184, "id": 37, "ws": true}, {"text": "Tomasson", "start": 185, "end": 193, "id": 38, "ws": false}, {"text": ",", "start": 193, "end": 194, "id": 39, "ws": true}, {"text": "Introduction", "start": 195, "end": 207, "id": 40, "ws": false}, {"text": ";", "start": 207, "end": 208, "id": 41, "ws": true}, {"text": "Comparative", "start": 209, "end": 220, "id": 42, "ws": true}, {"text": "Sociology", "start": 221, "end": 230, "id": 43, "ws": true}, {"text": "\u2014", "start": 231, "end": 232, "id": 44, "ws": true}, {"text": "The", "start": 233, "end": 236, "id": 45, "ws": true}, {"text": "State", "start": 237, "end": 242, "id": 46, "ws": true}, {"text": "of", "start": 243, "end": 245, "id": 47, "ws": true}, {"text": "the", "start": 246, "end": 249, "id": 48, "ws": true}, {"text": "Art", "start": 250, "end": 253, "id": 49, "ws": false}, {"text": ",", "start": 253, "end": 254, "id": 50, "ws": true}, {"text": "in", "start": 255, "end": 257, "id": 51, "ws": false}, {"text": ":", "start": 257, "end": 258, "id": 52, "ws": true}, {"text": "Tomas", "start": 259, "end": 264, "id": 53, "ws": true}, {"text": "son", "start": 265, "end": 268, "id": 54, "ws": true}, {"text": "(", "start": 269, "end": 270, "id": 55, "ws": false}, {"text": "Hrsg.", "start": 270, "end": 275, "id": 56, "ws": false}, {"text": ")", "start": 275, "end": 276, "id": 57, "ws": false}, {"text": ",", "start": 276, "end": 277, "id": 58, "ws": true}, {"text": "Comparative", "start": 278, "end": 289, "id": 59, "ws": true}, {"text": "Studies", "start": 290, "end": 297, "id": 60, "ws": true}, {"text": "in", "start": 298, "end": 300, "id": 61, "ws": true}, {"text": "Sociology", "start": 301, "end": 310, "id": 62, "ws": true}, {"text": "Vol.", "start": 311, "end": 315, "id": 63, "ws": true}, {"text": "1", "start": 316, "end": 317, "id": 64, "ws": true}, {"text": "(", "start": 318, "end": 319, "id": 65, "ws": false}, {"text": "Greenwich", "start": 319, "end": 328, "id": 66, "ws": false}, {"text": ",", "start": 328, "end": 329, "id": 67, "ws": true}, {"text": "Conn", "start": 330, "end": 334, "id": 68, "ws": false}, {"text": ".", "start": 334, "end": 335, "id": 69, "ws": true}, {"text": "1978", "start": 336, "end": 340, "id": 70, "ws": false}, {"text": ")", "start": 340, "end": 341, "id": 71, "ws": true}, {"text": "1.", "start": 342, "end": 344, "id": 72, "ws": true}, {"text": "\u2014", "start": 345, "end": 346, "id": 73, "ws": true}, {"text": "\u00dcber", "start": 347, "end": 351, "id": 74, "ws": true}, {"text": "die", "start": 352, "end": 355, "id": 75, "ws": true}, {"text": "Methoden", "start": 356, "end": 364, "id": 76, "ws": true}, {"text": "interkultureller", "start": 365, "end": 381, "id": 77, "ws": true}, {"text": "und", "start": 382, "end": 385, "id": 78, "ws": true}, {"text": "internationaler", "start": 386, "end": 401, "id": 79, "ws": true}, {"text": "Vergleiche", "start": 402, "end": 412, "id": 80, "ws": true}, {"text": "ist", "start": 413, "end": 416, "id": 81, "ws": true}, {"text": "inzwischen", "start": 417, "end": 427, "id": 82, "ws": true}, {"text": "so", "start": 428, "end": 430, "id": 83, "ws": true}, {"text": "viel", "start": 431, "end": 435, "id": 84, "ws": true}, {"text": "geschrieben", "start": 436, "end": 447, "id": 85, "ws": true}, {"text": "worden", "start": 448, "end": 454, "id": 86, "ws": false}, {"text": ",", "start": 454, "end": 455, "id": 87, "ws": true}, {"text": "da\u00df", "start": 456, "end": 459, "id": 88, "ws": true}, {"text": "nicht", "start": 460, "end": 465, "id": 89, "ws": true}, {"text": "nur", "start": 466, "end": 469, "id": 90, "ws": true}, {"text": "die", "start": 470, "end": 473, "id": 91, "ws": true}, {"text": "F\u00fclle", "start": 474, "end": 479, "id": 92, "ws": true}, {"text": "des", "start": 480, "end": 483, "id": 93, "ws": true}, {"text": "Materials", "start": 484, "end": 493, "id": 94, "ws": true}, {"text": "schon", "start": 494, "end": 499, "id": 95, "ws": true}, {"text": "wieder", "start": 500, "end": 506, "id": 96, "ws": true}, {"text": "abschreckend", "start": 507, "end": 519, "id": 97, "ws": true}, {"text": "wirkt", "start": 520, "end": 525, "id": 98, "ws": false}, {"text": ",", "start": 525, "end": 526, "id": 99, "ws": true}, {"text": "sondern", "start": 527, "end": 534, "id": 100, "ws": true}, {"text": "da\u00df", "start": 535, "end": 538, "id": 101, "ws": true}, {"text": "es", "start": 539, "end": 541, "id": 102, "ws": true}, {"text": "auch", "start": 542, "end": 546, "id": 103, "ws": true}, {"text": "gen\u00fcgt", "start": 547, "end": 553, "id": 104, "ws": false}, {"text": ",", "start": 553, "end": 554, "id": 105, "ws": true}, {"text": "im", "start": 555, "end": 557, "id": 106, "ws": true}, {"text": "Rahmen", "start": 558, "end": 564, "id": 107, "ws": true}, {"text": "dieses", "start": 565, "end": 571, "id": 108, "ws": true}, {"text": "Aufsatzes", "start": 572, "end": 581, "id": 109, "ws": true}, {"text": "nur", "start": 582, "end": 585, "id": 110, "ws": true}, {"text": "einige", "start": 586, "end": 592, "id": 111, "ws": true}, {"text": "wichtige", "start": 593, "end": 601, "id": 112, "ws": true}, {"text": "Aspekte", "start": 602, "end": 609, "id": 113, "ws": true}, {"text": "anzusprechen", "start": 610, "end": 622, "id": 114, "ws": false}, {"text": ".", "start": 622, "end": 623, "id": 115, "ws": true}, {"text": "Bi", "start": 624, "end": 626, "id": 116, "ws": true}, {"text": "bliographien", "start": 627, "end": 639, "id": 117, "ws": true}, {"text": "finden", "start": 640, "end": 646, "id": 118, "ws": true}, {"text": "sich", "start": 647, "end": 651, "id": 119, "ws": true}, {"text": "etwa", "start": 652, "end": 656, "id": 120, "ws": true}, {"text": "bei", "start": 657, "end": 660, "id": 121, "ws": true}, {"text": "Rokkan", "start": 661, "end": 667, "id": 122, "ws": false}, {"text": "/", "start": 667, "end": 668, "id": 123, "ws": false}, {"text": "Verba", "start": 668, "end": 673, "id": 124, "ws": false}, {"text": "/", "start": 673, "end": 674, "id": 125, "ws": false}, {"text": "Viet", "start": 674, "end": 678, "id": 126, "ws": false}, {"text": "/", "start": 678, "end": 679, "id": 127, "ws": false}, {"text": "Almasy", "start": 679, "end": 685, "id": 128, "ws": true}, {"text": "117", "start": 686, "end": 689, "id": 129, "ws": true}, {"text": "ff", "start": 690, "end": 692, "id": 130, "ws": false}, {"text": ".", "start": 692, "end": 693, "id": 131, "ws": false}, {"text": ";", "start": 693, "end": 694, "id": 132, "ws": true}, {"text": "Vallier", "start": 695, "end": 702, "id": 133, "ws": true}, {"text": "423", "start": 703, "end": 706, "id": 134, "ws": true}, {"text": "ff", "start": 707, "end": 709, "id": 135, "ws": false}, {"text": ".", "start": 709, "end": 710, "id": 136, "ws": false}, {"text": ";", "start": 710, "end": 711, "id": 137, "ws": true}, {"text": "Almasy", "start": 712, "end": 718, "id": 138, "ws": false}, {"text": "/", "start": 718, "end": 719, "id": 139, "ws": false}, {"text": "Balandier", "start": 719, "end": 728, "id": 140, "ws": false}, {"text": "/", "start": 728, "end": 729, "id": 141, "ws": false}, {"text": "Delatte", "start": 729, "end": 736, "id": 142, "ws": false}, {"text": ",", "start": 736, "end": 737, "id": 143, "ws": true}, {"text": "Comparative", "start": 738, "end": 749, "id": 144, "ws": true}, {"text": "Survey", "start": 750, "end": 756, "id": 145, "ws": true}, {"text": "Analysis", "start": 757, "end": 765, "id": 146, "ws": true}, {"text": "\u2014", "start": 766, "end": 767, "id": 147, "ws": true}, {"text": "An", "start": 768, "end": 770, "id": 148, "ws": true}, {"text": "Annotated", "start": 771, "end": 780, "id": 149, "ws": true}, {"text": "Bibliography", "start": 781, "end": 793, "id": 150, "ws": true}, {"text": "1967", "start": 794, "end": 798, "id": 151, "ws": true}, {"text": "\u2014", "start": 799, "end": 800, "id": 152, "ws": true}, {"text": "1973", "start": 801, "end": 805, "id": 153, "ws": true}, {"text": "(", "start": 806, "end": 807, "id": 154, "ws": false}, {"text": "Beverly", "start": 807, "end": 814, "id": 155, "ws": true}, {"text": "Hills", "start": 815, "end": 820, "id": 156, "ws": false}, {"text": ",", "start": 820, "end": 821, "id": 157, "ws": true}, {"text": "London", "start": 822, "end": 828, "id": 158, "ws": true}, {"text": "1976", "start": 829, "end": 833, "id": 159, "ws": false}, {"text": ")", "start": 833, "end": 834, "id": 160, "ws": true}, {"text": "sowie", "start": 835, "end": 840, "id": 161, "ws": true}, {"text": "bei", "start": 841, "end": 844, "id": 162, "ws": true}, {"text": "Marsh", "start": 845, "end": 850, "id": 163, "ws": true}, {"text": ",", "start": 851, "end": 852, "id": 164, "ws": true}, {"text": "Comparative", "start": 853, "end": 864, "id": 165, "ws": true}, {"text": "Sociology", "start": 865, "end": 874, "id": 166, "ws": true}, {"text": "(", "start": 875, "end": 876, "id": 167, "ws": false}, {"text": "New", "start": 876, "end": 879, "id": 168, "ws": true}, {"text": "York", "start": 880, "end": 884, "id": 169, "ws": false}, {"text": ",", "start": 884, "end": 885, "id": 170, "ws": true}, {"text": "Chicago", "start": 886, "end": 893, "id": 171, "ws": false}, {"text": ",", "start": 893, "end": 894, "id": 172, "ws": true}, {"text": "San", "start": 895, "end": 898, "id": 173, "ws": true}, {"text": "Francisco", "start": 899, "end": 908, "id": 174, "ws": false}, {"text": ",", "start": 908, "end": 909, "id": 175, "ws": true}, {"text": "Atlanta", "start": 910, "end": 917, "id": 176, "ws": true}, {"text": "1967", "start": 918, "end": 922, "id": 177, "ws": false}, {"text": ")", "start": 922, "end": 923, "id": 178, "ws": true}, {"text": "375", "start": 924, "end": 927, "id": 179, "ws": true}, {"text": "ff", "start": 928, "end": 930, "id": 180, "ws": false}, {"text": ".", "start": 930, "end": 931, "id": 181, "ws": true}, {"text": "Recbtsvergleichung", "start": 932, "end": 950, "id": 182, "ws": true}, {"text": "und", "start": 951, "end": 954, "id": 183, "ws": true}, {"text": "vergleichende", "start": 955, "end": 968, "id": 184, "ws": true}, {"text": "Rechtssoziologie", "start": 969, "end": 985, "id": 185, "ws": true}, {"text": "69", "start": 986, "end": 988, "id": 186, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 8, "end": 17, "label": "author", "token_start": 2, "token_end": 3}, {"start": 18, "end": 89, "label": "title", "token_start": 4, "token_end": 15}, {"start": 90, "end": 108, "label": "editor", "token_start": 16, "token_end": 20}, {"start": 109, "end": 116, "label": "pages", "token_start": 21, "token_end": 25}, {"start": 117, "end": 254, "label": "title", "token_start": 26, "token_end": 50}, {"start": 255, "end": 277, "label": "editor", "token_start": 51, "token_end": 58}, {"start": 278, "end": 310, "label": "container-title", "token_start": 59, "token_end": 62}, {"start": 311, "end": 317, "label": "volume", "token_start": 63, "token_end": 64}, {"start": 318, "end": 335, "label": "location", "token_start": 65, "token_end": 69}, {"start": 336, "end": 341, "label": "date", "token_start": 70, "token_end": 71}, {"start": 342, "end": 344, "label": "pages", "token_start": 72, "token_end": 72}, {"start": 345, "end": 685, "label": "note", "token_start": 73, "token_end": 128}, {"start": 686, "end": 694, "label": "pages", "token_start": 129, "token_end": 132}, {"start": 695, "end": 702, "label": "author", "token_start": 133, "token_end": 133}, {"start": 703, "end": 711, "label": "pages", "token_start": 134, "token_end": 137}, {"start": 712, "end": 737, "label": "author", "token_start": 138, "token_end": 143}, {"start": 738, "end": 805, "label": "title", "token_start": 144, "token_end": 153}, {"start": 806, "end": 828, "label": "location", "token_start": 154, "token_end": 158}, {"start": 829, "end": 834, "label": "date", "token_start": 159, "token_end": 160}, {"start": 835, "end": 850, "label": "author", "token_start": 161, "token_end": 163}, {"start": 16, "end": 39, "label": "title", "token_start": 3, "token_end": 5}, {"start": 875, "end": 917, "label": "location", "token_start": 167, "token_end": 176}, {"start": 918, "end": 923, "label": "date", "token_start": 177, "token_end": 178}, {"start": 924, "end": 931, "label": "pages", "token_start": 179, "token_end": 181}, {"start": 932, "end": 988, "label": "ignore", "token_start": 182, "token_end": 186}]} -{"text": "12 D\u00fcrkheim, Les rigles de la methode sociologique (PUF, Paris 1977) 137.", "tokens": [{"text": "12", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "D\u00fcrkheim", "start": 3, "end": 11, "id": 1, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 2, "ws": true}, {"text": "Les", "start": 13, "end": 16, "id": 3, "ws": true}, {"text": "rigles", "start": 17, "end": 23, "id": 4, "ws": true}, {"text": "de", "start": 24, "end": 26, "id": 5, "ws": true}, {"text": "la", "start": 27, "end": 29, "id": 6, "ws": true}, {"text": "methode", "start": 30, "end": 37, "id": 7, "ws": true}, {"text": "sociologique", "start": 38, "end": 50, "id": 8, "ws": true}, {"text": "(", "start": 51, "end": 52, "id": 9, "ws": false}, {"text": "PUF", "start": 52, "end": 55, "id": 10, "ws": false}, {"text": ",", "start": 55, "end": 56, "id": 11, "ws": true}, {"text": "Paris", "start": 57, "end": 62, "id": 12, "ws": true}, {"text": "1977", "start": 63, "end": 67, "id": 13, "ws": false}, {"text": ")", "start": 67, "end": 68, "id": 14, "ws": true}, {"text": "137.", "start": 69, "end": 73, "id": 15, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "author", "token_start": 1, "token_end": 2}, {"start": 13, "end": 50, "label": "title", "token_start": 3, "token_end": 8}, {"start": 51, "end": 56, "label": "location", "token_start": 9, "token_end": 11}, {"start": 57, "end": 62, "label": "location", "token_start": 12, "token_end": 12}, {"start": 63, "end": 68, "label": "date", "token_start": 13, "token_end": 14}, {"start": 69, "end": 73, "label": "pages", "token_start": 15, "token_end": 15}]} -{"text": "13 Smelser 2 f. ; Payne, Comparative Sociology \u2014 Some Problems of Theory and Method, Brit. J. Soc. 24 (1973) 13 (15 ff.). - \u00c4hnlich auch Eisenstadt, Social Institutions - Comparative Method, in: International Encyclopedia of the Social Sciences Bd. 14 (London 1968) 421 (423).", "tokens": [{"text": "13", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Smelser", "start": 3, "end": 10, "id": 1, "ws": true}, {"text": "2", "start": 11, "end": 12, "id": 2, "ws": true}, {"text": "f.", "start": 13, "end": 15, "id": 3, "ws": true}, {"text": ";", "start": 16, "end": 17, "id": 4, "ws": true}, {"text": "Payne", "start": 18, "end": 23, "id": 5, "ws": false}, {"text": ",", "start": 23, "end": 24, "id": 6, "ws": true}, {"text": "Comparative", "start": 25, "end": 36, "id": 7, "ws": true}, {"text": "Sociology", "start": 37, "end": 46, "id": 8, "ws": true}, {"text": "\u2014", "start": 47, "end": 48, "id": 9, "ws": true}, {"text": "Some", "start": 49, "end": 53, "id": 10, "ws": true}, {"text": "Problems", "start": 54, "end": 62, "id": 11, "ws": true}, {"text": "of", "start": 63, "end": 65, "id": 12, "ws": true}, {"text": "Theory", "start": 66, "end": 72, "id": 13, "ws": true}, {"text": "and", "start": 73, "end": 76, "id": 14, "ws": true}, {"text": "Method", "start": 77, "end": 83, "id": 15, "ws": false}, {"text": ",", "start": 83, "end": 84, "id": 16, "ws": true}, {"text": "Brit", "start": 85, "end": 89, "id": 17, "ws": false}, {"text": ".", "start": 89, "end": 90, "id": 18, "ws": true}, {"text": "J.", "start": 91, "end": 93, "id": 19, "ws": true}, {"text": "Soc", "start": 94, "end": 97, "id": 20, "ws": false}, {"text": ".", "start": 97, "end": 98, "id": 21, "ws": true}, {"text": "24", "start": 99, "end": 101, "id": 22, "ws": true}, {"text": "(", "start": 102, "end": 103, "id": 23, "ws": false}, {"text": "1973", "start": 103, "end": 107, "id": 24, "ws": false}, {"text": ")", "start": 107, "end": 108, "id": 25, "ws": true}, {"text": "13", "start": 109, "end": 111, "id": 26, "ws": true}, {"text": "(", "start": 112, "end": 113, "id": 27, "ws": false}, {"text": "15", "start": 113, "end": 115, "id": 28, "ws": true}, {"text": "ff", "start": 116, "end": 118, "id": 29, "ws": false}, {"text": ".", "start": 118, "end": 119, "id": 30, "ws": false}, {"text": ")", "start": 119, "end": 120, "id": 31, "ws": false}, {"text": ".", "start": 120, "end": 121, "id": 32, "ws": true}, {"text": "-", "start": 122, "end": 123, "id": 33, "ws": true}, {"text": "\u00c4hnlich", "start": 124, "end": 131, "id": 34, "ws": true}, {"text": "auch", "start": 132, "end": 136, "id": 35, "ws": true}, {"text": "Eisenstadt", "start": 137, "end": 147, "id": 36, "ws": false}, {"text": ",", "start": 147, "end": 148, "id": 37, "ws": true}, {"text": "Social", "start": 149, "end": 155, "id": 38, "ws": true}, {"text": "Institutions", "start": 156, "end": 168, "id": 39, "ws": true}, {"text": "-", "start": 169, "end": 170, "id": 40, "ws": true}, {"text": "Comparative", "start": 171, "end": 182, "id": 41, "ws": true}, {"text": "Method", "start": 183, "end": 189, "id": 42, "ws": false}, {"text": ",", "start": 189, "end": 190, "id": 43, "ws": true}, {"text": "in", "start": 191, "end": 193, "id": 44, "ws": false}, {"text": ":", "start": 193, "end": 194, "id": 45, "ws": true}, {"text": "International", "start": 195, "end": 208, "id": 46, "ws": true}, {"text": "Encyclopedia", "start": 209, "end": 221, "id": 47, "ws": true}, {"text": "of", "start": 222, "end": 224, "id": 48, "ws": true}, {"text": "the", "start": 225, "end": 228, "id": 49, "ws": true}, {"text": "Social", "start": 229, "end": 235, "id": 50, "ws": true}, {"text": "Sciences", "start": 236, "end": 244, "id": 51, "ws": true}, {"text": "Bd.", "start": 245, "end": 248, "id": 52, "ws": true}, {"text": "14", "start": 249, "end": 251, "id": 53, "ws": true}, {"text": "(", "start": 252, "end": 253, "id": 54, "ws": false}, {"text": "London", "start": 253, "end": 259, "id": 55, "ws": true}, {"text": "1968", "start": 260, "end": 264, "id": 56, "ws": false}, {"text": ")", "start": 264, "end": 265, "id": 57, "ws": true}, {"text": "421", "start": 266, "end": 269, "id": 58, "ws": true}, {"text": "(", "start": 270, "end": 271, "id": 59, "ws": false}, {"text": "423", "start": 271, "end": 274, "id": 60, "ws": false}, {"text": ")", "start": 274, "end": 275, "id": 61, "ws": false}, {"text": ".", "start": 275, "end": 276, "id": 62, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 1}, {"start": 11, "end": 15, "label": "pages", "token_start": 2, "token_end": 3}, {"start": 16, "end": 24, "label": "author", "token_start": 4, "token_end": 6}, {"start": 25, "end": 84, "label": "title", "token_start": 7, "token_end": 16}, {"start": 85, "end": 98, "label": "journal", "token_start": 17, "token_end": 21}, {"start": 99, "end": 101, "label": "volume", "token_start": 22, "token_end": 22}, {"start": 102, "end": 108, "label": "date", "token_start": 23, "token_end": 25}, {"start": 109, "end": 123, "label": "pages", "token_start": 26, "token_end": 33}, {"start": 124, "end": 136, "label": "signal", "token_start": 34, "token_end": 35}, {"start": 137, "end": 148, "label": "author", "token_start": 36, "token_end": 37}, {"start": 149, "end": 190, "label": "title", "token_start": 38, "token_end": 43}, {"start": 191, "end": 244, "label": "journal", "token_start": 44, "token_end": 51}, {"start": 245, "end": 251, "label": "volume", "token_start": 52, "token_end": 53}, {"start": 252, "end": 259, "label": "location", "token_start": 54, "token_end": 55}, {"start": 260, "end": 265, "label": "date", "token_start": 56, "token_end": 57}, {"start": 266, "end": 276, "label": "pages", "token_start": 58, "token_end": 62}]} -{"text": "14 Boesch/Eckensberger, Methodische Probleme des interkulturellen Vergleichs, in: Graumann (Hrsg.), Handbuch der Psychologie, Bd. Vll 1 (2. Auf], 1969) 514 (520 ff.). \u2014 Zur \u201ecultunit\u201c, die vor allem durch die gemeinsame Sprache und die Zugeh\u00f6rigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist, s. Naroll/Cohen (Hrsg.), A Handbook of Method in Cultural Anthropology (New York, London 1973) sowie Smelser 168 f.; Wir sing (oben N. 8) 115.", "tokens": [{"text": "14", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Boesch", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": "/", "start": 9, "end": 10, "id": 2, "ws": false}, {"text": "Eckensberger", "start": 10, "end": 22, "id": 3, "ws": false}, {"text": ",", "start": 22, "end": 23, "id": 4, "ws": true}, {"text": "Methodische", "start": 24, "end": 35, "id": 5, "ws": true}, {"text": "Probleme", "start": 36, "end": 44, "id": 6, "ws": true}, {"text": "des", "start": 45, "end": 48, "id": 7, "ws": true}, {"text": "interkulturellen", "start": 49, "end": 65, "id": 8, "ws": true}, {"text": "Vergleichs", "start": 66, "end": 76, "id": 9, "ws": false}, {"text": ",", "start": 76, "end": 77, "id": 10, "ws": true}, {"text": "in", "start": 78, "end": 80, "id": 11, "ws": false}, {"text": ":", "start": 80, "end": 81, "id": 12, "ws": true}, {"text": "Graumann", "start": 82, "end": 90, "id": 13, "ws": true}, {"text": "(", "start": 91, "end": 92, "id": 14, "ws": false}, {"text": "Hrsg.", "start": 92, "end": 97, "id": 15, "ws": false}, {"text": ")", "start": 97, "end": 98, "id": 16, "ws": false}, {"text": ",", "start": 98, "end": 99, "id": 17, "ws": true}, {"text": "Handbuch", "start": 100, "end": 108, "id": 18, "ws": true}, {"text": "der", "start": 109, "end": 112, "id": 19, "ws": true}, {"text": "Psychologie", "start": 113, "end": 124, "id": 20, "ws": false}, {"text": ",", "start": 124, "end": 125, "id": 21, "ws": true}, {"text": "Bd.", "start": 126, "end": 129, "id": 22, "ws": true}, {"text": "Vll", "start": 130, "end": 133, "id": 23, "ws": true}, {"text": "1", "start": 134, "end": 135, "id": 24, "ws": true}, {"text": "(", "start": 136, "end": 137, "id": 25, "ws": false}, {"text": "2.", "start": 137, "end": 139, "id": 26, "ws": true}, {"text": "Auf", "start": 140, "end": 143, "id": 27, "ws": false}, {"text": "]", "start": 143, "end": 144, "id": 28, "ws": false}, {"text": ",", "start": 144, "end": 145, "id": 29, "ws": true}, {"text": "1969", "start": 146, "end": 150, "id": 30, "ws": false}, {"text": ")", "start": 150, "end": 151, "id": 31, "ws": true}, {"text": "514", "start": 152, "end": 155, "id": 32, "ws": true}, {"text": "(", "start": 156, "end": 157, "id": 33, "ws": false}, {"text": "520", "start": 157, "end": 160, "id": 34, "ws": true}, {"text": "ff", "start": 161, "end": 163, "id": 35, "ws": false}, {"text": ".", "start": 163, "end": 164, "id": 36, "ws": false}, {"text": ")", "start": 164, "end": 165, "id": 37, "ws": false}, {"text": ".", "start": 165, "end": 166, "id": 38, "ws": true}, {"text": "\u2014", "start": 167, "end": 168, "id": 39, "ws": true}, {"text": "Zur", "start": 169, "end": 172, "id": 40, "ws": true}, {"text": "\u201e", "start": 173, "end": 174, "id": 41, "ws": false}, {"text": "cultunit", "start": 174, "end": 182, "id": 42, "ws": false}, {"text": "\u201c", "start": 182, "end": 183, "id": 43, "ws": false}, {"text": ",", "start": 183, "end": 184, "id": 44, "ws": true}, {"text": "die", "start": 185, "end": 188, "id": 45, "ws": true}, {"text": "vor", "start": 189, "end": 192, "id": 46, "ws": true}, {"text": "allem", "start": 193, "end": 198, "id": 47, "ws": true}, {"text": "durch", "start": 199, "end": 204, "id": 48, "ws": true}, {"text": "die", "start": 205, "end": 208, "id": 49, "ws": true}, {"text": "gemeinsame", "start": 209, "end": 219, "id": 50, "ws": true}, {"text": "Sprache", "start": 220, "end": 227, "id": 51, "ws": true}, {"text": "und", "start": 228, "end": 231, "id": 52, "ws": true}, {"text": "die", "start": 232, "end": 235, "id": 53, "ws": true}, {"text": "Zugeh\u00f6rigkeit", "start": 236, "end": 249, "id": 54, "ws": true}, {"text": "zu", "start": 250, "end": 252, "id": 55, "ws": true}, {"text": "einem", "start": 253, "end": 258, "id": 56, "ws": true}, {"text": "Staat", "start": 259, "end": 264, "id": 57, "ws": true}, {"text": "bzw.", "start": 265, "end": 269, "id": 58, "ws": true}, {"text": "einer", "start": 270, "end": 275, "id": 59, "ws": true}, {"text": "interpersonellen", "start": 276, "end": 292, "id": 60, "ws": true}, {"text": "Kontaktgruppe", "start": 293, "end": 306, "id": 61, "ws": true}, {"text": "gekennzeichnet", "start": 307, "end": 321, "id": 62, "ws": true}, {"text": "ist", "start": 322, "end": 325, "id": 63, "ws": false}, {"text": ",", "start": 325, "end": 326, "id": 64, "ws": true}, {"text": "s.", "start": 327, "end": 329, "id": 65, "ws": true}, {"text": "Naroll", "start": 330, "end": 336, "id": 66, "ws": false}, {"text": "/", "start": 336, "end": 337, "id": 67, "ws": false}, {"text": "Cohen", "start": 337, "end": 342, "id": 68, "ws": true}, {"text": "(", "start": 343, "end": 344, "id": 69, "ws": false}, {"text": "Hrsg.", "start": 344, "end": 349, "id": 70, "ws": false}, {"text": ")", "start": 349, "end": 350, "id": 71, "ws": false}, {"text": ",", "start": 350, "end": 351, "id": 72, "ws": true}, {"text": "A", "start": 352, "end": 353, "id": 73, "ws": true}, {"text": "Handbook", "start": 354, "end": 362, "id": 74, "ws": true}, {"text": "of", "start": 363, "end": 365, "id": 75, "ws": true}, {"text": "Method", "start": 366, "end": 372, "id": 76, "ws": true}, {"text": "in", "start": 373, "end": 375, "id": 77, "ws": true}, {"text": "Cultural", "start": 376, "end": 384, "id": 78, "ws": true}, {"text": "Anthropology", "start": 385, "end": 397, "id": 79, "ws": true}, {"text": "(", "start": 398, "end": 399, "id": 80, "ws": false}, {"text": "New", "start": 399, "end": 402, "id": 81, "ws": true}, {"text": "York", "start": 403, "end": 407, "id": 82, "ws": false}, {"text": ",", "start": 407, "end": 408, "id": 83, "ws": true}, {"text": "London", "start": 409, "end": 415, "id": 84, "ws": true}, {"text": "1973", "start": 416, "end": 420, "id": 85, "ws": false}, {"text": ")", "start": 420, "end": 421, "id": 86, "ws": true}, {"text": "sowie", "start": 422, "end": 427, "id": 87, "ws": true}, {"text": "Smelser", "start": 428, "end": 435, "id": 88, "ws": true}, {"text": "168", "start": 436, "end": 439, "id": 89, "ws": true}, {"text": "f.", "start": 440, "end": 442, "id": 90, "ws": false}, {"text": ";", "start": 442, "end": 443, "id": 91, "ws": true}, {"text": "Wir", "start": 444, "end": 447, "id": 92, "ws": true}, {"text": "sing", "start": 448, "end": 452, "id": 93, "ws": true}, {"text": "(", "start": 453, "end": 454, "id": 94, "ws": false}, {"text": "oben", "start": 454, "end": 458, "id": 95, "ws": true}, {"text": "N.", "start": 459, "end": 461, "id": 96, "ws": true}, {"text": "8)", "start": 462, "end": 464, "id": 97, "ws": true}, {"text": "115.", "start": 465, "end": 469, "id": 98, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 23, "label": "author", "token_start": 1, "token_end": 4}, {"start": 24, "end": 77, "label": "title", "token_start": 5, "token_end": 10}, {"start": 78, "end": 99, "label": "editor", "token_start": 11, "token_end": 17}, {"start": 100, "end": 125, "label": "container-title", "token_start": 18, "token_end": 21}, {"start": 126, "end": 145, "label": "volume", "token_start": 22, "token_end": 29}, {"start": 146, "end": 151, "label": "date", "token_start": 30, "token_end": 31}, {"start": 152, "end": 166, "label": "pages", "token_start": 32, "token_end": 38}, {"start": 167, "end": 326, "label": "note", "token_start": 39, "token_end": 64}, {"start": 327, "end": 329, "label": "signal", "token_start": 65, "token_end": 65}, {"start": 330, "end": 351, "label": "editor", "token_start": 66, "token_end": 72}, {"start": 352, "end": 397, "label": "title", "token_start": 73, "token_end": 79}, {"start": 398, "end": 415, "label": "location", "token_start": 80, "token_end": 84}, {"start": 416, "end": 421, "label": "date", "token_start": 85, "token_end": 86}, {"start": 422, "end": 427, "label": "signal", "token_start": 87, "token_end": 87}, {"start": 428, "end": 435, "label": "author", "token_start": 88, "token_end": 88}, {"start": 436, "end": 443, "label": "pages", "token_start": 89, "token_end": 91}, {"start": 444, "end": 452, "label": "author", "token_start": 92, "token_end": 93}, {"start": 453, "end": 464, "label": "backref", "token_start": 94, "token_end": 97}, {"start": 465, "end": 469, "label": "pages", "token_start": 98, "token_end": 98}]} -{"text": "15 N\u00e4her dazu Zelditch, Intelligible Cotnparisons, in: Vallier 267 (270 ff.).", "tokens": [{"text": "15", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "N\u00e4her", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "dazu", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "Zelditch", "start": 14, "end": 22, "id": 3, "ws": false}, {"text": ",", "start": 22, "end": 23, "id": 4, "ws": true}, {"text": "Intelligible", "start": 24, "end": 36, "id": 5, "ws": true}, {"text": "Cotnparisons", "start": 37, "end": 49, "id": 6, "ws": false}, {"text": ",", "start": 49, "end": 50, "id": 7, "ws": true}, {"text": "in", "start": 51, "end": 53, "id": 8, "ws": false}, {"text": ":", "start": 53, "end": 54, "id": 9, "ws": true}, {"text": "Vallier", "start": 55, "end": 62, "id": 10, "ws": true}, {"text": "267", "start": 63, "end": 66, "id": 11, "ws": true}, {"text": "(", "start": 67, "end": 68, "id": 12, "ws": false}, {"text": "270", "start": 68, "end": 71, "id": 13, "ws": true}, {"text": "ff", "start": 72, "end": 74, "id": 14, "ws": false}, {"text": ".", "start": 74, "end": 75, "id": 15, "ws": false}, {"text": ")", "start": 75, "end": 76, "id": 16, "ws": false}, {"text": ".", "start": 76, "end": 77, "id": 17, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 23, "label": "author", "token_start": 3, "token_end": 4}, {"start": 24, "end": 50, "label": "title", "token_start": 5, "token_end": 7}, {"start": 51, "end": 62, "label": "container-title", "token_start": 8, "token_end": 10}, {"start": 63, "end": 77, "label": "pages", "token_start": 11, "token_end": 17}]} -{"text": "16 Carbonnier (oben N. 5) 80.", "tokens": [{"text": "16", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Carbonnier", "start": 3, "end": 13, "id": 1, "ws": true}, {"text": "(", "start": 14, "end": 15, "id": 2, "ws": false}, {"text": "oben", "start": 15, "end": 19, "id": 3, "ws": true}, {"text": "N.", "start": 20, "end": 22, "id": 4, "ws": true}, {"text": "5", "start": 23, "end": 24, "id": 5, "ws": false}, {"text": ")", "start": 24, "end": 25, "id": 6, "ws": true}, {"text": "80.", "start": 26, "end": 29, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "author", "token_start": 1, "token_end": 1}, {"start": 14, "end": 25, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 26, "end": 29, "label": "pages", "token_start": 7, "token_end": 7}]} -{"text": "17 Siehe Zweigert, Die soziologische Dimension der Rechtsvergleichung, in: Drobnig/Rebbinder 151 (159).", "tokens": [{"text": "17", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Zweigert", "start": 9, "end": 17, "id": 2, "ws": false}, {"text": ",", "start": 17, "end": 18, "id": 3, "ws": true}, {"text": "Die", "start": 19, "end": 22, "id": 4, "ws": true}, {"text": "soziologische", "start": 23, "end": 36, "id": 5, "ws": true}, {"text": "Dimension", "start": 37, "end": 46, "id": 6, "ws": true}, {"text": "der", "start": 47, "end": 50, "id": 7, "ws": true}, {"text": "Rechtsvergleichung", "start": 51, "end": 69, "id": 8, "ws": false}, {"text": ",", "start": 69, "end": 70, "id": 9, "ws": true}, {"text": "in", "start": 71, "end": 73, "id": 10, "ws": false}, {"text": ":", "start": 73, "end": 74, "id": 11, "ws": true}, {"text": "Drobnig", "start": 75, "end": 82, "id": 12, "ws": false}, {"text": "/", "start": 82, "end": 83, "id": 13, "ws": false}, {"text": "Rebbinder", "start": 83, "end": 92, "id": 14, "ws": true}, {"text": "151", "start": 93, "end": 96, "id": 15, "ws": true}, {"text": "(", "start": 97, "end": 98, "id": 16, "ws": false}, {"text": "159", "start": 98, "end": 101, "id": 17, "ws": false}, {"text": ")", "start": 101, "end": 102, "id": 18, "ws": false}, {"text": ".", "start": 102, "end": 103, "id": 19, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 18, "label": "author", "token_start": 1, "token_end": 3}, {"start": 19, "end": 70, "label": "title", "token_start": 4, "token_end": 9}, {"start": 71, "end": 92, "label": "editor", "token_start": 10, "token_end": 14}, {"start": 93, "end": 103, "label": "pages", "token_start": 15, "token_end": 19}]} -{"text": "18 Zu entsprechenden Versuchen etwa Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Br\u00fcssel 1974) 81 (89 ff.).", "tokens": [{"text": "18", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Zu", "start": 3, "end": 5, "id": 1, "ws": true}, {"text": "entsprechenden", "start": 6, "end": 20, "id": 2, "ws": true}, {"text": "Versuchen", "start": 21, "end": 30, "id": 3, "ws": true}, {"text": "etwa", "start": 31, "end": 35, "id": 4, "ws": true}, {"text": "Merryman", "start": 36, "end": 44, "id": 5, "ws": false}, {"text": ",", "start": 44, "end": 45, "id": 6, "ws": true}, {"text": "Comparative", "start": 46, "end": 57, "id": 7, "ws": true}, {"text": "Law", "start": 58, "end": 61, "id": 8, "ws": true}, {"text": "and", "start": 62, "end": 65, "id": 9, "ws": true}, {"text": "Scientific", "start": 66, "end": 76, "id": 10, "ws": true}, {"text": "Explanation", "start": 77, "end": 88, "id": 11, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 12, "ws": true}, {"text": "in", "start": 90, "end": 92, "id": 13, "ws": false}, {"text": ":", "start": 92, "end": 93, "id": 14, "ws": true}, {"text": "Law", "start": 94, "end": 97, "id": 15, "ws": true}, {"text": "in", "start": 98, "end": 100, "id": 16, "ws": true}, {"text": "the", "start": 101, "end": 104, "id": 17, "ws": true}, {"text": "United", "start": 105, "end": 111, "id": 18, "ws": true}, {"text": "States", "start": 112, "end": 118, "id": 19, "ws": true}, {"text": "of", "start": 119, "end": 121, "id": 20, "ws": true}, {"text": "America", "start": 122, "end": 129, "id": 21, "ws": true}, {"text": "in", "start": 130, "end": 132, "id": 22, "ws": true}, {"text": "Social", "start": 133, "end": 139, "id": 23, "ws": true}, {"text": "and", "start": 140, "end": 143, "id": 24, "ws": true}, {"text": "Technological", "start": 144, "end": 157, "id": 25, "ws": true}, {"text": "Revolution", "start": 158, "end": 168, "id": 26, "ws": true}, {"text": "(", "start": 169, "end": 170, "id": 27, "ws": false}, {"text": "Br\u00fcssel", "start": 170, "end": 177, "id": 28, "ws": true}, {"text": "1974", "start": 178, "end": 182, "id": 29, "ws": false}, {"text": ")", "start": 182, "end": 183, "id": 30, "ws": true}, {"text": "81", "start": 184, "end": 186, "id": 31, "ws": true}, {"text": "(", "start": 187, "end": 188, "id": 32, "ws": false}, {"text": "89", "start": 188, "end": 190, "id": 33, "ws": true}, {"text": "ff", "start": 191, "end": 193, "id": 34, "ws": false}, {"text": ".", "start": 193, "end": 194, "id": 35, "ws": false}, {"text": ")", "start": 194, "end": 195, "id": 36, "ws": false}, {"text": ".", "start": 195, "end": 196, "id": 37, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 35, "label": "signal", "token_start": 1, "token_end": 4}, {"start": 36, "end": 45, "label": "author", "token_start": 5, "token_end": 6}, {"start": 46, "end": 89, "label": "title", "token_start": 7, "token_end": 12}, {"start": 90, "end": 168, "label": "container-title", "token_start": 13, "token_end": 26}, {"start": 169, "end": 177, "label": "location", "token_start": 27, "token_end": 28}, {"start": 178, "end": 183, "label": "date", "token_start": 29, "token_end": 30}, {"start": 184, "end": 196, "label": "pages", "token_start": 31, "token_end": 37}]} -{"text": "19 Beispiel von Carbonnier, Sociologie juridique (Paris 1972) 188 N. 1.", "tokens": [{"text": "19", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Beispiel", "start": 3, "end": 11, "id": 1, "ws": true}, {"text": "von", "start": 12, "end": 15, "id": 2, "ws": true}, {"text": "Carbonnier", "start": 16, "end": 26, "id": 3, "ws": false}, {"text": ",", "start": 26, "end": 27, "id": 4, "ws": true}, {"text": "Sociologie", "start": 28, "end": 38, "id": 5, "ws": true}, {"text": "juridique", "start": 39, "end": 48, "id": 6, "ws": true}, {"text": "(", "start": 49, "end": 50, "id": 7, "ws": false}, {"text": "Paris", "start": 50, "end": 55, "id": 8, "ws": true}, {"text": "1972", "start": 56, "end": 60, "id": 9, "ws": false}, {"text": ")", "start": 60, "end": 61, "id": 10, "ws": true}, {"text": "188", "start": 62, "end": 65, "id": 11, "ws": true}, {"text": "N.", "start": 66, "end": 68, "id": 12, "ws": true}, {"text": "1.", "start": 69, "end": 71, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 15, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 16, "end": 27, "label": "author", "token_start": 3, "token_end": 4}, {"start": 28, "end": 55, "label": "title", "token_start": 5, "token_end": 8}, {"start": 56, "end": 61, "label": "date", "token_start": 9, "token_end": 10}, {"start": 62, "end": 71, "label": "pages", "token_start": 11, "token_end": 13}]} -{"text": "20 Dazu Heidrich, H\u00f6chstrichterliche Rechtsprechung als Triebfehier sozialen Wandels, Jahr buch f\u00fcr Rechtssoziologie und Rechtstheorie 3 (1972) 305 (330 ff.).", "tokens": [{"text": "20", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "Heidrich", "start": 8, "end": 16, "id": 2, "ws": false}, {"text": ",", "start": 16, "end": 17, "id": 3, "ws": true}, {"text": "H\u00f6chstrichterliche", "start": 18, "end": 36, "id": 4, "ws": true}, {"text": "Rechtsprechung", "start": 37, "end": 51, "id": 5, "ws": true}, {"text": "als", "start": 52, "end": 55, "id": 6, "ws": true}, {"text": "Triebfehier", "start": 56, "end": 67, "id": 7, "ws": true}, {"text": "sozialen", "start": 68, "end": 76, "id": 8, "ws": true}, {"text": "Wandels", "start": 77, "end": 84, "id": 9, "ws": false}, {"text": ",", "start": 84, "end": 85, "id": 10, "ws": true}, {"text": "Jahr", "start": 86, "end": 90, "id": 11, "ws": true}, {"text": "buch", "start": 91, "end": 95, "id": 12, "ws": true}, {"text": "f\u00fcr", "start": 96, "end": 99, "id": 13, "ws": true}, {"text": "Rechtssoziologie", "start": 100, "end": 116, "id": 14, "ws": true}, {"text": "und", "start": 117, "end": 120, "id": 15, "ws": true}, {"text": "Rechtstheorie", "start": 121, "end": 134, "id": 16, "ws": true}, {"text": "3", "start": 135, "end": 136, "id": 17, "ws": true}, {"text": "(", "start": 137, "end": 138, "id": 18, "ws": false}, {"text": "1972", "start": 138, "end": 142, "id": 19, "ws": false}, {"text": ")", "start": 142, "end": 143, "id": 20, "ws": true}, {"text": "305", "start": 144, "end": 147, "id": 21, "ws": true}, {"text": "(", "start": 148, "end": 149, "id": 22, "ws": false}, {"text": "330", "start": 149, "end": 152, "id": 23, "ws": true}, {"text": "ff", "start": 153, "end": 155, "id": 24, "ws": false}, {"text": ".", "start": 155, "end": 156, "id": 25, "ws": false}, {"text": ")", "start": 156, "end": 157, "id": 26, "ws": false}, {"text": ".", "start": 157, "end": 158, "id": 27, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 8, "end": 17, "label": "author", "token_start": 2, "token_end": 3}, {"start": 18, "end": 85, "label": "title", "token_start": 4, "token_end": 10}, {"start": 86, "end": 134, "label": "collection-title", "token_start": 11, "token_end": 16}, {"start": 135, "end": 136, "label": "volume", "token_start": 17, "token_end": 17}, {"start": 137, "end": 143, "label": "date", "token_start": 18, "token_end": 20}, {"start": 144, "end": 158, "label": "pages", "token_start": 21, "token_end": 27}]} -{"text": "21 Insbesondere Zweigert (oben N. 17) 157 ff.", "tokens": [{"text": "21", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Insbesondere", "start": 3, "end": 15, "id": 1, "ws": true}, {"text": "Zweigert", "start": 16, "end": 24, "id": 2, "ws": true}, {"text": "(", "start": 25, "end": 26, "id": 3, "ws": false}, {"text": "oben", "start": 26, "end": 30, "id": 4, "ws": true}, {"text": "N.", "start": 31, "end": 33, "id": 5, "ws": true}, {"text": "17", "start": 34, "end": 36, "id": 6, "ws": false}, {"text": ")", "start": 36, "end": 37, "id": 7, "ws": true}, {"text": "157", "start": 38, "end": 41, "id": 8, "ws": true}, {"text": "ff", "start": 42, "end": 44, "id": 9, "ws": false}, {"text": ".", "start": 44, "end": 45, "id": 10, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 15, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 16, "end": 24, "label": "author", "token_start": 2, "token_end": 2}, {"start": 25, "end": 37, "label": "backref", "token_start": 3, "token_end": 7}, {"start": 38, "end": 45, "label": "pages", "token_start": 8, "token_end": 10}]} -{"text": "22 Kaiser, Strafrecht und vergleichende Kriminologie, in: Kaiser/Vogler (Hrsg.), Strafrecht, Straf rechtsvergleichung (1975) 79 ff. \u2014 Siehe auch Villmow/Albrecht, Die Vergleichung als Metho de der Strafrechtswissenschaft und der Kriminologie, MschrKrim. 62 (1979) 163 ff.", "tokens": [{"text": "22", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Kaiser", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 2, "ws": true}, {"text": "Strafrecht", "start": 11, "end": 21, "id": 3, "ws": true}, {"text": "und", "start": 22, "end": 25, "id": 4, "ws": true}, {"text": "vergleichende", "start": 26, "end": 39, "id": 5, "ws": true}, {"text": "Kriminologie", "start": 40, "end": 52, "id": 6, "ws": false}, {"text": ",", "start": 52, "end": 53, "id": 7, "ws": true}, {"text": "in", "start": 54, "end": 56, "id": 8, "ws": false}, {"text": ":", "start": 56, "end": 57, "id": 9, "ws": true}, {"text": "Kaiser", "start": 58, "end": 64, "id": 10, "ws": false}, {"text": "/", "start": 64, "end": 65, "id": 11, "ws": false}, {"text": "Vogler", "start": 65, "end": 71, "id": 12, "ws": true}, {"text": "(", "start": 72, "end": 73, "id": 13, "ws": false}, {"text": "Hrsg.", "start": 73, "end": 78, "id": 14, "ws": false}, {"text": ")", "start": 78, "end": 79, "id": 15, "ws": false}, {"text": ",", "start": 79, "end": 80, "id": 16, "ws": true}, {"text": "Strafrecht", "start": 81, "end": 91, "id": 17, "ws": false}, {"text": ",", "start": 91, "end": 92, "id": 18, "ws": true}, {"text": "Straf", "start": 93, "end": 98, "id": 19, "ws": true}, {"text": "rechtsvergleichung", "start": 99, "end": 117, "id": 20, "ws": true}, {"text": "(", "start": 118, "end": 119, "id": 21, "ws": false}, {"text": "1975", "start": 119, "end": 123, "id": 22, "ws": false}, {"text": ")", "start": 123, "end": 124, "id": 23, "ws": true}, {"text": "79", "start": 125, "end": 127, "id": 24, "ws": true}, {"text": "ff", "start": 128, "end": 130, "id": 25, "ws": false}, {"text": ".", "start": 130, "end": 131, "id": 26, "ws": true}, {"text": "\u2014", "start": 132, "end": 133, "id": 27, "ws": true}, {"text": "Siehe", "start": 134, "end": 139, "id": 28, "ws": true}, {"text": "auch", "start": 140, "end": 144, "id": 29, "ws": true}, {"text": "Villmow", "start": 145, "end": 152, "id": 30, "ws": false}, {"text": "/", "start": 152, "end": 153, "id": 31, "ws": false}, {"text": "Albrecht", "start": 153, "end": 161, "id": 32, "ws": false}, {"text": ",", "start": 161, "end": 162, "id": 33, "ws": true}, {"text": "Die", "start": 163, "end": 166, "id": 34, "ws": true}, {"text": "Vergleichung", "start": 167, "end": 179, "id": 35, "ws": true}, {"text": "als", "start": 180, "end": 183, "id": 36, "ws": true}, {"text": "Metho", "start": 184, "end": 189, "id": 37, "ws": true}, {"text": "de", "start": 190, "end": 192, "id": 38, "ws": true}, {"text": "der", "start": 193, "end": 196, "id": 39, "ws": true}, {"text": "Strafrechtswissenschaft", "start": 197, "end": 220, "id": 40, "ws": true}, {"text": "und", "start": 221, "end": 224, "id": 41, "ws": true}, {"text": "der", "start": 225, "end": 228, "id": 42, "ws": true}, {"text": "Kriminologie", "start": 229, "end": 241, "id": 43, "ws": false}, {"text": ",", "start": 241, "end": 242, "id": 44, "ws": true}, {"text": "MschrKrim", "start": 243, "end": 252, "id": 45, "ws": false}, {"text": ".", "start": 252, "end": 253, "id": 46, "ws": true}, {"text": "62", "start": 254, "end": 256, "id": 47, "ws": true}, {"text": "(", "start": 257, "end": 258, "id": 48, "ws": false}, {"text": "1979", "start": 258, "end": 262, "id": 49, "ws": false}, {"text": ")", "start": 262, "end": 263, "id": 50, "ws": true}, {"text": "163", "start": 264, "end": 267, "id": 51, "ws": true}, {"text": "ff", "start": 268, "end": 270, "id": 52, "ws": false}, {"text": ".", "start": 270, "end": 271, "id": 53, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 2}, {"start": 11, "end": 53, "label": "title", "token_start": 3, "token_end": 7}, {"start": 54, "end": 80, "label": "editor", "token_start": 8, "token_end": 16}, {"start": 81, "end": 117, "label": "container-title", "token_start": 17, "token_end": 20}, {"start": 118, "end": 124, "label": "date", "token_start": 21, "token_end": 23}, {"start": 125, "end": 131, "label": "pages", "token_start": 24, "token_end": 26}, {"start": 132, "end": 144, "label": "signal", "token_start": 27, "token_end": 29}, {"start": 145, "end": 162, "label": "author", "token_start": 30, "token_end": 33}, {"start": 163, "end": 242, "label": "title", "token_start": 34, "token_end": 44}, {"start": 243, "end": 253, "label": "journal", "token_start": 45, "token_end": 46}, {"start": 254, "end": 256, "label": "volume", "token_start": 47, "token_end": 47}, {"start": 257, "end": 263, "label": "date", "token_start": 48, "token_end": 50}, {"start": 264, "end": 271, "label": "pages", "token_start": 51, "token_end": 53}]} -{"text": "23 So etwa K. H. Neumayer, Ziele und Methoden der Rechtsvergleichung, i n: Recueil des travaux suisses pr6sent6s au IXe Congris international de droit compare (1976) 45 (48).", "tokens": [{"text": "23", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "So", "start": 3, "end": 5, "id": 1, "ws": true}, {"text": "etwa", "start": 6, "end": 10, "id": 2, "ws": true}, {"text": "K.", "start": 11, "end": 13, "id": 3, "ws": true}, {"text": "H.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "Neumayer", "start": 17, "end": 25, "id": 5, "ws": false}, {"text": ",", "start": 25, "end": 26, "id": 6, "ws": true}, {"text": "Ziele", "start": 27, "end": 32, "id": 7, "ws": true}, {"text": "und", "start": 33, "end": 36, "id": 8, "ws": true}, {"text": "Methoden", "start": 37, "end": 45, "id": 9, "ws": true}, {"text": "der", "start": 46, "end": 49, "id": 10, "ws": true}, {"text": "Rechtsvergleichung", "start": 50, "end": 68, "id": 11, "ws": false}, {"text": ",", "start": 68, "end": 69, "id": 12, "ws": true}, {"text": "i", "start": 70, "end": 71, "id": 13, "ws": true}, {"text": "n", "start": 72, "end": 73, "id": 14, "ws": false}, {"text": ":", "start": 73, "end": 74, "id": 15, "ws": true}, {"text": "Recueil", "start": 75, "end": 82, "id": 16, "ws": true}, {"text": "des", "start": 83, "end": 86, "id": 17, "ws": true}, {"text": "travaux", "start": 87, "end": 94, "id": 18, "ws": true}, {"text": "suisses", "start": 95, "end": 102, "id": 19, "ws": true}, {"text": "pr6sent6s", "start": 103, "end": 112, "id": 20, "ws": true}, {"text": "au", "start": 113, "end": 115, "id": 21, "ws": true}, {"text": "IXe", "start": 116, "end": 119, "id": 22, "ws": true}, {"text": "Congris", "start": 120, "end": 127, "id": 23, "ws": true}, {"text": "international", "start": 128, "end": 141, "id": 24, "ws": true}, {"text": "de", "start": 142, "end": 144, "id": 25, "ws": true}, {"text": "droit", "start": 145, "end": 150, "id": 26, "ws": true}, {"text": "compare", "start": 151, "end": 158, "id": 27, "ws": true}, {"text": "(", "start": 159, "end": 160, "id": 28, "ws": false}, {"text": "1976", "start": 160, "end": 164, "id": 29, "ws": false}, {"text": ")", "start": 164, "end": 165, "id": 30, "ws": true}, {"text": "45", "start": 166, "end": 168, "id": 31, "ws": true}, {"text": "(", "start": 169, "end": 170, "id": 32, "ws": false}, {"text": "48", "start": 170, "end": 172, "id": 33, "ws": false}, {"text": ")", "start": 172, "end": 173, "id": 34, "ws": false}, {"text": ".", "start": 173, "end": 174, "id": 35, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 11, "end": 26, "label": "author", "token_start": 3, "token_end": 6}, {"start": 27, "end": 69, "label": "title", "token_start": 7, "token_end": 12}, {"start": 28, "end": 29, "label": "journal", "token_start": 7, "token_end": 7}, {"start": 72, "end": 158, "label": "container-title", "token_start": 14, "token_end": 27}, {"start": 159, "end": 165, "label": "date", "token_start": 28, "token_end": 30}, {"start": 166, "end": 174, "label": "pages", "token_start": 31, "token_end": 35}]} -{"text": "24 Zur Abgrenzung n\u00e4her Rehbinder, Erkenntnistheoretisches zum Verh\u00e4ltnis von Rechtsso ziologie und Rechtsvergleichung, in: Drobnig/Rehbinder 56 ff.", "tokens": [{"text": "24", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Zur", "start": 3, "end": 6, "id": 1, "ws": true}, {"text": "Abgrenzung", "start": 7, "end": 17, "id": 2, "ws": true}, {"text": "n\u00e4her", "start": 18, "end": 23, "id": 3, "ws": true}, {"text": "Rehbinder", "start": 24, "end": 33, "id": 4, "ws": false}, {"text": ",", "start": 33, "end": 34, "id": 5, "ws": true}, {"text": "Erkenntnistheoretisches", "start": 35, "end": 58, "id": 6, "ws": true}, {"text": "zum", "start": 59, "end": 62, "id": 7, "ws": true}, {"text": "Verh\u00e4ltnis", "start": 63, "end": 73, "id": 8, "ws": true}, {"text": "von", "start": 74, "end": 77, "id": 9, "ws": true}, {"text": "Rechtsso", "start": 78, "end": 86, "id": 10, "ws": true}, {"text": "ziologie", "start": 87, "end": 95, "id": 11, "ws": true}, {"text": "und", "start": 96, "end": 99, "id": 12, "ws": true}, {"text": "Rechtsvergleichung", "start": 100, "end": 118, "id": 13, "ws": false}, {"text": ",", "start": 118, "end": 119, "id": 14, "ws": true}, {"text": "in", "start": 120, "end": 122, "id": 15, "ws": false}, {"text": ":", "start": 122, "end": 123, "id": 16, "ws": true}, {"text": "Drobnig", "start": 124, "end": 131, "id": 17, "ws": false}, {"text": "/", "start": 131, "end": 132, "id": 18, "ws": false}, {"text": "Rehbinder", "start": 132, "end": 141, "id": 19, "ws": true}, {"text": "56", "start": 142, "end": 144, "id": 20, "ws": true}, {"text": "ff", "start": 145, "end": 147, "id": 21, "ws": false}, {"text": ".", "start": 147, "end": 148, "id": 22, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 23, "label": "signal", "token_start": 1, "token_end": 3}, {"start": 24, "end": 34, "label": "author", "token_start": 4, "token_end": 5}, {"start": 35, "end": 119, "label": "title", "token_start": 6, "token_end": 14}, {"start": 120, "end": 141, "label": "editor", "token_start": 15, "token_end": 19}, {"start": 142, "end": 148, "label": "pages", "token_start": 20, "token_end": 22}]} -{"text": "25 N\u00e4her dazu Merryman (oben N. 18) 101 ff.", "tokens": [{"text": "25", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "N\u00e4her", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "dazu", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "Merryman", "start": 14, "end": 22, "id": 3, "ws": true}, {"text": "(", "start": 23, "end": 24, "id": 4, "ws": false}, {"text": "oben", "start": 24, "end": 28, "id": 5, "ws": true}, {"text": "N.", "start": 29, "end": 31, "id": 6, "ws": true}, {"text": "18", "start": 32, "end": 34, "id": 7, "ws": false}, {"text": ")", "start": 34, "end": 35, "id": 8, "ws": true}, {"text": "101", "start": 36, "end": 39, "id": 9, "ws": true}, {"text": "ff", "start": 40, "end": 42, "id": 10, "ws": false}, {"text": ".", "start": 42, "end": 43, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 31, "label": "author", "token_start": 3, "token_end": 6}, {"start": 32, "end": 35, "label": "volume", "token_start": 7, "token_end": 8}, {"start": 36, "end": 43, "label": "pages", "token_start": 9, "token_end": 11}]} -{"text": "26 Heidrich, Sozialwissenschaftliche Aspekte der Rechtsvergleichung, in: Drobnig/Rehbinder 178 (186 ff.).", "tokens": [{"text": "26", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Heidrich", "start": 3, "end": 11, "id": 1, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 2, "ws": true}, {"text": "Sozialwissenschaftliche", "start": 13, "end": 36, "id": 3, "ws": true}, {"text": "Aspekte", "start": 37, "end": 44, "id": 4, "ws": true}, {"text": "der", "start": 45, "end": 48, "id": 5, "ws": true}, {"text": "Rechtsvergleichung", "start": 49, "end": 67, "id": 6, "ws": false}, {"text": ",", "start": 67, "end": 68, "id": 7, "ws": true}, {"text": "in", "start": 69, "end": 71, "id": 8, "ws": false}, {"text": ":", "start": 71, "end": 72, "id": 9, "ws": true}, {"text": "Drobnig", "start": 73, "end": 80, "id": 10, "ws": false}, {"text": "/", "start": 80, "end": 81, "id": 11, "ws": false}, {"text": "Rehbinder", "start": 81, "end": 90, "id": 12, "ws": true}, {"text": "178", "start": 91, "end": 94, "id": 13, "ws": true}, {"text": "(", "start": 95, "end": 96, "id": 14, "ws": false}, {"text": "186", "start": 96, "end": 99, "id": 15, "ws": true}, {"text": "ff", "start": 100, "end": 102, "id": 16, "ws": false}, {"text": ".", "start": 102, "end": 103, "id": 17, "ws": false}, {"text": ")", "start": 103, "end": 104, "id": 18, "ws": false}, {"text": ".", "start": 104, "end": 105, "id": 19, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "author", "token_start": 1, "token_end": 2}, {"start": 13, "end": 68, "label": "title", "token_start": 3, "token_end": 7}, {"start": 69, "end": 90, "label": "editor", "token_start": 8, "token_end": 12}, {"start": 91, "end": 105, "label": "pages", "token_start": 13, "token_end": 19}]} -{"text": "27 Siehe etwa die Erkl\u00e4rung, warum das \u201eAccess to justice movement\" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von Blankenburg, Patterns of Legal Culture as a Variable for the Chances of Legal Innovation, in: Blankenburg (Hrsg.), innovations in the Legal Services (Cambridge, Mass.; Meisenheim 1980).", "tokens": [{"text": "27", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "etwa", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "die", "start": 14, "end": 17, "id": 3, "ws": true}, {"text": "Erkl\u00e4rung", "start": 18, "end": 27, "id": 4, "ws": false}, {"text": ",", "start": 27, "end": 28, "id": 5, "ws": true}, {"text": "warum", "start": 29, "end": 34, "id": 6, "ws": true}, {"text": "das", "start": 35, "end": 38, "id": 7, "ws": true}, {"text": "\u201e", "start": 39, "end": 40, "id": 8, "ws": false}, {"text": "Access", "start": 40, "end": 46, "id": 9, "ws": true}, {"text": "to", "start": 47, "end": 49, "id": 10, "ws": true}, {"text": "justice", "start": 50, "end": 57, "id": 11, "ws": true}, {"text": "movement", "start": 58, "end": 66, "id": 12, "ws": false}, {"text": "\"", "start": 66, "end": 67, "id": 13, "ws": true}, {"text": "in", "start": 68, "end": 70, "id": 14, "ws": true}, {"text": "der", "start": 71, "end": 74, "id": 15, "ws": true}, {"text": "Bundesrepublik", "start": 75, "end": 89, "id": 16, "ws": true}, {"text": "vergleichsweise", "start": 90, "end": 105, "id": 17, "ws": true}, {"text": "wenig", "start": 106, "end": 111, "id": 18, "ws": true}, {"text": "Widerhall", "start": 112, "end": 121, "id": 19, "ws": true}, {"text": "gefunden", "start": 122, "end": 130, "id": 20, "ws": true}, {"text": "hat", "start": 131, "end": 134, "id": 21, "ws": true}, {"text": "von", "start": 135, "end": 138, "id": 22, "ws": true}, {"text": "Blankenburg", "start": 139, "end": 150, "id": 23, "ws": false}, {"text": ",", "start": 150, "end": 151, "id": 24, "ws": true}, {"text": "Patterns", "start": 152, "end": 160, "id": 25, "ws": true}, {"text": "of", "start": 161, "end": 163, "id": 26, "ws": true}, {"text": "Legal", "start": 164, "end": 169, "id": 27, "ws": true}, {"text": "Culture", "start": 170, "end": 177, "id": 28, "ws": true}, {"text": "as", "start": 178, "end": 180, "id": 29, "ws": true}, {"text": "a", "start": 181, "end": 182, "id": 30, "ws": true}, {"text": "Variable", "start": 183, "end": 191, "id": 31, "ws": true}, {"text": "for", "start": 192, "end": 195, "id": 32, "ws": true}, {"text": "the", "start": 196, "end": 199, "id": 33, "ws": true}, {"text": "Chances", "start": 200, "end": 207, "id": 34, "ws": true}, {"text": "of", "start": 208, "end": 210, "id": 35, "ws": true}, {"text": "Legal", "start": 211, "end": 216, "id": 36, "ws": true}, {"text": "Innovation", "start": 217, "end": 227, "id": 37, "ws": false}, {"text": ",", "start": 227, "end": 228, "id": 38, "ws": true}, {"text": "in", "start": 229, "end": 231, "id": 39, "ws": false}, {"text": ":", "start": 231, "end": 232, "id": 40, "ws": true}, {"text": "Blankenburg", "start": 233, "end": 244, "id": 41, "ws": true}, {"text": "(", "start": 245, "end": 246, "id": 42, "ws": false}, {"text": "Hrsg.", "start": 246, "end": 251, "id": 43, "ws": false}, {"text": ")", "start": 251, "end": 252, "id": 44, "ws": false}, {"text": ",", "start": 252, "end": 253, "id": 45, "ws": true}, {"text": "innovations", "start": 254, "end": 265, "id": 46, "ws": true}, {"text": "in", "start": 266, "end": 268, "id": 47, "ws": true}, {"text": "the", "start": 269, "end": 272, "id": 48, "ws": true}, {"text": "Legal", "start": 273, "end": 278, "id": 49, "ws": true}, {"text": "Services", "start": 279, "end": 287, "id": 50, "ws": true}, {"text": "(", "start": 288, "end": 289, "id": 51, "ws": false}, {"text": "Cambridge", "start": 289, "end": 298, "id": 52, "ws": false}, {"text": ",", "start": 298, "end": 299, "id": 53, "ws": true}, {"text": "Mass", "start": 300, "end": 304, "id": 54, "ws": false}, {"text": ".", "start": 304, "end": 305, "id": 55, "ws": false}, {"text": ";", "start": 305, "end": 306, "id": 56, "ws": true}, {"text": "Meisenheim", "start": 307, "end": 317, "id": 57, "ws": true}, {"text": "1980", "start": 318, "end": 322, "id": 58, "ws": false}, {"text": ")", "start": 322, "end": 323, "id": 59, "ws": false}, {"text": ".", "start": 323, "end": 324, "id": 60, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 138, "label": "signal", "token_start": 1, "token_end": 22}, {"start": 139, "end": 151, "label": "author", "token_start": 23, "token_end": 24}, {"start": 152, "end": 228, "label": "title", "token_start": 25, "token_end": 38}, {"start": 229, "end": 253, "label": "editor", "token_start": 39, "token_end": 45}, {"start": 254, "end": 287, "label": "container-title", "token_start": 46, "token_end": 50}, {"start": 288, "end": 317, "label": "location", "token_start": 51, "token_end": 57}, {"start": 318, "end": 324, "label": "date", "token_start": 58, "token_end": 60}]} -{"text": "28 So Rehbinder (oben N. 24) 60.", "tokens": [{"text": "28", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "So", "start": 3, "end": 5, "id": 1, "ws": true}, {"text": "Rehbinder", "start": 6, "end": 15, "id": 2, "ws": true}, {"text": "(", "start": 16, "end": 17, "id": 3, "ws": false}, {"text": "oben", "start": 17, "end": 21, "id": 4, "ws": true}, {"text": "N.", "start": 22, "end": 24, "id": 5, "ws": true}, {"text": "24", "start": 25, "end": 27, "id": 6, "ws": false}, {"text": ")", "start": 27, "end": 28, "id": 7, "ws": true}, {"text": "60.", "start": 29, "end": 32, "id": 8, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 5, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 6, "end": 15, "label": "author", "token_start": 2, "token_end": 2}, {"start": 16, "end": 28, "label": "backref", "token_start": 3, "token_end": 7}, {"start": 29, "end": 32, "label": "pages", "token_start": 8, "token_end": 8}]} -{"text": "29 Dazu R. Abel, Comparative Law and Social Theory, Am. J. Comp. L. 26 (1978) 219 (224 ff.).", "tokens": [{"text": "29", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "R.", "start": 8, "end": 10, "id": 2, "ws": true}, {"text": "Abel", "start": 11, "end": 15, "id": 3, "ws": false}, {"text": ",", "start": 15, "end": 16, "id": 4, "ws": true}, {"text": "Comparative", "start": 17, "end": 28, "id": 5, "ws": true}, {"text": "Law", "start": 29, "end": 32, "id": 6, "ws": true}, {"text": "and", "start": 33, "end": 36, "id": 7, "ws": true}, {"text": "Social", "start": 37, "end": 43, "id": 8, "ws": true}, {"text": "Theory", "start": 44, "end": 50, "id": 9, "ws": false}, {"text": ",", "start": 50, "end": 51, "id": 10, "ws": true}, {"text": "Am", "start": 52, "end": 54, "id": 11, "ws": false}, {"text": ".", "start": 54, "end": 55, "id": 12, "ws": true}, {"text": "J.", "start": 56, "end": 58, "id": 13, "ws": true}, {"text": "Comp", "start": 59, "end": 63, "id": 14, "ws": false}, {"text": ".", "start": 63, "end": 64, "id": 15, "ws": true}, {"text": "L.", "start": 65, "end": 67, "id": 16, "ws": true}, {"text": "26", "start": 68, "end": 70, "id": 17, "ws": true}, {"text": "(", "start": 71, "end": 72, "id": 18, "ws": false}, {"text": "1978", "start": 72, "end": 76, "id": 19, "ws": false}, {"text": ")", "start": 76, "end": 77, "id": 20, "ws": true}, {"text": "219", "start": 78, "end": 81, "id": 21, "ws": true}, {"text": "(", "start": 82, "end": 83, "id": 22, "ws": false}, {"text": "224", "start": 83, "end": 86, "id": 23, "ws": true}, {"text": "ff", "start": 87, "end": 89, "id": 24, "ws": false}, {"text": ".", "start": 89, "end": 90, "id": 25, "ws": false}, {"text": ")", "start": 90, "end": 91, "id": 26, "ws": false}, {"text": ".", "start": 91, "end": 92, "id": 27, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 8, "end": 16, "label": "author", "token_start": 2, "token_end": 4}, {"start": 17, "end": 51, "label": "title", "token_start": 5, "token_end": 10}, {"start": 52, "end": 67, "label": "collection-title", "token_start": 11, "token_end": 16}, {"start": 68, "end": 70, "label": "volume", "token_start": 17, "token_end": 17}, {"start": 71, "end": 77, "label": "date", "token_start": 18, "token_end": 20}, {"start": 78, "end": 92, "label": "pages", "token_start": 21, "token_end": 27}]} -{"text": "30 Dazu etwa Smelser 175 f. \u2014 F\u00fcr die Kriminologie siehe Kaiser (oben N. 22) 89 sowie Blazicek/Janeksela, Some Comments on Comparative Methodologies in Criminal Justice, Int. J. Crim. Pen 6 (1978) 233 (240). Als besonders gef\u00e4hrlich hat sich die unkritische \u00dcbertra gung solcher Konzepte auf L\u00e4nder der Dritten Welt erwiesen. So kam man etwa zu dem Er gebnis: \u201eThe U. S. law and development movement was largely a parochial expression of the American legal style\u201c, Merryman, Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement, Am. J. Comp. L. 25 (1977) 457 (479).", "tokens": [{"text": "30", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "etwa", "start": 8, "end": 12, "id": 2, "ws": true}, {"text": "Smelser", "start": 13, "end": 20, "id": 3, "ws": true}, {"text": "175", "start": 21, "end": 24, "id": 4, "ws": true}, {"text": "f.", "start": 25, "end": 27, "id": 5, "ws": true}, {"text": "\u2014", "start": 28, "end": 29, "id": 6, "ws": true}, {"text": "F\u00fcr", "start": 30, "end": 33, "id": 7, "ws": true}, {"text": "die", "start": 34, "end": 37, "id": 8, "ws": true}, {"text": "Kriminologie", "start": 38, "end": 50, "id": 9, "ws": true}, {"text": "siehe", "start": 51, "end": 56, "id": 10, "ws": true}, {"text": "Kaiser", "start": 57, "end": 63, "id": 11, "ws": true}, {"text": "(", "start": 64, "end": 65, "id": 12, "ws": false}, {"text": "oben", "start": 65, "end": 69, "id": 13, "ws": true}, {"text": "N.", "start": 70, "end": 72, "id": 14, "ws": true}, {"text": "22", "start": 73, "end": 75, "id": 15, "ws": false}, {"text": ")", "start": 75, "end": 76, "id": 16, "ws": true}, {"text": "89", "start": 77, "end": 79, "id": 17, "ws": true}, {"text": "sowie", "start": 80, "end": 85, "id": 18, "ws": true}, {"text": "Blazicek", "start": 86, "end": 94, "id": 19, "ws": false}, {"text": "/", "start": 94, "end": 95, "id": 20, "ws": false}, {"text": "Janeksela", "start": 95, "end": 104, "id": 21, "ws": false}, {"text": ",", "start": 104, "end": 105, "id": 22, "ws": true}, {"text": "Some", "start": 106, "end": 110, "id": 23, "ws": true}, {"text": "Comments", "start": 111, "end": 119, "id": 24, "ws": true}, {"text": "on", "start": 120, "end": 122, "id": 25, "ws": true}, {"text": "Comparative", "start": 123, "end": 134, "id": 26, "ws": true}, {"text": "Methodologies", "start": 135, "end": 148, "id": 27, "ws": true}, {"text": "in", "start": 149, "end": 151, "id": 28, "ws": true}, {"text": "Criminal", "start": 152, "end": 160, "id": 29, "ws": true}, {"text": "Justice", "start": 161, "end": 168, "id": 30, "ws": false}, {"text": ",", "start": 168, "end": 169, "id": 31, "ws": true}, {"text": "Int", "start": 170, "end": 173, "id": 32, "ws": false}, {"text": ".", "start": 173, "end": 174, "id": 33, "ws": true}, {"text": "J.", "start": 175, "end": 177, "id": 34, "ws": true}, {"text": "Crim", "start": 178, "end": 182, "id": 35, "ws": false}, {"text": ".", "start": 182, "end": 183, "id": 36, "ws": true}, {"text": "Pen", "start": 184, "end": 187, "id": 37, "ws": true}, {"text": "6", "start": 188, "end": 189, "id": 38, "ws": true}, {"text": "(", "start": 190, "end": 191, "id": 39, "ws": false}, {"text": "1978", "start": 191, "end": 195, "id": 40, "ws": false}, {"text": ")", "start": 195, "end": 196, "id": 41, "ws": true}, {"text": "233", "start": 197, "end": 200, "id": 42, "ws": true}, {"text": "(", "start": 201, "end": 202, "id": 43, "ws": false}, {"text": "240", "start": 202, "end": 205, "id": 44, "ws": false}, {"text": ")", "start": 205, "end": 206, "id": 45, "ws": false}, {"text": ".", "start": 206, "end": 207, "id": 46, "ws": true}, {"text": "Als", "start": 208, "end": 211, "id": 47, "ws": true}, {"text": "besonders", "start": 212, "end": 221, "id": 48, "ws": true}, {"text": "gef\u00e4hrlich", "start": 222, "end": 232, "id": 49, "ws": true}, {"text": "hat", "start": 233, "end": 236, "id": 50, "ws": true}, {"text": "sich", "start": 237, "end": 241, "id": 51, "ws": true}, {"text": "die", "start": 242, "end": 245, "id": 52, "ws": true}, {"text": "unkritische", "start": 246, "end": 257, "id": 53, "ws": true}, {"text": "\u00dcbertra", "start": 258, "end": 265, "id": 54, "ws": true}, {"text": "gung", "start": 266, "end": 270, "id": 55, "ws": true}, {"text": "solcher", "start": 271, "end": 278, "id": 56, "ws": true}, {"text": "Konzepte", "start": 279, "end": 287, "id": 57, "ws": true}, {"text": "auf", "start": 288, "end": 291, "id": 58, "ws": true}, {"text": "L\u00e4nder", "start": 292, "end": 298, "id": 59, "ws": true}, {"text": "der", "start": 299, "end": 302, "id": 60, "ws": true}, {"text": "Dritten", "start": 303, "end": 310, "id": 61, "ws": true}, {"text": "Welt", "start": 311, "end": 315, "id": 62, "ws": true}, {"text": "erwiesen", "start": 316, "end": 324, "id": 63, "ws": false}, {"text": ".", "start": 324, "end": 325, "id": 64, "ws": true}, {"text": "So", "start": 326, "end": 328, "id": 65, "ws": true}, {"text": "kam", "start": 329, "end": 332, "id": 66, "ws": true}, {"text": "man", "start": 333, "end": 336, "id": 67, "ws": true}, {"text": "etwa", "start": 337, "end": 341, "id": 68, "ws": true}, {"text": "zu", "start": 342, "end": 344, "id": 69, "ws": true}, {"text": "dem", "start": 345, "end": 348, "id": 70, "ws": true}, {"text": "Er", "start": 349, "end": 351, "id": 71, "ws": true}, {"text": "gebnis", "start": 352, "end": 358, "id": 72, "ws": false}, {"text": ":", "start": 358, "end": 359, "id": 73, "ws": true}, {"text": "\u201e", "start": 360, "end": 361, "id": 74, "ws": false}, {"text": "The", "start": 361, "end": 364, "id": 75, "ws": true}, {"text": "U.", "start": 365, "end": 367, "id": 76, "ws": true}, {"text": "S.", "start": 368, "end": 370, "id": 77, "ws": true}, {"text": "law", "start": 371, "end": 374, "id": 78, "ws": true}, {"text": "and", "start": 375, "end": 378, "id": 79, "ws": true}, {"text": "development", "start": 379, "end": 390, "id": 80, "ws": true}, {"text": "movement", "start": 391, "end": 399, "id": 81, "ws": true}, {"text": "was", "start": 400, "end": 403, "id": 82, "ws": true}, {"text": "largely", "start": 404, "end": 411, "id": 83, "ws": true}, {"text": "a", "start": 412, "end": 413, "id": 84, "ws": true}, {"text": "parochial", "start": 414, "end": 423, "id": 85, "ws": true}, {"text": "expression", "start": 424, "end": 434, "id": 86, "ws": true}, {"text": "of", "start": 435, "end": 437, "id": 87, "ws": true}, {"text": "the", "start": 438, "end": 441, "id": 88, "ws": true}, {"text": "American", "start": 442, "end": 450, "id": 89, "ws": true}, {"text": "legal", "start": 451, "end": 456, "id": 90, "ws": true}, {"text": "style", "start": 457, "end": 462, "id": 91, "ws": false}, {"text": "\u201c", "start": 462, "end": 463, "id": 92, "ws": false}, {"text": ",", "start": 463, "end": 464, "id": 93, "ws": true}, {"text": "Merryman", "start": 465, "end": 473, "id": 94, "ws": false}, {"text": ",", "start": 473, "end": 474, "id": 95, "ws": true}, {"text": "Comparative", "start": 475, "end": 486, "id": 96, "ws": true}, {"text": "Law", "start": 487, "end": 490, "id": 97, "ws": true}, {"text": "and", "start": 491, "end": 494, "id": 98, "ws": true}, {"text": "Social", "start": 495, "end": 501, "id": 99, "ws": true}, {"text": "Change", "start": 502, "end": 508, "id": 100, "ws": true}, {"text": "-", "start": 509, "end": 510, "id": 101, "ws": true}, {"text": "On", "start": 511, "end": 513, "id": 102, "ws": true}, {"text": "the", "start": 514, "end": 517, "id": 103, "ws": true}, {"text": "Origins", "start": 518, "end": 525, "id": 104, "ws": false}, {"text": ",", "start": 525, "end": 526, "id": 105, "ws": true}, {"text": "Style", "start": 527, "end": 532, "id": 106, "ws": false}, {"text": ",", "start": 532, "end": 533, "id": 107, "ws": true}, {"text": "Decline", "start": 534, "end": 541, "id": 108, "ws": true}, {"text": "and", "start": 542, "end": 545, "id": 109, "ws": true}, {"text": "Revival", "start": 546, "end": 553, "id": 110, "ws": true}, {"text": "of", "start": 554, "end": 556, "id": 111, "ws": true}, {"text": "the", "start": 557, "end": 560, "id": 112, "ws": true}, {"text": "Law", "start": 561, "end": 564, "id": 113, "ws": true}, {"text": "and", "start": 565, "end": 568, "id": 114, "ws": true}, {"text": "Development", "start": 569, "end": 580, "id": 115, "ws": true}, {"text": "Movement", "start": 581, "end": 589, "id": 116, "ws": false}, {"text": ",", "start": 589, "end": 590, "id": 117, "ws": true}, {"text": "Am", "start": 591, "end": 593, "id": 118, "ws": false}, {"text": ".", "start": 593, "end": 594, "id": 119, "ws": true}, {"text": "J.", "start": 595, "end": 597, "id": 120, "ws": true}, {"text": "Comp", "start": 598, "end": 602, "id": 121, "ws": false}, {"text": ".", "start": 602, "end": 603, "id": 122, "ws": true}, {"text": "L.", "start": 604, "end": 606, "id": 123, "ws": true}, {"text": "25", "start": 607, "end": 609, "id": 124, "ws": true}, {"text": "(", "start": 610, "end": 611, "id": 125, "ws": false}, {"text": "1977", "start": 611, "end": 615, "id": 126, "ws": false}, {"text": ")", "start": 615, "end": 616, "id": 127, "ws": true}, {"text": "457", "start": 617, "end": 620, "id": 128, "ws": true}, {"text": "(", "start": 621, "end": 622, "id": 129, "ws": false}, {"text": "479", "start": 622, "end": 625, "id": 130, "ws": false}, {"text": ")", "start": 625, "end": 626, "id": 131, "ws": false}, {"text": ".", "start": 626, "end": 627, "id": 132, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 13, "end": 20, "label": "author", "token_start": 3, "token_end": 3}, {"start": 21, "end": 27, "label": "pages", "token_start": 4, "token_end": 5}, {"start": 28, "end": 56, "label": "signal", "token_start": 6, "token_end": 10}, {"start": 57, "end": 63, "label": "author", "token_start": 11, "token_end": 11}, {"start": 64, "end": 76, "label": "backref", "token_start": 12, "token_end": 16}, {"start": 77, "end": 79, "label": "pages", "token_start": 17, "token_end": 17}, {"start": 80, "end": 85, "label": "signal", "token_start": 18, "token_end": 18}, {"start": 86, "end": 105, "label": "author", "token_start": 19, "token_end": 22}, {"start": 106, "end": 169, "label": "title", "token_start": 23, "token_end": 31}, {"start": 170, "end": 187, "label": "journal", "token_start": 32, "token_end": 37}, {"start": 188, "end": 189, "label": "volume", "token_start": 38, "token_end": 38}, {"start": 190, "end": 196, "label": "date", "token_start": 39, "token_end": 41}, {"start": 197, "end": 207, "label": "pages", "token_start": 42, "token_end": 46}, {"start": 208, "end": 464, "label": "note", "token_start": 47, "token_end": 93}, {"start": 465, "end": 474, "label": "author", "token_start": 94, "token_end": 95}, {"start": 475, "end": 590, "label": "title", "token_start": 96, "token_end": 117}, {"start": 591, "end": 606, "label": "journal", "token_start": 118, "token_end": 123}, {"start": 607, "end": 609, "label": "volume", "token_start": 124, "token_end": 124}, {"start": 610, "end": 616, "label": "date", "token_start": 125, "token_end": 127}, {"start": 617, "end": 627, "label": "pages", "token_start": 128, "token_end": 132}]} -{"text": "31 Payne (oben N. 13) 15, 25 f.", "tokens": [{"text": "31", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Payne", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "(", "start": 9, "end": 10, "id": 2, "ws": false}, {"text": "oben", "start": 10, "end": 14, "id": 3, "ws": true}, {"text": "N.", "start": 15, "end": 17, "id": 4, "ws": true}, {"text": "13", "start": 18, "end": 20, "id": 5, "ws": false}, {"text": ")", "start": 20, "end": 21, "id": 6, "ws": true}, {"text": "15", "start": 22, "end": 24, "id": 7, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 8, "ws": true}, {"text": "25", "start": 26, "end": 28, "id": 9, "ws": true}, {"text": "f.", "start": 29, "end": 31, "id": 10, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "author", "token_start": 1, "token_end": 1}, {"start": 9, "end": 21, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 22, "end": 31, "label": "pages", "token_start": 7, "token_end": 10}]} -{"text": "32 D\u00e4ubler, Systemvergleich im Arbeitsrecht? Vor\u00fcberlegungen zu einigen Methodenfragen, De mokratie und Recht 1979 /1 S. 23 (31 ff.). - Zum Vergleich mit den sozialistischen L\u00e4ndern siehe auch Zweigert/Puttfarken, Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen, in: Zweigert/Puttfarken (Hrsg.), Rechtsvergleichung (1978) 395 (402 ff.).", "tokens": [{"text": "32", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "D\u00e4ubler", "start": 3, "end": 10, "id": 1, "ws": false}, {"text": ",", "start": 10, "end": 11, "id": 2, "ws": true}, {"text": "Systemvergleich", "start": 12, "end": 27, "id": 3, "ws": true}, {"text": "im", "start": 28, "end": 30, "id": 4, "ws": true}, {"text": "Arbeitsrecht", "start": 31, "end": 43, "id": 5, "ws": false}, {"text": "?", "start": 43, "end": 44, "id": 6, "ws": true}, {"text": "Vor\u00fcberlegungen", "start": 45, "end": 60, "id": 7, "ws": true}, {"text": "zu", "start": 61, "end": 63, "id": 8, "ws": true}, {"text": "einigen", "start": 64, "end": 71, "id": 9, "ws": true}, {"text": "Methodenfragen", "start": 72, "end": 86, "id": 10, "ws": false}, {"text": ",", "start": 86, "end": 87, "id": 11, "ws": true}, {"text": "De", "start": 88, "end": 90, "id": 12, "ws": true}, {"text": "mokratie", "start": 91, "end": 99, "id": 13, "ws": true}, {"text": "und", "start": 100, "end": 103, "id": 14, "ws": true}, {"text": "Recht", "start": 104, "end": 109, "id": 15, "ws": true}, {"text": "1979", "start": 110, "end": 114, "id": 16, "ws": true}, {"text": "/1", "start": 115, "end": 117, "id": 17, "ws": true}, {"text": "S.", "start": 118, "end": 120, "id": 18, "ws": true}, {"text": "23", "start": 121, "end": 123, "id": 19, "ws": true}, {"text": "(", "start": 124, "end": 125, "id": 20, "ws": false}, {"text": "31", "start": 125, "end": 127, "id": 21, "ws": true}, {"text": "ff", "start": 128, "end": 130, "id": 22, "ws": false}, {"text": ".", "start": 130, "end": 131, "id": 23, "ws": false}, {"text": ")", "start": 131, "end": 132, "id": 24, "ws": false}, {"text": ".", "start": 132, "end": 133, "id": 25, "ws": true}, {"text": "-", "start": 134, "end": 135, "id": 26, "ws": true}, {"text": "Zum", "start": 136, "end": 139, "id": 27, "ws": true}, {"text": "Vergleich", "start": 140, "end": 149, "id": 28, "ws": true}, {"text": "mit", "start": 150, "end": 153, "id": 29, "ws": true}, {"text": "den", "start": 154, "end": 157, "id": 30, "ws": true}, {"text": "sozialistischen", "start": 158, "end": 173, "id": 31, "ws": true}, {"text": "L\u00e4ndern", "start": 174, "end": 181, "id": 32, "ws": true}, {"text": "siehe", "start": 182, "end": 187, "id": 33, "ws": true}, {"text": "auch", "start": 188, "end": 192, "id": 34, "ws": true}, {"text": "Zweigert", "start": 193, "end": 201, "id": 35, "ws": false}, {"text": "/", "start": 201, "end": 202, "id": 36, "ws": false}, {"text": "Puttfarken", "start": 202, "end": 212, "id": 37, "ws": false}, {"text": ",", "start": 212, "end": 213, "id": 38, "ws": true}, {"text": "Zur", "start": 214, "end": 217, "id": 39, "ws": true}, {"text": "Vergleichbarkeit", "start": 218, "end": 234, "id": 40, "ws": true}, {"text": "analoger", "start": 235, "end": 243, "id": 41, "ws": true}, {"text": "Rechtsinstitute", "start": 244, "end": 259, "id": 42, "ws": true}, {"text": "in", "start": 260, "end": 262, "id": 43, "ws": true}, {"text": "verschiede", "start": 263, "end": 273, "id": 44, "ws": true}, {"text": "nen", "start": 274, "end": 277, "id": 45, "ws": true}, {"text": "Gesellschaftsordnungen", "start": 278, "end": 300, "id": 46, "ws": false}, {"text": ",", "start": 300, "end": 301, "id": 47, "ws": true}, {"text": "in", "start": 302, "end": 304, "id": 48, "ws": false}, {"text": ":", "start": 304, "end": 305, "id": 49, "ws": true}, {"text": "Zweigert", "start": 306, "end": 314, "id": 50, "ws": false}, {"text": "/", "start": 314, "end": 315, "id": 51, "ws": false}, {"text": "Puttfarken", "start": 315, "end": 325, "id": 52, "ws": true}, {"text": "(", "start": 326, "end": 327, "id": 53, "ws": false}, {"text": "Hrsg.", "start": 327, "end": 332, "id": 54, "ws": false}, {"text": ")", "start": 332, "end": 333, "id": 55, "ws": false}, {"text": ",", "start": 333, "end": 334, "id": 56, "ws": true}, {"text": "Rechtsvergleichung", "start": 335, "end": 353, "id": 57, "ws": true}, {"text": "(", "start": 354, "end": 355, "id": 58, "ws": false}, {"text": "1978", "start": 355, "end": 359, "id": 59, "ws": false}, {"text": ")", "start": 359, "end": 360, "id": 60, "ws": true}, {"text": "395", "start": 361, "end": 364, "id": 61, "ws": true}, {"text": "(", "start": 365, "end": 366, "id": 62, "ws": false}, {"text": "402", "start": 366, "end": 369, "id": 63, "ws": true}, {"text": "ff", "start": 370, "end": 372, "id": 64, "ws": false}, {"text": ".", "start": 372, "end": 373, "id": 65, "ws": false}, {"text": ")", "start": 373, "end": 374, "id": 66, "ws": false}, {"text": ".", "start": 374, "end": 375, "id": 67, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 11, "label": "author", "token_start": 1, "token_end": 2}, {"start": 12, "end": 87, "label": "title", "token_start": 3, "token_end": 11}, {"start": 88, "end": 109, "label": "journal", "token_start": 12, "token_end": 15}, {"start": 110, "end": 114, "label": "date", "token_start": 16, "token_end": 16}, {"start": 115, "end": 117, "label": "volume", "token_start": 17, "token_end": 17}, {"start": 118, "end": 135, "label": "pages", "token_start": 18, "token_end": 26}, {"start": 136, "end": 192, "label": "signal", "token_start": 27, "token_end": 34}, {"start": 193, "end": 213, "label": "author", "token_start": 35, "token_end": 38}, {"start": 214, "end": 301, "label": "title", "token_start": 39, "token_end": 47}, {"start": 302, "end": 334, "label": "editor", "token_start": 48, "token_end": 56}, {"start": 335, "end": 353, "label": "container-title", "token_start": 57, "token_end": 57}, {"start": 354, "end": 360, "label": "date", "token_start": 58, "token_end": 60}, {"start": 361, "end": 375, "label": "pages", "token_start": 61, "token_end": 67}]} -{"text": "33 Blankenburg, Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration ( HM discussion papers 1978 \u201423) 5 ff.", "tokens": [{"text": "33", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Blankenburg", "start": 3, "end": 14, "id": 1, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 2, "ws": true}, {"text": "Task", "start": 16, "end": 20, "id": 3, "ws": true}, {"text": "Contingencies", "start": 21, "end": 34, "id": 4, "ws": true}, {"text": "and", "start": 35, "end": 38, "id": 5, "ws": true}, {"text": "National", "start": 39, "end": 47, "id": 6, "ws": true}, {"text": "Administrative", "start": 48, "end": 62, "id": 7, "ws": true}, {"text": "Culture", "start": 63, "end": 70, "id": 8, "ws": true}, {"text": "as", "start": 71, "end": 73, "id": 9, "ws": true}, {"text": "Determinants", "start": 74, "end": 86, "id": 10, "ws": true}, {"text": "for", "start": 87, "end": 90, "id": 11, "ws": true}, {"text": "Labour", "start": 91, "end": 97, "id": 12, "ws": true}, {"text": "Market", "start": 98, "end": 104, "id": 13, "ws": true}, {"text": "Administration", "start": 105, "end": 119, "id": 14, "ws": true}, {"text": "(", "start": 120, "end": 121, "id": 15, "ws": true}, {"text": "HM", "start": 122, "end": 124, "id": 16, "ws": true}, {"text": "discussion", "start": 125, "end": 135, "id": 17, "ws": true}, {"text": "papers", "start": 136, "end": 142, "id": 18, "ws": true}, {"text": "1978", "start": 143, "end": 147, "id": 19, "ws": true}, {"text": "\u2014", "start": 148, "end": 149, "id": 20, "ws": false}, {"text": "23", "start": 149, "end": 151, "id": 21, "ws": false}, {"text": ")", "start": 151, "end": 152, "id": 22, "ws": true}, {"text": "5", "start": 153, "end": 154, "id": 23, "ws": true}, {"text": "ff", "start": 155, "end": 157, "id": 24, "ws": false}, {"text": ".", "start": 157, "end": 158, "id": 25, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 15, "label": "author", "token_start": 1, "token_end": 2}, {"start": 16, "end": 121, "label": "title", "token_start": 3, "token_end": 15}, {"start": 122, "end": 142, "label": "journal", "token_start": 16, "token_end": 18}, {"start": 143, "end": 147, "label": "date", "token_start": 19, "token_end": 19}, {"start": 148, "end": 152, "label": "volume", "token_start": 20, "token_end": 22}, {"start": 153, "end": 158, "label": "pages", "token_start": 23, "token_end": 25}]} -{"text": "34 Zweigert/K\u00f6tz I 30 f.", "tokens": [{"text": "34", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Zweigert", "start": 3, "end": 11, "id": 1, "ws": false}, {"text": "/", "start": 11, "end": 12, "id": 2, "ws": false}, {"text": "K\u00f6tz", "start": 12, "end": 16, "id": 3, "ws": true}, {"text": "I", "start": 17, "end": 18, "id": 4, "ws": true}, {"text": "30", "start": 19, "end": 21, "id": 5, "ws": true}, {"text": "f.", "start": 22, "end": 24, "id": 6, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 16, "label": "author", "token_start": 1, "token_end": 3}, {"start": 17, "end": 18, "label": "volume", "token_start": 4, "token_end": 4}, {"start": 19, "end": 24, "label": "pages", "token_start": 5, "token_end": 6}]} -{"text": "35 Dazu etwa Armer, Methodology Problems and Possibilities in Comparative Research, in: Armer/Grimsbaw 49 (50 ff.); Smelser 182 f.; Trommsdorf, M\u00f6glichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie, KZfSS 30 (1978) 361 (364 ff.).", "tokens": [{"text": "35", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "etwa", "start": 8, "end": 12, "id": 2, "ws": true}, {"text": "Armer", "start": 13, "end": 18, "id": 3, "ws": false}, {"text": ",", "start": 18, "end": 19, "id": 4, "ws": true}, {"text": "Methodology", "start": 20, "end": 31, "id": 5, "ws": true}, {"text": "Problems", "start": 32, "end": 40, "id": 6, "ws": true}, {"text": "and", "start": 41, "end": 44, "id": 7, "ws": true}, {"text": "Possibilities", "start": 45, "end": 58, "id": 8, "ws": true}, {"text": "in", "start": 59, "end": 61, "id": 9, "ws": true}, {"text": "Comparative", "start": 62, "end": 73, "id": 10, "ws": true}, {"text": "Research", "start": 74, "end": 82, "id": 11, "ws": false}, {"text": ",", "start": 82, "end": 83, "id": 12, "ws": true}, {"text": "in", "start": 84, "end": 86, "id": 13, "ws": false}, {"text": ":", "start": 86, "end": 87, "id": 14, "ws": true}, {"text": "Armer", "start": 88, "end": 93, "id": 15, "ws": false}, {"text": "/", "start": 93, "end": 94, "id": 16, "ws": false}, {"text": "Grimsbaw", "start": 94, "end": 102, "id": 17, "ws": true}, {"text": "49", "start": 103, "end": 105, "id": 18, "ws": true}, {"text": "(", "start": 106, "end": 107, "id": 19, "ws": false}, {"text": "50", "start": 107, "end": 109, "id": 20, "ws": true}, {"text": "ff", "start": 110, "end": 112, "id": 21, "ws": false}, {"text": ".", "start": 112, "end": 113, "id": 22, "ws": false}, {"text": ")", "start": 113, "end": 114, "id": 23, "ws": false}, {"text": ";", "start": 114, "end": 115, "id": 24, "ws": true}, {"text": "Smelser", "start": 116, "end": 123, "id": 25, "ws": true}, {"text": "182", "start": 124, "end": 127, "id": 26, "ws": true}, {"text": "f.", "start": 128, "end": 130, "id": 27, "ws": false}, {"text": ";", "start": 130, "end": 131, "id": 28, "ws": true}, {"text": "Trommsdorf", "start": 132, "end": 142, "id": 29, "ws": false}, {"text": ",", "start": 142, "end": 143, "id": 30, "ws": true}, {"text": "M\u00f6glichkeiten", "start": 144, "end": 157, "id": 31, "ws": true}, {"text": "und", "start": 158, "end": 161, "id": 32, "ws": true}, {"text": "Probleme", "start": 162, "end": 170, "id": 33, "ws": true}, {"text": "des", "start": 171, "end": 174, "id": 34, "ws": true}, {"text": "Kulturvergleichs", "start": 175, "end": 191, "id": 35, "ws": true}, {"text": "am", "start": 192, "end": 194, "id": 36, "ws": true}, {"text": "Beispiel", "start": 195, "end": 203, "id": 37, "ws": true}, {"text": "einer", "start": 204, "end": 209, "id": 38, "ws": true}, {"text": "Agressionsstudie", "start": 210, "end": 226, "id": 39, "ws": false}, {"text": ",", "start": 226, "end": 227, "id": 40, "ws": true}, {"text": "KZfSS", "start": 228, "end": 233, "id": 41, "ws": true}, {"text": "30", "start": 234, "end": 236, "id": 42, "ws": true}, {"text": "(", "start": 237, "end": 238, "id": 43, "ws": false}, {"text": "1978", "start": 238, "end": 242, "id": 44, "ws": false}, {"text": ")", "start": 242, "end": 243, "id": 45, "ws": true}, {"text": "361", "start": 244, "end": 247, "id": 46, "ws": true}, {"text": "(", "start": 248, "end": 249, "id": 47, "ws": false}, {"text": "364", "start": 249, "end": 252, "id": 48, "ws": true}, {"text": "ff", "start": 253, "end": 255, "id": 49, "ws": false}, {"text": ".", "start": 255, "end": 256, "id": 50, "ws": false}, {"text": ")", "start": 256, "end": 257, "id": 51, "ws": false}, {"text": ".", "start": 257, "end": 258, "id": 52, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 13, "end": 19, "label": "author", "token_start": 3, "token_end": 4}, {"start": 20, "end": 83, "label": "title", "token_start": 5, "token_end": 12}, {"start": 84, "end": 102, "label": "editor", "token_start": 13, "token_end": 17}, {"start": 103, "end": 115, "label": "pages", "token_start": 18, "token_end": 24}, {"start": 116, "end": 123, "label": "author", "token_start": 25, "token_end": 25}, {"start": 124, "end": 131, "label": "pages", "token_start": 26, "token_end": 28}, {"start": 132, "end": 143, "label": "author", "token_start": 29, "token_end": 30}, {"start": 144, "end": 227, "label": "title", "token_start": 31, "token_end": 40}, {"start": 228, "end": 233, "label": "journal", "token_start": 41, "token_end": 41}, {"start": 234, "end": 236, "label": "volume", "token_start": 42, "token_end": 42}, {"start": 237, "end": 243, "label": "date", "token_start": 43, "token_end": 45}, {"start": 244, "end": 258, "label": "pages", "token_start": 46, "token_end": 52}]} -{"text": "36 Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten f\u00fcrchten, siehe Malewswka/Peyre, Juvenile Deliquency and Development, in: Szalai/Petrella 131 (157 f.).", "tokens": [{"text": "36", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Wenn", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "die", "start": 8, "end": 11, "id": 2, "ws": true}, {"text": "Strenge", "start": 12, "end": 19, "id": 3, "ws": true}, {"text": "elterlicher", "start": 20, "end": 31, "id": 4, "ws": true}, {"text": "Strafen", "start": 32, "end": 39, "id": 5, "ws": true}, {"text": "gemessen", "start": 40, "end": 48, "id": 6, "ws": true}, {"text": "werden", "start": 49, "end": 55, "id": 7, "ws": true}, {"text": "soll", "start": 56, "end": 60, "id": 8, "ws": false}, {"text": ",", "start": 60, "end": 61, "id": 9, "ws": true}, {"text": "kann", "start": 62, "end": 66, "id": 10, "ws": true}, {"text": "man", "start": 67, "end": 70, "id": 11, "ws": true}, {"text": "etwa", "start": 71, "end": 75, "id": 12, "ws": true}, {"text": "darauf", "start": 76, "end": 82, "id": 13, "ws": true}, {"text": "ausweichen", "start": 83, "end": 93, "id": 14, "ws": false}, {"text": ",", "start": 93, "end": 94, "id": 15, "ws": true}, {"text": "welche", "start": 95, "end": 101, "id": 16, "ws": true}, {"text": "Strafe", "start": 102, "end": 108, "id": 17, "ws": true}, {"text": "die", "start": 109, "end": 112, "id": 18, "ws": true}, {"text": "Kinder", "start": 113, "end": 119, "id": 19, "ws": true}, {"text": "am", "start": 120, "end": 122, "id": 20, "ws": true}, {"text": "meisten", "start": 123, "end": 130, "id": 21, "ws": true}, {"text": "f\u00fcrchten", "start": 131, "end": 139, "id": 22, "ws": false}, {"text": ",", "start": 139, "end": 140, "id": 23, "ws": true}, {"text": "siehe", "start": 141, "end": 146, "id": 24, "ws": true}, {"text": "Malewswka", "start": 147, "end": 156, "id": 25, "ws": false}, {"text": "/", "start": 156, "end": 157, "id": 26, "ws": false}, {"text": "Peyre", "start": 157, "end": 162, "id": 27, "ws": false}, {"text": ",", "start": 162, "end": 163, "id": 28, "ws": true}, {"text": "Juvenile", "start": 164, "end": 172, "id": 29, "ws": true}, {"text": "Deliquency", "start": 173, "end": 183, "id": 30, "ws": true}, {"text": "and", "start": 184, "end": 187, "id": 31, "ws": true}, {"text": "Development", "start": 188, "end": 199, "id": 32, "ws": false}, {"text": ",", "start": 199, "end": 200, "id": 33, "ws": true}, {"text": "in", "start": 201, "end": 203, "id": 34, "ws": false}, {"text": ":", "start": 203, "end": 204, "id": 35, "ws": true}, {"text": "Szalai", "start": 205, "end": 211, "id": 36, "ws": false}, {"text": "/", "start": 211, "end": 212, "id": 37, "ws": false}, {"text": "Petrella", "start": 212, "end": 220, "id": 38, "ws": true}, {"text": "131", "start": 221, "end": 224, "id": 39, "ws": true}, {"text": "(", "start": 225, "end": 226, "id": 40, "ws": false}, {"text": "157", "start": 226, "end": 229, "id": 41, "ws": true}, {"text": "f.", "start": 230, "end": 232, "id": 42, "ws": false}, {"text": ")", "start": 232, "end": 233, "id": 43, "ws": false}, {"text": ".", "start": 233, "end": 234, "id": 44, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 140, "label": "note", "token_start": 1, "token_end": 23}, {"start": 141, "end": 146, "label": "signal", "token_start": 24, "token_end": 24}, {"start": 147, "end": 163, "label": "author", "token_start": 25, "token_end": 28}, {"start": 164, "end": 200, "label": "title", "token_start": 29, "token_end": 33}, {"start": 201, "end": 220, "label": "editor", "token_start": 34, "token_end": 38}, {"start": 221, "end": 234, "label": "pages", "token_start": 39, "token_end": 44}]} -{"text": "37 N\u00e4her Scheuch, The Cross-Cultural Use of Sample Surveys \u2014 Problems of Comparability, in: Rokkan 176 (185); Biervert, Der internationale Vergleich, in: van Koolwiyk/Wieken-Mayser (Hrsg.), Techniken empirischer Sozialforschung, Bd. 2 (1975) 113 (124 ff.).", "tokens": [{"text": "37", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "N\u00e4her", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Scheuch", "start": 9, "end": 16, "id": 2, "ws": false}, {"text": ",", "start": 16, "end": 17, "id": 3, "ws": true}, {"text": "The", "start": 18, "end": 21, "id": 4, "ws": true}, {"text": "Cross-Cultural", "start": 22, "end": 36, "id": 5, "ws": true}, {"text": "Use", "start": 37, "end": 40, "id": 6, "ws": true}, {"text": "of", "start": 41, "end": 43, "id": 7, "ws": true}, {"text": "Sample", "start": 44, "end": 50, "id": 8, "ws": true}, {"text": "Surveys", "start": 51, "end": 58, "id": 9, "ws": true}, {"text": "\u2014", "start": 59, "end": 60, "id": 10, "ws": true}, {"text": "Problems", "start": 61, "end": 69, "id": 11, "ws": true}, {"text": "of", "start": 70, "end": 72, "id": 12, "ws": true}, {"text": "Comparability", "start": 73, "end": 86, "id": 13, "ws": false}, {"text": ",", "start": 86, "end": 87, "id": 14, "ws": true}, {"text": "in", "start": 88, "end": 90, "id": 15, "ws": false}, {"text": ":", "start": 90, "end": 91, "id": 16, "ws": true}, {"text": "Rokkan", "start": 92, "end": 98, "id": 17, "ws": true}, {"text": "176", "start": 99, "end": 102, "id": 18, "ws": true}, {"text": "(", "start": 103, "end": 104, "id": 19, "ws": false}, {"text": "185", "start": 104, "end": 107, "id": 20, "ws": false}, {"text": ")", "start": 107, "end": 108, "id": 21, "ws": false}, {"text": ";", "start": 108, "end": 109, "id": 22, "ws": true}, {"text": "Biervert", "start": 110, "end": 118, "id": 23, "ws": false}, {"text": ",", "start": 118, "end": 119, "id": 24, "ws": true}, {"text": "Der", "start": 120, "end": 123, "id": 25, "ws": true}, {"text": "internationale", "start": 124, "end": 138, "id": 26, "ws": true}, {"text": "Vergleich", "start": 139, "end": 148, "id": 27, "ws": false}, {"text": ",", "start": 148, "end": 149, "id": 28, "ws": true}, {"text": "in", "start": 150, "end": 152, "id": 29, "ws": false}, {"text": ":", "start": 152, "end": 153, "id": 30, "ws": true}, {"text": "van", "start": 154, "end": 157, "id": 31, "ws": true}, {"text": "Koolwiyk", "start": 158, "end": 166, "id": 32, "ws": false}, {"text": "/", "start": 166, "end": 167, "id": 33, "ws": false}, {"text": "Wieken-Mayser", "start": 167, "end": 180, "id": 34, "ws": true}, {"text": "(", "start": 181, "end": 182, "id": 35, "ws": false}, {"text": "Hrsg.", "start": 182, "end": 187, "id": 36, "ws": false}, {"text": ")", "start": 187, "end": 188, "id": 37, "ws": false}, {"text": ",", "start": 188, "end": 189, "id": 38, "ws": true}, {"text": "Techniken", "start": 190, "end": 199, "id": 39, "ws": true}, {"text": "empirischer", "start": 200, "end": 211, "id": 40, "ws": true}, {"text": "Sozialforschung", "start": 212, "end": 227, "id": 41, "ws": false}, {"text": ",", "start": 227, "end": 228, "id": 42, "ws": true}, {"text": "Bd.", "start": 229, "end": 232, "id": 43, "ws": true}, {"text": "2", "start": 233, "end": 234, "id": 44, "ws": true}, {"text": "(", "start": 235, "end": 236, "id": 45, "ws": false}, {"text": "1975", "start": 236, "end": 240, "id": 46, "ws": false}, {"text": ")", "start": 240, "end": 241, "id": 47, "ws": true}, {"text": "113", "start": 242, "end": 245, "id": 48, "ws": true}, {"text": "(", "start": 246, "end": 247, "id": 49, "ws": false}, {"text": "124", "start": 247, "end": 250, "id": 50, "ws": true}, {"text": "ff", "start": 251, "end": 253, "id": 51, "ws": false}, {"text": ".", "start": 253, "end": 254, "id": 52, "ws": false}, {"text": ")", "start": 254, "end": 255, "id": 53, "ws": false}, {"text": ".", "start": 255, "end": 256, "id": 54, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 17, "label": "author", "token_start": 2, "token_end": 3}, {"start": 18, "end": 87, "label": "title", "token_start": 4, "token_end": 14}, {"start": 88, "end": 98, "label": "editor", "token_start": 15, "token_end": 17}, {"start": 99, "end": 109, "label": "pages", "token_start": 18, "token_end": 22}, {"start": 110, "end": 119, "label": "author", "token_start": 23, "token_end": 24}, {"start": 120, "end": 149, "label": "title", "token_start": 25, "token_end": 28}, {"start": 150, "end": 189, "label": "editor", "token_start": 29, "token_end": 38}, {"start": 190, "end": 228, "label": "container-title", "token_start": 39, "token_end": 42}, {"start": 229, "end": 234, "label": "volume", "token_start": 43, "token_end": 44}, {"start": 235, "end": 241, "label": "date", "token_start": 45, "token_end": 47}, {"start": 242, "end": 256, "label": "pages", "token_start": 48, "token_end": 54}]} -{"text": "38 Verba, The Uses of Survey Research in the Study of Comparative Politics \u2014 Issues and Strategies, in: Rokkan/Verba/Viet/Almasy 56 (80).", "tokens": [{"text": "38", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Verba", "start": 3, "end": 8, "id": 1, "ws": false}, {"text": ",", "start": 8, "end": 9, "id": 2, "ws": true}, {"text": "The", "start": 10, "end": 13, "id": 3, "ws": true}, {"text": "Uses", "start": 14, "end": 18, "id": 4, "ws": true}, {"text": "of", "start": 19, "end": 21, "id": 5, "ws": true}, {"text": "Survey", "start": 22, "end": 28, "id": 6, "ws": true}, {"text": "Research", "start": 29, "end": 37, "id": 7, "ws": true}, {"text": "in", "start": 38, "end": 40, "id": 8, "ws": true}, {"text": "the", "start": 41, "end": 44, "id": 9, "ws": true}, {"text": "Study", "start": 45, "end": 50, "id": 10, "ws": true}, {"text": "of", "start": 51, "end": 53, "id": 11, "ws": true}, {"text": "Comparative", "start": 54, "end": 65, "id": 12, "ws": true}, {"text": "Politics", "start": 66, "end": 74, "id": 13, "ws": true}, {"text": "\u2014", "start": 75, "end": 76, "id": 14, "ws": true}, {"text": "Issues", "start": 77, "end": 83, "id": 15, "ws": true}, {"text": "and", "start": 84, "end": 87, "id": 16, "ws": true}, {"text": "Strategies", "start": 88, "end": 98, "id": 17, "ws": false}, {"text": ",", "start": 98, "end": 99, "id": 18, "ws": true}, {"text": "in", "start": 100, "end": 102, "id": 19, "ws": false}, {"text": ":", "start": 102, "end": 103, "id": 20, "ws": true}, {"text": "Rokkan", "start": 104, "end": 110, "id": 21, "ws": false}, {"text": "/", "start": 110, "end": 111, "id": 22, "ws": false}, {"text": "Verba", "start": 111, "end": 116, "id": 23, "ws": false}, {"text": "/", "start": 116, "end": 117, "id": 24, "ws": false}, {"text": "Viet", "start": 117, "end": 121, "id": 25, "ws": false}, {"text": "/", "start": 121, "end": 122, "id": 26, "ws": false}, {"text": "Almasy", "start": 122, "end": 128, "id": 27, "ws": true}, {"text": "56", "start": 129, "end": 131, "id": 28, "ws": true}, {"text": "(", "start": 132, "end": 133, "id": 29, "ws": false}, {"text": "80", "start": 133, "end": 135, "id": 30, "ws": false}, {"text": ")", "start": 135, "end": 136, "id": 31, "ws": false}, {"text": ".", "start": 136, "end": 137, "id": 32, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 9, "label": "author", "token_start": 1, "token_end": 2}, {"start": 10, "end": 99, "label": "title", "token_start": 3, "token_end": 18}, {"start": 100, "end": 128, "label": "editor", "token_start": 19, "token_end": 27}, {"start": 129, "end": 137, "label": "pages", "token_start": 28, "token_end": 32}]} -{"text": "39 Gessner, Soziologische \u00dcberlegungen zu einer Theorie der angewandten Rechtsvergleichung, in: Drobnig/Rehbinder 123 (134 ff.).", "tokens": [{"text": "39", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Gessner", "start": 3, "end": 10, "id": 1, "ws": false}, {"text": ",", "start": 10, "end": 11, "id": 2, "ws": true}, {"text": "Soziologische", "start": 12, "end": 25, "id": 3, "ws": true}, {"text": "\u00dcberlegungen", "start": 26, "end": 38, "id": 4, "ws": true}, {"text": "zu", "start": 39, "end": 41, "id": 5, "ws": true}, {"text": "einer", "start": 42, "end": 47, "id": 6, "ws": true}, {"text": "Theorie", "start": 48, "end": 55, "id": 7, "ws": true}, {"text": "der", "start": 56, "end": 59, "id": 8, "ws": true}, {"text": "angewandten", "start": 60, "end": 71, "id": 9, "ws": true}, {"text": "Rechtsvergleichung", "start": 72, "end": 90, "id": 10, "ws": false}, {"text": ",", "start": 90, "end": 91, "id": 11, "ws": true}, {"text": "in", "start": 92, "end": 94, "id": 12, "ws": false}, {"text": ":", "start": 94, "end": 95, "id": 13, "ws": true}, {"text": "Drobnig", "start": 96, "end": 103, "id": 14, "ws": false}, {"text": "/", "start": 103, "end": 104, "id": 15, "ws": false}, {"text": "Rehbinder", "start": 104, "end": 113, "id": 16, "ws": true}, {"text": "123", "start": 114, "end": 117, "id": 17, "ws": true}, {"text": "(", "start": 118, "end": 119, "id": 18, "ws": false}, {"text": "134", "start": 119, "end": 122, "id": 19, "ws": true}, {"text": "ff", "start": 123, "end": 125, "id": 20, "ws": false}, {"text": ".", "start": 125, "end": 126, "id": 21, "ws": false}, {"text": ")", "start": 126, "end": 127, "id": 22, "ws": false}, {"text": ".", "start": 127, "end": 128, "id": 23, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 11, "label": "author", "token_start": 1, "token_end": 2}, {"start": 12, "end": 91, "label": "title", "token_start": 3, "token_end": 11}, {"start": 92, "end": 113, "label": "editor", "token_start": 12, "token_end": 16}, {"start": 114, "end": 128, "label": "pages", "token_start": 17, "token_end": 23}]} -{"text": "40 Nowak (oben N. 7) 42.", "tokens": [{"text": "40", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Nowak", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "(", "start": 9, "end": 10, "id": 2, "ws": false}, {"text": "oben", "start": 10, "end": 14, "id": 3, "ws": true}, {"text": "N.", "start": 15, "end": 17, "id": 4, "ws": true}, {"text": "7", "start": 18, "end": 19, "id": 5, "ws": false}, {"text": ")", "start": 19, "end": 20, "id": 6, "ws": true}, {"text": "42.", "start": 21, "end": 24, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "author", "token_start": 1, "token_end": 1}, {"start": 9, "end": 20, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 21, "end": 24, "label": "pages", "token_start": 7, "token_end": 7}]} -{"text": "41 F\u00fcr die Bedeutung der funktionalen \u00c4quivalenz beruft man sich h\u00e4ufig auf Merton , der sie am Beispiel der Religion n\u00e4her erl\u00e4utert hat (Social Theory and Social Structure, New York, London, erweiterte Aufl. 1968, S. 82 ff.): Eine gemeinsame Religion erf\u00fcllt im allgemeinen data\". OECD, The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II (Paris 1977) 40.", "tokens": [{"text": "41", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "F\u00fcr", "start": 3, "end": 6, "id": 1, "ws": true}, {"text": "die", "start": 7, "end": 10, "id": 2, "ws": true}, {"text": "Bedeutung", "start": 11, "end": 20, "id": 3, "ws": true}, {"text": "der", "start": 21, "end": 24, "id": 4, "ws": true}, {"text": "funktionalen", "start": 25, "end": 37, "id": 5, "ws": true}, {"text": "\u00c4quivalenz", "start": 38, "end": 48, "id": 6, "ws": true}, {"text": "beruft", "start": 49, "end": 55, "id": 7, "ws": true}, {"text": "man", "start": 56, "end": 59, "id": 8, "ws": true}, {"text": "sich", "start": 60, "end": 64, "id": 9, "ws": true}, {"text": "h\u00e4ufig", "start": 65, "end": 71, "id": 10, "ws": true}, {"text": "auf", "start": 72, "end": 75, "id": 11, "ws": true}, {"text": "Merton", "start": 76, "end": 82, "id": 12, "ws": true}, {"text": ",", "start": 83, "end": 84, "id": 13, "ws": true}, {"text": "der", "start": 85, "end": 88, "id": 14, "ws": true}, {"text": "sie", "start": 89, "end": 92, "id": 15, "ws": true}, {"text": "am", "start": 93, "end": 95, "id": 16, "ws": true}, {"text": "Beispiel", "start": 96, "end": 104, "id": 17, "ws": true}, {"text": "der", "start": 105, "end": 108, "id": 18, "ws": true}, {"text": "Religion", "start": 109, "end": 117, "id": 19, "ws": true}, {"text": "n\u00e4her", "start": 118, "end": 123, "id": 20, "ws": true}, {"text": "erl\u00e4utert", "start": 124, "end": 133, "id": 21, "ws": true}, {"text": "hat", "start": 134, "end": 137, "id": 22, "ws": true}, {"text": "(", "start": 138, "end": 139, "id": 23, "ws": false}, {"text": "Social", "start": 139, "end": 145, "id": 24, "ws": true}, {"text": "Theory", "start": 146, "end": 152, "id": 25, "ws": true}, {"text": "and", "start": 153, "end": 156, "id": 26, "ws": true}, {"text": "Social", "start": 157, "end": 163, "id": 27, "ws": true}, {"text": "Structure", "start": 164, "end": 173, "id": 28, "ws": false}, {"text": ",", "start": 173, "end": 174, "id": 29, "ws": true}, {"text": "New", "start": 175, "end": 178, "id": 30, "ws": true}, {"text": "York", "start": 179, "end": 183, "id": 31, "ws": false}, {"text": ",", "start": 183, "end": 184, "id": 32, "ws": true}, {"text": "London", "start": 185, "end": 191, "id": 33, "ws": false}, {"text": ",", "start": 191, "end": 192, "id": 34, "ws": true}, {"text": "erweiterte", "start": 193, "end": 203, "id": 35, "ws": true}, {"text": "Aufl", "start": 204, "end": 208, "id": 36, "ws": false}, {"text": ".", "start": 208, "end": 209, "id": 37, "ws": true}, {"text": "1968", "start": 210, "end": 214, "id": 38, "ws": false}, {"text": ",", "start": 214, "end": 215, "id": 39, "ws": true}, {"text": "S.", "start": 216, "end": 218, "id": 40, "ws": true}, {"text": "82", "start": 219, "end": 221, "id": 41, "ws": true}, {"text": "ff", "start": 222, "end": 224, "id": 42, "ws": false}, {"text": ".", "start": 224, "end": 225, "id": 43, "ws": false}, {"text": "):", "start": 225, "end": 227, "id": 44, "ws": true}, {"text": "Eine", "start": 228, "end": 232, "id": 45, "ws": true}, {"text": "gemeinsame", "start": 233, "end": 243, "id": 46, "ws": true}, {"text": "Religion", "start": 244, "end": 252, "id": 47, "ws": true}, {"text": "erf\u00fcllt", "start": 253, "end": 260, "id": 48, "ws": true}, {"text": "im", "start": 261, "end": 263, "id": 49, "ws": true}, {"text": "allgemeinen", "start": 264, "end": 275, "id": 50, "ws": true}, {"text": "data", "start": 276, "end": 280, "id": 51, "ws": false}, {"text": "\"", "start": 280, "end": 281, "id": 52, "ws": false}, {"text": ".", "start": 281, "end": 282, "id": 53, "ws": true}, {"text": "OECD", "start": 283, "end": 287, "id": 54, "ws": false}, {"text": ",", "start": 287, "end": 288, "id": 55, "ws": true}, {"text": "The", "start": 289, "end": 292, "id": 56, "ws": true}, {"text": "OECD", "start": 293, "end": 297, "id": 57, "ws": true}, {"text": "Social", "start": 298, "end": 304, "id": 58, "ws": true}, {"text": "Indicator", "start": 305, "end": 314, "id": 59, "ws": true}, {"text": "Development", "start": 315, "end": 326, "id": 60, "ws": true}, {"text": "Programme", "start": 327, "end": 336, "id": 61, "ws": true}, {"text": "-", "start": 337, "end": 338, "id": 62, "ws": true}, {"text": "1976", "start": 339, "end": 343, "id": 63, "ws": true}, {"text": "Progress", "start": 344, "end": 352, "id": 64, "ws": true}, {"text": "Report", "start": 353, "end": 359, "id": 65, "ws": true}, {"text": "on", "start": 360, "end": 362, "id": 66, "ws": true}, {"text": "Phase", "start": 363, "end": 368, "id": 67, "ws": true}, {"text": "II", "start": 369, "end": 371, "id": 68, "ws": true}, {"text": "(", "start": 372, "end": 373, "id": 69, "ws": false}, {"text": "Paris", "start": 373, "end": 378, "id": 70, "ws": true}, {"text": "1977", "start": 379, "end": 383, "id": 71, "ws": false}, {"text": ")", "start": 383, "end": 384, "id": 72, "ws": true}, {"text": "40.", "start": 385, "end": 388, "id": 73, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 75, "label": "note", "token_start": 1, "token_end": 11}, {"start": 76, "end": 82, "label": "author", "token_start": 12, "token_end": 12}, {"start": 83, "end": 137, "label": "note", "token_start": 13, "token_end": 22}, {"start": 138, "end": 174, "label": "title", "token_start": 23, "token_end": 29}, {"start": 175, "end": 192, "label": "location", "token_start": 30, "token_end": 34}, {"start": 193, "end": 209, "label": "edition", "token_start": 35, "token_end": 37}, {"start": 210, "end": 215, "label": "date", "token_start": 38, "token_end": 39}, {"start": 216, "end": 227, "label": "pages", "token_start": 40, "token_end": 44}, {"start": 228, "end": 282, "label": "note", "token_start": 45, "token_end": 53}, {"start": 283, "end": 288, "label": "authority", "token_start": 54, "token_end": 55}, {"start": 289, "end": 371, "label": "title", "token_start": 56, "token_end": 68}, {"start": 372, "end": 378, "label": "location", "token_start": 69, "token_end": 70}, {"start": 379, "end": 384, "label": "date", "token_start": 71, "token_end": 72}, {"start": 385, "end": 388, "label": "pages", "token_start": 73, "token_end": 73}]} -{"text": "43 Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972).", "tokens": [{"text": "43", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Rheinstein", "start": 3, "end": 13, "id": 1, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 2, "ws": true}, {"text": "Marriage", "start": 15, "end": 23, "id": 3, "ws": true}, {"text": "Stability", "start": 24, "end": 33, "id": 4, "ws": false}, {"text": ",", "start": 33, "end": 34, "id": 5, "ws": true}, {"text": "Divorce", "start": 35, "end": 42, "id": 6, "ws": false}, {"text": ",", "start": 42, "end": 43, "id": 7, "ws": true}, {"text": "and", "start": 44, "end": 47, "id": 8, "ws": true}, {"text": "the", "start": 48, "end": 51, "id": 9, "ws": true}, {"text": "Law", "start": 52, "end": 55, "id": 10, "ws": true}, {"text": "(", "start": 56, "end": 57, "id": 11, "ws": false}, {"text": "Chicago", "start": 57, "end": 64, "id": 12, "ws": true}, {"text": "1972", "start": 65, "end": 69, "id": 13, "ws": false}, {"text": ")", "start": 69, "end": 70, "id": 14, "ws": false}, {"text": ".", "start": 70, "end": 71, "id": 15, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 14, "label": "author", "token_start": 1, "token_end": 2}, {"start": 15, "end": 55, "label": "title", "token_start": 3, "token_end": 10}, {"start": 56, "end": 64, "label": "location", "token_start": 11, "token_end": 12}, {"start": 65, "end": 71, "label": "date", "token_start": 13, "token_end": 15}]} -{"text": "44 Abel (oben N. 4) 194 ff., 221 f. - Siehe auch Wilpert, Die Messung von Mitbestimmungsnor men \u2014 Darstellung eines international vergleichenden Forschungsansatzes (HM-Paper 1979\u2014 13) 2 ff. - Zur Behandlung der \u201eKultur\" in vergleichenden Untersuchungen n\u00e4her Scheuch (oben N. 37) 197 ff.", "tokens": [{"text": "44", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Abel", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "(", "start": 8, "end": 9, "id": 2, "ws": false}, {"text": "oben", "start": 9, "end": 13, "id": 3, "ws": true}, {"text": "N.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "4", "start": 17, "end": 18, "id": 5, "ws": false}, {"text": ")", "start": 18, "end": 19, "id": 6, "ws": true}, {"text": "194", "start": 20, "end": 23, "id": 7, "ws": true}, {"text": "ff", "start": 24, "end": 26, "id": 8, "ws": false}, {"text": ".", "start": 26, "end": 27, "id": 9, "ws": false}, {"text": ",", "start": 27, "end": 28, "id": 10, "ws": true}, {"text": "221", "start": 29, "end": 32, "id": 11, "ws": true}, {"text": "f.", "start": 33, "end": 35, "id": 12, "ws": true}, {"text": "-", "start": 36, "end": 37, "id": 13, "ws": true}, {"text": "Siehe", "start": 38, "end": 43, "id": 14, "ws": true}, {"text": "auch", "start": 44, "end": 48, "id": 15, "ws": true}, {"text": "Wilpert", "start": 49, "end": 56, "id": 16, "ws": false}, {"text": ",", "start": 56, "end": 57, "id": 17, "ws": true}, {"text": "Die", "start": 58, "end": 61, "id": 18, "ws": true}, {"text": "Messung", "start": 62, "end": 69, "id": 19, "ws": true}, {"text": "von", "start": 70, "end": 73, "id": 20, "ws": true}, {"text": "Mitbestimmungsnor", "start": 74, "end": 91, "id": 21, "ws": true}, {"text": "men", "start": 92, "end": 95, "id": 22, "ws": true}, {"text": "\u2014", "start": 96, "end": 97, "id": 23, "ws": true}, {"text": "Darstellung", "start": 98, "end": 109, "id": 24, "ws": true}, {"text": "eines", "start": 110, "end": 115, "id": 25, "ws": true}, {"text": "international", "start": 116, "end": 129, "id": 26, "ws": true}, {"text": "vergleichenden", "start": 130, "end": 144, "id": 27, "ws": true}, {"text": "Forschungsansatzes", "start": 145, "end": 163, "id": 28, "ws": true}, {"text": "(", "start": 164, "end": 165, "id": 29, "ws": false}, {"text": "HM-Paper", "start": 165, "end": 173, "id": 30, "ws": true}, {"text": "1979\u2014", "start": 174, "end": 179, "id": 31, "ws": true}, {"text": "13", "start": 180, "end": 182, "id": 32, "ws": false}, {"text": ")", "start": 182, "end": 183, "id": 33, "ws": true}, {"text": "2", "start": 184, "end": 185, "id": 34, "ws": true}, {"text": "ff", "start": 186, "end": 188, "id": 35, "ws": false}, {"text": ".", "start": 188, "end": 189, "id": 36, "ws": true}, {"text": "-", "start": 190, "end": 191, "id": 37, "ws": true}, {"text": "Zur", "start": 192, "end": 195, "id": 38, "ws": true}, {"text": "Behandlung", "start": 196, "end": 206, "id": 39, "ws": true}, {"text": "der", "start": 207, "end": 210, "id": 40, "ws": true}, {"text": "\u201e", "start": 211, "end": 212, "id": 41, "ws": false}, {"text": "Kultur", "start": 212, "end": 218, "id": 42, "ws": false}, {"text": "\"", "start": 218, "end": 219, "id": 43, "ws": true}, {"text": "in", "start": 220, "end": 222, "id": 44, "ws": true}, {"text": "vergleichenden", "start": 223, "end": 237, "id": 45, "ws": true}, {"text": "Untersuchungen", "start": 238, "end": 252, "id": 46, "ws": true}, {"text": "n\u00e4her", "start": 253, "end": 258, "id": 47, "ws": true}, {"text": "Scheuch", "start": 259, "end": 266, "id": 48, "ws": true}, {"text": "(", "start": 267, "end": 268, "id": 49, "ws": false}, {"text": "oben", "start": 268, "end": 272, "id": 50, "ws": true}, {"text": "N.", "start": 273, "end": 275, "id": 51, "ws": true}, {"text": "37", "start": 276, "end": 278, "id": 52, "ws": false}, {"text": ")", "start": 278, "end": 279, "id": 53, "ws": true}, {"text": "197", "start": 280, "end": 283, "id": 54, "ws": true}, {"text": "ff", "start": 284, "end": 286, "id": 55, "ws": false}, {"text": ".", "start": 286, "end": 287, "id": 56, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 19, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 20, "end": 37, "label": "pages", "token_start": 7, "token_end": 13}, {"start": 38, "end": 48, "label": "signal", "token_start": 14, "token_end": 15}, {"start": 49, "end": 57, "label": "author", "token_start": 16, "token_end": 17}, {"start": 58, "end": 163, "label": "title", "token_start": 18, "token_end": 28}, {"start": 164, "end": 173, "label": "authority", "token_start": 29, "token_end": 30}, {"start": 174, "end": 179, "label": "date", "token_start": 31, "token_end": 31}, {"start": 180, "end": 189, "label": "pages", "token_start": 32, "token_end": 36}, {"start": 190, "end": 258, "label": "signal", "token_start": 37, "token_end": 47}, {"start": 259, "end": 266, "label": "author", "token_start": 48, "token_end": 48}, {"start": 267, "end": 279, "label": "backref", "token_start": 49, "token_end": 53}, {"start": 280, "end": 287, "label": "pages", "token_start": 54, "token_end": 56}]} -{"text": "45 Abel (oben N. 4) 207 ff. \u2014 Siehe auch Constantinesco, Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise, Zeitschrift f\u00fcr Rechtsvergleichung 19 (1978) 161 ff.", "tokens": [{"text": "45", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Abel", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "(", "start": 8, "end": 9, "id": 2, "ws": false}, {"text": "oben", "start": 9, "end": 13, "id": 3, "ws": true}, {"text": "N.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "4", "start": 17, "end": 18, "id": 5, "ws": false}, {"text": ")", "start": 18, "end": 19, "id": 6, "ws": true}, {"text": "207", "start": 20, "end": 23, "id": 7, "ws": true}, {"text": "ff", "start": 24, "end": 26, "id": 8, "ws": false}, {"text": ".", "start": 26, "end": 27, "id": 9, "ws": true}, {"text": "\u2014", "start": 28, "end": 29, "id": 10, "ws": true}, {"text": "Siehe", "start": 30, "end": 35, "id": 11, "ws": true}, {"text": "auch", "start": 36, "end": 40, "id": 12, "ws": true}, {"text": "Constantinesco", "start": 41, "end": 55, "id": 13, "ws": false}, {"text": ",", "start": 55, "end": 56, "id": 14, "ws": true}, {"text": "Ideologie", "start": 57, "end": 66, "id": 15, "ws": true}, {"text": "als", "start": 67, "end": 70, "id": 16, "ws": true}, {"text": "determinierendes", "start": 71, "end": 87, "id": 17, "ws": true}, {"text": "Ele", "start": 88, "end": 91, "id": 18, "ws": true}, {"text": "ment", "start": 92, "end": 96, "id": 19, "ws": true}, {"text": "zur", "start": 97, "end": 100, "id": 20, "ws": true}, {"text": "Bildung", "start": 101, "end": 108, "id": 21, "ws": true}, {"text": "der", "start": 109, "end": 112, "id": 22, "ws": true}, {"text": "Rechtskreise", "start": 113, "end": 125, "id": 23, "ws": false}, {"text": ",", "start": 125, "end": 126, "id": 24, "ws": true}, {"text": "Zeitschrift", "start": 127, "end": 138, "id": 25, "ws": true}, {"text": "f\u00fcr", "start": 139, "end": 142, "id": 26, "ws": true}, {"text": "Rechtsvergleichung", "start": 143, "end": 161, "id": 27, "ws": true}, {"text": "19", "start": 162, "end": 164, "id": 28, "ws": true}, {"text": "(", "start": 165, "end": 166, "id": 29, "ws": false}, {"text": "1978", "start": 166, "end": 170, "id": 30, "ws": false}, {"text": ")", "start": 170, "end": 171, "id": 31, "ws": true}, {"text": "161", "start": 172, "end": 175, "id": 32, "ws": true}, {"text": "ff", "start": 176, "end": 178, "id": 33, "ws": false}, {"text": ".", "start": 178, "end": 179, "id": 34, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 19, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 20, "end": 27, "label": "pages", "token_start": 7, "token_end": 9}, {"start": 28, "end": 40, "label": "signal", "token_start": 10, "token_end": 12}, {"start": 41, "end": 56, "label": "author", "token_start": 13, "token_end": 14}, {"start": 57, "end": 126, "label": "title", "token_start": 15, "token_end": 24}, {"start": 127, "end": 161, "label": "journal", "token_start": 25, "token_end": 27}, {"start": 162, "end": 164, "label": "volume", "token_start": 28, "token_end": 28}, {"start": 165, "end": 171, "label": "date", "token_start": 29, "token_end": 31}, {"start": 172, "end": 179, "label": "pages", "token_start": 32, "token_end": 34}]} -{"text": "46 Siehe Blankenburg (oben N. 33) 3 ff.", "tokens": [{"text": "46", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Blankenburg", "start": 9, "end": 20, "id": 2, "ws": true}, {"text": "(", "start": 21, "end": 22, "id": 3, "ws": false}, {"text": "oben", "start": 22, "end": 26, "id": 4, "ws": true}, {"text": "N.", "start": 27, "end": 29, "id": 5, "ws": true}, {"text": "33", "start": 30, "end": 32, "id": 6, "ws": false}, {"text": ")", "start": 32, "end": 33, "id": 7, "ws": true}, {"text": "3", "start": 34, "end": 35, "id": 8, "ws": true}, {"text": "ff", "start": 36, "end": 38, "id": 9, "ws": false}, {"text": ".", "start": 38, "end": 39, "id": 10, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 20, "label": "author", "token_start": 2, "token_end": 2}, {"start": 21, "end": 33, "label": "backref", "token_start": 3, "token_end": 7}, {"start": 34, "end": 39, "label": "pages", "token_start": 8, "token_end": 10}]} -{"text": "47 Rose (oben N. 7) 176.", "tokens": [{"text": "47", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Rose", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "(", "start": 8, "end": 9, "id": 2, "ws": false}, {"text": "oben", "start": 9, "end": 13, "id": 3, "ws": true}, {"text": "N.", "start": 14, "end": 16, "id": 4, "ws": true}, {"text": "7", "start": 17, "end": 18, "id": 5, "ws": false}, {"text": ")", "start": 18, "end": 19, "id": 6, "ws": true}, {"text": "176.", "start": 20, "end": 24, "id": 7, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "author", "token_start": 1, "token_end": 1}, {"start": 8, "end": 19, "label": "backref", "token_start": 2, "token_end": 6}, {"start": 20, "end": 24, "label": "pages", "token_start": 7, "token_end": 7}]} -{"text": "48 Dazu etwa Benda-Beckmann (oben N. 4) 55 ff.; Constantinesco, \u00dcber den Stil der \u201eStilthe orie\" in der Rechtsvergleichung, ZvglRW 78 (1979) 154 ff. mwNachw. \u2014 Eine vergleichbare Debatte \u00fcber \u201e\u00e4hnliche\u201c und \u201eun\u00e4hnliche Gesellschaften\u201c wird seit D\u00fcrkheim auch in der Soziologie gef\u00fchrt. Siehe Payne (oben N. 13) 16 ff.", "tokens": [{"text": "48", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "etwa", "start": 8, "end": 12, "id": 2, "ws": true}, {"text": "Benda-Beckmann", "start": 13, "end": 27, "id": 3, "ws": true}, {"text": "(", "start": 28, "end": 29, "id": 4, "ws": false}, {"text": "oben", "start": 29, "end": 33, "id": 5, "ws": true}, {"text": "N.", "start": 34, "end": 36, "id": 6, "ws": true}, {"text": "4", "start": 37, "end": 38, "id": 7, "ws": false}, {"text": ")", "start": 38, "end": 39, "id": 8, "ws": true}, {"text": "55", "start": 40, "end": 42, "id": 9, "ws": true}, {"text": "ff", "start": 43, "end": 45, "id": 10, "ws": false}, {"text": ".", "start": 45, "end": 46, "id": 11, "ws": false}, {"text": ";", "start": 46, "end": 47, "id": 12, "ws": true}, {"text": "Constantinesco", "start": 48, "end": 62, "id": 13, "ws": false}, {"text": ",", "start": 62, "end": 63, "id": 14, "ws": true}, {"text": "\u00dcber", "start": 64, "end": 68, "id": 15, "ws": true}, {"text": "den", "start": 69, "end": 72, "id": 16, "ws": true}, {"text": "Stil", "start": 73, "end": 77, "id": 17, "ws": true}, {"text": "der", "start": 78, "end": 81, "id": 18, "ws": true}, {"text": "\u201e", "start": 82, "end": 83, "id": 19, "ws": false}, {"text": "Stilthe", "start": 83, "end": 90, "id": 20, "ws": true}, {"text": "orie", "start": 91, "end": 95, "id": 21, "ws": false}, {"text": "\"", "start": 95, "end": 96, "id": 22, "ws": true}, {"text": "in", "start": 97, "end": 99, "id": 23, "ws": true}, {"text": "der", "start": 100, "end": 103, "id": 24, "ws": true}, {"text": "Rechtsvergleichung", "start": 104, "end": 122, "id": 25, "ws": false}, {"text": ",", "start": 122, "end": 123, "id": 26, "ws": true}, {"text": "ZvglRW", "start": 124, "end": 130, "id": 27, "ws": true}, {"text": "78", "start": 131, "end": 133, "id": 28, "ws": true}, {"text": "(", "start": 134, "end": 135, "id": 29, "ws": false}, {"text": "1979", "start": 135, "end": 139, "id": 30, "ws": false}, {"text": ")", "start": 139, "end": 140, "id": 31, "ws": true}, {"text": "154", "start": 141, "end": 144, "id": 32, "ws": true}, {"text": "ff", "start": 145, "end": 147, "id": 33, "ws": false}, {"text": ".", "start": 147, "end": 148, "id": 34, "ws": true}, {"text": "mwNachw", "start": 149, "end": 156, "id": 35, "ws": false}, {"text": ".", "start": 156, "end": 157, "id": 36, "ws": true}, {"text": "\u2014", "start": 158, "end": 159, "id": 37, "ws": true}, {"text": "Eine", "start": 160, "end": 164, "id": 38, "ws": true}, {"text": "vergleichbare", "start": 165, "end": 178, "id": 39, "ws": true}, {"text": "Debatte", "start": 179, "end": 186, "id": 40, "ws": true}, {"text": "\u00fcber", "start": 187, "end": 191, "id": 41, "ws": true}, {"text": "\u201e", "start": 192, "end": 193, "id": 42, "ws": false}, {"text": "\u00e4hnliche", "start": 193, "end": 201, "id": 43, "ws": false}, {"text": "\u201c", "start": 201, "end": 202, "id": 44, "ws": true}, {"text": "und", "start": 203, "end": 206, "id": 45, "ws": true}, {"text": "\u201e", "start": 207, "end": 208, "id": 46, "ws": false}, {"text": "un\u00e4hnliche", "start": 208, "end": 218, "id": 47, "ws": true}, {"text": "Gesellschaften", "start": 219, "end": 233, "id": 48, "ws": false}, {"text": "\u201c", "start": 233, "end": 234, "id": 49, "ws": true}, {"text": "wird", "start": 235, "end": 239, "id": 50, "ws": true}, {"text": "seit", "start": 240, "end": 244, "id": 51, "ws": true}, {"text": "D\u00fcrkheim", "start": 245, "end": 253, "id": 52, "ws": true}, {"text": "auch", "start": 254, "end": 258, "id": 53, "ws": true}, {"text": "in", "start": 259, "end": 261, "id": 54, "ws": true}, {"text": "der", "start": 262, "end": 265, "id": 55, "ws": true}, {"text": "Soziologie", "start": 266, "end": 276, "id": 56, "ws": true}, {"text": "gef\u00fchrt", "start": 277, "end": 284, "id": 57, "ws": false}, {"text": ".", "start": 284, "end": 285, "id": 58, "ws": true}, {"text": "Siehe", "start": 286, "end": 291, "id": 59, "ws": true}, {"text": "Payne", "start": 292, "end": 297, "id": 60, "ws": true}, {"text": "(", "start": 298, "end": 299, "id": 61, "ws": false}, {"text": "oben", "start": 299, "end": 303, "id": 62, "ws": true}, {"text": "N.", "start": 304, "end": 306, "id": 63, "ws": true}, {"text": "13", "start": 307, "end": 309, "id": 64, "ws": false}, {"text": ")", "start": 309, "end": 310, "id": 65, "ws": true}, {"text": "16", "start": 311, "end": 313, "id": 66, "ws": true}, {"text": "ff", "start": 314, "end": 316, "id": 67, "ws": false}, {"text": ".", "start": 316, "end": 317, "id": 68, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 13, "end": 27, "label": "author", "token_start": 3, "token_end": 3}, {"start": 28, "end": 39, "label": "backref", "token_start": 4, "token_end": 8}, {"start": 40, "end": 47, "label": "pages", "token_start": 9, "token_end": 12}, {"start": 48, "end": 63, "label": "author", "token_start": 13, "token_end": 14}, {"start": 64, "end": 123, "label": "title", "token_start": 15, "token_end": 26}, {"start": 124, "end": 130, "label": "journal", "token_start": 27, "token_end": 27}, {"start": 131, "end": 133, "label": "volume", "token_start": 28, "token_end": 28}, {"start": 134, "end": 140, "label": "date", "token_start": 29, "token_end": 31}, {"start": 141, "end": 148, "label": "pages", "token_start": 32, "token_end": 34}, {"start": 149, "end": 285, "label": "note", "token_start": 35, "token_end": 58}, {"start": 286, "end": 291, "label": "signal", "token_start": 59, "token_end": 59}, {"start": 292, "end": 297, "label": "author", "token_start": 60, "token_end": 60}, {"start": 298, "end": 310, "label": "backref", "token_start": 61, "token_end": 65}, {"start": 311, "end": 317, "label": "pages", "token_start": 66, "token_end": 68}]} -{"text": "49 Siehe Zweigert/K\u00f6tz I 70.", "tokens": [{"text": "49", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Zweigert", "start": 9, "end": 17, "id": 2, "ws": false}, {"text": "/", "start": 17, "end": 18, "id": 3, "ws": false}, {"text": "K\u00f6tz", "start": 18, "end": 22, "id": 4, "ws": true}, {"text": "I", "start": 23, "end": 24, "id": 5, "ws": true}, {"text": "70.", "start": 25, "end": 28, "id": 6, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 22, "label": "author", "token_start": 2, "token_end": 4}, {"start": 23, "end": 24, "label": "volume", "token_start": 5, "token_end": 5}, {"start": 25, "end": 28, "label": "pages", "token_start": 6, "token_end": 6}]} -{"text": "50 Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (Mimeographed, European Institute for Advanced Studies in Management Working Paper 1977 -8). Ebenso f\u00fcr das Arbeitsrecht D\u00e4ubler (oben N. 32) 33, der auch die skandinavischen L\u00e4nder in diese Gruppe aufnimmt.", "tokens": [{"text": "50", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Hofstede", "start": 3, "end": 11, "id": 1, "ws": false}, {"text": ",", "start": 11, "end": 12, "id": 2, "ws": true}, {"text": "Cultural", "start": 13, "end": 21, "id": 3, "ws": true}, {"text": "Determinants", "start": 22, "end": 34, "id": 4, "ws": true}, {"text": "of", "start": 35, "end": 37, "id": 5, "ws": true}, {"text": "the", "start": 38, "end": 41, "id": 6, "ws": true}, {"text": "Exercise", "start": 42, "end": 50, "id": 7, "ws": true}, {"text": "of", "start": 51, "end": 53, "id": 8, "ws": true}, {"text": "Power", "start": 54, "end": 59, "id": 9, "ws": true}, {"text": "in", "start": 60, "end": 62, "id": 10, "ws": true}, {"text": "a", "start": 63, "end": 64, "id": 11, "ws": true}, {"text": "Hierarchy", "start": 65, "end": 74, "id": 12, "ws": true}, {"text": "(", "start": 75, "end": 76, "id": 13, "ws": false}, {"text": "Mimeographed", "start": 76, "end": 88, "id": 14, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 15, "ws": true}, {"text": "European", "start": 90, "end": 98, "id": 16, "ws": true}, {"text": "Institute", "start": 99, "end": 108, "id": 17, "ws": true}, {"text": "for", "start": 109, "end": 112, "id": 18, "ws": true}, {"text": "Advanced", "start": 113, "end": 121, "id": 19, "ws": true}, {"text": "Studies", "start": 122, "end": 129, "id": 20, "ws": true}, {"text": "in", "start": 130, "end": 132, "id": 21, "ws": true}, {"text": "Management", "start": 133, "end": 143, "id": 22, "ws": true}, {"text": "Working", "start": 144, "end": 151, "id": 23, "ws": true}, {"text": "Paper", "start": 152, "end": 157, "id": 24, "ws": true}, {"text": "1977", "start": 158, "end": 162, "id": 25, "ws": true}, {"text": "-8", "start": 163, "end": 165, "id": 26, "ws": false}, {"text": ")", "start": 165, "end": 166, "id": 27, "ws": false}, {"text": ".", "start": 166, "end": 167, "id": 28, "ws": true}, {"text": "Ebenso", "start": 168, "end": 174, "id": 29, "ws": true}, {"text": "f\u00fcr", "start": 175, "end": 178, "id": 30, "ws": true}, {"text": "das", "start": 179, "end": 182, "id": 31, "ws": true}, {"text": "Arbeitsrecht", "start": 183, "end": 195, "id": 32, "ws": true}, {"text": "D\u00e4ubler", "start": 196, "end": 203, "id": 33, "ws": true}, {"text": "(", "start": 204, "end": 205, "id": 34, "ws": false}, {"text": "oben", "start": 205, "end": 209, "id": 35, "ws": true}, {"text": "N.", "start": 210, "end": 212, "id": 36, "ws": true}, {"text": "32", "start": 213, "end": 215, "id": 37, "ws": false}, {"text": ")", "start": 215, "end": 216, "id": 38, "ws": true}, {"text": "33", "start": 217, "end": 219, "id": 39, "ws": false}, {"text": ",", "start": 219, "end": 220, "id": 40, "ws": true}, {"text": "der", "start": 221, "end": 224, "id": 41, "ws": true}, {"text": "auch", "start": 225, "end": 229, "id": 42, "ws": true}, {"text": "die", "start": 230, "end": 233, "id": 43, "ws": true}, {"text": "skandinavischen", "start": 234, "end": 249, "id": 44, "ws": true}, {"text": "L\u00e4nder", "start": 250, "end": 256, "id": 45, "ws": true}, {"text": "in", "start": 257, "end": 259, "id": 46, "ws": true}, {"text": "diese", "start": 260, "end": 265, "id": 47, "ws": true}, {"text": "Gruppe", "start": 266, "end": 272, "id": 48, "ws": true}, {"text": "aufnimmt", "start": 273, "end": 281, "id": 49, "ws": false}, {"text": ".", "start": 281, "end": 282, "id": 50, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "author", "token_start": 1, "token_end": 2}, {"start": 13, "end": 74, "label": "title", "token_start": 3, "token_end": 12}, {"start": 75, "end": 89, "label": "note", "token_start": 13, "token_end": 15}, {"start": 90, "end": 157, "label": "container-title", "token_start": 16, "token_end": 24}, {"start": 158, "end": 162, "label": "date", "token_start": 25, "token_end": 25}, {"start": 163, "end": 167, "label": "volume", "token_start": 26, "token_end": 28}, {"start": 168, "end": 195, "label": "signal", "token_start": 29, "token_end": 32}, {"start": 196, "end": 203, "label": "author", "token_start": 33, "token_end": 33}, {"start": 204, "end": 216, "label": "backref", "token_start": 34, "token_end": 38}, {"start": 217, "end": 220, "label": "pages", "token_start": 39, "token_end": 40}, {"start": 221, "end": 282, "label": "note", "token_start": 41, "token_end": 50}]} -{"text": "51 Dazu Zweigert/K\u00f6tz 1 110 f. \u2014 Kritisch Benda-Beckmann (oben N. 4) 58 ff.", "tokens": [{"text": "51", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "Zweigert", "start": 8, "end": 16, "id": 2, "ws": false}, {"text": "/", "start": 16, "end": 17, "id": 3, "ws": false}, {"text": "K\u00f6tz", "start": 17, "end": 21, "id": 4, "ws": true}, {"text": "1", "start": 22, "end": 23, "id": 5, "ws": true}, {"text": "110", "start": 24, "end": 27, "id": 6, "ws": true}, {"text": "f.", "start": 28, "end": 30, "id": 7, "ws": true}, {"text": "\u2014", "start": 31, "end": 32, "id": 8, "ws": true}, {"text": "Kritisch", "start": 33, "end": 41, "id": 9, "ws": true}, {"text": "Benda-Beckmann", "start": 42, "end": 56, "id": 10, "ws": true}, {"text": "(", "start": 57, "end": 58, "id": 11, "ws": false}, {"text": "oben", "start": 58, "end": 62, "id": 12, "ws": true}, {"text": "N.", "start": 63, "end": 65, "id": 13, "ws": true}, {"text": "4", "start": 66, "end": 67, "id": 14, "ws": false}, {"text": ")", "start": 67, "end": 68, "id": 15, "ws": true}, {"text": "58", "start": 69, "end": 71, "id": 16, "ws": true}, {"text": "ff", "start": 72, "end": 74, "id": 17, "ws": false}, {"text": ".", "start": 74, "end": 75, "id": 18, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 8, "end": 21, "label": "author", "token_start": 2, "token_end": 4}, {"start": 1, "end": 2, "label": "volume", "token_start": 0, "token_end": 0}, {"start": 24, "end": 30, "label": "pages", "token_start": 6, "token_end": 7}, {"start": 31, "end": 41, "label": "note", "token_start": 8, "token_end": 9}, {"start": 42, "end": 56, "label": "author", "token_start": 10, "token_end": 10}, {"start": 57, "end": 68, "label": "backref", "token_start": 11, "token_end": 15}, {"start": 69, "end": 75, "label": "pages", "token_start": 16, "token_end": 18}]} -{"text": "52 IDE-International Research Group, Industrial Democracy in Europe (erscheint bei Oxford University Press, London 1980) Chapter VIII.", "tokens": [{"text": "52", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "IDE-International", "start": 3, "end": 20, "id": 1, "ws": true}, {"text": "Research", "start": 21, "end": 29, "id": 2, "ws": true}, {"text": "Group", "start": 30, "end": 35, "id": 3, "ws": false}, {"text": ",", "start": 35, "end": 36, "id": 4, "ws": true}, {"text": "Industrial", "start": 37, "end": 47, "id": 5, "ws": true}, {"text": "Democracy", "start": 48, "end": 57, "id": 6, "ws": true}, {"text": "in", "start": 58, "end": 60, "id": 7, "ws": true}, {"text": "Europe", "start": 61, "end": 67, "id": 8, "ws": true}, {"text": "(", "start": 68, "end": 69, "id": 9, "ws": false}, {"text": "erscheint", "start": 69, "end": 78, "id": 10, "ws": true}, {"text": "bei", "start": 79, "end": 82, "id": 11, "ws": true}, {"text": "Oxford", "start": 83, "end": 89, "id": 12, "ws": true}, {"text": "University", "start": 90, "end": 100, "id": 13, "ws": true}, {"text": "Press", "start": 101, "end": 106, "id": 14, "ws": false}, {"text": ",", "start": 106, "end": 107, "id": 15, "ws": true}, {"text": "London", "start": 108, "end": 114, "id": 16, "ws": true}, {"text": "1980", "start": 115, "end": 119, "id": 17, "ws": false}, {"text": ")", "start": 119, "end": 120, "id": 18, "ws": true}, {"text": "Chapter", "start": 121, "end": 128, "id": 19, "ws": true}, {"text": "VIII", "start": 129, "end": 133, "id": 20, "ws": false}, {"text": ".", "start": 133, "end": 134, "id": 21, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 36, "label": "authority", "token_start": 1, "token_end": 4}, {"start": 37, "end": 67, "label": "title", "token_start": 5, "token_end": 8}, {"start": 68, "end": 107, "label": "journal", "token_start": 9, "token_end": 15}, {"start": 108, "end": 114, "label": "location", "token_start": 16, "token_end": 16}, {"start": 115, "end": 120, "label": "date", "token_start": 17, "token_end": 18}, {"start": 121, "end": 134, "label": "pages", "token_start": 19, "token_end": 21}]} -{"text": "53 Zweigert/K\u00f6tz I 78.", "tokens": [{"text": "53", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Zweigert", "start": 3, "end": 11, "id": 1, "ws": false}, {"text": "/", "start": 11, "end": 12, "id": 2, "ws": false}, {"text": "K\u00f6tz", "start": 12, "end": 16, "id": 3, "ws": true}, {"text": "I", "start": 17, "end": 18, "id": 4, "ws": true}, {"text": "78.", "start": 19, "end": 22, "id": 5, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 16, "label": "author", "token_start": 1, "token_end": 3}, {"start": 17, "end": 18, "label": "volume", "token_start": 4, "token_end": 4}, {"start": 19, "end": 22, "label": "pages", "token_start": 5, "token_end": 5}]} -{"text": "54 IDE-International Research Group (oben N. 52) Chapter VIII.", "tokens": [{"text": "54", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "IDE-International", "start": 3, "end": 20, "id": 1, "ws": true}, {"text": "Research", "start": 21, "end": 29, "id": 2, "ws": true}, {"text": "Group", "start": 30, "end": 35, "id": 3, "ws": true}, {"text": "(", "start": 36, "end": 37, "id": 4, "ws": false}, {"text": "oben", "start": 37, "end": 41, "id": 5, "ws": true}, {"text": "N.", "start": 42, "end": 44, "id": 6, "ws": true}, {"text": "52", "start": 45, "end": 47, "id": 7, "ws": false}, {"text": ")", "start": 47, "end": 48, "id": 8, "ws": true}, {"text": "Chapter", "start": 49, "end": 56, "id": 9, "ws": true}, {"text": "VIII", "start": 57, "end": 61, "id": 10, "ws": false}, {"text": ".", "start": 61, "end": 62, "id": 11, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 35, "label": "authority", "token_start": 1, "token_end": 3}, {"start": 36, "end": 48, "label": "backref", "token_start": 4, "token_end": 8}, {"start": 49, "end": 62, "label": "pages", "token_start": 9, "token_end": 11}]} -{"text": "55 Daf\u00fcr D\u00e4ubler (oben N. 32) 33. Rechtsvergleicbung und vergleichende Recbtssoxiologie 79", "tokens": [{"text": "55", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Daf\u00fcr", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "D\u00e4ubler", "start": 9, "end": 16, "id": 2, "ws": true}, {"text": "(", "start": 17, "end": 18, "id": 3, "ws": false}, {"text": "oben", "start": 18, "end": 22, "id": 4, "ws": true}, {"text": "N.", "start": 23, "end": 25, "id": 5, "ws": true}, {"text": "32", "start": 26, "end": 28, "id": 6, "ws": false}, {"text": ")", "start": 28, "end": 29, "id": 7, "ws": true}, {"text": "33.", "start": 30, "end": 33, "id": 8, "ws": true}, {"text": "Rechtsvergleicbung", "start": 34, "end": 52, "id": 9, "ws": true}, {"text": "und", "start": 53, "end": 56, "id": 10, "ws": true}, {"text": "vergleichende", "start": 57, "end": 70, "id": 11, "ws": true}, {"text": "Recbtssoxiologie", "start": 71, "end": 87, "id": 12, "ws": true}, {"text": "79", "start": 88, "end": 90, "id": 13, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 16, "label": "author", "token_start": 2, "token_end": 2}, {"start": 17, "end": 29, "label": "backref", "token_start": 3, "token_end": 7}, {"start": 30, "end": 33, "label": "pages", "token_start": 8, "token_end": 8}, {"start": 34, "end": 90, "label": "ignore", "token_start": 9, "token_end": 13}]} -{"text": "56 Siehe dazu Rheinstein, Die Rechtshonoratioren und ihr Einflu\u00df auf Charakter und Funk tion der Rechtsordnungen, RabelsZ 34 (1970) 1 ff.; Bernstein, Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung, RabelsZ 34 (1970) 443 ff.", "tokens": [{"text": "56", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "dazu", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "Rheinstein", "start": 14, "end": 24, "id": 3, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 4, "ws": true}, {"text": "Die", "start": 26, "end": 29, "id": 5, "ws": true}, {"text": "Rechtshonoratioren", "start": 30, "end": 48, "id": 6, "ws": true}, {"text": "und", "start": 49, "end": 52, "id": 7, "ws": true}, {"text": "ihr", "start": 53, "end": 56, "id": 8, "ws": true}, {"text": "Einflu\u00df", "start": 57, "end": 64, "id": 9, "ws": true}, {"text": "auf", "start": 65, "end": 68, "id": 10, "ws": true}, {"text": "Charakter", "start": 69, "end": 78, "id": 11, "ws": true}, {"text": "und", "start": 79, "end": 82, "id": 12, "ws": true}, {"text": "Funk", "start": 83, "end": 87, "id": 13, "ws": true}, {"text": "tion", "start": 88, "end": 92, "id": 14, "ws": true}, {"text": "der", "start": 93, "end": 96, "id": 15, "ws": true}, {"text": "Rechtsordnungen", "start": 97, "end": 112, "id": 16, "ws": false}, {"text": ",", "start": 112, "end": 113, "id": 17, "ws": true}, {"text": "RabelsZ", "start": 114, "end": 121, "id": 18, "ws": true}, {"text": "34", "start": 122, "end": 124, "id": 19, "ws": true}, {"text": "(", "start": 125, "end": 126, "id": 20, "ws": false}, {"text": "1970", "start": 126, "end": 130, "id": 21, "ws": false}, {"text": ")", "start": 130, "end": 131, "id": 22, "ws": true}, {"text": "1", "start": 132, "end": 133, "id": 23, "ws": true}, {"text": "ff", "start": 134, "end": 136, "id": 24, "ws": false}, {"text": ".", "start": 136, "end": 137, "id": 25, "ws": false}, {"text": ";", "start": 137, "end": 138, "id": 26, "ws": true}, {"text": "Bernstein", "start": 139, "end": 148, "id": 27, "ws": false}, {"text": ",", "start": 148, "end": 149, "id": 28, "ws": true}, {"text": "Rechtsstile", "start": 150, "end": 161, "id": 29, "ws": true}, {"text": "und", "start": 162, "end": 165, "id": 30, "ws": true}, {"text": "Rechtshono", "start": 166, "end": 176, "id": 31, "ws": true}, {"text": "ratioren", "start": 177, "end": 185, "id": 32, "ws": false}, {"text": ".", "start": 185, "end": 186, "id": 33, "ws": true}, {"text": "Ein", "start": 187, "end": 190, "id": 34, "ws": true}, {"text": "Beitrag", "start": 191, "end": 198, "id": 35, "ws": true}, {"text": "zur", "start": 199, "end": 202, "id": 36, "ws": true}, {"text": "Methode", "start": 203, "end": 210, "id": 37, "ws": true}, {"text": "der", "start": 211, "end": 214, "id": 38, "ws": true}, {"text": "Rechtsvergleichung", "start": 215, "end": 233, "id": 39, "ws": false}, {"text": ",", "start": 233, "end": 234, "id": 40, "ws": true}, {"text": "RabelsZ", "start": 235, "end": 242, "id": 41, "ws": true}, {"text": "34", "start": 243, "end": 245, "id": 42, "ws": true}, {"text": "(", "start": 246, "end": 247, "id": 43, "ws": false}, {"text": "1970", "start": 247, "end": 251, "id": 44, "ws": false}, {"text": ")", "start": 251, "end": 252, "id": 45, "ws": true}, {"text": "443", "start": 253, "end": 256, "id": 46, "ws": true}, {"text": "ff", "start": 257, "end": 259, "id": 47, "ws": false}, {"text": ".", "start": 259, "end": 260, "id": 48, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 25, "label": "author", "token_start": 3, "token_end": 4}, {"start": 26, "end": 113, "label": "title", "token_start": 5, "token_end": 17}, {"start": 114, "end": 121, "label": "journal", "token_start": 18, "token_end": 18}, {"start": 122, "end": 124, "label": "volume", "token_start": 19, "token_end": 19}, {"start": 125, "end": 131, "label": "date", "token_start": 20, "token_end": 22}, {"start": 132, "end": 138, "label": "pages", "token_start": 23, "token_end": 26}, {"start": 139, "end": 149, "label": "author", "token_start": 27, "token_end": 28}, {"start": 150, "end": 234, "label": "title", "token_start": 29, "token_end": 40}, {"start": 114, "end": 121, "label": "journal", "token_start": 18, "token_end": 18}, {"start": 122, "end": 124, "label": "volume", "token_start": 19, "token_end": 19}, {"start": 125, "end": 131, "label": "date", "token_start": 20, "token_end": 22}, {"start": 253, "end": 260, "label": "pages", "token_start": 46, "token_end": 48}]} -{"text": "57 Dazu etwa Ruescbemeyer, Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States (Cambridge, Mass. 1973); ders., The Legal Profession in Comparative Perspective, in: H. M. Johnson, Social System and Legal Process (San Francisco, Washington, London 1978) 97 ff.", "tokens": [{"text": "57", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "etwa", "start": 8, "end": 12, "id": 2, "ws": true}, {"text": "Ruescbemeyer", "start": 13, "end": 25, "id": 3, "ws": false}, {"text": ",", "start": 25, "end": 26, "id": 4, "ws": true}, {"text": "Lawyers", "start": 27, "end": 34, "id": 5, "ws": true}, {"text": "and", "start": 35, "end": 38, "id": 6, "ws": true}, {"text": "their", "start": 39, "end": 44, "id": 7, "ws": true}, {"text": "Societies", "start": 45, "end": 54, "id": 8, "ws": true}, {"text": "--", "start": 55, "end": 57, "id": 9, "ws": true}, {"text": "A", "start": 58, "end": 59, "id": 10, "ws": true}, {"text": "Comparative", "start": 60, "end": 71, "id": 11, "ws": true}, {"text": "Analysis", "start": 72, "end": 80, "id": 12, "ws": true}, {"text": "of", "start": 81, "end": 83, "id": 13, "ws": true}, {"text": "the", "start": 84, "end": 87, "id": 14, "ws": true}, {"text": "Legal", "start": 88, "end": 93, "id": 15, "ws": true}, {"text": "Profession", "start": 94, "end": 104, "id": 16, "ws": true}, {"text": "in", "start": 105, "end": 107, "id": 17, "ws": true}, {"text": "Germany", "start": 108, "end": 115, "id": 18, "ws": true}, {"text": "and", "start": 116, "end": 119, "id": 19, "ws": true}, {"text": "the", "start": 120, "end": 123, "id": 20, "ws": true}, {"text": "United", "start": 124, "end": 130, "id": 21, "ws": true}, {"text": "States", "start": 131, "end": 137, "id": 22, "ws": true}, {"text": "(", "start": 138, "end": 139, "id": 23, "ws": false}, {"text": "Cambridge", "start": 139, "end": 148, "id": 24, "ws": false}, {"text": ",", "start": 148, "end": 149, "id": 25, "ws": true}, {"text": "Mass", "start": 150, "end": 154, "id": 26, "ws": false}, {"text": ".", "start": 154, "end": 155, "id": 27, "ws": true}, {"text": "1973", "start": 156, "end": 160, "id": 28, "ws": false}, {"text": ")", "start": 160, "end": 161, "id": 29, "ws": false}, {"text": ";", "start": 161, "end": 162, "id": 30, "ws": true}, {"text": "ders", "start": 163, "end": 167, "id": 31, "ws": false}, {"text": ".", "start": 167, "end": 168, "id": 32, "ws": false}, {"text": ",", "start": 168, "end": 169, "id": 33, "ws": true}, {"text": "The", "start": 170, "end": 173, "id": 34, "ws": true}, {"text": "Legal", "start": 174, "end": 179, "id": 35, "ws": true}, {"text": "Profession", "start": 180, "end": 190, "id": 36, "ws": true}, {"text": "in", "start": 191, "end": 193, "id": 37, "ws": true}, {"text": "Comparative", "start": 194, "end": 205, "id": 38, "ws": true}, {"text": "Perspective", "start": 206, "end": 217, "id": 39, "ws": false}, {"text": ",", "start": 217, "end": 218, "id": 40, "ws": true}, {"text": "in", "start": 219, "end": 221, "id": 41, "ws": false}, {"text": ":", "start": 221, "end": 222, "id": 42, "ws": true}, {"text": "H.", "start": 223, "end": 225, "id": 43, "ws": true}, {"text": "M.", "start": 226, "end": 228, "id": 44, "ws": true}, {"text": "Johnson", "start": 229, "end": 236, "id": 45, "ws": false}, {"text": ",", "start": 236, "end": 237, "id": 46, "ws": true}, {"text": "Social", "start": 238, "end": 244, "id": 47, "ws": true}, {"text": "System", "start": 245, "end": 251, "id": 48, "ws": true}, {"text": "and", "start": 252, "end": 255, "id": 49, "ws": true}, {"text": "Legal", "start": 256, "end": 261, "id": 50, "ws": true}, {"text": "Process", "start": 262, "end": 269, "id": 51, "ws": true}, {"text": "(", "start": 270, "end": 271, "id": 52, "ws": false}, {"text": "San", "start": 271, "end": 274, "id": 53, "ws": true}, {"text": "Francisco", "start": 275, "end": 284, "id": 54, "ws": false}, {"text": ",", "start": 284, "end": 285, "id": 55, "ws": true}, {"text": "Washington", "start": 286, "end": 296, "id": 56, "ws": false}, {"text": ",", "start": 296, "end": 297, "id": 57, "ws": true}, {"text": "London", "start": 298, "end": 304, "id": 58, "ws": true}, {"text": "1978", "start": 305, "end": 309, "id": 59, "ws": false}, {"text": ")", "start": 309, "end": 310, "id": 60, "ws": true}, {"text": "97", "start": 311, "end": 313, "id": 61, "ws": true}, {"text": "ff", "start": 314, "end": 316, "id": 62, "ws": false}, {"text": ".", "start": 316, "end": 317, "id": 63, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 12, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 13, "end": 26, "label": "author", "token_start": 3, "token_end": 4}, {"start": 27, "end": 137, "label": "title", "token_start": 5, "token_end": 22}, {"start": 138, "end": 155, "label": "location", "token_start": 23, "token_end": 27}, {"start": 156, "end": 162, "label": "date", "token_start": 28, "token_end": 30}, {"start": 163, "end": 169, "label": "author", "token_start": 31, "token_end": 33}, {"start": 170, "end": 218, "label": "title", "token_start": 34, "token_end": 40}, {"start": 219, "end": 237, "label": "editor", "token_start": 41, "token_end": 46}, {"start": 238, "end": 269, "label": "container-title", "token_start": 47, "token_end": 51}, {"start": 270, "end": 304, "label": "location", "token_start": 52, "token_end": 58}, {"start": 305, "end": 310, "label": "date", "token_start": 59, "token_end": 60}, {"start": 311, "end": 317, "label": "pages", "token_start": 61, "token_end": 63}]} -{"text": "58 Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff.", "tokens": [{"text": "58", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Klausa", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 2, "ws": true}, {"text": "Politische", "start": 11, "end": 21, "id": 3, "ws": true}, {"text": "Inhaltsanalyse", "start": 22, "end": 36, "id": 4, "ws": true}, {"text": "von", "start": 37, "end": 40, "id": 5, "ws": true}, {"text": "Rechtslehrertexten", "start": 41, "end": 59, "id": 6, "ws": false}, {"text": ",", "start": 59, "end": 60, "id": 7, "ws": true}, {"text": "ZfS", "start": 61, "end": 64, "id": 8, "ws": true}, {"text": "8", "start": 65, "end": 66, "id": 9, "ws": true}, {"text": "(", "start": 67, "end": 68, "id": 10, "ws": false}, {"text": "1979", "start": 68, "end": 72, "id": 11, "ws": false}, {"text": ")", "start": 72, "end": 73, "id": 12, "ws": true}, {"text": "362", "start": 74, "end": 77, "id": 13, "ws": true}, {"text": "ff", "start": 78, "end": 80, "id": 14, "ws": false}, {"text": ".", "start": 80, "end": 81, "id": 15, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 2}, {"start": 11, "end": 60, "label": "title", "token_start": 3, "token_end": 7}, {"start": 61, "end": 64, "label": "journal", "token_start": 8, "token_end": 8}, {"start": 1, "end": 2, "label": "volume", "token_start": 0, "token_end": 0}, {"start": 67, "end": 73, "label": "date", "token_start": 10, "token_end": 12}, {"start": 74, "end": 81, "label": "pages", "token_start": 13, "token_end": 15}]} -{"text": "59 Siehe Nowak (oben N. 7) 23 ff.; Smelser 167 ff.", "tokens": [{"text": "59", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Nowak", "start": 9, "end": 14, "id": 2, "ws": true}, {"text": "(", "start": 15, "end": 16, "id": 3, "ws": false}, {"text": "oben", "start": 16, "end": 20, "id": 4, "ws": true}, {"text": "N.", "start": 21, "end": 23, "id": 5, "ws": true}, {"text": "7", "start": 24, "end": 25, "id": 6, "ws": false}, {"text": ")", "start": 25, "end": 26, "id": 7, "ws": true}, {"text": "23", "start": 27, "end": 29, "id": 8, "ws": true}, {"text": "ff", "start": 30, "end": 32, "id": 9, "ws": false}, {"text": ".", "start": 32, "end": 33, "id": 10, "ws": false}, {"text": ";", "start": 33, "end": 34, "id": 11, "ws": true}, {"text": "Smelser", "start": 35, "end": 42, "id": 12, "ws": true}, {"text": "167", "start": 43, "end": 46, "id": 13, "ws": true}, {"text": "ff", "start": 47, "end": 49, "id": 14, "ws": false}, {"text": ".", "start": 49, "end": 50, "id": 15, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 14, "label": "author", "token_start": 2, "token_end": 2}, {"start": 15, "end": 26, "label": "backref", "token_start": 3, "token_end": 7}, {"start": 27, "end": 34, "label": "pages", "token_start": 8, "token_end": 11}, {"start": 35, "end": 42, "label": "author", "token_start": 12, "token_end": 12}, {"start": 43, "end": 50, "label": "pages", "token_start": 13, "token_end": 15}]} -{"text": "60 Dazu n\u00e4her Teune, Analysis and Interpretation in Cross-National Survey Research, in: Szalai/Petrella 95 (101) ff.", "tokens": [{"text": "60", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "n\u00e4her", "start": 8, "end": 13, "id": 2, "ws": true}, {"text": "Teune", "start": 14, "end": 19, "id": 3, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 4, "ws": true}, {"text": "Analysis", "start": 21, "end": 29, "id": 5, "ws": true}, {"text": "and", "start": 30, "end": 33, "id": 6, "ws": true}, {"text": "Interpretation", "start": 34, "end": 48, "id": 7, "ws": true}, {"text": "in", "start": 49, "end": 51, "id": 8, "ws": true}, {"text": "Cross-National", "start": 52, "end": 66, "id": 9, "ws": true}, {"text": "Survey", "start": 67, "end": 73, "id": 10, "ws": true}, {"text": "Research", "start": 74, "end": 82, "id": 11, "ws": false}, {"text": ",", "start": 82, "end": 83, "id": 12, "ws": true}, {"text": "in", "start": 84, "end": 86, "id": 13, "ws": false}, {"text": ":", "start": 86, "end": 87, "id": 14, "ws": true}, {"text": "Szalai", "start": 88, "end": 94, "id": 15, "ws": false}, {"text": "/", "start": 94, "end": 95, "id": 16, "ws": false}, {"text": "Petrella", "start": 95, "end": 103, "id": 17, "ws": true}, {"text": "95", "start": 104, "end": 106, "id": 18, "ws": true}, {"text": "(", "start": 107, "end": 108, "id": 19, "ws": false}, {"text": "101", "start": 108, "end": 111, "id": 20, "ws": false}, {"text": ")", "start": 111, "end": 112, "id": 21, "ws": true}, {"text": "ff", "start": 113, "end": 115, "id": 22, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 23, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 20, "label": "author", "token_start": 3, "token_end": 4}, {"start": 21, "end": 83, "label": "title", "token_start": 5, "token_end": 12}, {"start": 84, "end": 103, "label": "editor", "token_start": 13, "token_end": 17}, {"start": 104, "end": 116, "label": "pages", "token_start": 18, "token_end": 23}]} -{"text": "61 Siehe dazu Nader/Todd, The Disputing Process \u2014 Law in Ten Societies (New York 1978).", "tokens": [{"text": "61", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "dazu", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "Nader", "start": 14, "end": 19, "id": 3, "ws": false}, {"text": "/", "start": 19, "end": 20, "id": 4, "ws": false}, {"text": "Todd", "start": 20, "end": 24, "id": 5, "ws": false}, {"text": ",", "start": 24, "end": 25, "id": 6, "ws": true}, {"text": "The", "start": 26, "end": 29, "id": 7, "ws": true}, {"text": "Disputing", "start": 30, "end": 39, "id": 8, "ws": true}, {"text": "Process", "start": 40, "end": 47, "id": 9, "ws": true}, {"text": "\u2014", "start": 48, "end": 49, "id": 10, "ws": true}, {"text": "Law", "start": 50, "end": 53, "id": 11, "ws": true}, {"text": "in", "start": 54, "end": 56, "id": 12, "ws": true}, {"text": "Ten", "start": 57, "end": 60, "id": 13, "ws": true}, {"text": "Societies", "start": 61, "end": 70, "id": 14, "ws": true}, {"text": "(", "start": 71, "end": 72, "id": 15, "ws": false}, {"text": "New", "start": 72, "end": 75, "id": 16, "ws": true}, {"text": "York", "start": 76, "end": 80, "id": 17, "ws": true}, {"text": "1978", "start": 81, "end": 85, "id": 18, "ws": false}, {"text": ")", "start": 85, "end": 86, "id": 19, "ws": false}, {"text": ".", "start": 86, "end": 87, "id": 20, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 25, "label": "author", "token_start": 3, "token_end": 6}, {"start": 26, "end": 70, "label": "title", "token_start": 7, "token_end": 14}, {"start": 71, "end": 80, "label": "location", "token_start": 15, "token_end": 17}, {"start": 81, "end": 87, "label": "date", "token_start": 18, "token_end": 20}]} -{"text": "62 Siehe zum entsprechenden Problem in der Kriminologie Kaiser ( oben N. 22) 88 mwNachw. ; Blazicek/Janeksela (oben N. 30) 235 f., 242.", "tokens": [{"text": "62", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "zum", "start": 9, "end": 12, "id": 2, "ws": true}, {"text": "entsprechenden", "start": 13, "end": 27, "id": 3, "ws": true}, {"text": "Problem", "start": 28, "end": 35, "id": 4, "ws": true}, {"text": "in", "start": 36, "end": 38, "id": 5, "ws": true}, {"text": "der", "start": 39, "end": 42, "id": 6, "ws": true}, {"text": "Kriminologie", "start": 43, "end": 55, "id": 7, "ws": true}, {"text": "Kaiser", "start": 56, "end": 62, "id": 8, "ws": true}, {"text": "(", "start": 63, "end": 64, "id": 9, "ws": true}, {"text": "oben", "start": 65, "end": 69, "id": 10, "ws": true}, {"text": "N.", "start": 70, "end": 72, "id": 11, "ws": true}, {"text": "22", "start": 73, "end": 75, "id": 12, "ws": false}, {"text": ")", "start": 75, "end": 76, "id": 13, "ws": true}, {"text": "88", "start": 77, "end": 79, "id": 14, "ws": true}, {"text": "mwNachw", "start": 80, "end": 87, "id": 15, "ws": false}, {"text": ".", "start": 87, "end": 88, "id": 16, "ws": true}, {"text": ";", "start": 89, "end": 90, "id": 17, "ws": true}, {"text": "Blazicek", "start": 91, "end": 99, "id": 18, "ws": false}, {"text": "/", "start": 99, "end": 100, "id": 19, "ws": false}, {"text": "Janeksela", "start": 100, "end": 109, "id": 20, "ws": true}, {"text": "(", "start": 110, "end": 111, "id": 21, "ws": false}, {"text": "oben", "start": 111, "end": 115, "id": 22, "ws": true}, {"text": "N.", "start": 116, "end": 118, "id": 23, "ws": true}, {"text": "30", "start": 119, "end": 121, "id": 24, "ws": false}, {"text": ")", "start": 121, "end": 122, "id": 25, "ws": true}, {"text": "235", "start": 123, "end": 126, "id": 26, "ws": true}, {"text": "f.", "start": 127, "end": 129, "id": 27, "ws": false}, {"text": ",", "start": 129, "end": 130, "id": 28, "ws": true}, {"text": "242.", "start": 131, "end": 135, "id": 29, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 27, "label": "signal", "token_start": 1, "token_end": 3}, {"start": 28, "end": 55, "label": "title", "token_start": 4, "token_end": 7}, {"start": 56, "end": 62, "label": "author", "token_start": 8, "token_end": 8}, {"start": 63, "end": 76, "label": "backref", "token_start": 9, "token_end": 13}, {"start": 77, "end": 79, "label": "pages", "token_start": 14, "token_end": 14}, {"start": 80, "end": 88, "label": "signal", "token_start": 15, "token_end": 16}, {"start": 89, "end": 109, "label": "author", "token_start": 17, "token_end": 20}, {"start": 110, "end": 122, "label": "backref", "token_start": 21, "token_end": 25}, {"start": 123, "end": 135, "label": "pages", "token_start": 26, "token_end": 29}]} -{"text": "63 Clinard, Comparative Crime Victimization Surveys \u2014 Some Problems and Results, Int. J. Crim, and Pen. 6 (1978) 221 ff.", "tokens": [{"text": "63", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Clinard", "start": 3, "end": 10, "id": 1, "ws": false}, {"text": ",", "start": 10, "end": 11, "id": 2, "ws": true}, {"text": "Comparative", "start": 12, "end": 23, "id": 3, "ws": true}, {"text": "Crime", "start": 24, "end": 29, "id": 4, "ws": true}, {"text": "Victimization", "start": 30, "end": 43, "id": 5, "ws": true}, {"text": "Surveys", "start": 44, "end": 51, "id": 6, "ws": true}, {"text": "\u2014", "start": 52, "end": 53, "id": 7, "ws": true}, {"text": "Some", "start": 54, "end": 58, "id": 8, "ws": true}, {"text": "Problems", "start": 59, "end": 67, "id": 9, "ws": true}, {"text": "and", "start": 68, "end": 71, "id": 10, "ws": true}, {"text": "Results", "start": 72, "end": 79, "id": 11, "ws": false}, {"text": ",", "start": 79, "end": 80, "id": 12, "ws": true}, {"text": "Int", "start": 81, "end": 84, "id": 13, "ws": false}, {"text": ".", "start": 84, "end": 85, "id": 14, "ws": true}, {"text": "J.", "start": 86, "end": 88, "id": 15, "ws": true}, {"text": "Crim", "start": 89, "end": 93, "id": 16, "ws": false}, {"text": ",", "start": 93, "end": 94, "id": 17, "ws": true}, {"text": "and", "start": 95, "end": 98, "id": 18, "ws": true}, {"text": "Pen", "start": 99, "end": 102, "id": 19, "ws": false}, {"text": ".", "start": 102, "end": 103, "id": 20, "ws": true}, {"text": "6", "start": 104, "end": 105, "id": 21, "ws": true}, {"text": "(", "start": 106, "end": 107, "id": 22, "ws": false}, {"text": "1978", "start": 107, "end": 111, "id": 23, "ws": false}, {"text": ")", "start": 111, "end": 112, "id": 24, "ws": true}, {"text": "221", "start": 113, "end": 116, "id": 25, "ws": true}, {"text": "ff", "start": 117, "end": 119, "id": 26, "ws": false}, {"text": ".", "start": 119, "end": 120, "id": 27, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 11, "label": "author", "token_start": 1, "token_end": 2}, {"start": 12, "end": 80, "label": "title", "token_start": 3, "token_end": 12}, {"start": 81, "end": 103, "label": "journal", "token_start": 13, "token_end": 20}, {"start": 0, "end": 1, "label": "volume", "token_start": 0, "token_end": 0}, {"start": 106, "end": 112, "label": "date", "token_start": 22, "token_end": 24}, {"start": 113, "end": 120, "label": "pages", "token_start": 25, "token_end": 27}]} -{"text": "64 Siehe Abel-Smith/Zander/Brooke, Legal Problems and the Citizen (London 1973); Rokumoto, Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison, ZfS 7 (1978) 228 ff.; Schuyt/Groenendijk/Sloot, Rechtspro bleme oder private Schwierigkeiten \u2014 Die Inanspruchnahme von Rechtshilfe in den Nieder landen, in: Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie 5 (1978) 109 ff. Rechtsvergleichung und vergleichende Rechtssoziologie 81", "tokens": [{"text": "64", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Abel-Smith", "start": 9, "end": 19, "id": 2, "ws": false}, {"text": "/", "start": 19, "end": 20, "id": 3, "ws": false}, {"text": "Zander", "start": 20, "end": 26, "id": 4, "ws": false}, {"text": "/", "start": 26, "end": 27, "id": 5, "ws": false}, {"text": "Brooke", "start": 27, "end": 33, "id": 6, "ws": false}, {"text": ",", "start": 33, "end": 34, "id": 7, "ws": true}, {"text": "Legal", "start": 35, "end": 40, "id": 8, "ws": true}, {"text": "Problems", "start": 41, "end": 49, "id": 9, "ws": true}, {"text": "and", "start": 50, "end": 53, "id": 10, "ws": true}, {"text": "the", "start": 54, "end": 57, "id": 11, "ws": true}, {"text": "Citizen", "start": 58, "end": 65, "id": 12, "ws": true}, {"text": "(", "start": 66, "end": 67, "id": 13, "ws": false}, {"text": "London", "start": 67, "end": 73, "id": 14, "ws": true}, {"text": "1973", "start": 74, "end": 78, "id": 15, "ws": false}, {"text": ")", "start": 78, "end": 79, "id": 16, "ws": false}, {"text": ";", "start": 79, "end": 80, "id": 17, "ws": true}, {"text": "Rokumoto", "start": 81, "end": 89, "id": 18, "ws": false}, {"text": ",", "start": 89, "end": 90, "id": 19, "ws": true}, {"text": "Legal", "start": 91, "end": 96, "id": 20, "ws": true}, {"text": "Problems", "start": 97, "end": 105, "id": 21, "ws": true}, {"text": "and", "start": 106, "end": 109, "id": 22, "ws": true}, {"text": "the", "start": 110, "end": 113, "id": 23, "ws": true}, {"text": "Use", "start": 114, "end": 117, "id": 24, "ws": true}, {"text": "of", "start": 118, "end": 120, "id": 25, "ws": true}, {"text": "Law", "start": 121, "end": 124, "id": 26, "ws": true}, {"text": "in", "start": 125, "end": 127, "id": 27, "ws": true}, {"text": "Tokio", "start": 128, "end": 133, "id": 28, "ws": true}, {"text": "and", "start": 134, "end": 137, "id": 29, "ws": true}, {"text": "London", "start": 138, "end": 144, "id": 30, "ws": true}, {"text": "-", "start": 145, "end": 146, "id": 31, "ws": true}, {"text": "A", "start": 147, "end": 148, "id": 32, "ws": true}, {"text": "Preliminary", "start": 149, "end": 160, "id": 33, "ws": true}, {"text": "Study", "start": 161, "end": 166, "id": 34, "ws": true}, {"text": "in", "start": 167, "end": 169, "id": 35, "ws": true}, {"text": "International", "start": 170, "end": 183, "id": 36, "ws": true}, {"text": "Comparison", "start": 184, "end": 194, "id": 37, "ws": false}, {"text": ",", "start": 194, "end": 195, "id": 38, "ws": true}, {"text": "ZfS", "start": 196, "end": 199, "id": 39, "ws": true}, {"text": "7", "start": 200, "end": 201, "id": 40, "ws": true}, {"text": "(", "start": 202, "end": 203, "id": 41, "ws": false}, {"text": "1978", "start": 203, "end": 207, "id": 42, "ws": false}, {"text": ")", "start": 207, "end": 208, "id": 43, "ws": true}, {"text": "228", "start": 209, "end": 212, "id": 44, "ws": true}, {"text": "ff", "start": 213, "end": 215, "id": 45, "ws": false}, {"text": ".", "start": 215, "end": 216, "id": 46, "ws": false}, {"text": ";", "start": 216, "end": 217, "id": 47, "ws": true}, {"text": "Schuyt", "start": 218, "end": 224, "id": 48, "ws": false}, {"text": "/", "start": 224, "end": 225, "id": 49, "ws": false}, {"text": "Groenendijk", "start": 225, "end": 236, "id": 50, "ws": false}, {"text": "/", "start": 236, "end": 237, "id": 51, "ws": false}, {"text": "Sloot", "start": 237, "end": 242, "id": 52, "ws": false}, {"text": ",", "start": 242, "end": 243, "id": 53, "ws": true}, {"text": "Rechtspro", "start": 244, "end": 253, "id": 54, "ws": true}, {"text": "bleme", "start": 254, "end": 259, "id": 55, "ws": true}, {"text": "oder", "start": 260, "end": 264, "id": 56, "ws": true}, {"text": "private", "start": 265, "end": 272, "id": 57, "ws": true}, {"text": "Schwierigkeiten", "start": 273, "end": 288, "id": 58, "ws": true}, {"text": "\u2014", "start": 289, "end": 290, "id": 59, "ws": true}, {"text": "Die", "start": 291, "end": 294, "id": 60, "ws": true}, {"text": "Inanspruchnahme", "start": 295, "end": 310, "id": 61, "ws": true}, {"text": "von", "start": 311, "end": 314, "id": 62, "ws": true}, {"text": "Rechtshilfe", "start": 315, "end": 326, "id": 63, "ws": true}, {"text": "in", "start": 327, "end": 329, "id": 64, "ws": true}, {"text": "den", "start": 330, "end": 333, "id": 65, "ws": true}, {"text": "Nieder", "start": 334, "end": 340, "id": 66, "ws": true}, {"text": "landen", "start": 341, "end": 347, "id": 67, "ws": false}, {"text": ",", "start": 347, "end": 348, "id": 68, "ws": true}, {"text": "in", "start": 349, "end": 351, "id": 69, "ws": false}, {"text": ":", "start": 351, "end": 352, "id": 70, "ws": true}, {"text": "Jahrbuch", "start": 353, "end": 361, "id": 71, "ws": true}, {"text": "f\u00fcr", "start": 362, "end": 365, "id": 72, "ws": true}, {"text": "Rechtssoziologie", "start": 366, "end": 382, "id": 73, "ws": true}, {"text": "und", "start": 383, "end": 386, "id": 74, "ws": true}, {"text": "Rechtstheorie", "start": 387, "end": 400, "id": 75, "ws": true}, {"text": "5", "start": 401, "end": 402, "id": 76, "ws": true}, {"text": "(", "start": 403, "end": 404, "id": 77, "ws": false}, {"text": "1978", "start": 404, "end": 408, "id": 78, "ws": false}, {"text": ")", "start": 408, "end": 409, "id": 79, "ws": true}, {"text": "109", "start": 410, "end": 413, "id": 80, "ws": true}, {"text": "ff", "start": 414, "end": 416, "id": 81, "ws": false}, {"text": ".", "start": 416, "end": 417, "id": 82, "ws": true}, {"text": "Rechtsvergleichung", "start": 418, "end": 436, "id": 83, "ws": true}, {"text": "und", "start": 437, "end": 440, "id": 84, "ws": true}, {"text": "vergleichende", "start": 441, "end": 454, "id": 85, "ws": true}, {"text": "Rechtssoziologie", "start": 455, "end": 471, "id": 86, "ws": true}, {"text": "81", "start": 472, "end": 474, "id": 87, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 34, "label": "author", "token_start": 2, "token_end": 7}, {"start": 35, "end": 65, "label": "title", "token_start": 8, "token_end": 12}, {"start": 66, "end": 73, "label": "location", "token_start": 13, "token_end": 14}, {"start": 74, "end": 80, "label": "date", "token_start": 15, "token_end": 17}, {"start": 81, "end": 90, "label": "author", "token_start": 18, "token_end": 19}, {"start": 91, "end": 195, "label": "title", "token_start": 20, "token_end": 38}, {"start": 196, "end": 199, "label": "journal", "token_start": 39, "token_end": 39}, {"start": 76, "end": 77, "label": "volume", "token_start": 15, "token_end": 15}, {"start": 202, "end": 208, "label": "date", "token_start": 41, "token_end": 43}, {"start": 209, "end": 217, "label": "pages", "token_start": 44, "token_end": 47}, {"start": 218, "end": 243, "label": "author", "token_start": 48, "token_end": 53}, {"start": 244, "end": 348, "label": "title", "token_start": 54, "token_end": 68}, {"start": 349, "end": 400, "label": "journal", "token_start": 69, "token_end": 75}, {"start": 401, "end": 402, "label": "volume", "token_start": 76, "token_end": 76}, {"start": 202, "end": 208, "label": "date", "token_start": 41, "token_end": 43}, {"start": 410, "end": 417, "label": "pages", "token_start": 80, "token_end": 82}, {"start": 418, "end": 474, "label": "ignore", "token_start": 83, "token_end": 87}]} -{"text": "65 Dazu Podgdrecki, Comparative Studies on the Attitudes Towards Various Legal Systems, Polish Sociological Bulletin 21 No. 1 (1970) 83 (88 ff.). \u2014 Siehe auch Ziegen, Zur Effek tivit\u00e4t der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht (1975) 196 ff.", "tokens": [{"text": "65", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "Podgdrecki", "start": 8, "end": 18, "id": 2, "ws": false}, {"text": ",", "start": 18, "end": 19, "id": 3, "ws": true}, {"text": "Comparative", "start": 20, "end": 31, "id": 4, "ws": true}, {"text": "Studies", "start": 32, "end": 39, "id": 5, "ws": true}, {"text": "on", "start": 40, "end": 42, "id": 6, "ws": true}, {"text": "the", "start": 43, "end": 46, "id": 7, "ws": true}, {"text": "Attitudes", "start": 47, "end": 56, "id": 8, "ws": true}, {"text": "Towards", "start": 57, "end": 64, "id": 9, "ws": true}, {"text": "Various", "start": 65, "end": 72, "id": 10, "ws": true}, {"text": "Legal", "start": 73, "end": 78, "id": 11, "ws": true}, {"text": "Systems", "start": 79, "end": 86, "id": 12, "ws": false}, {"text": ",", "start": 86, "end": 87, "id": 13, "ws": true}, {"text": "Polish", "start": 88, "end": 94, "id": 14, "ws": true}, {"text": "Sociological", "start": 95, "end": 107, "id": 15, "ws": true}, {"text": "Bulletin", "start": 108, "end": 116, "id": 16, "ws": true}, {"text": "21", "start": 117, "end": 119, "id": 17, "ws": true}, {"text": "No", "start": 120, "end": 122, "id": 18, "ws": false}, {"text": ".", "start": 122, "end": 123, "id": 19, "ws": true}, {"text": "1", "start": 124, "end": 125, "id": 20, "ws": true}, {"text": "(", "start": 126, "end": 127, "id": 21, "ws": false}, {"text": "1970", "start": 127, "end": 131, "id": 22, "ws": false}, {"text": ")", "start": 131, "end": 132, "id": 23, "ws": true}, {"text": "83", "start": 133, "end": 135, "id": 24, "ws": true}, {"text": "(", "start": 136, "end": 137, "id": 25, "ws": false}, {"text": "88", "start": 137, "end": 139, "id": 26, "ws": true}, {"text": "ff", "start": 140, "end": 142, "id": 27, "ws": false}, {"text": ".", "start": 142, "end": 143, "id": 28, "ws": false}, {"text": ")", "start": 143, "end": 144, "id": 29, "ws": false}, {"text": ".", "start": 144, "end": 145, "id": 30, "ws": true}, {"text": "\u2014", "start": 146, "end": 147, "id": 31, "ws": true}, {"text": "Siehe", "start": 148, "end": 153, "id": 32, "ws": true}, {"text": "auch", "start": 154, "end": 158, "id": 33, "ws": true}, {"text": "Ziegen", "start": 159, "end": 165, "id": 34, "ws": false}, {"text": ",", "start": 165, "end": 166, "id": 35, "ws": true}, {"text": "Zur", "start": 167, "end": 170, "id": 36, "ws": true}, {"text": "Effek", "start": 171, "end": 176, "id": 37, "ws": true}, {"text": "tivit\u00e4t", "start": 177, "end": 184, "id": 38, "ws": true}, {"text": "der", "start": 185, "end": 188, "id": 39, "ws": true}, {"text": "Rechtssoziologie", "start": 189, "end": 205, "id": 40, "ws": false}, {"text": ":", "start": 205, "end": 206, "id": 41, "ws": true}, {"text": "die", "start": 207, "end": 210, "id": 42, "ws": true}, {"text": "Rekonstruktion", "start": 211, "end": 225, "id": 43, "ws": true}, {"text": "der", "start": 226, "end": 229, "id": 44, "ws": true}, {"text": "Gesellschaft", "start": 230, "end": 242, "id": 45, "ws": true}, {"text": "durch", "start": 243, "end": 248, "id": 46, "ws": true}, {"text": "Recht", "start": 249, "end": 254, "id": 47, "ws": true}, {"text": "(", "start": 255, "end": 256, "id": 48, "ws": false}, {"text": "1975", "start": 256, "end": 260, "id": 49, "ws": false}, {"text": ")", "start": 260, "end": 261, "id": 50, "ws": true}, {"text": "196", "start": 262, "end": 265, "id": 51, "ws": true}, {"text": "ff", "start": 266, "end": 268, "id": 52, "ws": false}, {"text": ".", "start": 268, "end": 269, "id": 53, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 8, "end": 19, "label": "author", "token_start": 2, "token_end": 3}, {"start": 20, "end": 87, "label": "title", "token_start": 4, "token_end": 13}, {"start": 88, "end": 116, "label": "journal", "token_start": 14, "token_end": 16}, {"start": 117, "end": 125, "label": "volume", "token_start": 17, "token_end": 20}, {"start": 126, "end": 132, "label": "date", "token_start": 21, "token_end": 23}, {"start": 133, "end": 145, "label": "pages", "token_start": 24, "token_end": 30}, {"start": 146, "end": 158, "label": "signal", "token_start": 31, "token_end": 33}, {"start": 159, "end": 166, "label": "author", "token_start": 34, "token_end": 35}, {"start": 167, "end": 254, "label": "title", "token_start": 36, "token_end": 47}, {"start": 255, "end": 261, "label": "date", "token_start": 48, "token_end": 50}, {"start": 262, "end": 269, "label": "pages", "token_start": 51, "token_end": 53}]} -{"text": "66 Siehe Podgdrecki, Legal Consciousness as a Research Problem, European Yearbook in Law and Sociology 1977 (Den Haag 1977) 85 (88 ff.).", "tokens": [{"text": "66", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Podgdrecki", "start": 9, "end": 19, "id": 2, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 3, "ws": true}, {"text": "Legal", "start": 21, "end": 26, "id": 4, "ws": true}, {"text": "Consciousness", "start": 27, "end": 40, "id": 5, "ws": true}, {"text": "as", "start": 41, "end": 43, "id": 6, "ws": true}, {"text": "a", "start": 44, "end": 45, "id": 7, "ws": true}, {"text": "Research", "start": 46, "end": 54, "id": 8, "ws": true}, {"text": "Problem", "start": 55, "end": 62, "id": 9, "ws": false}, {"text": ",", "start": 62, "end": 63, "id": 10, "ws": true}, {"text": "European", "start": 64, "end": 72, "id": 11, "ws": true}, {"text": "Yearbook", "start": 73, "end": 81, "id": 12, "ws": true}, {"text": "in", "start": 82, "end": 84, "id": 13, "ws": true}, {"text": "Law", "start": 85, "end": 88, "id": 14, "ws": true}, {"text": "and", "start": 89, "end": 92, "id": 15, "ws": true}, {"text": "Sociology", "start": 93, "end": 102, "id": 16, "ws": true}, {"text": " ", "start": 103, "end": 104, "id": 17, "ws": false}, {"text": "1977", "start": 104, "end": 108, "id": 18, "ws": true}, {"text": "(", "start": 109, "end": 110, "id": 19, "ws": false}, {"text": "Den", "start": 110, "end": 113, "id": 20, "ws": true}, {"text": "Haag", "start": 114, "end": 118, "id": 21, "ws": true}, {"text": "1977", "start": 119, "end": 123, "id": 22, "ws": false}, {"text": ")", "start": 123, "end": 124, "id": 23, "ws": true}, {"text": "85", "start": 125, "end": 127, "id": 24, "ws": true}, {"text": "(", "start": 128, "end": 129, "id": 25, "ws": false}, {"text": "88", "start": 129, "end": 131, "id": 26, "ws": true}, {"text": "ff", "start": 132, "end": 134, "id": 27, "ws": false}, {"text": ".", "start": 134, "end": 135, "id": 28, "ws": false}, {"text": ")", "start": 135, "end": 136, "id": 29, "ws": false}, {"text": ".", "start": 136, "end": 137, "id": 30, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 20, "label": "author", "token_start": 2, "token_end": 3}, {"start": 21, "end": 63, "label": "title", "token_start": 4, "token_end": 10}, {"start": 64, "end": 108, "label": "journal", "token_start": 11, "token_end": 18}, {"start": 109, "end": 118, "label": "location", "token_start": 19, "token_end": 21}, {"start": 119, "end": 124, "label": "date", "token_start": 22, "token_end": 23}, {"start": 125, "end": 137, "label": "pages", "token_start": 24, "token_end": 30}]} -{"text": "67 Kutchinsky, \u201eThe Legal Consciousness\u201c: A Survey of Research on Knowledge and Opinion about Law, in: Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky, Knowledge and Opinion about Law (Bristol 1973) 101 (126).", "tokens": [{"text": "67", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Kutchinsky", "start": 3, "end": 13, "id": 1, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 2, "ws": true}, {"text": "\u201e", "start": 15, "end": 16, "id": 3, "ws": false}, {"text": "The", "start": 16, "end": 19, "id": 4, "ws": true}, {"text": "Legal", "start": 20, "end": 25, "id": 5, "ws": true}, {"text": "Consciousness", "start": 26, "end": 39, "id": 6, "ws": false}, {"text": "\u201c", "start": 39, "end": 40, "id": 7, "ws": false}, {"text": ":", "start": 40, "end": 41, "id": 8, "ws": true}, {"text": "A", "start": 42, "end": 43, "id": 9, "ws": true}, {"text": "Survey", "start": 44, "end": 50, "id": 10, "ws": true}, {"text": "of", "start": 51, "end": 53, "id": 11, "ws": true}, {"text": "Research", "start": 54, "end": 62, "id": 12, "ws": true}, {"text": "on", "start": 63, "end": 65, "id": 13, "ws": true}, {"text": "Knowledge", "start": 66, "end": 75, "id": 14, "ws": true}, {"text": "and", "start": 76, "end": 79, "id": 15, "ws": true}, {"text": "Opinion", "start": 80, "end": 87, "id": 16, "ws": true}, {"text": "about", "start": 88, "end": 93, "id": 17, "ws": true}, {"text": "Law", "start": 94, "end": 97, "id": 18, "ws": false}, {"text": ",", "start": 97, "end": 98, "id": 19, "ws": true}, {"text": "in", "start": 99, "end": 101, "id": 20, "ws": false}, {"text": ":", "start": 101, "end": 102, "id": 21, "ws": true}, {"text": "Podgdrecki", "start": 103, "end": 113, "id": 22, "ws": false}, {"text": "/", "start": 113, "end": 114, "id": 23, "ws": false}, {"text": "Kaupen", "start": 114, "end": 120, "id": 24, "ws": false}, {"text": "/", "start": 120, "end": 121, "id": 25, "ws": false}, {"text": "van", "start": 121, "end": 124, "id": 26, "ws": true}, {"text": "Houtte", "start": 125, "end": 131, "id": 27, "ws": false}, {"text": "/", "start": 131, "end": 132, "id": 28, "ws": false}, {"text": "Vinke", "start": 132, "end": 137, "id": 29, "ws": false}, {"text": "/", "start": 137, "end": 138, "id": 30, "ws": false}, {"text": "Kutchinsky", "start": 138, "end": 148, "id": 31, "ws": false}, {"text": ",", "start": 148, "end": 149, "id": 32, "ws": true}, {"text": "Knowledge", "start": 150, "end": 159, "id": 33, "ws": true}, {"text": "and", "start": 160, "end": 163, "id": 34, "ws": true}, {"text": "Opinion", "start": 164, "end": 171, "id": 35, "ws": true}, {"text": "about", "start": 172, "end": 177, "id": 36, "ws": true}, {"text": "Law", "start": 178, "end": 181, "id": 37, "ws": true}, {"text": "(", "start": 182, "end": 183, "id": 38, "ws": false}, {"text": "Bristol", "start": 183, "end": 190, "id": 39, "ws": true}, {"text": "1973", "start": 191, "end": 195, "id": 40, "ws": false}, {"text": ")", "start": 195, "end": 196, "id": 41, "ws": true}, {"text": "101", "start": 197, "end": 200, "id": 42, "ws": true}, {"text": "(", "start": 201, "end": 202, "id": 43, "ws": false}, {"text": "126", "start": 202, "end": 205, "id": 44, "ws": false}, {"text": ")", "start": 205, "end": 206, "id": 45, "ws": false}, {"text": ".", "start": 206, "end": 207, "id": 46, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 14, "label": "author", "token_start": 1, "token_end": 2}, {"start": 15, "end": 98, "label": "title", "token_start": 3, "token_end": 19}, {"start": 99, "end": 149, "label": "editor", "token_start": 20, "token_end": 32}, {"start": 66, "end": 97, "label": "container-title", "token_start": 14, "token_end": 18}, {"start": 182, "end": 190, "label": "location", "token_start": 38, "token_end": 39}, {"start": 191, "end": 196, "label": "date", "token_start": 40, "token_end": 41}, {"start": 197, "end": 207, "label": "pages", "token_start": 42, "token_end": 46}]} -{"text": "68 Podgdrecki, Public Opinion on Law, in: Knowledge and Opinion about Law (vorige N.) 65 (84 ff.).", "tokens": [{"text": "68", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Podgdrecki", "start": 3, "end": 13, "id": 1, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 2, "ws": true}, {"text": "Public", "start": 15, "end": 21, "id": 3, "ws": true}, {"text": "Opinion", "start": 22, "end": 29, "id": 4, "ws": true}, {"text": "on", "start": 30, "end": 32, "id": 5, "ws": true}, {"text": "Law", "start": 33, "end": 36, "id": 6, "ws": false}, {"text": ",", "start": 36, "end": 37, "id": 7, "ws": true}, {"text": "in", "start": 38, "end": 40, "id": 8, "ws": false}, {"text": ":", "start": 40, "end": 41, "id": 9, "ws": true}, {"text": "Knowledge", "start": 42, "end": 51, "id": 10, "ws": true}, {"text": "and", "start": 52, "end": 55, "id": 11, "ws": true}, {"text": "Opinion", "start": 56, "end": 63, "id": 12, "ws": true}, {"text": "about", "start": 64, "end": 69, "id": 13, "ws": true}, {"text": "Law", "start": 70, "end": 73, "id": 14, "ws": true}, {"text": "(", "start": 74, "end": 75, "id": 15, "ws": false}, {"text": "vorige", "start": 75, "end": 81, "id": 16, "ws": true}, {"text": "N.", "start": 82, "end": 84, "id": 17, "ws": false}, {"text": ")", "start": 84, "end": 85, "id": 18, "ws": true}, {"text": "65", "start": 86, "end": 88, "id": 19, "ws": true}, {"text": "(", "start": 89, "end": 90, "id": 20, "ws": false}, {"text": "84", "start": 90, "end": 92, "id": 21, "ws": true}, {"text": "ff", "start": 93, "end": 95, "id": 22, "ws": false}, {"text": ".", "start": 95, "end": 96, "id": 23, "ws": false}, {"text": ")", "start": 96, "end": 97, "id": 24, "ws": false}, {"text": ".", "start": 97, "end": 98, "id": 25, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 14, "label": "author", "token_start": 1, "token_end": 2}, {"start": 15, "end": 37, "label": "title", "token_start": 3, "token_end": 7}, {"start": 38, "end": 73, "label": "container-title", "token_start": 8, "token_end": 14}, {"start": 74, "end": 85, "label": "backref", "token_start": 15, "token_end": 18}, {"start": 86, "end": 98, "label": "pages", "token_start": 19, "token_end": 25}]} -{"text": "69 Heintz, Interkultureller Vergleich, in: K\u00f6nig (Hrsg.), Handbuch der empirischen Sozialfor schung, Bd. 4 (3. Aufl. 1974) 405 (414 f.).", "tokens": [{"text": "69", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Heintz", "start": 3, "end": 9, "id": 1, "ws": false}, {"text": ",", "start": 9, "end": 10, "id": 2, "ws": true}, {"text": "Interkultureller", "start": 11, "end": 27, "id": 3, "ws": true}, {"text": "Vergleich", "start": 28, "end": 37, "id": 4, "ws": false}, {"text": ",", "start": 37, "end": 38, "id": 5, "ws": true}, {"text": "in", "start": 39, "end": 41, "id": 6, "ws": false}, {"text": ":", "start": 41, "end": 42, "id": 7, "ws": true}, {"text": "K\u00f6nig", "start": 43, "end": 48, "id": 8, "ws": true}, {"text": "(", "start": 49, "end": 50, "id": 9, "ws": false}, {"text": "Hrsg.", "start": 50, "end": 55, "id": 10, "ws": false}, {"text": ")", "start": 55, "end": 56, "id": 11, "ws": false}, {"text": ",", "start": 56, "end": 57, "id": 12, "ws": true}, {"text": "Handbuch", "start": 58, "end": 66, "id": 13, "ws": true}, {"text": "der", "start": 67, "end": 70, "id": 14, "ws": true}, {"text": "empirischen", "start": 71, "end": 82, "id": 15, "ws": true}, {"text": "Sozialfor", "start": 83, "end": 92, "id": 16, "ws": true}, {"text": "schung", "start": 93, "end": 99, "id": 17, "ws": false}, {"text": ",", "start": 99, "end": 100, "id": 18, "ws": true}, {"text": "Bd.", "start": 101, "end": 104, "id": 19, "ws": true}, {"text": "4", "start": 105, "end": 106, "id": 20, "ws": true}, {"text": "(", "start": 107, "end": 108, "id": 21, "ws": false}, {"text": "3.", "start": 108, "end": 110, "id": 22, "ws": true}, {"text": "Aufl", "start": 111, "end": 115, "id": 23, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 24, "ws": true}, {"text": "1974", "start": 117, "end": 121, "id": 25, "ws": false}, {"text": ")", "start": 121, "end": 122, "id": 26, "ws": true}, {"text": "405", "start": 123, "end": 126, "id": 27, "ws": true}, {"text": "(", "start": 127, "end": 128, "id": 28, "ws": false}, {"text": "414", "start": 128, "end": 131, "id": 29, "ws": true}, {"text": "f.", "start": 132, "end": 134, "id": 30, "ws": false}, {"text": ")", "start": 134, "end": 135, "id": 31, "ws": false}, {"text": ".", "start": 135, "end": 136, "id": 32, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 10, "label": "author", "token_start": 1, "token_end": 2}, {"start": 11, "end": 38, "label": "title", "token_start": 3, "token_end": 5}, {"start": 39, "end": 57, "label": "editor", "token_start": 6, "token_end": 12}, {"start": 58, "end": 100, "label": "container-title", "token_start": 13, "token_end": 18}, {"start": 101, "end": 116, "label": "volume", "token_start": 19, "token_end": 24}, {"start": 117, "end": 122, "label": "date", "token_start": 25, "token_end": 26}, {"start": 123, "end": 136, "label": "pages", "token_start": 27, "token_end": 32}]} -{"text": "70 Siehe Hegenbarth, \u00dcber methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsl\u00e4ndern, Informationsbrief f\u00fcr Rechtssoziologie April 1979, Son derheft 2, S. 5 ff. mwNachw.", "tokens": [{"text": "70", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Hegenbarth", "start": 9, "end": 19, "id": 2, "ws": false}, {"text": ",", "start": 19, "end": 20, "id": 3, "ws": true}, {"text": "\u00dcber", "start": 21, "end": 25, "id": 4, "ws": true}, {"text": "methodische", "start": 26, "end": 37, "id": 5, "ws": true}, {"text": "und", "start": 38, "end": 41, "id": 6, "ws": true}, {"text": "organisatorische", "start": 42, "end": 58, "id": 7, "ws": true}, {"text": "Grenzen", "start": 59, "end": 66, "id": 8, "ws": true}, {"text": "der", "start": 67, "end": 70, "id": 9, "ws": true}, {"text": "empirischen", "start": 71, "end": 82, "id": 10, "ws": true}, {"text": "Rechts", "start": 83, "end": 89, "id": 11, "ws": true}, {"text": "forschung", "start": 90, "end": 99, "id": 12, "ws": true}, {"text": "in", "start": 100, "end": 102, "id": 13, "ws": true}, {"text": "Entwicklungsl\u00e4ndern", "start": 103, "end": 122, "id": 14, "ws": false}, {"text": ",", "start": 122, "end": 123, "id": 15, "ws": true}, {"text": "Informationsbrief", "start": 124, "end": 141, "id": 16, "ws": true}, {"text": "f\u00fcr", "start": 142, "end": 145, "id": 17, "ws": true}, {"text": "Rechtssoziologie", "start": 146, "end": 162, "id": 18, "ws": true}, {"text": "April", "start": 163, "end": 168, "id": 19, "ws": true}, {"text": "1979", "start": 169, "end": 173, "id": 20, "ws": false}, {"text": ",", "start": 173, "end": 174, "id": 21, "ws": true}, {"text": "Son", "start": 175, "end": 178, "id": 22, "ws": true}, {"text": "derheft", "start": 179, "end": 186, "id": 23, "ws": true}, {"text": "2", "start": 187, "end": 188, "id": 24, "ws": false}, {"text": ",", "start": 188, "end": 189, "id": 25, "ws": true}, {"text": "S.", "start": 190, "end": 192, "id": 26, "ws": true}, {"text": "5", "start": 193, "end": 194, "id": 27, "ws": true}, {"text": "ff", "start": 195, "end": 197, "id": 28, "ws": false}, {"text": ".", "start": 197, "end": 198, "id": 29, "ws": true}, {"text": "mwNachw", "start": 199, "end": 206, "id": 30, "ws": false}, {"text": ".", "start": 206, "end": 207, "id": 31, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 20, "label": "author", "token_start": 2, "token_end": 3}, {"start": 21, "end": 123, "label": "title", "token_start": 4, "token_end": 15}, {"start": 124, "end": 162, "label": "journal", "token_start": 16, "token_end": 18}, {"start": 163, "end": 174, "label": "date", "token_start": 19, "token_end": 21}, {"start": 175, "end": 189, "label": "volume", "token_start": 22, "token_end": 25}, {"start": 190, "end": 198, "label": "pages", "token_start": 26, "token_end": 29}, {"start": 199, "end": 207, "label": "signal", "token_start": 30, "token_end": 31}]} -{"text": "71 Siehe etwa Gessner, Recht und Konflikt \u2014 Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko (1976) 37 ff.", "tokens": [{"text": "71", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "etwa", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "Gessner", "start": 14, "end": 21, "id": 3, "ws": false}, {"text": ",", "start": 21, "end": 22, "id": 4, "ws": true}, {"text": "Recht", "start": 23, "end": 28, "id": 5, "ws": true}, {"text": "und", "start": 29, "end": 32, "id": 6, "ws": true}, {"text": "Konflikt", "start": 33, "end": 41, "id": 7, "ws": true}, {"text": "\u2014", "start": 42, "end": 43, "id": 8, "ws": true}, {"text": "Eine", "start": 44, "end": 48, "id": 9, "ws": true}, {"text": "soziologische", "start": 49, "end": 62, "id": 10, "ws": true}, {"text": "Untersuchungprivatrechtlicher", "start": 63, "end": 92, "id": 11, "ws": true}, {"text": "Konflikte", "start": 93, "end": 102, "id": 12, "ws": true}, {"text": "in", "start": 103, "end": 105, "id": 13, "ws": true}, {"text": "Mexiko", "start": 106, "end": 112, "id": 14, "ws": true}, {"text": "(", "start": 113, "end": 114, "id": 15, "ws": false}, {"text": "1976", "start": 114, "end": 118, "id": 16, "ws": false}, {"text": ")", "start": 118, "end": 119, "id": 17, "ws": true}, {"text": "37", "start": 120, "end": 122, "id": 18, "ws": true}, {"text": "ff", "start": 123, "end": 125, "id": 19, "ws": false}, {"text": ".", "start": 125, "end": 126, "id": 20, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 22, "label": "author", "token_start": 3, "token_end": 4}, {"start": 23, "end": 112, "label": "title", "token_start": 5, "token_end": 14}, {"start": 113, "end": 119, "label": "date", "token_start": 15, "token_end": 17}, {"start": 120, "end": 126, "label": "pages", "token_start": 18, "token_end": 20}]} -{"text": "72 Vgl. Heintz (oben N. 69) 407.", "tokens": [{"text": "72", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Vgl", "start": 3, "end": 6, "id": 1, "ws": false}, {"text": ".", "start": 6, "end": 7, "id": 2, "ws": true}, {"text": "Heintz", "start": 8, "end": 14, "id": 3, "ws": true}, {"text": "(", "start": 15, "end": 16, "id": 4, "ws": false}, {"text": "oben", "start": 16, "end": 20, "id": 5, "ws": true}, {"text": "N.", "start": 21, "end": 23, "id": 6, "ws": true}, {"text": "69", "start": 24, "end": 26, "id": 7, "ws": false}, {"text": ")", "start": 26, "end": 27, "id": 8, "ws": true}, {"text": "407.", "start": 28, "end": 32, "id": 9, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 7, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 8, "end": 14, "label": "author", "token_start": 3, "token_end": 3}, {"start": 15, "end": 27, "label": "backref", "token_start": 4, "token_end": 8}, {"start": 28, "end": 32, "label": "pages", "token_start": 9, "token_end": 9}]} -{"text": "73 Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale \u00dcberein stimmung, da\u00df vergleichenden Studien kein Vorrang zu geben sei. Dazu Friday, Problems in Comparative Criminology, Int. J. Crim. 1 (1973) 151 (152).", "tokens": [{"text": "73", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Da", "start": 3, "end": 5, "id": 1, "ws": true}, {"text": "die", "start": 6, "end": 9, "id": 2, "ws": true}, {"text": "theoretischen", "start": 10, "end": 23, "id": 3, "ws": true}, {"text": "und", "start": 24, "end": 27, "id": 4, "ws": true}, {"text": "technischen", "start": 28, "end": 39, "id": 5, "ws": true}, {"text": "Erfordernisse", "start": 40, "end": 53, "id": 6, "ws": true}, {"text": "solcher", "start": 54, "end": 61, "id": 7, "ws": true}, {"text": "Vergleiche", "start": 62, "end": 72, "id": 8, "ws": true}, {"text": "in", "start": 73, "end": 75, "id": 9, "ws": true}, {"text": "der", "start": 76, "end": 79, "id": 10, "ws": true}, {"text": "Tat", "start": 80, "end": 83, "id": 11, "ws": true}, {"text": "komplex", "start": 84, "end": 91, "id": 12, "ws": true}, {"text": "sind", "start": 92, "end": 96, "id": 13, "ws": false}, {"text": ",", "start": 96, "end": 97, "id": 14, "ws": true}, {"text": "bestand", "start": 98, "end": 105, "id": 15, "ws": true}, {"text": "in", "start": 106, "end": 108, "id": 16, "ws": true}, {"text": "der", "start": 109, "end": 112, "id": 17, "ws": true}, {"text": "Kriminologie", "start": 113, "end": 125, "id": 18, "ws": true}, {"text": "noch", "start": 126, "end": 130, "id": 19, "ws": true}, {"text": "Mitte", "start": 131, "end": 136, "id": 20, "ws": true}, {"text": "der", "start": 137, "end": 140, "id": 21, "ws": true}, {"text": "sechziger", "start": 141, "end": 150, "id": 22, "ws": true}, {"text": "Jahre", "start": 151, "end": 156, "id": 23, "ws": true}, {"text": "internationale", "start": 157, "end": 171, "id": 24, "ws": true}, {"text": "\u00dcberein", "start": 172, "end": 179, "id": 25, "ws": true}, {"text": "stimmung", "start": 180, "end": 188, "id": 26, "ws": false}, {"text": ",", "start": 188, "end": 189, "id": 27, "ws": true}, {"text": "da\u00df", "start": 190, "end": 193, "id": 28, "ws": true}, {"text": "vergleichenden", "start": 194, "end": 208, "id": 29, "ws": true}, {"text": "Studien", "start": 209, "end": 216, "id": 30, "ws": true}, {"text": "kein", "start": 217, "end": 221, "id": 31, "ws": true}, {"text": "Vorrang", "start": 222, "end": 229, "id": 32, "ws": true}, {"text": "zu", "start": 230, "end": 232, "id": 33, "ws": true}, {"text": "geben", "start": 233, "end": 238, "id": 34, "ws": true}, {"text": "sei", "start": 239, "end": 242, "id": 35, "ws": false}, {"text": ".", "start": 242, "end": 243, "id": 36, "ws": true}, {"text": "Dazu", "start": 244, "end": 248, "id": 37, "ws": true}, {"text": "Friday", "start": 249, "end": 255, "id": 38, "ws": false}, {"text": ",", "start": 255, "end": 256, "id": 39, "ws": true}, {"text": "Problems", "start": 257, "end": 265, "id": 40, "ws": true}, {"text": "in", "start": 266, "end": 268, "id": 41, "ws": true}, {"text": "Comparative", "start": 269, "end": 280, "id": 42, "ws": true}, {"text": "Criminology", "start": 281, "end": 292, "id": 43, "ws": false}, {"text": ",", "start": 292, "end": 293, "id": 44, "ws": true}, {"text": "Int", "start": 294, "end": 297, "id": 45, "ws": false}, {"text": ".", "start": 297, "end": 298, "id": 46, "ws": true}, {"text": "J.", "start": 299, "end": 301, "id": 47, "ws": true}, {"text": "Crim", "start": 302, "end": 306, "id": 48, "ws": false}, {"text": ".", "start": 306, "end": 307, "id": 49, "ws": true}, {"text": "1", "start": 308, "end": 309, "id": 50, "ws": true}, {"text": "(", "start": 310, "end": 311, "id": 51, "ws": false}, {"text": "1973", "start": 311, "end": 315, "id": 52, "ws": false}, {"text": ")", "start": 315, "end": 316, "id": 53, "ws": true}, {"text": "151", "start": 317, "end": 320, "id": 54, "ws": true}, {"text": "(", "start": 321, "end": 322, "id": 55, "ws": false}, {"text": "152", "start": 322, "end": 325, "id": 56, "ws": false}, {"text": ")", "start": 325, "end": 326, "id": 57, "ws": false}, {"text": ".", "start": 326, "end": 327, "id": 58, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 243, "label": "note", "token_start": 1, "token_end": 36}, {"start": 244, "end": 248, "label": "signal", "token_start": 37, "token_end": 37}, {"start": 249, "end": 256, "label": "author", "token_start": 38, "token_end": 39}, {"start": 257, "end": 293, "label": "title", "token_start": 40, "token_end": 44}, {"start": 294, "end": 307, "label": "journal", "token_start": 45, "token_end": 49}, {"start": 308, "end": 309, "label": "volume", "token_start": 50, "token_end": 50}, {"start": 310, "end": 316, "label": "date", "token_start": 51, "token_end": 53}, {"start": 317, "end": 327, "label": "pages", "token_start": 54, "token_end": 58}]} -{"text": "74 Zur Anlage vergleichender Studien n\u00e4her Rokkan, Vergleichende Sozialwissenschaft (1972)", "tokens": [{"text": "74", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Zur", "start": 3, "end": 6, "id": 1, "ws": true}, {"text": "Anlage", "start": 7, "end": 13, "id": 2, "ws": true}, {"text": "vergleichender", "start": 14, "end": 28, "id": 3, "ws": true}, {"text": "Studien", "start": 29, "end": 36, "id": 4, "ws": true}, {"text": "n\u00e4her", "start": 37, "end": 42, "id": 5, "ws": true}, {"text": "Rokkan", "start": 43, "end": 49, "id": 6, "ws": false}, {"text": ",", "start": 49, "end": 50, "id": 7, "ws": true}, {"text": "Vergleichende", "start": 51, "end": 64, "id": 8, "ws": true}, {"text": "Sozialwissenschaft", "start": 65, "end": 83, "id": 9, "ws": true}, {"text": "(", "start": 84, "end": 85, "id": 10, "ws": false}, {"text": "1972", "start": 85, "end": 89, "id": 11, "ws": false}, {"text": ")", "start": 89, "end": 90, "id": 12, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 42, "label": "signal", "token_start": 1, "token_end": 5}, {"start": 43, "end": 50, "label": "author", "token_start": 6, "token_end": 7}, {"start": 51, "end": 83, "label": "title", "token_start": 8, "token_end": 9}, {"start": 84, "end": 90, "label": "date", "token_start": 10, "token_end": 12}]} -{"text": "9 ff.; Szalai, The Organization and Execution of Cross-National Survey Research Projects, in: Szalai/Petrella 49 ff. sowie IDE-International Research Group (oben N. 52) Chapter I.", "tokens": [{"text": "9", "start": 0, "end": 1, "id": 0, "ws": true}, {"text": "ff", "start": 2, "end": 4, "id": 1, "ws": false}, {"text": ".", "start": 4, "end": 5, "id": 2, "ws": false}, {"text": ";", "start": 5, "end": 6, "id": 3, "ws": true}, {"text": "Szalai", "start": 7, "end": 13, "id": 4, "ws": false}, {"text": ",", "start": 13, "end": 14, "id": 5, "ws": true}, {"text": "The", "start": 15, "end": 18, "id": 6, "ws": true}, {"text": "Organization", "start": 19, "end": 31, "id": 7, "ws": true}, {"text": "and", "start": 32, "end": 35, "id": 8, "ws": true}, {"text": "Execution", "start": 36, "end": 45, "id": 9, "ws": true}, {"text": "of", "start": 46, "end": 48, "id": 10, "ws": true}, {"text": "Cross-National", "start": 49, "end": 63, "id": 11, "ws": true}, {"text": "Survey", "start": 64, "end": 70, "id": 12, "ws": true}, {"text": "Research", "start": 71, "end": 79, "id": 13, "ws": true}, {"text": "Projects", "start": 80, "end": 88, "id": 14, "ws": false}, {"text": ",", "start": 88, "end": 89, "id": 15, "ws": true}, {"text": "in", "start": 90, "end": 92, "id": 16, "ws": false}, {"text": ":", "start": 92, "end": 93, "id": 17, "ws": true}, {"text": "Szalai", "start": 94, "end": 100, "id": 18, "ws": false}, {"text": "/", "start": 100, "end": 101, "id": 19, "ws": false}, {"text": "Petrella", "start": 101, "end": 109, "id": 20, "ws": true}, {"text": "49", "start": 110, "end": 112, "id": 21, "ws": true}, {"text": "ff", "start": 113, "end": 115, "id": 22, "ws": false}, {"text": ".", "start": 115, "end": 116, "id": 23, "ws": true}, {"text": "sowie", "start": 117, "end": 122, "id": 24, "ws": true}, {"text": "IDE-International", "start": 123, "end": 140, "id": 25, "ws": true}, {"text": "Research", "start": 141, "end": 149, "id": 26, "ws": true}, {"text": "Group", "start": 150, "end": 155, "id": 27, "ws": true}, {"text": "(", "start": 156, "end": 157, "id": 28, "ws": false}, {"text": "oben", "start": 157, "end": 161, "id": 29, "ws": true}, {"text": "N.", "start": 162, "end": 164, "id": 30, "ws": true}, {"text": "52", "start": 165, "end": 167, "id": 31, "ws": false}, {"text": ")", "start": 167, "end": 168, "id": 32, "ws": true}, {"text": "Chapter", "start": 169, "end": 176, "id": 33, "ws": true}, {"text": "I.", "start": 177, "end": 179, "id": 34, "ws": false}], "spans": [{"start": 0, "end": 1, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 2, "end": 6, "label": "ignore", "token_start": 1, "token_end": 3}, {"start": 7, "end": 14, "label": "author", "token_start": 4, "token_end": 5}, {"start": 15, "end": 89, "label": "title", "token_start": 6, "token_end": 15}, {"start": 90, "end": 109, "label": "editor", "token_start": 16, "token_end": 20}, {"start": 110, "end": 116, "label": "pages", "token_start": 21, "token_end": 23}, {"start": 117, "end": 122, "label": "signal", "token_start": 24, "token_end": 24}, {"start": 123, "end": 155, "label": "authority", "token_start": 25, "token_end": 27}, {"start": 156, "end": 168, "label": "backref", "token_start": 28, "token_end": 32}, {"start": 169, "end": 179, "label": "pages", "token_start": 33, "token_end": 34}]} -{"text": "75 Siehe Blegvad, Methodological Aspects of the Project \u201eLocal Legal Systems\u201c, in.- Kulcs\u00e4r (Hrsg.), Sociology of Law and Legal Sciences (Budapest 1977) 97 (99 ff.).", "tokens": [{"text": "75", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Blegvad", "start": 9, "end": 16, "id": 2, "ws": false}, {"text": ",", "start": 16, "end": 17, "id": 3, "ws": true}, {"text": "Methodological", "start": 18, "end": 32, "id": 4, "ws": true}, {"text": "Aspects", "start": 33, "end": 40, "id": 5, "ws": true}, {"text": "of", "start": 41, "end": 43, "id": 6, "ws": true}, {"text": "the", "start": 44, "end": 47, "id": 7, "ws": true}, {"text": "Project", "start": 48, "end": 55, "id": 8, "ws": true}, {"text": "\u201e", "start": 56, "end": 57, "id": 9, "ws": false}, {"text": "Local", "start": 57, "end": 62, "id": 10, "ws": true}, {"text": "Legal", "start": 63, "end": 68, "id": 11, "ws": true}, {"text": "Systems", "start": 69, "end": 76, "id": 12, "ws": false}, {"text": "\u201c", "start": 76, "end": 77, "id": 13, "ws": false}, {"text": ",", "start": 77, "end": 78, "id": 14, "ws": true}, {"text": "in.-", "start": 79, "end": 83, "id": 15, "ws": true}, {"text": "Kulcs\u00e4r", "start": 84, "end": 91, "id": 16, "ws": true}, {"text": "(", "start": 92, "end": 93, "id": 17, "ws": false}, {"text": "Hrsg.", "start": 93, "end": 98, "id": 18, "ws": false}, {"text": ")", "start": 98, "end": 99, "id": 19, "ws": false}, {"text": ",", "start": 99, "end": 100, "id": 20, "ws": true}, {"text": "Sociology", "start": 101, "end": 110, "id": 21, "ws": true}, {"text": "of", "start": 111, "end": 113, "id": 22, "ws": true}, {"text": "Law", "start": 114, "end": 117, "id": 23, "ws": true}, {"text": "and", "start": 118, "end": 121, "id": 24, "ws": true}, {"text": "Legal", "start": 122, "end": 127, "id": 25, "ws": true}, {"text": "Sciences", "start": 128, "end": 136, "id": 26, "ws": true}, {"text": "(", "start": 137, "end": 138, "id": 27, "ws": false}, {"text": "Budapest", "start": 138, "end": 146, "id": 28, "ws": true}, {"text": "1977", "start": 147, "end": 151, "id": 29, "ws": false}, {"text": ")", "start": 151, "end": 152, "id": 30, "ws": true}, {"text": "97", "start": 153, "end": 155, "id": 31, "ws": true}, {"text": "(", "start": 156, "end": 157, "id": 32, "ws": false}, {"text": "99", "start": 157, "end": 159, "id": 33, "ws": true}, {"text": "ff", "start": 160, "end": 162, "id": 34, "ws": false}, {"text": ".", "start": 162, "end": 163, "id": 35, "ws": false}, {"text": ")", "start": 163, "end": 164, "id": 36, "ws": false}, {"text": ".", "start": 164, "end": 165, "id": 37, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 8, "label": "signal", "token_start": 1, "token_end": 1}, {"start": 9, "end": 17, "label": "author", "token_start": 2, "token_end": 3}, {"start": 18, "end": 78, "label": "title", "token_start": 4, "token_end": 14}, {"start": 79, "end": 100, "label": "editor", "token_start": 15, "token_end": 20}, {"start": 101, "end": 136, "label": "container-title", "token_start": 21, "token_end": 26}, {"start": 137, "end": 146, "label": "location", "token_start": 27, "token_end": 28}, {"start": 147, "end": 152, "label": "date", "token_start": 29, "token_end": 30}, {"start": 153, "end": 165, "label": "pages", "token_start": 31, "token_end": 37}]} -{"text": "76 Dazu n\u00e4her Zweigert, Die kritische Wertung in der Rechtsvergleichung, Festschrift f\u00fcr Schmitthoff (1973) 403 ff.", "tokens": [{"text": "76", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Dazu", "start": 3, "end": 7, "id": 1, "ws": true}, {"text": "n\u00e4her", "start": 8, "end": 13, "id": 2, "ws": true}, {"text": "Zweigert", "start": 14, "end": 22, "id": 3, "ws": false}, {"text": ",", "start": 22, "end": 23, "id": 4, "ws": true}, {"text": "Die", "start": 24, "end": 27, "id": 5, "ws": true}, {"text": "kritische", "start": 28, "end": 37, "id": 6, "ws": true}, {"text": "Wertung", "start": 38, "end": 45, "id": 7, "ws": true}, {"text": "in", "start": 46, "end": 48, "id": 8, "ws": true}, {"text": "der", "start": 49, "end": 52, "id": 9, "ws": true}, {"text": "Rechtsvergleichung", "start": 53, "end": 71, "id": 10, "ws": false}, {"text": ",", "start": 71, "end": 72, "id": 11, "ws": true}, {"text": "Festschrift", "start": 73, "end": 84, "id": 12, "ws": true}, {"text": "f\u00fcr", "start": 85, "end": 88, "id": 13, "ws": true}, {"text": "Schmitthoff", "start": 89, "end": 100, "id": 14, "ws": true}, {"text": "(", "start": 101, "end": 102, "id": 15, "ws": false}, {"text": "1973", "start": 102, "end": 106, "id": 16, "ws": false}, {"text": ")", "start": 106, "end": 107, "id": 17, "ws": true}, {"text": "403", "start": 108, "end": 111, "id": 18, "ws": true}, {"text": "ff", "start": 112, "end": 114, "id": 19, "ws": false}, {"text": ".", "start": 114, "end": 115, "id": 20, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 13, "label": "signal", "token_start": 1, "token_end": 2}, {"start": 14, "end": 23, "label": "author", "token_start": 3, "token_end": 4}, {"start": 24, "end": 72, "label": "title", "token_start": 5, "token_end": 11}, {"start": 73, "end": 100, "label": "container-title", "token_start": 12, "token_end": 14}, {"start": 101, "end": 107, "label": "date", "token_start": 15, "token_end": 17}, {"start": 108, "end": 115, "label": "pages", "token_start": 18, "token_end": 20}]} -{"text": "77 Siehe etwa zu vorliegenden franz\u00f6sischen Untersuchungen D\u00f6rner, Rechtstatsachenforschung und Gesetzgebung \u2014 Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich, Interview und Analyse 1979, 377 ff.", "tokens": [{"text": "77", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "etwa", "start": 9, "end": 13, "id": 2, "ws": true}, {"text": "zu", "start": 14, "end": 16, "id": 3, "ws": true}, {"text": "vorliegenden", "start": 17, "end": 29, "id": 4, "ws": true}, {"text": "franz\u00f6sischen", "start": 30, "end": 43, "id": 5, "ws": true}, {"text": "Untersuchungen", "start": 44, "end": 58, "id": 6, "ws": true}, {"text": "D\u00f6rner", "start": 59, "end": 65, "id": 7, "ws": false}, {"text": ",", "start": 65, "end": 66, "id": 8, "ws": true}, {"text": "Rechtstatsachenforschung", "start": 67, "end": 91, "id": 9, "ws": true}, {"text": "und", "start": 92, "end": 95, "id": 10, "ws": true}, {"text": "Gesetzgebung", "start": 96, "end": 108, "id": 11, "ws": true}, {"text": "\u2014", "start": 109, "end": 110, "id": 12, "ws": true}, {"text": "Hinweise", "start": 111, "end": 119, "id": 13, "ws": true}, {"text": "zur", "start": 120, "end": 123, "id": 14, "ws": true}, {"text": "Entwicklung", "start": 124, "end": 135, "id": 15, "ws": true}, {"text": "einer", "start": 136, "end": 141, "id": 16, "ws": true}, {"text": "Gesetzgebungssoziologie", "start": 142, "end": 165, "id": 17, "ws": true}, {"text": "in", "start": 166, "end": 168, "id": 18, "ws": true}, {"text": "Frank", "start": 169, "end": 174, "id": 19, "ws": true}, {"text": "reich", "start": 175, "end": 180, "id": 20, "ws": false}, {"text": ",", "start": 180, "end": 181, "id": 21, "ws": true}, {"text": "Interview", "start": 182, "end": 191, "id": 22, "ws": true}, {"text": "und", "start": 192, "end": 195, "id": 23, "ws": true}, {"text": "Analyse", "start": 196, "end": 203, "id": 24, "ws": true}, {"text": "1979", "start": 204, "end": 208, "id": 25, "ws": false}, {"text": ",", "start": 208, "end": 209, "id": 26, "ws": true}, {"text": "377", "start": 210, "end": 213, "id": 27, "ws": true}, {"text": "ff", "start": 214, "end": 216, "id": 28, "ws": false}, {"text": ".", "start": 216, "end": 217, "id": 29, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 58, "label": "signal", "token_start": 1, "token_end": 6}, {"start": 59, "end": 66, "label": "author", "token_start": 7, "token_end": 8}, {"start": 67, "end": 181, "label": "title", "token_start": 9, "token_end": 21}, {"start": 182, "end": 203, "label": "journal", "token_start": 22, "token_end": 24}, {"start": 204, "end": 209, "label": "date", "token_start": 25, "token_end": 26}, {"start": 210, "end": 217, "label": "pages", "token_start": 27, "token_end": 29}]} -{"text": "78 Siehe Bryde, Recht und Konflikt \u2014 Mexiko und Afrika, Verfassung und Recht in Obersee 12 (1979), 159 ff.", "tokens": [{"text": "78", "start": 0, "end": 2, "id": 0, "ws": true}, {"text": "Siehe", "start": 3, "end": 8, "id": 1, "ws": true}, {"text": "Bryde", "start": 9, "end": 14, "id": 2, "ws": false}, {"text": ",", "start": 14, "end": 15, "id": 3, "ws": true}, {"text": "Recht", "start": 16, "end": 21, "id": 4, "ws": true}, {"text": "und", "start": 22, "end": 25, "id": 5, "ws": true}, {"text": "Konflikt", "start": 26, "end": 34, "id": 6, "ws": true}, {"text": "\u2014", "start": 35, "end": 36, "id": 7, "ws": true}, {"text": "Mexiko", "start": 37, "end": 43, "id": 8, "ws": true}, {"text": "und", "start": 44, "end": 47, "id": 9, "ws": true}, {"text": "Afrika", "start": 48, "end": 54, "id": 10, "ws": false}, {"text": ",", "start": 54, "end": 55, "id": 11, "ws": true}, {"text": "Verfassung", "start": 56, "end": 66, "id": 12, "ws": true}, {"text": "und", "start": 67, "end": 70, "id": 13, "ws": true}, {"text": "Recht", "start": 71, "end": 76, "id": 14, "ws": true}, {"text": "in", "start": 77, "end": 79, "id": 15, "ws": true}, {"text": "Obersee", "start": 80, "end": 87, "id": 16, "ws": true}, {"text": "12", "start": 88, "end": 90, "id": 17, "ws": true}, {"text": "(", "start": 91, "end": 92, "id": 18, "ws": false}, {"text": "1979", "start": 92, "end": 96, "id": 19, "ws": false}, {"text": ")", "start": 96, "end": 97, "id": 20, "ws": false}, {"text": ",", "start": 97, "end": 98, "id": 21, "ws": true}, {"text": "159", "start": 99, "end": 102, "id": 22, "ws": true}, {"text": "ff", "start": 103, "end": 105, "id": 23, "ws": false}, {"text": ".", "start": 105, "end": 106, "id": 24, "ws": false}], "spans": [{"start": 0, "end": 2, "label": "citation-number", "token_start": 0, "token_end": 0}, {"start": 3, "end": 15, "label": "author", "token_start": 1, "token_end": 3}, {"start": 16, "end": 55, "label": "title", "token_start": 4, "token_end": 11}, {"start": 56, "end": 87, "label": "journal", "token_start": 12, "token_end": 16}, {"start": 88, "end": 90, "label": "volume", "token_start": 17, "token_end": 17}, {"start": 91, "end": 98, "label": "date", "token_start": 18, "token_end": 21}, {"start": 99, "end": 106, "label": "pages", "token_start": 22, "token_end": 24}]} -- GitLab