Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 7be18951

Přidáno uživatelem Jitka Poubová před více než 4 roky(ů)

Re #7728: Přidávání více dokumentů
- do Solru se přidává 5 dokumentů
- získání informací o všech dokumentech v Solru

Zobrazit rozdíly:

be/fulltextsearch/src/main/java/cz/zcu/kiv/aswi/fulltextsearch/IndexController.java
26 26
        String response;
27 27

  
28 28
        try {
29
            response = "Found: " + solrService.query(query.getQuery());
29
            response = solrService.query(query.getQuery());
30 30
        } catch (IOException e) {
31 31
            response = "IOException";
32 32
        } catch (SolrServerException e) {
......
55 55

  
56 56
    @GetMapping("/documents")
57 57
    public List<DocumentResponse> uploadFile() {
58
        List<DocumentResponse> response = new ArrayList<>();
58 59

  
59
        // TODO : získat všechny uložené dokumenty v systému
60

  
61
        return new ArrayList<>() {
62
            {
63
                add(new DocumentResponse("soap-ch_knihovna_ascher-zeitung-1866-06-16-n24_0855", 1));
64
                add(new DocumentResponse("soap-ch_knihovna_ascher-zeitung-1866-09-15-n37_1365", 2));
65
                add(new DocumentResponse("soap-ch_knihovna_ascher-zeitung-1866-08-25-n34_1255", 3));
66
                add(new DocumentResponse("soap-ch_knihovna_ascher-zeitung-1866-07-07-n27_0980", 4));
60
        try {
61
            List<String> filenames = solrService.listAllFiles();
62
            int id = 0; // todo
63
            for (String filename: filenames) {
64
                response.add(new DocumentResponse(filename, id++));
67 65
            }
68
        };
66
        } catch (IOException e) {
67
            // todo
68
        } catch (SolrServerException e) {
69
            // todo
70
        } catch (Exception e) {
71
            // todo
72
        }
69 73

  
74
        return response;
70 75
    }
71 76

  
72 77

  
be/fulltextsearch/src/main/java/cz/zcu/kiv/aswi/fulltextsearch/SolrService.java
7 7
import org.apache.solr.client.solrj.impl.HttpSolrClient;
8 8
import org.apache.solr.client.solrj.impl.XMLResponseParser;
9 9
import org.apache.solr.client.solrj.response.QueryResponse;
10
import org.apache.solr.common.SolrDocument;
10 11
import org.apache.solr.common.SolrDocumentList;
11 12

  
12 13
import javax.xml.bind.JAXBException;
14
import java.io.File;
13 15
import java.io.IOException;
16
import java.util.ArrayList;
17
import java.util.HashSet;
18
import java.util.List;
19
import java.util.Set;
14 20

  
15 21
public class SolrService {
16 22

  
17 23
    private HttpSolrClient solrClient;
18
    private final String CORE_NAME = "documents";
24
    private static final String CORE_NAME = "documents";
25
    public static final String DATA_DIR = "data/";
19 26

  
20 27
    public SolrService() {
21 28
        connect();
......
27 34
        solrClient.setParser(new XMLResponseParser());
28 35
    }
29 36

  
30
    public void addAllDocuments() throws IOException, SolrServerException, JAXBException { // todo all
37
    public void addAllDocuments() throws IOException, SolrServerException, JAXBException {
31 38
        XMLLoader xmlLoader = new XMLLoader();
32
        String filename = "soap-ch_knihovna_ascher-zeitung-1866-06-09-n23_0815.xml";
33
        PcGts doc = xmlLoader.loadFile(filename);
34
        addDocument(doc);
39

  
40
        String dataFile = getClass().getClassLoader().getResource(DATA_DIR).getFile();
41
        File[] files = new File(dataFile).listFiles((dir, name) -> name.toLowerCase().endsWith(".xml"));
42

  
43
        for (File file: files) {
44
            PcGts doc = xmlLoader.loadFile(file.getName());
45
            addDocument(doc);
46
        }
35 47
    }
36 48

  
37 49
    public void deleteAll() throws IOException, SolrServerException {
......
45 57
        QueryResponse response = solrClient.query(solrQuery);
46 58

  
47 59
        SolrDocumentList docList = response.getResults();
48
        return Long.toString(docList.getNumFound());
60
        Set<String> ids = getUniqueIds(docList);
61

  
62
        return "Found in " + ids.size() + " documents with ids=" + String.join(", ", ids);
49 63
    }
50 64

  
51 65
    private void addDocument(PcGts document) throws IOException, SolrServerException {
52
        for (TextRegion textRegion: document.getPage().getTextRegions()) {
66
        List<TextRegion> regions = document.getPage().getTextRegions();
67
        if (regions == null || regions.size() == 0) return;
68

  
69
        for (TextRegion textRegion: regions) {
53 70
            addTextRegion(textRegion);
54 71
        }
55 72
    }
......
64 81
        q.setRows(0);  // don't actually request any data
65 82
        return "Number of documents in core: " + solrClient.query(q).getResults().getNumFound();
66 83
    }
84

  
85
    public List<String> listAllFiles() throws IOException, SolrServerException {
86
        SolrQuery solrQuery = new SolrQuery();
87
        solrQuery.set("q", "file:*");
88
        solrQuery.setRows(300); // todo not a magic number!
89
        SolrDocumentList docList = solrClient.query(solrQuery).getResults();
90

  
91
        Set<String> ids = getUniqueIds(docList);
92
        return new ArrayList<>(ids);
93
    }
94

  
95
    private Set<String> getUniqueIds(SolrDocumentList documents) {
96
        Set<String> ids = new HashSet<>();
97
        for (SolrDocument document: documents) {
98
            String id = document.getFieldValue("file").toString();
99
            ids.add(id);
100
        }
101

  
102
        return ids;
103
    }
67 104
}
be/fulltextsearch/src/main/java/cz/zcu/kiv/aswi/fulltextsearch/XMLLoader.java
11 11
public class XMLLoader {
12 12

  
13 13
    public PcGts loadFile(String filename) throws JAXBException {
14
        InputStream file = getClass().getClassLoader().getResourceAsStream(filename);
14
        InputStream file = getClass().getClassLoader().getResourceAsStream(SolrService.DATA_DIR + filename);
15 15

  
16 16
        JAXBContext jaxbContext = JAXBContext.newInstance(PcGts.class);
17 17
        Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
be/fulltextsearch/src/main/java/cz/zcu/kiv/aswi/fulltextsearch/document/Page.java
27 27

  
28 28
    public void setId(String id) {
29 29
        this.id = id;
30
        if (this.textRegions == null) return;
31

  
30 32
        for (int i = 0; i < textRegions.size(); i++) {
31 33
            TextRegion textRegion = textRegions.get(i);
32 34
            textRegion.setId(id + "_" + i +"_region");
be/fulltextsearch/src/main/resources/data/soap-ch_knihovna_ascher-zeitung-1866-01-06-n1_0065.xml
1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2013-07-15/pagecontent.xsd">
3
    <Metadata>
4
        <Creator>Transkribus</Creator>
5
        <Created>2020-01-20T11:18:14.46+01:00</Created>
6
        <LastChange>2020-01-20T11:18:15.193+01:00</LastChange>
7
        <Comments>
8
                Measurement unit: pixel
9
                PrimaryLanguage: German
10
                Language: GermanStandard
11
                Producer: Transkribus
12
            </Comments>
13
        <TranskribusMetadata docId="311944" pageId="12277783" pageNr="1" tsid="22592679" status="IN_PROGRESS" userId="15046" imgUrl="https://files.transkribus.eu/Get?id=NCEOGHTNHCBRTOZJMAMNGZCF&amp;fileType=view" xmlUrl="https://files.transkribus.eu/Get?id=CIDZQKZFHLQKEPEUBWNJOEDT" imageId="8596072"/>
14
    </Metadata>
15
    <Page imageFilename="soap-ch_knihovna_ascher-zeitung-1866-01-06-n1_0065.jpg" imageWidth="1802" imageHeight="2438">
16
        <PrintSpace>
17
            <Coords points="0,0 1802,0 1802,2438 0,2438"/>
18
        </PrintSpace>
19
        <ReadingOrder>
20
            <OrderedGroup id="ro_1582708054702" caption="Regions reading order">
21
                <RegionRefIndexed index="0" regionRef="r_1_1"/>
22
                <RegionRefIndexed index="1" regionRef="r_2_1"/>
23
                <RegionRefIndexed index="2" regionRef="r_3_1"/>
24
                <RegionRefIndexed index="3" regionRef="r_3_2"/>
25
                <RegionRefIndexed index="4" regionRef="r_3_3"/>
26
                <RegionRefIndexed index="5" regionRef="r_3_4"/>
27
                <RegionRefIndexed index="6" regionRef="r_3_5"/>
28
                <RegionRefIndexed index="7" regionRef="r_4_1"/>
29
                <RegionRefIndexed index="8" regionRef="r_4_2"/>
30
                <RegionRefIndexed index="9" regionRef="r_5_1"/>
31
                <RegionRefIndexed index="10" regionRef="r_5_2"/>
32
                <RegionRefIndexed index="11" regionRef="r_5_3"/>
33
                <RegionRefIndexed index="12" regionRef="r_5_4"/>
34
                <RegionRefIndexed index="13" regionRef="r_6_1"/>
35
                <RegionRefIndexed index="14" regionRef="r_6_2"/>
36
                <RegionRefIndexed index="15" regionRef="r_7_1"/>
37
                <RegionRefIndexed index="16" regionRef="r_7_2"/>
38
                <RegionRefIndexed index="17" regionRef="r_7_3"/>
39
                <RegionRefIndexed index="18" regionRef="r_7_4"/>
40
                <RegionRefIndexed index="19" regionRef="r_8_1"/>
41
                <RegionRefIndexed index="20" regionRef="r_8_2"/>
42
                <RegionRefIndexed index="22" regionRef="r_10_1"/>
43
                <RegionRefIndexed index="23" regionRef="r_10_2"/>
44
                <RegionRefIndexed index="24" regionRef="r_10_3"/>
45
                <RegionRefIndexed index="25" regionRef="r_10_4"/>
46
                <RegionRefIndexed index="26" regionRef="r_10_5"/>
47
                <RegionRefIndexed index="27" regionRef="r_10_6"/>
48
                <RegionRefIndexed index="28" regionRef="r_10_7"/>
49
                <RegionRefIndexed index="29" regionRef="r_10_8"/>
50
                <RegionRefIndexed index="30" regionRef="r_10_9"/>
51
                <RegionRefIndexed index="31" regionRef="r_10_10"/>
52
                <RegionRefIndexed index="32" regionRef="r_10_11"/>
53
                <RegionRefIndexed index="33" regionRef="r_10_12"/>
54
                <RegionRefIndexed index="34" regionRef="r_10_13"/>
55
                <RegionRefIndexed index="35" regionRef="r_10_14"/>
56
                <RegionRefIndexed index="36" regionRef="r_10_15"/>
57
                <RegionRefIndexed index="37" regionRef="r_10_16"/>
58
                <RegionRefIndexed index="38" regionRef="r_10_17"/>
59
                <RegionRefIndexed index="39" regionRef="r_10_18"/>
60
                <RegionRefIndexed index="40" regionRef="r_10_19"/>
61
                <RegionRefIndexed index="41" regionRef="r_10_20"/>
62
                <RegionRefIndexed index="42" regionRef="r_10_21"/>
63
                <RegionRefIndexed index="43" regionRef="r_10_22"/>
64
            </OrderedGroup>
65
        </ReadingOrder>
66
        <TextRegion type="paragraph" id="r_1_1" custom="readingOrder {index:0;}">
67
            <Coords points="912,45 929,45 929,73 912,73"/>
68
            <TextLine id="tl_1" primaryLanguage="German" custom="readingOrder {index:0;}">
69
                <Coords points="913,46 928,46 928,72 913,72"/>
70
                <Baseline points="913,72 928,72"/>
71
                <Word id="w_w2aab1b1b2b1b1ab1" language="German" custom="readingOrder {index:0;}">
72
                    <Coords points="913,46 928,46 928,72 913,72"/>
73
                    <TextEquiv>
74
                        <Unicode>7</Unicode>
75
                    </TextEquiv>
76
                    <TextStyle fontFamily="Times New Roman" fontSize="9.0"/>
77
                </Word>
78
                <TextEquiv>
79
                    <Unicode>7</Unicode>
80
                </TextEquiv>
81
                <TextStyle fontFamily="Times New Roman" fontSize="9.0"/>
82
            </TextLine>
83
            <TextEquiv>
84
                <Unicode>7</Unicode>
85
            </TextEquiv>
86
        </TextRegion>
87
        <TextRegion type="paragraph" id="r_2_1" custom="readingOrder {index:1;}">
88
            <Coords points="123,118 901,118 901,221 123,221"/>
89
            <TextLine id="tl_2" primaryLanguage="German" custom="readingOrder {index:0;}">
90
                <Coords points="172,119 900,119 900,156 172,156"/>
91
                <Baseline points="172,147 377,148 672,152 829,152 900,146"/>
92
                <Word id="w_w2aab1b3b2b1b1ab1" language="German" custom="readingOrder {index:0;}">
93
                    <Coords points="172,120 377,120 377,155 172,155"/>
94
                    <TextEquiv>
95
                        <Unicode>Berichtigung.</Unicode>
96
                    </TextEquiv>
97
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
98
                </Word>
99
                <Word id="w_w2aab1b3b2b1b1ac29" language="German" custom="readingOrder {index:1;}">
100
                    <Coords points="396,121 672,121 672,155 396,155"/>
101
                    <TextEquiv>
102
                        <Unicode>(Bürgerversammlung</Unicode>
103
                    </TextEquiv>
104
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
105
                </Word>
106
                <Word id="w_w2aab1b3b2b1b1ac67" language="German" custom="readingOrder {index:2;}">
107
                    <Coords points="689,120 829,120 829,152 689,152"/>
108
                    <TextEquiv>
109
                        <Unicode>betreffend.)</Unicode>
110
                    </TextEquiv>
111
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
112
                </Word>
113
                <Word id="w_w2aab1b3b2b1b1ac93" language="German" custom="readingOrder {index:3;}">
114
                    <Coords points="864,120 900,120 900,151 864,151"/>
115
                    <TextEquiv>
116
                        <Unicode>In</Unicode>
117
                    </TextEquiv>
118
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
119
                </Word>
120
                <TextEquiv>
121
                    <Unicode>Berichtigung. (Bürgerversammlung betreffend.) In</Unicode>
122
                </TextEquiv>
123
                <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
124
            </TextLine>
125
            <TextLine id="tl_3" primaryLanguage="German" custom="readingOrder {index:1;}">
126
                <Coords points="124,148 900,148 900,185 124,185"/>
127
                <Baseline points="124,176 145,176 212,178 260,180 307,180 367,180 436,179 541,184 587,179 690,178 752,178 860,177 900,178"/>
128
                <Word id="w_w2aab1b3b2b1b3ab1" language="German" custom="readingOrder {index:0;}">
129
                    <Coords points="124,151 180,151 180,179 124,179"/>
130
                    <TextEquiv>
131
                        <Unicode>Nro.</Unicode>
132
                    </TextEquiv>
133
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
134
                </Word>
135
                <Word id="w_w2aab1b3b2b1b3b1b1" language="German" custom="readingOrder {index:1;}">
136
                    <Coords points="199,157 230,157 230,180 199,180"/>
137
                    <TextEquiv>
138
                        <Unicode>78</Unicode>
139
                    </TextEquiv>
140
                    <TextStyle fontFamily="Times New Roman" fontSize="7.5"/>
141
                </Word>
142
                <Word id="w_w2aab1b3b2b1b3b2b1" language="German" custom="readingOrder {index:2;}">
143
                    <Coords points="247,155 267,155 267,180 247,180"/>
144
                    <TextEquiv>
145
                        <Unicode>d.</Unicode>
146
                    </TextEquiv>
147
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
148
                </Word>
149
                <Word id="w_w2aab1b3b2b1b3b3b1" language="German" custom="readingOrder {index:3;}">
150
                    <Coords points="286,149 325,149 325,180 286,180"/>
151
                    <TextEquiv>
152
                        <Unicode>Bl.</Unicode>
153
                    </TextEquiv>
154
                    <TextStyle fontFamily="Times New Roman" fontSize="7.5"/>
155
                </Word>
156
                <Word id="w_w2aab1b3b2b1b3b4b1" language="German" custom="readingOrder {index:4;}">
157
                    <Coords points="343,149 411,149 411,180 343,180"/>
158
                    <TextEquiv>
159
                        <Unicode>Äeite</Unicode>
160
                    </TextEquiv>
161
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
162
                </Word>
163
                <Word id="w_w2aab1b3b2b1b3b5b1" language="German" custom="readingOrder {index:5;}">
164
                    <Coords points="422,157 469,157 469,179 422,179"/>
165
                    <TextEquiv>
166
                        <Unicode>420</Unicode>
167
                    </TextEquiv>
168
                    <TextStyle fontFamily="Times New Roman" fontSize="7.5"/>
169
                </Word>
170
                <Word id="w_w2aab1b3b2b1b3b6b1" language="German" custom="readingOrder {index:6;}">
171
                    <Coords points="487,154 541,154 541,184 487,184"/>
172
                    <TextEquiv>
173
                        <Unicode>muff</Unicode>
174
                    </TextEquiv>
175
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
176
                </Word>
177
                <Word id="w_w2aab1b3b2b1b3b6c11" language="German" custom="readingOrder {index:7;}">
178
                    <Coords points="563,158 587,158 587,179 563,179"/>
179
                    <TextEquiv>
180
                        <Unicode>es</Unicode>
181
                    </TextEquiv>
182
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
183
                </Word>
184
                <Word id="w_w2aab1b3b2b1b3b6c17" language="German" custom="readingOrder {index:8;}">
185
                    <Coords points="606,153 690,153 690,183 606,183"/>
186
                    <TextEquiv>
187
                        <Unicode>anstatt</Unicode>
188
                    </TextEquiv>
189
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
190
                </Word>
191
                <Word id="w_w2aab1b3b2b1b3b6c33" language="German" custom="readingOrder {index:9;}">
192
                    <Coords points="704,153 823,153 823,185 704,185"/>
193
                    <TextEquiv>
194
                        <Unicode>Mittwoch</Unicode>
195
                    </TextEquiv>
196
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
197
                </Word>
198
                <Word id="w_w2aab1b3b2b1b3b7b1" language="German" custom="readingOrder {index:10;}">
199
                    <Coords points="840,154 860,154 860,178 840,178"/>
200
                    <TextEquiv>
201
                        <Unicode>d.</Unicode>
202
                    </TextEquiv>
203
                    <TextStyle fontFamily="Times New Roman" fontSize="7.5"/>
204
                </Word>
205
                <Word id="w_w2aab1b3b2b1b3b7b7" language="German" custom="readingOrder {index:11;}">
206
                    <Coords points="879,155 900,155 900,178 879,178"/>
207
                    <TextEquiv>
208
                        <Unicode>8.</Unicode>
209
                    </TextEquiv>
210
                    <TextStyle fontFamily="Times New Roman" fontSize="7.5"/>
211
                </Word>
212
                <TextEquiv>
213
                    <Unicode>Nro. 78 d. Bl. Äeite 420 muff es anstatt Mittwoch d. 8.</Unicode>
214
                </TextEquiv>
215
            </TextLine>
216
            <TextLine id="tl_4" primaryLanguage="German" custom="readingOrder {index:2;}">
217
                <Coords points="124,184 563,184 563,220 124,220"/>
218
                <Baseline points="124,209 246,219 306,213 345,212 460,212 563,211"/>
219
                <Word id="w_w2aab1b3b2b1b5ab1" language="German" custom="readingOrder {index:0;}">
220
                    <Coords points="124,184 246,184 246,219 124,219"/>
221
                    <TextEquiv>
222
                        <Unicode>Dlontag</Unicode>
223
                    </TextEquiv>
224
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
225
                </Word>
226
                <Word id="w_w2aab1b3b2b1b5ac17" language="German" custom="readingOrder {index:1;}">
227
                    <Coords points="264,189 306,189 306,213 264,213"/>
228
                    <TextEquiv>
229
                        <Unicode>den</Unicode>
230
                    </TextEquiv>
231
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
232
                </Word>
233
                <Word id="w_w2aab1b3b2b1b5ac25" language="German" custom="readingOrder {index:2;}">
234
                    <Coords points="324,190 345,190 345,212 324,212"/>
235
                    <TextEquiv>
236
                        <Unicode>8.</Unicode>
237
                    </TextEquiv>
238
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
239
                </Word>
240
                <Word id="w_w2aab1b3b2b1b5ac31" language="German" custom="readingOrder {index:3;}">
241
                    <Coords points="362,187 460,187 460,218 362,218"/>
242
                    <TextEquiv>
243
                        <Unicode>Januar</Unicode>
244
                    </TextEquiv>
245
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
246
                </Word>
247
                <Word id="w_w2aab1b3b2b1b5ac45" language="German" custom="readingOrder {index:4;}">
248
                    <Coords points="478,186 563,186 563,219 478,219"/>
249
                    <TextEquiv>
250
                        <Unicode>heißen.</Unicode>
251
                    </TextEquiv>
252
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
253
                </Word>
254
                <TextEquiv>
255
                    <Unicode>Dlontag den 8. Januar heißen.</Unicode>
256
                </TextEquiv>
257
                <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
258
            </TextLine>
259
            <TextEquiv>
260
                <Unicode>Berichtigung. (Bürgerversammlung betreffend.) In
261
Nro. 78 d. Bl. Äeite 420 muff es anstatt Mittwoch d. 8.
262
Dlontag den 8. Januar heißen.</Unicode>
263
            </TextEquiv>
264
        </TextRegion>
265
        <TextRegion type="paragraph" id="r_3_1" custom="readingOrder {index:2;}">
266
            <Coords points="429,280 594,280 594,323 429,323"/>
267
            <TextLine id="tl_5" primaryLanguage="German" custom="readingOrder {index:0;}">
268
                <Coords points="430,281 593,281 593,322 430,322"/>
269
                <Baseline points="430,314 593,314"/>
270
                <Word id="w_w2aab1b5b2b1b1ab1" language="German" custom="readingOrder {index:0;}">
271
                    <Coords points="430,282 593,282 593,321 430,321"/>
272
                    <TextEquiv>
273
                        <Unicode>Räthsel.</Unicode>
274
                    </TextEquiv>
275
                    <TextStyle fontFamily="Times New Roman" fontSize="11.0" bold="true"/>
276
                </Word>
277
                <TextEquiv>
278
                    <Unicode>Räthsel.</Unicode>
279
                </TextEquiv>
280
                <TextStyle fontFamily="Times New Roman" fontSize="11.0" bold="true"/>
281
            </TextLine>
282
            <TextEquiv>
283
                <Unicode>Räthsel.</Unicode>
284
            </TextEquiv>
285
        </TextRegion>
286
        <TextRegion type="paragraph" id="r_3_2" custom="readingOrder {index:3;}">
287
            <Coords points="403,334 620,334 620,362 403,362"/>
288
            <TextLine id="tl_6" primaryLanguage="German" custom="readingOrder {index:0;}">
289
                <Coords points="404,335 619,335 619,361 404,361"/>
290
                <Baseline points="404,356 513,353 619,356"/>
291
                <Word id="w_w2aab1b5b2b3b1ab1" language="German" custom="readingOrder {index:0;}">
292
                    <Coords points="404,335 513,335 513,360 404,360"/>
293
                    <TextEquiv>
294
                        <Unicode>Viersilbige</Unicode>
295
                    </TextEquiv>
296
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
297
                </Word>
298
                <Word id="w_w2aab1b5b2b3b1ac25" language="German" custom="readingOrder {index:1;}">
299
                    <Coords points="529,335 619,335 619,361 529,361"/>
300
                    <TextEquiv>
301
                        <Unicode>Charade.</Unicode>
302
                    </TextEquiv>
303
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
304
                </Word>
305
                <TextEquiv>
306
                    <Unicode>Viersilbige Charade.</Unicode>
307
                </TextEquiv>
308
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
309
            </TextLine>
310
            <TextEquiv>
311
                <Unicode>Viersilbige Charade.</Unicode>
312
            </TextEquiv>
313
        </TextRegion>
314
        <TextRegion type="paragraph" id="r_3_3" custom="readingOrder {index:4;}">
315
            <Coords points="245,372 777,372 777,402 245,402"/>
316
            <TextLine id="tl_7" primaryLanguage="German" custom="readingOrder {index:0;}">
317
                <Coords points="246,373 776,373 776,401 246,401"/>
318
                <Baseline points="246,396 307,395 410,394 484,398 589,399 646,400 776,399"/>
319
                <Word id="w_w2aab1b5b2b5b1ab1" language="German" custom="readingOrder {index:0;}">
320
                    <Coords points="246,376 307,376 307,396 246,396"/>
321
                    <TextEquiv>
322
                        <Unicode>Vier</Unicode>
323
                    </TextEquiv>
324
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
325
                </Word>
326
                <Word id="w_w2aab1b5b2b5b1ac11" language="German" custom="readingOrder {index:1;}">
327
                    <Coords points="321,375 410,375 410,395 321,395"/>
328
                    <TextEquiv>
329
                        <Unicode>Silben</Unicode>
330
                    </TextEquiv>
331
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
332
                </Word>
333
                <Word id="w_w2aab1b5b2b5b1ac25" language="German" custom="readingOrder {index:2;}">
334
                    <Coords points="424,374 484,374 484,400 424,400"/>
335
                    <TextEquiv>
336
                        <Unicode>streng</Unicode>
337
                    </TextEquiv>
338
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
339
                </Word>
340
                <Word id="w_w2aab1b5b2b5b1ac39" language="German" custom="readingOrder {index:3;}">
341
                    <Coords points="498,373 589,373 589,400 498,400"/>
342
                    <TextEquiv>
343
                        <Unicode>versteckt,</Unicode>
344
                    </TextEquiv>
345
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
346
                </Word>
347
                <Word id="w_w2aab1b5b2b5b1ac61" language="German" custom="readingOrder {index:4;}">
348
                    <Coords points="604,375 646,375 646,400 604,400"/>
349
                    <TextEquiv>
350
                        <Unicode>doch</Unicode>
351
                    </TextEquiv>
352
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
353
                </Word>
354
                <Word id="w_w2aab1b5b2b5b1ac71" language="German" custom="readingOrder {index:5;}">
355
                    <Coords points="661,375 776,375 776,399 661,399"/>
356
                    <TextEquiv>
357
                        <Unicode>allbekannt,</Unicode>
358
                    </TextEquiv>
359
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
360
                </Word>
361
                <TextEquiv>
362
                    <Unicode>Vier Silben streng versteckt, doch allbekannt,</Unicode>
363
                </TextEquiv>
364
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
365
            </TextLine>
366
            <TextEquiv>
367
                <Unicode>Vier Silben streng versteckt, doch allbekannt,</Unicode>
368
            </TextEquiv>
369
        </TextRegion>
370
        <TextRegion type="paragraph" id="r_3_4" custom="readingOrder {index:5;}">
371
            <Coords points="245,399 790,399 790,454 245,454"/>
372
            <TextLine id="tl_8" primaryLanguage="German" custom="readingOrder {index:0;}">
373
                <Coords points="246,400 783,400 783,427 246,427"/>
374
                <Baseline points="246,422 284,422 381,421 475,419 535,420 582,421 713,422 783,422"/>
375
                <Word id="w_w2aab1b5b2b7b1ab1" language="German" custom="readingOrder {index:0;}">
376
                    <Coords points="246,401 284,401 284,422 246,422"/>
377
                    <TextEquiv>
378
                        <Unicode>Die</Unicode>
379
                    </TextEquiv>
380
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
381
                </Word>
382
                <Word id="w_w2aab1b5b2b7b1ab9" language="German" custom="readingOrder {index:1;}">
383
                    <Coords points="298,401 381,401 381,421 298,421"/>
384
                    <TextEquiv>
385
                        <Unicode>beiden</Unicode>
386
                    </TextEquiv>
387
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
388
                </Word>
389
                <Word id="w_w2aab1b5b2b7b1ac23" language="German" custom="readingOrder {index:2;}">
390
                    <Coords points="395,400 475,400 475,425 395,425"/>
391
                    <TextEquiv>
392
                        <Unicode>ersten</Unicode>
393
                    </TextEquiv>
394
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
395
                </Word>
396
                <Word id="w_w2aab1b5b2b7b1ac37" language="German" custom="readingOrder {index:3;}">
397
                    <Coords points="489,400 535,400 535,420 489,420"/>
398
                    <TextEquiv>
399
                        <Unicode>baut</Unicode>
400
                    </TextEquiv>
401
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
402
                </Word>
403
                <Word id="w_w2aab1b5b2b7b1ac47" language="German" custom="readingOrder {index:4;}">
404
                    <Coords points="549,402 582,402 582,421 549,421"/>
405
                    <TextEquiv>
406
                        <Unicode>des</Unicode>
407
                    </TextEquiv>
408
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
409
                </Word>
410
                <Word id="w_w2aab1b5b2b7b1ac55" language="German" custom="readingOrder {index:5;}">
411
                    <Coords points="597,402 713,402 713,425 597,425"/>
412
                    <TextEquiv>
413
                        <Unicode>Schneiders</Unicode>
414
                    </TextEquiv>
415
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
416
                </Word>
417
                <Word id="w_w2aab1b5b2b7b1ac77" language="German" custom="readingOrder {index:6;}">
418
                    <Coords points="727,402 783,402 783,427 727,427"/>
419
                    <TextEquiv>
420
                        <Unicode>Hand</Unicode>
421
                    </TextEquiv>
422
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
423
                </Word>
424
                <TextEquiv>
425
                    <Unicode>Die beiden ersten baut des Schneiders Hand</Unicode>
426
                </TextEquiv>
427
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
428
            </TextLine>
429
            <TextLine id="tl_9" primaryLanguage="German" custom="readingOrder {index:1;}">
430
                <Coords points="246,427 789,427 789,453 246,453"/>
431
                <Baseline points="246,448 283,448 377,446 470,445 532,447 594,448 653,448 710,448 789,451"/>
432
                <Word id="w_w2aab1b5b2b7b3ab1" language="German" custom="readingOrder {index:0;}">
433
                    <Coords points="246,428 283,428 283,448 246,448"/>
434
                    <TextEquiv>
435
                        <Unicode>Die</Unicode>
436
                    </TextEquiv>
437
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
438
                </Word>
439
                <Word id="w_w2aab1b5b2b7b3ab9" language="German" custom="readingOrder {index:1;}">
440
                    <Coords points="297,427 377,427 377,447 297,447"/>
441
                    <TextEquiv>
442
                        <Unicode>beiden</Unicode>
443
                    </TextEquiv>
444
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
445
                </Word>
446
                <Word id="w_w2aab1b5b2b7b3ac23" language="German" custom="readingOrder {index:2;}">
447
                    <Coords points="392,427 470,427 470,450 392,450"/>
448
                    <TextEquiv>
449
                        <Unicode>letzten</Unicode>
450
                    </TextEquiv>
451
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
452
                </Word>
453
                <Word id="w_w2aab1b5b2b7b3ac39" language="German" custom="readingOrder {index:3;}">
454
                    <Coords points="484,427 532,427 532,452 484,452"/>
455
                    <TextEquiv>
456
                        <Unicode>gehn</Unicode>
457
                    </TextEquiv>
458
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
459
                </Word>
460
                <Word id="w_w2aab1b5b2b7b3ac49" language="German" custom="readingOrder {index:4;}">
461
                    <Coords points="546,428 594,428 594,452 546,452"/>
462
                    <TextEquiv>
463
                        <Unicode>nicht</Unicode>
464
                    </TextEquiv>
465
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
466
                </Word>
467
                <Word id="w_w2aab1b5b2b7b3ac61" language="German" custom="readingOrder {index:5;}">
468
                    <Coords points="608,434 653,434 653,453 608,453"/>
469
                    <TextEquiv>
470
                        <Unicode>gern</Unicode>
471
                    </TextEquiv>
472
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
473
                </Word>
474
                <Word id="w_w2aab1b5b2b7b3ac71" language="German" custom="readingOrder {index:6;}">
475
                    <Coords points="668,433 710,433 710,453 668,453"/>
476
                    <TextEquiv>
477
                        <Unicode>zum</Unicode>
478
                    </TextEquiv>
479
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
480
                </Word>
481
                <Word id="w_w2aab1b5b2b7b3ac79" language="German" custom="readingOrder {index:7;}">
482
                    <Coords points="724,428 789,428 789,452 724,452"/>
483
                    <TextEquiv>
484
                        <Unicode>Tanz,</Unicode>
485
                    </TextEquiv>
486
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
487
                </Word>
488
                <TextEquiv>
489
                    <Unicode>Die beiden letzten gehn nicht gern zum Tanz,</Unicode>
490
                </TextEquiv>
491
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
492
            </TextLine>
493
            <TextEquiv>
494
                <Unicode>Die beiden ersten baut des Schneiders Hand
495
Die beiden letzten gehn nicht gern zum Tanz,</Unicode>
496
            </TextEquiv>
497
        </TextRegion>
498
        <TextRegion type="paragraph" id="r_3_5" custom="readingOrder {index:6;}">
499
            <Coords points="244,451 843,451 843,513 244,513"/>
500
            <TextLine id="tl_10" primaryLanguage="German" custom="readingOrder {index:0;}">
501
                <Coords points="245,452 842,452 842,479 245,479"/>
502
                <Baseline points="245,473 288,473 340,472 391,471 486,473 604,477 650,474 686,479 736,473 842,473"/>
503
                <Word id="w_w2aab1b5b2b9b1ab1" language="German" custom="readingOrder {index:0;}">
504
                    <Coords points="245,454 288,454 288,473 245,473"/>
505
                    <TextEquiv>
506
                        <Unicode>Und</Unicode>
507
                    </TextEquiv>
508
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
509
                </Word>
510
                <Word id="w_w2aab1b5b2b9b1ab9" language="German" custom="readingOrder {index:1;}">
511
                    <Coords points="302,457 340,457 340,473 302,473"/>
512
                    <TextEquiv>
513
                        <Unicode>wer</Unicode>
514
                    </TextEquiv>
515
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
516
                </Word>
517
                <Word id="w_w2aab1b5b2b9b1ac17" language="German" custom="readingOrder {index:2;}">
518
                    <Coords points="354,453 391,453 391,472 354,472"/>
519
                    <TextEquiv>
520
                        <Unicode>das</Unicode>
521
                    </TextEquiv>
522
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
523
                </Word>
524
                <Word id="w_w2aab1b5b2b9b1ac25" language="German" custom="readingOrder {index:3;}">
525
                    <Coords points="405,452 486,452 486,477 405,477"/>
526
                    <TextEquiv>
527
                        <Unicode>Ganze</Unicode>
528
                    </TextEquiv>
529
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
530
                </Word>
531
                <Word id="w_w2aab1b5b2b9b1ac37" language="German" custom="readingOrder {index:4;}">
532
                    <Coords points="500,453 604,453 604,478 500,478"/>
533
                    <TextEquiv>
534
                        <Unicode>braucht,</Unicode>
535
                    </TextEquiv>
536
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
537
                </Word>
538
                <Word id="w_w2aab1b5b2b9b1ac55" language="German" custom="readingOrder {index:5;}">
539
                    <Coords points="618,455 650,455 650,474 618,474"/>
540
                    <TextEquiv>
541
                        <Unicode>der</Unicode>
542
                    </TextEquiv>
543
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
544
                </Word>
545
                <Word id="w_w2aab1b5b2b9b1ac63" language="German" custom="readingOrder {index:6;}">
546
                    <Coords points="664,454 686,454 686,479 664,479"/>
547
                    <TextEquiv>
548
                        <Unicode>ist</Unicode>
549
                    </TextEquiv>
550
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
551
                </Word>
552
                <Word id="w_w2aab1b5b2b9b1ac71" language="German" custom="readingOrder {index:7;}">
553
                    <Coords points="700,454 736,454 736,474 700,474"/>
554
                    <TextEquiv>
555
                        <Unicode>das</Unicode>
556
                    </TextEquiv>
557
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
558
                </Word>
559
                <Word id="w_w2aab1b5b2b9b1ac79" language="German" custom="readingOrder {index:8;}">
560
                    <Coords points="751,454 842,454 842,478 751,478"/>
561
                    <TextEquiv>
562
                        <Unicode>Ganze.</Unicode>
563
                    </TextEquiv>
564
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
565
                </Word>
566
                <TextEquiv>
567
                    <Unicode>Und wer das Ganze braucht, der ist das Ganze.</Unicode>
568
                </TextEquiv>
569
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
570
            </TextLine>
571
            <TextLine id="tl_11" primaryLanguage="German" custom="readingOrder {index:1;}">
572
                <Coords points="324,483 690,483 690,512 324,512"/>
573
                <Baseline points="324,510 439,510 475,506 569,507 690,511"/>
574
                <Word id="w_w2aab1b5b2b9b3ab1" language="German" custom="readingOrder {index:0;}">
575
                    <Coords points="324,483 439,483 439,510 324,510"/>
576
                    <TextEquiv>
577
                        <Unicode>(Auflösung</Unicode>
578
                    </TextEquiv>
579
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
580
                </Word>
581
                <Word id="w_w2aab1b5b2b9b3ac23" language="German" custom="readingOrder {index:1;}">
582
                    <Coords points="454,485 475,485 475,506 454,506"/>
583
                    <TextEquiv>
584
                        <Unicode>in</Unicode>
585
                    </TextEquiv>
586
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
587
                </Word>
588
                <Word id="w_w2aab1b5b2b9b3ac29" language="German" custom="readingOrder {index:2;}">
589
                    <Coords points="488,486 569,486 569,512 488,512"/>
590
                    <TextEquiv>
591
                        <Unicode>nächster</Unicode>
592
                    </TextEquiv>
593
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
594
                </Word>
595
                <Word id="w_w2aab1b5b2b9b3ac47" language="German" custom="readingOrder {index:3;}">
596
                    <Coords points="584,487 690,487 690,511 584,511"/>
597
                    <TextEquiv>
598
                        <Unicode>Nummer.)</Unicode>
599
                    </TextEquiv>
600
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
601
                </Word>
602
                <TextEquiv>
603
                    <Unicode>(Auflösung in nächster Nummer.)</Unicode>
604
                </TextEquiv>
605
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
606
            </TextLine>
607
            <TextEquiv>
608
                <Unicode>Und wer das Ganze braucht, der ist das Ganze.
609
(Auflösung in nächster Nummer.)</Unicode>
610
            </TextEquiv>
611
        </TextRegion>
612
        <TextRegion type="paragraph" id="r_4_1" custom="readingOrder {index:7;}">
613
            <Coords points="334,548 690,548 690,577 334,577"/>
614
            <TextLine id="tl_12" primaryLanguage="German" custom="readingOrder {index:0;}">
615
                <Coords points="335,549 689,549 689,576 335,576"/>
616
                <Baseline points="335,570 409,575 455,570 555,572 589,572 638,572 689,571"/>
617
                <Word id="w_w2aab1b7b2b1b1ab1" language="German" custom="readingOrder {index:0;}">
618
                    <Coords points="335,549 409,549 409,575 335,575"/>
619
                    <TextEquiv>
620
                        <Unicode>Lösung</Unicode>
621
                    </TextEquiv>
622
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
623
                </Word>
624
                <Word id="w_w2aab1b7b2b1b1ac15" language="German" custom="readingOrder {index:1;}">
625
                    <Coords points="423,551 455,551 455,571 423,571"/>
626
                    <TextEquiv>
627
                        <Unicode>der</Unicode>
628
                    </TextEquiv>
629
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
630
                </Word>
631
                <Word id="w_w2aab1b7b2b1b1ac23" language="German" custom="readingOrder {index:2;}">
632
                    <Coords points="469,550 555,550 555,575 469,575"/>
633
                    <TextEquiv>
634
                        <Unicode>Aufgabe</Unicode>
635
                    </TextEquiv>
636
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
637
                </Word>
638
                <Word id="w_w2aab1b7b2b1b1ac39" language="German" custom="readingOrder {index:3;}">
639
                    <Coords points="569,551 589,551 589,572 569,572"/>
640
                    <TextEquiv>
641
                        <Unicode>in</Unicode>
642
                    </TextEquiv>
643
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
644
                </Word>
645
                <Word id="w_w2aab1b7b2b1b1ac45" language="German" custom="readingOrder {index:4;}">
646
                    <Coords points="604,552 638,552 638,572 604,572"/>
647
                    <TextEquiv>
648
                        <Unicode>Nr.</Unicode>
649
                    </TextEquiv>
650
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
651
                </Word>
652
                <Word id="w_w2aab1b7b2b1b1ac53" language="German" custom="readingOrder {index:5;}">
653
                    <Coords points="653,552 689,552 689,571 653,571"/>
654
                    <TextEquiv>
655
                        <Unicode>78:</Unicode>
656
                    </TextEquiv>
657
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
658
                </Word>
659
                <TextEquiv>
660
                    <Unicode>Lösung der Aufgabe in Nr. 78:</Unicode>
661
                </TextEquiv>
662
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
663
            </TextLine>
664
            <TextEquiv>
665
                <Unicode>Lösung der Aufgabe in Nr. 78:</Unicode>
666
            </TextEquiv>
667
        </TextRegion>
668
        <TextRegion type="paragraph" id="r_4_2" custom="readingOrder {index:8;}">
669
            <Coords points="481,580 540,580 540,610 481,610"/>
670
            <TextLine id="tl_13" primaryLanguage="German" custom="readingOrder {index:0;}">
671
                <Coords points="482,581 539,581 539,609 482,609"/>
672
                <Baseline points="482,604 539,605"/>
673
                <Word id="w_w2aab1b7b2b3b1ab1" language="German" custom="readingOrder {index:0;}">
674
                    <Coords points="482,581 539,581 539,608 482,608"/>
675
                    <TextEquiv>
676
                        <Unicode>Kuß.</Unicode>
677
                    </TextEquiv>
678
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
679
                </Word>
680
                <TextEquiv>
681
                    <Unicode>Kuß.</Unicode>
682
                </TextEquiv>
683
                <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
684
            </TextLine>
685
            <TextEquiv>
686
                <Unicode>Kuß.</Unicode>
687
            </TextEquiv>
688
        </TextRegion>
689
        <TextRegion type="paragraph" id="r_5_1" custom="readingOrder {index:9;}">
690
            <Coords points="1055,119 1600,119 1600,153 1055,153"/>
691
            <TextLine id="tl_14" primaryLanguage="German" custom="readingOrder {index:0;}">
692
                <Coords points="1056,120 1599,120 1599,152 1056,152"/>
693
                <Baseline points="1056,149 1177,145 1337,146 1392,146 1482,145 1599,146"/>
694
                <Word id="w_w2aab1b9b2b1b1ab1" language="German" custom="readingOrder {index:0;}">
695
                    <Coords points="1056,120 1177,120 1177,150 1056,150"/>
696
                    <TextEquiv>
697
                        <Unicode>Kirchliche</Unicode>
698
                    </TextEquiv>
699
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
700
                </Word>
701
                <Word id="w_w2aab1b9b2b1b1ac23" language="German" custom="readingOrder {index:1;}">
702
                    <Coords points="1197,120 1337,120 1337,149 1197,149"/>
703
                    <TextEquiv>
704
                        <Unicode>Nachrichten</Unicode>
705
                    </TextEquiv>
706
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
707
                </Word>
708
                <Word id="w_w2aab1b9b2b1b1ac47" language="German" custom="readingOrder {index:2;}">
709
                    <Coords points="1354,121 1392,121 1392,146 1354,146"/>
710
                    <TextEquiv>
711
                        <Unicode>der</Unicode>
712
                    </TextEquiv>
713
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
714
                </Word>
715
                <Word id="w_w2aab1b9b2b1b1ac55" language="German" custom="readingOrder {index:3;}">
716
                    <Coords points="1411,121 1482,121 1482,152 1411,152"/>
717
                    <TextEquiv>
718
                        <Unicode>letzten</Unicode>
719
                    </TextEquiv>
720
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
721
                </Word>
722
                <Word id="w_w2aab1b9b2b1b1ac71" language="German" custom="readingOrder {index:4;}">
723
                    <Coords points="1499,121 1599,121 1599,152 1499,152"/>
724
                    <TextEquiv>
725
                        <Unicode>Wochen.</Unicode>
726
                    </TextEquiv>
727
                    <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
728
                </Word>
729
                <TextEquiv>
730
                    <Unicode>Kirchliche Nachrichten der letzten Wochen.</Unicode>
731
                </TextEquiv>
732
                <TextStyle fontFamily="Times New Roman" fontSize="8.5"/>
733
            </TextLine>
734
            <TextEquiv>
735
                <Unicode>Kirchliche Nachrichten der letzten Wochen.</Unicode>
736
            </TextEquiv>
737
        </TextRegion>
738
        <TextRegion type="paragraph" id="r_5_2" custom="readingOrder {index:10;}">
739
            <Coords points="1125,158 1530,158 1530,187 1125,187"/>
740
            <TextLine id="tl_15" primaryLanguage="German" custom="readingOrder {index:0;}">
741
                <Coords points="1126,159 1529,159 1529,186 1126,186"/>
742
                <Baseline points="1126,184 1247,179 1313,185 1362,181 1490,186 1529,181"/>
743
                <Word id="w_w2aab1b9b2b3b1ab1" language="German" custom="readingOrder {index:0;}">
744
                    <Coords points="1126,159 1247,159 1247,185 1126,185"/>
745
                    <TextEquiv>
746
                        <Unicode>Pfarrgebiet</Unicode>
747
                    </TextEquiv>
748
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
749
                </Word>
750
                <Word id="w_w2aab1b9b2b3b1ac25" language="German" custom="readingOrder {index:1;}">
751
                    <Coords points="1262,159 1313,159 1313,186 1262,186"/>
752
                    <TextEquiv>
753
                        <Unicode>Asch,</Unicode>
754
                    </TextEquiv>
755
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
756
                </Word>
757
                <Word id="w_w2aab1b9b2b3b1ac37" language="German" custom="readingOrder {index:2;}">
758
                    <Coords points="1328,161 1362,161 1362,181 1328,181"/>
759
                    <TextEquiv>
760
                        <Unicode>St.</Unicode>
761
                    </TextEquiv>
762
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
763
                </Word>
764
                <Word id="w_w2aab1b9b2b3b1ac45" language="German" custom="readingOrder {index:3;}">
765
                    <Coords points="1378,160 1490,160 1490,186 1378,186"/>
766
                    <TextEquiv>
767
                        <Unicode>Niklasberg</Unicode>
768
                    </TextEquiv>
769
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
770
                </Word>
771
                <Word id="w_w2aab1b9b2b3b1ac67" language="German" custom="readingOrder {index:4;}">
772
                    <Coords points="1505,166 1529,166 1529,181 1505,181"/>
773
                    <TextEquiv>
774
                        <Unicode>rc.</Unicode>
775
                    </TextEquiv>
776
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
777
                </Word>
778
                <TextEquiv>
779
                    <Unicode>Pfarrgebiet Asch, St. Niklasberg rc.</Unicode>
780
                </TextEquiv>
781
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
782
            </TextLine>
783
            <TextEquiv>
784
                <Unicode>Pfarrgebiet Asch, St. Niklasberg rc.</Unicode>
785
            </TextEquiv>
786
        </TextRegion>
787
        <TextRegion type="paragraph" id="r_5_3" custom="readingOrder {index:11;}">
788
            <Coords points="938,184 1720,184 1720,293 938,293"/>
789
            <TextLine id="tl_16" primaryLanguage="German" custom="readingOrder {index:0;}">
790
                <Coords points="979,185 1717,185 1717,214 979,214"/>
791
                <Baseline points="979,207 1097,207 1188,207 1297,210 1438,210 1492,207 1597,207 1641,202 1717,208"/>
792
                <Word id="w_w2aab1b9b2b5b1ab1" language="German" custom="readingOrder {index:0;}">
793
                    <Coords points="979,186 1097,186 1097,207 979,207"/>
794
                    <TextEquiv>
795
                        <Unicode>Geboren:</Unicode>
796
                    </TextEquiv>
797
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
798
                </Word>
799
                <Word id="w_w2aab1b9b2b5b1ac19" language="German" custom="readingOrder {index:1;}">
800
                    <Coords points="1113,186 1188,186 1188,207 1113,207"/>
801
                    <TextEquiv>
802
                        <Unicode>Simon</Unicode>
803
                    </TextEquiv>
804
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
805
                </Word>
806
                <Word id="w_w2aab1b9b2b5b1ac31" language="German" custom="readingOrder {index:2;}">
807
                    <Coords points="1202,186 1297,186 1297,211 1202,211"/>
808
                    <TextEquiv>
809
                        <Unicode>Schuster,</Unicode>
810
                    </TextEquiv>
811
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
812
                </Word>
813
                <Word id="w_w2aab1b9b2b5b1ac51" language="German" custom="readingOrder {index:3;}">
814
                    <Coords points="1312,187 1438,187 1438,212 1312,212"/>
815
                    <TextEquiv>
816
                        <Unicode>Strumpfw.,</Unicode>
817
                    </TextEquiv>
818
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
819
                </Word>
820
                <Word id="w_w2aab1b9b2b5b1ac73" language="German" custom="readingOrder {index:4;}">
821
                    <Coords points="1452,186 1492,186 1492,207 1452,207"/>
822
                    <TextEquiv>
823
                        <Unicode>eine</Unicode>
824
                    </TextEquiv>
825
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
826
                </Word>
827
                <Word id="w_w2aab1b9b2b5b1ac83" language="German" custom="readingOrder {index:5;}">
828
                    <Coords points="1511,187 1597,187 1597,213 1511,213"/>
829
                    <TextEquiv>
830
                        <Unicode>Tochter.</Unicode>
831
                    </TextEquiv>
832
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
833
                </Word>
834
                <Word id="w_w2aab1b9b2b5b1ad101" language="German" custom="readingOrder {index:6;}">
835
                    <Coords points="1616,197 1641,197 1641,202 1616,202"/>
836
                    <TextEquiv>
837
                        <Unicode>—</Unicode>
838
                    </TextEquiv>
839
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
840
                </Word>
841
                <Word id="w_w2aab1b9b2b5b1ad105" language="German" custom="readingOrder {index:7;}">
842
                    <Coords points="1659,187 1717,187 1717,213 1659,213"/>
843
                    <TextEquiv>
844
                        <Unicode>Kath.</Unicode>
845
                    </TextEquiv>
846
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
847
                </Word>
848
                <TextEquiv>
849
                    <Unicode>Geboren: Simon Schuster, Strumpfw., eine Tochter. — Kath.</Unicode>
850
                </TextEquiv>
851
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
852
            </TextLine>
853
            <TextLine id="tl_17" primaryLanguage="German" custom="readingOrder {index:1;}">
854
                <Coords points="939,212 1719,212 1719,240 939,240"/>
855
                <Baseline points="939,238 1045,237 1100,232 1199,233 1239,226 1308,233 1385,237 1511,237 1556,233 1635,233 1678,228 1719,233"/>
856
                <Word id="w_w2aab1b9b2b5b3ab1" language="German" custom="readingOrder {index:0;}">
857
                    <Coords points="939,213 1045,213 1045,238 939,238"/>
858
                    <TextEquiv>
859
                        <Unicode>Hofmann,</Unicode>
860
                    </TextEquiv>
861
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
862
                </Word>
863
                <Word id="w_w2aab1b9b2b5b3ac19" language="German" custom="readingOrder {index:1;}">
864
                    <Coords points="1060,213 1100,213 1100,233 1060,233"/>
865
                    <TextEquiv>
866
                        <Unicode>eine</Unicode>
867
                    </TextEquiv>
868
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
869
                </Word>
870
                <Word id="w_w2aab1b9b2b5b3ac29" language="German" custom="readingOrder {index:2;}">
871
                    <Coords points="1115,212 1199,212 1199,237 1115,237"/>
872
                    <TextEquiv>
873
                        <Unicode>Tochter.</Unicode>
874
                    </TextEquiv>
875
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
876
                </Word>
877
                <Word id="w_w2aab1b9b2b5b3ac47" language="German" custom="readingOrder {index:3;}">
878
                    <Coords points="1214,224 1239,224 1239,226 1214,226"/>
879
                    <TextEquiv>
880
                        <Unicode>—</Unicode>
881
                    </TextEquiv>
882
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
883
                </Word>
884
                <Word id="w_w2aab1b9b2b5b3ac51" language="German" custom="readingOrder {index:4;}">
885
                    <Coords points="1254,213 1308,213 1308,234 1254,234"/>
886
                    <TextEquiv>
887
                        <Unicode>Nikol</Unicode>
888
                    </TextEquiv>
889
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
890
                </Word>
891
                <Word id="w_w2aab1b9b2b5b3ac63" language="German" custom="readingOrder {index:5;}">
892
                    <Coords points="1322,213 1385,213 1385,239 1322,239"/>
893
                    <TextEquiv>
894
                        <Unicode>Kuhn,</Unicode>
895
                    </TextEquiv>
896
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
897
                </Word>
898
                <Word id="w_w2aab1b9b2b5b3ac75" language="German" custom="readingOrder {index:6;}">
899
                    <Coords points="1400,213 1511,213 1511,239 1400,239"/>
900
                    <TextEquiv>
901
                        <Unicode>Fabrikant,</Unicode>
902
                    </TextEquiv>
903
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
904
                </Word>
905
                <Word id="w_w2aab1b9b2b5b3ac97" language="German" custom="readingOrder {index:7;}">
906
                    <Coords points="1526,213 1556,213 1556,233 1526,233"/>
907
                    <TextEquiv>
908
                        <Unicode>ein</Unicode>
909
                    </TextEquiv>
910
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
911
                </Word>
912
                <Word id="w_w2aab1b9b2b5b3ad105" language="German" custom="readingOrder {index:8;}">
913
                    <Coords points="1571,213 1635,213 1635,239 1571,239"/>
914
                    <TextEquiv>
915
                        <Unicode>Sohn.</Unicode>
916
                    </TextEquiv>
917
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
918
                </Word>
919
                <Word id="w_w2aab1b9b2b5b3ad117" language="German" custom="readingOrder {index:9;}">
920
                    <Coords points="1655,225 1678,225 1678,228 1655,228"/>
921
                    <TextEquiv>
922
                        <Unicode>—</Unicode>
923
                    </TextEquiv>
924
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
925
                </Word>
926
                <Word id="w_w2aab1b9b2b5b3ad121" language="German" custom="readingOrder {index:10;}">
927
                    <Coords points="1693,214 1719,214 1719,234 1693,234"/>
928
                    <TextEquiv>
929
                        <Unicode>T.</Unicode>
930
                    </TextEquiv>
931
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
932
                </Word>
933
                <TextEquiv>
934
                    <Unicode>Hofmann, eine Tochter. — Nikol Kuhn, Fabrikant, ein Sohn. — T.</Unicode>
935
                </TextEquiv>
936
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
937
            </TextLine>
938
            <TextLine id="tl_18" primaryLanguage="German" custom="readingOrder {index:2;}">
939
                <Coords points="939,237 1718,237 1718,267 939,267"/>
940
                <Baseline points="939,260 1024,262 1106,258 1141,258 1272,263 1317,259 1395,259 1442,253 1578,260 1624,260 1718,264"/>
941
                <Word id="w_w2aab1b9b2b5b5ab1" language="German" custom="readingOrder {index:0;}">
942
                    <Coords points="939,239 1024,239 1024,265 939,265"/>
943
                    <TextEquiv>
944
                        <Unicode>Ludwig,</Unicode>
945
                    </TextEquiv>
946
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
947
                </Word>
948
                <Word id="w_w2aab1b9b2b5b5ac17" language="German" custom="readingOrder {index:1;}">
949
                    <Coords points="1039,239 1106,239 1106,265 1039,265"/>
950
                    <TextEquiv>
951
                        <Unicode>Lehrer</Unicode>
952
                    </TextEquiv>
953
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
954
                </Word>
955
                <Word id="w_w2aab1b9b2b5b5ac31" language="German" custom="readingOrder {index:2;}">
956
                    <Coords points="1120,238 1141,238 1141,258 1120,258"/>
957
                    <TextEquiv>
958
                        <Unicode>in</Unicode>
959
                    </TextEquiv>
960
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
961
                </Word>
962
                <Word id="w_w2aab1b9b2b5b5ac37" language="German" custom="readingOrder {index:3;}">
963
                    <Coords points="1156,238 1272,238 1272,264 1156,264"/>
964
                    <TextEquiv>
965
                        <Unicode>Schönbach,</Unicode>
966
                    </TextEquiv>
967
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
968
                </Word>
969
                <Word id="w_w2aab1b9b2b5b5ac59" language="German" custom="readingOrder {index:4;}">
970
                    <Coords points="1287,239 1317,239 1317,260 1287,260"/>
971
                    <TextEquiv>
972
                        <Unicode>ein</Unicode>
973
                    </TextEquiv>
974
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
975
                </Word>
976
                <Word id="w_w2aab1b9b2b5b5ac67" language="German" custom="readingOrder {index:5;}">
977
                    <Coords points="1331,240 1395,240 1395,265 1331,265"/>
978
                    <TextEquiv>
979
                        <Unicode>Sohn.</Unicode>
980
                    </TextEquiv>
981
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
982
                </Word>
983
                <Word id="w_w2aab1b9b2b5b5ac79" language="German" custom="readingOrder {index:6;}">
984
                    <Coords points="1417,251 1442,251 1442,253 1417,253"/>
985
                    <TextEquiv>
986
                        <Unicode>—</Unicode>
987
                    </TextEquiv>
988
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
989
                </Word>
990
                <Word id="w_w2aab1b9b2b5b5ac83" language="German" custom="readingOrder {index:7;}">
991
                    <Coords points="1464,238 1578,238 1578,266 1464,266"/>
992
                    <TextEquiv>
993
                        <Unicode>Neuberg:</Unicode>
994
                    </TextEquiv>
995
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
996
                </Word>
997
                <Word id="w_w2aab1b9b2b5b5ad101" language="German" custom="readingOrder {index:8;}">
998
                    <Coords points="1601,240 1624,240 1624,260 1601,260"/>
999
                    <TextEquiv>
1000
                        <Unicode>N.</Unicode>
1001
                    </TextEquiv>
1002
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1003
                </Word>
1004
                <Word id="w_w2aab1b9b2b5b5ad107" language="German" custom="readingOrder {index:9;}">
1005
                    <Coords points="1639,239 1718,239 1718,264 1639,264"/>
1006
                    <TextEquiv>
1007
                        <Unicode>Müller,</Unicode>
1008
                    </TextEquiv>
1009
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1010
                </Word>
1011
                <TextEquiv>
1012
                    <Unicode>Ludwig, Lehrer in Schönbach, ein Sohn. — Neuberg: N. Müller,</Unicode>
1013
                </TextEquiv>
1014
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1015
            </TextLine>
1016
            <TextLine id="tl_19" primaryLanguage="German" custom="readingOrder {index:3;}">
1017
                <Coords points="939,263 1717,263 1717,292 939,292"/>
1018
                <Baseline points="939,286 1006,286 1034,285 1153,287 1189,284 1262,285 1291,280 1367,285 1399,286 1498,290 1578,289 1627,286 1717,286"/>
1019
                <Word id="w_w2aab1b9b2b5b7ab1" language="German" custom="readingOrder {index:0;}">
1020
                    <Coords points="939,266 1006,266 1006,286 939,286"/>
1021
                    <TextEquiv>
1022
                        <Unicode>Weber</Unicode>
1023
                    </TextEquiv>
1024
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1025
                </Word>
1026
                <Word id="w_w2aab1b9b2b5b7ac13" language="German" custom="readingOrder {index:1;}">
1027
                    <Coords points="1014,266 1034,266 1034,286 1014,286"/>
1028
                    <TextEquiv>
1029
                        <Unicode>in</Unicode>
1030
                    </TextEquiv>
1031
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1032
                </Word>
1033
                <Word id="w_w2aab1b9b2b5b7ac19" language="German" custom="readingOrder {index:2;}">
1034
                    <Coords points="1041,263 1153,263 1153,290 1041,290"/>
1035
                    <TextEquiv>
1036
                        <Unicode>Steinpöhl,</Unicode>
1037
                    </TextEquiv>
1038
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1039
                </Word>
1040
                <Word id="w_w2aab1b9b2b5b7ac41" language="German" custom="readingOrder {index:3;}">
1041
                    <Coords points="1159,263 1189,263 1189,284 1159,284"/>
1042
                    <TextEquiv>
1043
                        <Unicode>ein</Unicode>
1044
                    </TextEquiv>
1045
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1046
                </Word>
1047
                <Word id="w_w2aab1b9b2b5b7ac49" language="German" custom="readingOrder {index:4;}">
1048
                    <Coords points="1198,265 1262,265 1262,290 1198,290"/>
1049
                    <TextEquiv>
1050
                        <Unicode>Sohn.</Unicode>
1051
                    </TextEquiv>
1052
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1053
                </Word>
1054
                <Word id="w_w2aab1b9b2b5b7ac61" language="German" custom="readingOrder {index:5;}">
1055
                    <Coords points="1270,276 1291,276 1291,280 1270,280"/>
1056
                    <TextEquiv>
1057
                        <Unicode>—</Unicode>
1058
                    </TextEquiv>
1059
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1060
                </Word>
1061
                <Word id="w_w2aab1b9b2b5b7ac65" language="German" custom="readingOrder {index:6;}">
1062
                    <Coords points="1298,265 1367,265 1367,291 1298,291"/>
1063
                    <TextEquiv>
1064
                        <Unicode>Christ.</Unicode>
1065
                    </TextEquiv>
1066
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1067
                </Word>
1068
                <Word id="w_w2aab1b9b2b5b7ac81" language="German" custom="readingOrder {index:7;}">
1069
                    <Coords points="1377,266 1399,266 1399,286 1377,286"/>
1070
                    <TextEquiv>
1071
                        <Unicode>W</Unicode>
1072
                    </TextEquiv>
1073
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1074
                </Word>
1075
                <Word id="w_w2aab1b9b2b5b7ac85" language="German" custom="readingOrder {index:8;}">
1076
                    <Coords points="1405,265 1498,265 1498,291 1405,291"/>
1077
                    <TextEquiv>
1078
                        <Unicode>indhaas,,</Unicode>
1079
                    </TextEquiv>
1080
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1081
                </Word>
1082
                <Word id="w_w2aab1b9b2b5b7ad105" language="German" custom="readingOrder {index:9;}">
1083
                    <Coords points="1506,265 1578,265 1578,289 1506,289"/>
1084
                    <TextEquiv>
1085
                        <Unicode>Weber,</Unicode>
1086
                    </TextEquiv>
1087
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1088
                </Word>
1089
                <Word id="w_w2aab1b9b2b5b7ad119" language="German" custom="readingOrder {index:10;}">
1090
                    <Coords points="1588,265 1627,265 1627,286 1588,286"/>
1091
                    <TextEquiv>
1092
                        <Unicode>eine</Unicode>
1093
                    </TextEquiv>
1094
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1095
                </Word>
1096
                <Word id="w_w2aab1b9b2b5b7ad129" language="German" custom="readingOrder {index:11;}">
1097
                    <Coords points="1633,265 1717,265 1717,287 1633,287"/>
1098
                    <TextEquiv>
1099
                        <Unicode>Tochter.</Unicode>
1100
                    </TextEquiv>
1101
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1102
                </Word>
1103
                <TextEquiv>
1104
                    <Unicode>Weber in Steinpöhl, ein Sohn. — Christ. W indhaas,, Weber, eine Tochter.</Unicode>
1105
                </TextEquiv>
1106
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1107
            </TextLine>
1108
            <TextEquiv>
1109
                <Unicode>Geboren: Simon Schuster, Strumpfw., eine Tochter. — Kath.
1110
Hofmann, eine Tochter. — Nikol Kuhn, Fabrikant, ein Sohn. — T.
1111
Ludwig, Lehrer in Schönbach, ein Sohn. — Neuberg: N. Müller,
1112
Weber in Steinpöhl, ein Sohn. — Christ. W indhaas,, Weber, eine Tochter.</Unicode>
1113
            </TextEquiv>
1114
        </TextRegion>
1115
        <TextRegion type="paragraph" id="r_5_4" custom="readingOrder {index:12;}">
1116
            <Coords points="939,289 1719,289 1719,423 939,423"/>
1117
            <TextLine id="tl_20" primaryLanguage="German" custom="readingOrder {index:0;}">
1118
                <Coords points="980,290 1711,290 1711,319 980,319"/>
1119
                <Baseline points="980,312 1125,310 1213,314 1289,312 1388,312 1427,306 1532,312 1651,315 1711,313"/>
1120
                <Word id="w_w2aab1b9b2b7b1ab1" language="German" custom="readingOrder {index:0;}">
1121
                    <Coords points="980,292 1125,292 1125,317 980,317"/>
1122
                    <TextEquiv>
1123
                        <Unicode>Gestorben:</Unicode>
1124
                    </TextEquiv>
1125
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1126
                </Word>
1127
                <Word id="w_w2aab1b9b2b7b1ac23" language="German" custom="readingOrder {index:1;}">
1128
                    <Coords points="1144,290 1213,290 1213,315 1144,315"/>
1129
                    <TextEquiv>
1130
                        <Unicode>Kath.,</Unicode>
1131
                    </TextEquiv>
1132
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1133
                </Word>
1134
                <Word id="w_w2aab1b9b2b7b1ac37" language="German" custom="readingOrder {index:2;}">
1135
                    <Coords points="1232,294 1289,294 1289,312 1232,312"/>
1136
                    <TextEquiv>
1137
                        <Unicode>verw.</Unicode>
1138
                    </TextEquiv>
1139
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1140
                </Word>
1141
                <Word id="w_w2aab1b9b2b7b1ac49" language="German" custom="readingOrder {index:3;}">
1142
                    <Coords points="1310,292 1388,292 1388,312 1310,312"/>
1143
                    <TextEquiv>
1144
                        <Unicode>Müller.</Unicode>
1145
                    </TextEquiv>
1146
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1147
                </Word>
1148
                <Word id="w_w2aab1b9b2b7b1ac65" language="German" custom="readingOrder {index:4;}">
1149
                    <Coords points="1403,303 1427,303 1427,306 1403,306"/>
1150
                    <TextEquiv>
1151
                        <Unicode>—</Unicode>
1152
                    </TextEquiv>
1153
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1154
                </Word>
1155
                <Word id="w_w2aab1b9b2b7b1ac69" language="German" custom="readingOrder {index:5;}">
1156
                    <Coords points="1442,292 1532,292 1532,318 1442,318"/>
1157
                    <TextEquiv>
1158
                        <Unicode>Wilhelm</Unicode>
1159
                    </TextEquiv>
1160
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1161
                </Word>
1162
                <Word id="w_w2aab1b9b2b7b1ac85" language="German" custom="readingOrder {index:6;}">
1163
                    <Coords points="1545,291 1651,291 1651,317 1545,317"/>
1164
                    <TextEquiv>
1165
                        <Unicode>Hofmann,</Unicode>
1166
                    </TextEquiv>
1167
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1168
                </Word>
1169
                <Word id="w_w2aab1b9b2b7b1ad103" language="German" custom="readingOrder {index:7;}">
1170
                    <Coords points="1666,292 1711,292 1711,313 1666,313"/>
1171
                    <TextEquiv>
1172
                        <Unicode>eine</Unicode>
1173
                    </TextEquiv>
1174
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1175
                </Word>
1176
                <TextEquiv>
1177
                    <Unicode>Gestorben: Kath., verw. Müller. — Wilhelm Hofmann, eine</Unicode>
1178
                </TextEquiv>
1179
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1180
            </TextLine>
1181
            <TextLine id="tl_21" primaryLanguage="German" custom="readingOrder {index:1;}">
1182
                <Coords points="940,316 1717,316 1717,346 940,346"/>
1183
                <Baseline points="940,338 1024,338 1064,332 1123,336 1226,340 1307,337 1342,337 1471,338 1511,332 1572,338 1717,343"/>
1184
                <Word id="w_w2aab1b9b2b7b3ab1" language="German" custom="readingOrder {index:0;}">
1185
                    <Coords points="940,319 1024,319 1024,344 940,344"/>
1186
                    <TextEquiv>
1187
                        <Unicode>Tochter.</Unicode>
1188
                    </TextEquiv>
1189
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1190
                </Word>
1191
                <Word id="w_w2aab1b9b2b7b3ac19" language="German" custom="readingOrder {index:1;}">
1192
                    <Coords points="1039,329 1064,329 1064,332 1039,332"/>
1193
                    <TextEquiv>
1194
                        <Unicode>—</Unicode>
1195
                    </TextEquiv>
1196
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1197
                </Word>
1198
                <Word id="w_w2aab1b9b2b7b3ac23" language="German" custom="readingOrder {index:2;}">
1199
                    <Coords points="1078,317 1123,317 1123,343 1078,343"/>
1200
                    <TextEquiv>
1201
                        <Unicode>Joh.</Unicode>
1202
                    </TextEquiv>
1203
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1204
                </Word>
1205
                <Word id="w_w2aab1b9b2b7b3ac33" language="German" custom="readingOrder {index:3;}">
1206
                    <Coords points="1138,316 1226,316 1226,341 1138,341"/>
1207
                    <TextEquiv>
1208
                        <Unicode>Schiller,</Unicode>
1209
                    </TextEquiv>
1210
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1211
                </Word>
1212
                <Word id="w_w2aab1b9b2b7b3ac53" language="German" custom="readingOrder {index:4;}">
1213
                    <Coords points="1241,316 1307,316 1307,337 1241,337"/>
1214
                    <TextEquiv>
1215
                        <Unicode>Weber</Unicode>
1216
                    </TextEquiv>
1217
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1218
                </Word>
1219
                <Word id="w_w2aab1b9b2b7b3ac65" language="German" custom="readingOrder {index:5;}">
1220
                    <Coords points="1322,318 1342,318 1342,337 1322,337"/>
1221
                    <TextEquiv>
1222
                        <Unicode>in</Unicode>
1223
                    </TextEquiv>
1224
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1225
                </Word>
1226
                <Word id="w_w2aab1b9b2b7b3ac71" language="German" custom="readingOrder {index:6;}">
1227
                    <Coords points="1357,318 1471,318 1471,343 1357,343"/>
1228
                    <TextEquiv>
1229
                        <Unicode>Schönbach.</Unicode>
1230
                    </TextEquiv>
1231
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1232
                </Word>
1233
                <Word id="w_w2aab1b9b2b7b3ac93" language="German" custom="readingOrder {index:7;}">
1234
                    <Coords points="1487,329 1511,329 1511,332 1487,332"/>
1235
                    <TextEquiv>
1236
                        <Unicode>—</Unicode>
1237
                    </TextEquiv>
1238
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1239
                </Word>
1240
                <Word id="w_w2aab1b9b2b7b3ac97" language="German" custom="readingOrder {index:8;}">
1241
                    <Coords points="1525,318 1572,318 1572,344 1525,344"/>
1242
                    <TextEquiv>
1243
                        <Unicode>Joh.</Unicode>
1244
                    </TextEquiv>
1245
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1246
                </Word>
1247
                <Word id="w_w2aab1b9b2b7b3ad107" language="German" custom="readingOrder {index:9;}">
1248
                    <Coords points="1592,318 1717,318 1717,344 1592,344"/>
1249
                    <TextEquiv>
1250
                        <Unicode>Wunderlich,</Unicode>
1251
                    </TextEquiv>
1252
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1253
                </Word>
1254
                <TextEquiv>
1255
                    <Unicode>Tochter. — Joh. Schiller, Weber in Schönbach. — Joh. Wunderlich,</Unicode>
1256
                </TextEquiv>
1257
                <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1258
            </TextLine>
1259
            <TextLine id="tl_22" primaryLanguage="German" custom="readingOrder {index:2;}">
1260
                <Coords points="940,341 1718,341 1718,370 940,370"/>
1261
                <Baseline points="940,365 1021,365 1056,364 1224,362 1263,356 1346,363 1451,367 1507,364 1543,364 1663,368 1718,365"/>
1262
                <Word id="w_w2aab1b9b2b7b5ab1" language="German" custom="readingOrder {index:0;}">
1263
                    <Coords points="940,345 1021,345 1021,365 940,365"/>
1264
                    <TextEquiv>
1265
                        <Unicode>Maurer</Unicode>
1266
                    </TextEquiv>
1267
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1268
                </Word>
1269
                <Word id="w_w2aab1b9b2b7b5ac15" language="German" custom="readingOrder {index:1;}">
1270
                    <Coords points="1036,344 1056,344 1056,364 1036,364"/>
1271
                    <TextEquiv>
1272
                        <Unicode>in</Unicode>
1273
                    </TextEquiv>
1274
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1275
                </Word>
1276
                <Word id="w_w2aab1b9b2b7b5ac21" language="German" custom="readingOrder {index:2;}">
1277
                    <Coords points="1070,341 1224,341 1224,367 1070,367"/>
1278
                    <TextEquiv>
1279
                        <Unicode>Wernersreuth.</Unicode>
1280
                    </TextEquiv>
1281
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1282
                </Word>
1283
                <Word id="w_w2aab1b9b2b7b5ac49" language="German" custom="readingOrder {index:3;}">
1284
                    <Coords points="1238,352 1263,352 1263,356 1238,356"/>
1285
                    <TextEquiv>
1286
                        <Unicode>—</Unicode>
1287
                    </TextEquiv>
1288
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1289
                </Word>
1290
                <Word id="w_w2aab1b9b2b7b5ac53" language="German" custom="readingOrder {index:4;}">
1291
                    <Coords points="1278,343 1346,343 1346,369 1278,369"/>
1292
                    <TextEquiv>
1293
                        <Unicode>Christ.</Unicode>
1294
                    </TextEquiv>
1295
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1296
                </Word>
1297
                <Word id="w_w2aab1b9b2b7b5ac69" language="German" custom="readingOrder {index:5;}">
1298
                    <Coords points="1360,344 1451,344 1451,369 1360,369"/>
1299
                    <TextEquiv>
1300
                        <Unicode>Wagner,</Unicode>
1301
                    </TextEquiv>
1302
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1303
                </Word>
1304
                <Word id="w_w2aab1b9b2b7b5ac85" language="German" custom="readingOrder {index:6;}">
1305
                    <Coords points="1465,343 1507,343 1507,364 1465,364"/>
1306
                    <TextEquiv>
1307
                        <Unicode>Oek.</Unicode>
1308
                    </TextEquiv>
1309
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1310
                </Word>
1311
                <Word id="w_w2aab1b9b2b7b5ac95" language="German" custom="readingOrder {index:7;}">
1312
                    <Coords points="1522,344 1543,344 1543,364 1522,364"/>
1313
                    <TextEquiv>
1314
                        <Unicode>in</Unicode>
1315
                    </TextEquiv>
1316
                    <TextStyle fontFamily="Times New Roman" fontSize="6.0"/>
1317
                </Word>
1318
                <Word id="w_w2aab1b9b2b7b5ad101" language="German" custom="readingOrder {index:8;}">
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff