Index: svgscripts/extractWordPosition.py
===================================================================
--- svgscripts/extractWordPosition.py	(revision 39)
+++ svgscripts/extractWordPosition.py	(revision 40)
@@ -1,584 +1,584 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 """   This program can be used to extract the position of the words in a svg file and write them to a xml file.
 """
 #    Copyright (C) University of Basel 2019  {{{1
 #
 #    This program is free software: you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation, either version 3 of the License, or
 #    (at your option) any later version.
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #    GNU General Public License for more details.
 #
 #    You should have received a copy of the GNU General Public License
 #    along with this program.  If not, see <https://www.gnu.org/licenses/> 1}}}
 
 import inspect
 import getopt
 from lxml import etree as ET
 from os import sep, listdir, mkdir, path
 from os.path import exists, isfile, isdir
 from progress.bar import Bar
 import re
 import sys
 import warnings
 
 from myxmlwriter import write_pretty
 from datatypes.lineNumber import LineNumber
 from datatypes.matrix import Matrix
 from datatypes.page import Page
 from datatypes.pdf import PDFText
 from datatypes.transkriptionField import TranskriptionField
 from datatypes.transkription_position import TranskriptionPosition
 from datatypes.word import Word
 from datatypes.word_insertion_mark import WordInsertionMark
 
 __author__ = "Christian Steiner"
 __maintainer__ = __author__
 __copyright__ = 'University of Basel'
 __email__ = "christian.steiner@unibas.ch"
 __status__ = "Development"
 __license__ = "GPL v3"
 __version__ = "0.0.1"
 
 class Extractor:
     """
     This class can be used to extract the word positions in a svg file and write it to a xml file.
 
     Args:
         [xml_dir (str): target directory]
         [title (str): title of document]
         [manuscript_file (str): xml file containing information about the archival unity to which the current page belongs
         [extract_transkription_field_only (Boolean): if true extract_word_position will extract word positions only that 
                                                      are part of the transkription field.
     """
     UNITTESTING = False
     SONDERZEICHEN_LIST = [ 'A', 'B', '{', '}' ]
 
     def __init__(self, xml_dir=None, title=None, manuscript_file=None, extract_transkription_field_only=False, compare2pdf=False):
         if bool(xml_dir):
             self.xml_dir = xml_dir
             not isdir(self.xml_dir) and mkdir(self.xml_dir)
         else:
             self.xml_dir = 'xml' if(isdir('xml')) else '' 
         self.latest_status = None
         self.compare2pdf = compare2pdf
         self.xml_dir = self.xml_dir + sep if(bool(self.xml_dir)) else ''
         self.title = title
         self.manuscript_file = manuscript_file
         self.extract_transkription_field_only = extract_transkription_field_only
         self.manuscript_tree = None
         if not bool(self.title) and bool(self.manuscript_file) and isfile(self.manuscript_file):
             self.manuscript_tree = ET.parse(self.manuscript_file)
             self.title = self.manuscript_tree.getroot().get('title')
         elif bool(self.manuscript_file):
             raise FileNotFoundError('File "{}" does not exist!'.format(self.manuscript_file))
         elif bool(self.title):
             self.update_title_and_manuscript(self.title, False)
 
     def add_word(self, page, index, word_part_objs, endSign, endX, matrix=None, debug_msg=None, transkription_field=None):
         """Creates transkription_positions and a new word from word_part_objs (i.e. a list of dictionaries about parts of this word).
             If word contains a Sonderzeichen as specified by self.SONDERZEICHEN_LIST, word_part_objs will be split and several words are created.
 
             :returns: the new word counter (int)
         """
         break_points = []
         if(len(page.sonderzeichen_list) > 0): # check for Sonderzeichen and special chars -> mark for word insertion, create break points
             for Sonderzeichen in self.SONDERZEICHEN_LIST:
                 contains_Sonderzeichen = [ dict['text'] == Sonderzeichen and any(sz in dict['class'] for sz in page.sonderzeichen_list) for dict in word_part_objs ]
                 if True in contains_Sonderzeichen:
                     break_points += [ (endPoint, endPoint + 1) for endPoint in  [i for i, e in enumerate(contains_Sonderzeichen) if e == True ]] 
                     for sz_point in [i for i, e in break_points]:
                         wim_index = len(page.word_insertion_marks)
                         x = float(word_part_objs[sz_point]['x'])
                         y = float(word_part_objs[sz_point]['y'])
                         if page.svg_file is not None and isfile(page.svg_file) and transkription_field is not None:
                             svg_path_tree = ET.parse(page.svg_file)
                             namespaces = { k if k is not None else 'ns': v for k, v in svg_path_tree.getroot().nsmap.items() }
                             xmin = transkription_field.xmin
                             ymin = transkription_field.ymin
                             wim = WordInsertionMark.CREATE_WORD_INSERTION_MARK(svg_path_tree, namespaces, id=wim_index, x=x, y=y, xmin=xmin, ymin=ymin,\
                                     line_number=page.get_line_number(y-1), mark_type=Sonderzeichen)
                             page.word_insertion_marks.append(wim)
         if(bool(re.search(r'\d[A-Za-z]', self.get_word_from_part_obj(word_part_objs)))): # case: digits from line number and chars from words -> create break points
             THRESHOLDX = 20 # Threshold between line number and text
             last_x = -1
             for i, x in enumerate([float(dict['x']) for dict in word_part_objs]):
                 if(last_x > -1 and (x - last_x > THRESHOLDX)):
                     break_points.append((i, i))
                 last_x = x
         if(len(break_points) > 0): # if there are break points -> split word_part_obj and add the corresponding words
             from_index = 0
             for end_point, next_from_index in break_points:
                 new_word_part_objs = word_part_objs[from_index:end_point]
                 new_endX = word_part_objs[end_point]['x']
                 from_index = next_from_index
                 index = self.add_word(page, index, new_word_part_objs, None, new_endX, matrix=matrix, debug_msg=debug_msg, transkription_field=transkription_field)
             if from_index > 0 and from_index < len(word_part_objs):
                 new_word_part_objs = word_part_objs[from_index:]
                 index = self.add_word(page, index, new_word_part_objs, endSign, endX, matrix=matrix, debug_msg=debug_msg, transkription_field=transkription_field)
             return index
         else:
             if len(word_part_objs) > 0:
                 transkription_positions = TranskriptionPosition.CREATE_TRANSKRIPTION_POSITION_LIST(page, word_part_objs, matrix=matrix,\
                         debug_msg_string=debug_msg, transkription_field=transkription_field)
                 text = self.get_word_from_part_obj(word_part_objs)
                 line_number = page.get_line_number((transkription_positions[0].bottom+transkription_positions[0].top)/2)
                 newWord = Word(id=index, text=text, line_number=line_number, transkription_positions=transkription_positions)
                 #newWord = Word.CREATE_WORD(page=page, word_part_objs=word_part_objs, id=index, endX=endX, endSign=endSign, matrix=matrix, debug_msg=debug_msg)
                 #newWord.attach_word_to_tree(page.page_tree) -> now we attach all words with update_and_attach_words2tree()
                 page.words.append(newWord)
                 return int(index) + 1
             else:
                 return int(index)
 
     def extractAndWriteInformation(self, file_name, page_number=None, xml_target_file=None, svg_file=None, pdfFile=None, record_warnings=False, warning_filter='default'):
         """Extracts information about positions of text elements and writes them to a xml file.
         """
         if isfile(file_name):
             if not bool(xml_target_file):
                 xml_target_file = self.get_file_name(file_name, page_number)
             if bool(self.xml_dir) and not bool(path.dirname(xml_target_file)):
                 xml_target_file = path.dirname(self.xml_dir) + sep + xml_target_file
             exit_status = 0
             with warnings.catch_warnings(record=record_warnings) as w:
                 warnings.simplefilter(warning_filter)
                 page = self.extract_information(file_name, page_number=page_number, xml_target_file=xml_target_file, svg_file=svg_file, pdfFile=pdfFile) 
                 if w is not None and len(w) > 0:
                     status_message = 'with warnings'
                     if True in [ str(warn.message).startswith(Page.WARNING_MISSING_USE_NODE4PWP) for warn in w ]:
                         status_message += ':{}:'.format(Page.WARNING_MISSING_USE_NODE4PWP.lower())
                     if True in [ str(warn.message).startswith(Page.WARNING_MISSING_GLYPH_ID4WIM) for warn in w ]:
                         status_message += ':{}:'.format(Page.WARNING_MISSING_GLYPH_ID4WIM.lower())
                     page.page_tree.getroot().set('status', status_message)
                     self.latest_status = status_message
                     exit_status = 1
                 else:
                     self.latest_status = None
             write_pretty(xml_element_tree=page.page_tree, file_name=xml_target_file, script_name=__file__, file_type='svgWordPosition')
             return exit_status 
         else:
             raise FileNotFoundError('\"{}\" is not an existing file!'.format(file_name))
 
     def extract_information(self, file_name, page_number=None, xml_target_file=None, svg_file=None, pdfFile=None):
         """Extracts information about positions of text elements.
 
             [:returns:] (datatypes.page) the Page containing all information.
         """
         if isfile(file_name):
             if not bool(xml_target_file):
                 xml_target_file = self.get_file_name(file_name, page_number)
             if bool(self.xml_dir) and not bool(path.dirname(xml_target_file)):
                 xml_target_file = path.dirname(self.xml_dir) + sep + xml_target_file
             transkription_field = TranskriptionField(file_name) if bool(self.extract_transkription_field_only) else None
             svg_tree = ET.parse(file_name) 
             page = Page(xml_target_file=xml_target_file, title=self.title, page_number=page_number, pdfFile=pdfFile,\
                     svg_file=svg_file, extract_transkription_field_only=self.extract_transkription_field_only)
             page.add_source(file_name)
             sonderzeichen_list, letterspacing_list, style_dict = self.get_style(svg_tree.getroot())
             page.add_style(sonderzeichen_list=sonderzeichen_list, letterspacing_list=letterspacing_list, style_dict=style_dict)
             if transkription_field is not None:
                 page.init_line_numbers(self.extract_line_numbers(svg_tree, transkription_field), transkription_field.ymax)
             self.extract_word_position(svg_tree, page, transkription_field=transkription_field)
             if page.pdfFile is not None and isfile(page.pdfFile):
                 pdftext = PDFText(page.pdfFile, sonderzeichen=self.SONDERZEICHEN_LIST)
                 pdftext.compare_svgWords2pdfWords(page, transkription_field=transkription_field, split_wrongly_concatenated_words=self.compare2pdf)
             page.create_writing_processes_and_attach2tree()
             page.categorize_paths(transkription_field=transkription_field)
             self.update_and_attach_words2tree(page)
             for word_insertion_mark in page.word_insertion_marks:
                 # it is not clear if we really need to know this alternative word ordering. See 'TODO.md'
                 #word_insertion_mark.inserted_words = self.find_inserted_words(page.page_tree, word_insertion_mark) 
                 word_insertion_mark.attach_object_to_tree(page.page_tree)
             return page
         else:
             raise FileNotFoundError('\"{}\" is not an existing file!'.format(file_name))
 
     def extract_line_numbers(self, svg_tree, transkription_field):
         """Extracts line numbers and write them to a xml file.
         """
         nodes_near_tf = [ item for item in filter(lambda x: Matrix.IS_NEARX_TRANSKRIPTION_FIELD(x.get('transform'), transkription_field),\
                 svg_tree.getroot().iterfind('.//text', svg_tree.getroot().nsmap))]
         line_numbers = [ LineNumber(raw_text_node=item, transkription_field=transkription_field)\
                 for item in filter(lambda x: LineNumber.IS_A_LINE_NUMBER(x), nodes_near_tf)]
         if len(line_numbers) > 0:
             MINABOVE = 3
             last_to_position = transkription_field.ymin
             for line_number in line_numbers:
                 above_current_line_bottom = line_number.bottom + transkription_field.ymin - MINABOVE
                 bottoms = self.get_bottoms(svg_tree.getroot(), from_position=last_to_position, to_position=above_current_line_bottom)
                 last_to_position = above_current_line_bottom
                 if len(bottoms) > 0:
                     current_line_top = float(bottoms[len(bottoms)-1]) - transkription_field.ymin + MINABOVE
                     line_number.setTop(current_line_top)
         return line_numbers
 
     def extract_word_position(self, svg_tree, page, transkription_field=None):
         """Extracts word positions.
         """
         counter = 0
         word_part_obj = []
         endSign = '%'
         last_matrix = None
         MAXBOTTOMDIFF = 5
         MAXXDIFF = 6
         if not Extractor.UNITTESTING:
             bar = Bar('extracting word positions from text_item', max=len([*self.get_text_items(svg_tree.getroot(), transkription_field=transkription_field)]))
         for text_item in self.get_text_items(svg_tree.getroot(), transkription_field=transkription_field):
             current_matrix = Matrix(text_item.get('transform'), transkription_field=transkription_field)
             # check for line breaks
             if (last_matrix is not None and len(word_part_obj) > 0 and (\
                     Matrix.DO_CONVERSION_FACTORS_DIFFER(last_matrix, current_matrix) or\
                     (abs(current_matrix.getY() - last_matrix.getY()) > MAXBOTTOMDIFF) or\
                     (abs(current_matrix.getX() - word_part_obj[len(word_part_obj)-1]['x']) > MAXXDIFF)))\
                     or (len(word_part_obj) > 0 and self.get_word_object_multi_char_x(word_part_obj[0]) > current_matrix.getX()):
                 endSign = '%'
                 if(self.get_word_from_part_obj(word_part_obj) != ''):
                     debug_msg = 'check for line breaks, diffx: {}, diffy: {}, diff_conversion_matrix: {}'.format(\
                             round(abs(current_matrix.getX()  - word_part_obj[len(word_part_obj)-1]['x']), 3), round(abs(current_matrix.getY() - last_matrix.getY()), 3),\
                             str(Matrix.DO_CONVERSION_FACTORS_DIFFER(last_matrix, current_matrix)))
                     counter = self.add_word(page, counter, word_part_obj, endSign, endX, matrix=last_matrix, debug_msg=debug_msg, transkription_field=transkription_field)
                 word_part_obj = []
             endX = current_matrix.getX()
             if(len(text_item.findall(".//tspan", svg_tree.getroot().nsmap)) < 1): # case: <svg><text>TEXT
                 if(bool(text_item.text) and not bool(re.search(r'^\s*$', text_item.text))):
                     word_part_obj.append( { "text": text_item.text, "x": current_matrix.getX(), "y": current_matrix.getY(), "class": text_item.get('class'), "matrix": current_matrix} )
                 else:
                     endSign = text_item.text
                     if(self.get_word_from_part_obj(word_part_obj) != ''):
                         counter = self.add_word(page, counter, word_part_obj, endSign, endX, matrix=last_matrix, debug_msg='svg/text/\s', transkription_field=transkription_field)  
                     word_part_obj = []
                     endSign = '%'
             for tspan_item in text_item.findall(".//tspan", svg_tree.getroot().nsmap): # case: <svg><text><tspan>TEXT
                 endX = current_matrix.add2X(tspan_item.get('x'))
                 if(tspan_item.text != None and tspan_item.text != '' and not bool(re.search(r'^\s*$', tspan_item.text))):
                     y = current_matrix.add2Y(tspan_item.get('y'))
                     word_part_obj.append( { "text": tspan_item.text, "x": endX, "y": y, "class": tspan_item.get('class'), "matrix": current_matrix })
                     if len(set(page.letterspacing_list) & set(tspan_item.get('class').split(' '))) > 0:  
                         """text_item has letterspacing class 
                         (set s & set t = new set with elements common to s and t)
                         """
                         endSign = '%'
                         if(self.get_word_from_part_obj(word_part_obj) != ''):
                             counter = self.add_word(page, counter, word_part_obj, endSign, endX, matrix=current_matrix,\
                                     debug_msg='tspan with letterspacing', transkription_field=transkription_field)  
                         word_part_obj = []
                 else:
                     endSign = tspan_item.text
                     if(self.get_word_from_part_obj(word_part_obj) != ''):
                         counter = self.add_word(page, counter, word_part_obj, endSign, endX, matrix=current_matrix,\
                                 debug_msg='svg/text/tspan/\s', transkription_field=transkription_field)
                     word_part_obj = []
                     endSign = '%'
             last_matrix = current_matrix
             not bool(Extractor.UNITTESTING) and bar.next()
         if(self.get_word_from_part_obj(word_part_obj) != ''):
             counter = self.add_word(page, counter, word_part_obj, endSign, endX, matrix=current_matrix, debug_msg='end of loop',\
                     transkription_field=transkription_field)
         word_part_obj = []
         endSign = '%'
         not bool(Extractor.UNITTESTING) and bar.finish()
 
     def find_inserted_words_by_position(self, target_tree, x, y):
         """Returns an Array with the words that are inserted above the x, y position or [] if not found.
         """
         warnings.warn('Function "find_inserted_words_by_position" does not work and it is not clear whether we need this.')
         MINY = 31.0
         MAXY = 10.0
         DIFFX = 9.0
         if(len(target_tree.getroot().xpath('//word[@id]')) > 0):
             result_list = []
             minus2left = 20.0
             minus2top = 19.0
             while len(result_list) == 0 and minus2top < MINY and minus2left > DIFFX :
                 result_list = [ Word.CREATE_WORD(item) for item in target_tree.getroot().xpath(\
                         '//word[@top>{0} and @top<{1} and @left>{2} and @left<{3}]'.format(y - minus2top, y - MAXY, x - minus2left, x + DIFFX)) ]
                 minus2left -= 1
                 minus2top  += 1
             if len(result_list) > 0:
                 result_bottom = result_list[len(result_list)-1].bottom
                 result_left_min = result_list[len(result_list)-1].left + result_list[len(result_list)-1].width
                 for item in target_tree.getroot().xpath('//word[@bottom={0} and @left>{1}]'.format(result_bottom, result_left_min)):
                     result_left_min = result_list[len(result_list)-1].left + result_list[len(result_list)-1].width
                     result_left_max = result_left_min + DIFFX
                     if float(item.get('left')) - result_left_max < DIFFX:
                         result_list.append(Word.CREATE_WORD(item))
                     else:
                         break
             return result_list 
         else:
             return []
 
     def find_inserted_words(self, target_tree, word_insertion_mark):
         """Returns an Array with the words that are inserted above/underneath the word_insertion_mark.
 
         """
         warnings.warn('Function "find_inserted_words" does not work and it is not clear whether we need this.')
         if word_insertion_mark.line_number < 2 or word_insertion_mark.line_number % 2 == 1:
             return self.find_inserted_words_by_position(target_tree, word_insertion_mark.x, word_insertion_mark.y)
         if(len(target_tree.getroot().xpath('//word[@id]')) > 0):
             MINY = 31.0
             MAXY = 10.0
             DIFFX = 9.0
             result_list = []
             x = word_insertion_mark.x
             y = word_insertion_mark.y
             if word_insertion_mark.mark_type != 'B': # all insertions that are above the current line
                 line_number = word_insertion_mark.line_number - 1 
                 words_on_line = [ Word.CREATE_WORD(item) for item in target_tree.getroot().xpath(\
                                 '//word[@line-number={0}]'.format(line_number)) ]
                 if len(words_on_line) > 0:
                     minus2top = 1.0
                     while len(result_list) == 0 and minus2top < MINY:
                         for word in words_on_line:
                             for transkription_position in word.transkription_positions:
                                 if transkription_position.top > y - minus2top\
                                         and transkription_position.left > x - DIFFX\
                                         and transkription_position.left < x + DIFFX:
                                     result_list.append(word)
                                     break
                         minus2top  += 1
             elif word_insertion_mark.mark_type == 'B': # B means insertion is underneath the current line
                 line_number = word_insertion_mark.line_number + 1
                 words_on_line = [ Word.CREATE_WORD(item) for item in target_tree.getroot().xpath(\
                                 '//word[@line-number={0}]'.format(line_number)) ]
                 if len(words_on_line) > 0:
                     plus2top = 1.0
                     while len(result_list) == 0 and plus2top < MINY :
                         for word in words_on_line:
                             for transkription_position in word.transkription_positions:
                                 if transkription_position.top > y + plus2top\
                                         and transkription_position.left > x - DIFFX\
                                         and transkription_position.left < x + DIFFX:
                                     result_list.append(word)
                                     break
                         plus2top  += 1
             if len(result_list) > 0: # now, collect more words that are right of already collected words
                 result_bottom = result_list[len(result_list)-1].transkription_positions[0].bottom
                 result_left_min = result_list[len(result_list)-1].transkription_positions[0].left\
                         + result_list[len(result_list)-1].transkription_positions[0].width
                 for item in target_tree.getroot().xpath(\
                         '//word[@line-number={0} and @bottom>{1} and @bottom<{2} and @left>{3}]'.format(line_number, result_bottom-5, result_bottom+5, result_left_min)):
                     result_left_min = result_list[len(result_list)-1].transkription_positions[0].left\
                             + result_list[len(result_list)-1].transkription_positions[0].width
                     result_left_max = result_left_min + DIFFX
                     if float(item.get('left')) - result_left_max < DIFFX:
                         result_list.append(Word.CREATE_WORD(item))
                     else:
                         break
             return result_list 
         else:
             return []
 
     def get_bottoms(self, tree_root, from_position=-1.0, to_position=-1.0, transkription_field=None):
         """Returns all unique bottom values (Float) as a sorted list.
         """
         bottom_list = sorted(set(item.get('transform').split(' ')[5].replace(')','') for item in tree_root.findall(".//text", tree_root.nsmap)), key=float)
         if transkription_field is not None:
             from_position = transkription_field.ymin
             to_position = transkription_field.ymax
         if (from_position > 0.0 and to_position > 0.0):
             return [ item for item in filter(lambda x: float(x) > from_position and float(x) < to_position, bottom_list) ] 
         else:
             return bottom_list
 
     def get_file_name(self, file_name, page_number=None):
         """Returns the file_name of the target xml file.
         """
         dir_name = path.dirname(self.xml_dir) + sep if(bool(self.xml_dir)) else ''
         if bool(self.title):
             return dir_name + self.title.replace(' ', '_') + '_page' + self.get_page_number(file_name, page_number=page_number) + '.xml'
         else:
             return '{}{}'.format(dir_name, path.basename(file_name).replace('.svg', '.xml'))
 
     def get_page_number(self, file_name, page_number=None):
         """ Returns page number as a string (with leading zero(s) if len(page_number) < 3).
         """
         if not bool(page_number) and bool(re.search(r'\d', file_name)):
             """if page_number=None and filename contains digits,
                 then split filename into its parts that contain only digits, remove empty strings
                 and return the last part containing only digits.
             """
             page_number = list(filter(lambda x: x != '', re.split(r'\D+', file_name))).pop()
         if bool(page_number):
             leading_zeros = '00' if(len(page_number) == 1) else '0' if(len(page_number) == 2) else ''
             return leading_zeros + str(page_number)
         else:
             return ''
 
     def get_style(self, etree_root):
         """Returns the style specification as a dictionary.
 
             :returns: 
                 sonderzeichen_list:     list of keys for classes that are 'Sonderzeichen'
                 style_dict:             dictionary: key = class name (str), value = style specification (dictionary)
         """
         style_dict = {}
         sonderzeichen_list = []
         letterspacing_list = []
         style = etree_root.find('style', etree_root.nsmap)
         if style is not None:
             for style_item in list(filter(lambda x: x != '', style.text.split("\n\t"))):
                 style_key = style_item.split('{')[0].replace('.', '')
                 style_value_dict = {  item.split(':')[0]: item.split(':')[1].replace('\'','') \
                     for item in list(filter(lambda x: x!= '', style_item.split('{')[1].replace('}', '').replace('\n','').split(';')))}
                 style_dict[style_key] = style_value_dict
                 if bool(style_value_dict.get('font-family')) and 'Sonderzeichen' in style_value_dict.get('font-family'):
                     sonderzeichen_list.append(style_key)
                 if bool(style_value_dict.get('letter-spacing')):
                     letterspacing_list.append(style_key)
         return sonderzeichen_list, letterspacing_list, style_dict
 
     def get_text_items(self, tree_root, transkription_field=None):
         """Returns all text elements with a matrix or (if transkription_field is specified) 
         all text elements that are located inside the transkription field.
         """
         if transkription_field is not None:
-            return filter(lambda x: Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(x.get('transform'), transkription_field),\
+            return filter(lambda x: Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(x, transkription_field),\
                     tree_root.iterfind(".//text", tree_root.nsmap))
         else:
             return tree_root.iterfind(".//text", tree_root.nsmap)
 
     def get_word_from_part_obj(self, word_part_obj):
         """Extracts all 'text' from a list of dicitonaries and concats it to a string.
         """
         return ''.join([ dict['text'] for dict in word_part_obj])
 
     def get_word_object_multi_char_x(self, word_part_obj_dict):
         """Returns the x of the last char of word_part_object.
 
         TODO: get real widths from svg_file!!!
         """
         WIDTHFACTOR = 2.6
         return word_part_obj_dict['x'] if len(word_part_obj_dict['text']) < 2 else word_part_obj_dict['x'] + len(word_part_obj_dict['text']) * WIDTHFACTOR
     
     def update_and_attach_words2tree(self, page):
         """Update word ids and attach them to page.page_tree.
         """
         for node in page.page_tree.xpath('//word'): 
             node.getparent().remove(node)
         for index, word in enumerate(page.words):
             word.id = index
             word.attach_word_to_tree(page.page_tree)
 
     def update_title_and_manuscript(self, title, update_manuscript=True):
         """Updates title and manuscript.
         """
         self.title = title
         if update_manuscript or not bool(self.manuscript_file):
             self.manuscript_file = self.xml_dir + self.title.replace(' ', '_') + '.xml'
         if not isfile(self.manuscript_file):
             self.manuscript_tree = ET.ElementTree(ET.Element('manuscript', attrib={"title": self.title}))
             write_pretty(xml_element_tree=self.manuscript_tree, file_name=self.manuscript_file, script_name=__file__, file_type='xmlManuscriptFile')
 
 def usage():
     """prints information on how to use the script
     """
     print(main.__doc__)
 
 def main(argv):
     """This program can be used to extract the position of the words in a svg file and write them to a xml file. 
 
     svgscripts/extractWordPosition.py [OPTIONS] <file|dir>
 
         <file>                              svg file OR xml target file containing file name of svg file as "/page/@source".
         <dir>                               directory containing svg files
 
         OPTIONS:
         -h|--help:                          show help
         -c|--compare-to-pdf                 compare words to pdf and autocorrect 
         -d|--xml-dir=xmlDir:                target directory for the xml output file(s)
         -m|--manuscript-file:               xml file containing information about the archival order to which the current page(s) belong(s)
         -o|--only-transkription-field:      extract only words that are part of the transkription field.
         -p|--page=pageNumber:               page number of the current page. For use with _one_ file only.
         -P|--PDF=pdfFile:                   pdf file - used for word correction
         -s|--svg=svgFile:                   svg web file
         -t|--title=title:                   title of the manuscript to which the current page(s) belong(s)
         -x|--xml-target-file=xmlOutputFile: xml target file 
 
         :return: exit code (int)
     """
     compare2pdf = True
     extract_transkription_field_only = True
     manuscript_file = None
     page_number = None
     pdfFile = None
     svg_file = None
     title = None
     xml_target_file = None
     xml_dir = ".{}xml".format(sep)
 
     try:
         opts, args = getopt.getopt(argv, "hocd:m:t:p:s:x:P:", ["help", "only-transkription-field", "compare-to-pdf", "xml-dir=", "manuscript-file=", "title=", "page=", "svg=", "xml-target-file=", "PDF="])
     except getopt.GetoptError:
         usage()
         return 2
 
     for opt, arg in opts:
         if opt in ('-h', '--help') or not args:
             usage()
             return 0
         elif opt in ('-c', '--compare-to-pdf'):
             compare2pdf = True
         elif opt in ('-o', '--only-transkription-field'):
             extract_transkription_field_only = True
         elif opt in ('-d', '--xml-dir'):
             xml_dir = arg
         elif opt in ('-m', '--manuscript-file'):
             manuscript_file = arg
         elif opt in ('-t', '--title'):
             title = arg
         elif opt in ('-p', '--page'):
             page_number = str(arg)
         elif opt in ('-s', '--svg'):
             svg_file = arg
         elif opt in ('-P', '--PDF'):
             pdfFile = arg
         elif opt in ('-x', '--xml-target-file'):
             xml_target_file = str(arg)
     files_to_process = list()
     for arg in args:
         if isfile(arg):
             files_to_process.append(arg)
         elif isdir(arg):
             files_to_process = files_to_process + list(filter(lambda file: '.svg' in file, listdir(arg))) 
         else:
             print("'{}' does not exist!".format(arg))
             return 2
     
     if len(files_to_process) < 1 or args[0].endswith('xml'):
         if xml_target_file is None:
             xml_target_file = args[0] if len(args) > 0 else None
         if xml_target_file is not None and isfile(xml_target_file):
             target_file_tree = ET.parse(xml_target_file)
             file_name = target_file_tree.getroot().get('source')
             title = target_file_tree.getroot().get('title') if title is None else title
             page_number = target_file_tree.getroot().get('number') if page_number is None else page_number
             extract_transkription_field_only = (target_file_tree.getroot().get('transkription-field-only') == 'true')\
                     if target_file_tree.getroot().get('transkription-field-only') is not None else False
             if svg_file is None:
                 svg_file = target_file_tree.xpath('.//svg/@file')[0]\
                         if len(target_file_tree.xpath('.//svg/@file')) > 0 else None
             files_to_process.insert(0, file_name)
             if xml_target_file in files_to_process:
                 files_to_process.remove(xml_target_file)
         else:
             usage()
             return 2
     if len(files_to_process) > 1 and (bool(page_number) or bool(xml_target_file) or bool(pdfFile) or bool(svg_file)):
         print("ERROR: too many input files:  options --PDF, --page, --svg and --xml-target-file presuppose only one input file!")
         usage()
         return 2
 
     extractor = Extractor(xml_dir=xml_dir, title=title, manuscript_file=manuscript_file, extract_transkription_field_only=extract_transkription_field_only, compare2pdf=compare2pdf)
     for file in files_to_process:
         extractor.extractAndWriteInformation(file, page_number=page_number, xml_target_file=xml_target_file, pdfFile=pdfFile, svg_file=svg_file)
     return 0
 
 if __name__ == "__main__":
     sys.exit(main(sys.argv[1:]))
Index: svgscripts/test_process_files.py
===================================================================
--- svgscripts/test_process_files.py	(revision 39)
+++ svgscripts/test_process_files.py	(revision 40)
@@ -1,41 +1,39 @@
 import unittest
 from os import sep, path, remove
 from os.path import isfile
 import lxml.etree as ET
 import warnings
 
 import process_files
 from process_files import MyErrorHandler
 
 class TestProcessFiles(unittest.TestCase):
 
     def setUp(self):
         process_files.UNITTESTING = True
         DATADIR = path.dirname(__file__) + sep + 'test_data'  
         self.dir = DATADIR + sep + 'pdfsvg'
         self.manuscript = self.dir + sep + 'W_II_1.xml'
         self.graphic_file = self.dir + sep + 'W_II_1_page001_web.svg'
 
     @unittest.skipUnless(__name__ == "__main__", 'test takes too long, we do not run it with unittest discover')
     def test_main(self):
         #self.assertEqual(process_files.main([ self.manuscript ]), 1)
         argv = [ '-g', '-x', self.dir, '-s', self.dir, self.dir ]
         self.assertEqual(process_files.main(argv), 0)
         self.assertEqual(isfile(self.graphic_file), True)
     
     def test_is_page_ok(self):
         self.assertEqual(process_files.is_page_ok(manuscript_file=self.manuscript, page_number=2), True)
 
     def test_is_svg_ok(self):
         self.assertEqual(process_files.is_svg_ok(manuscript_file=self.manuscript, page_number=1), False)
 
     @unittest.skip('')
     def test_run(self):
         error_handler = MyErrorHandler()
         error_handler.run(page_number='15')
 
-    def tearDown(self):
-        isfile(self.graphic_file) and remove(self.graphic_file)
 
 if __name__ == "__main__":
     unittest.main()
Index: svgscripts/datatypes/matrix.py
===================================================================
--- svgscripts/datatypes/matrix.py	(revision 39)
+++ svgscripts/datatypes/matrix.py	(revision 40)
@@ -1,244 +1,255 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
 """   This class can be used to transform a svg/text[@transform] matrix-string into a matrix representation.
 """
 #    Copyright (C) University of Basel 2019  {{{1
 #
 #    This program is free software: you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation, either version 3 of the License, or
 #    (at your option) any later version.
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #    GNU General Public License for more details.
 #
 #    You should have received a copy of the GNU General Public License
 #    along with this program.  If not, see <https://www.gnu.org/licenses/> 1}}}
 
 __author__ = "Christian Steiner"
 __maintainer__ = __author__
 __copyright__ = 'University of Basel'
 __email__ = "christian.steiner@unibas.ch"
 __status__ = "Development"
 __license__ = "GPL v3"
 __version__ = "0.0.1"
 
 import re
 import math
 
 from .class_spec import SemanticClass
 
 class Matrix:#(SemanticClass): -> should we implement Matrix as tln:Matrix with properties hasAValue, etc.?
     """
     This class transforms a svg @transform matrix-string into a matrix representation.
 
     Args:
         transform_matrix_string (str)     string of the form 'matrix(1.0 0.0 0.0 1.0 0.0 0.0)' or 'rotate(10)'
     """
     A = 0
     B = 1
     C = 2
     D = 3
     E = 4 
     F = 5 
     XINDEX = 4
     YINDEX = 5
     MATRIX_LENGTH = 6
     DOWN = 1
     STRAIGHT = 0
     UP = -1
 
     def __init__(self, transform_matrix_string=None, transkription_field=None, matrix_list=[]):
         self.matrix = [ 0.0 for i in range(Matrix.MATRIX_LENGTH) ] if len(matrix_list) < 6 else matrix_list
         if transform_matrix_string is not None:
             m = re.search('(?<=rotate\()[-]*[0-9]+', transform_matrix_string)
             if m is not None: # transform='rotate(a)' to transform='matrix(cos(a), sin(a), -sin(a), cos(a), 0, 0)'
                 angle = float(m.group(0))
                 self.matrix[Matrix.A] = round(math.cos(math.radians(angle)), 3)
                 self.matrix[Matrix.B] = round(math.sin(math.radians(angle)), 3)
                 self.matrix[Matrix.C] = round(math.sin(math.radians(angle))*-1, 3)
                 self.matrix[Matrix.D] = round(math.cos(math.radians(angle)), 3)
                 self.matrix[Matrix.E] = 0
                 self.matrix[Matrix.F] = 0
             elif re.search(r'matrix\(\s*([-]*[0-9].*\s){5}[-]*[0-9].*\s*\)', transform_matrix_string):
                 self.matrix = [ float(i) for i in transform_matrix_string.replace('matrix(','').replace(')','').split(' ') ]
             else:
                 raise Exception('Error: string "{}" is not a valid transform matrix string!'.format(transform_matrix_string))
             if transkription_field is not None:
                 self.matrix[Matrix.XINDEX] -= transkription_field.xmin
                 self.matrix[Matrix.YINDEX] -= transkription_field.ymin
             if(len(self.matrix) < Matrix.MATRIX_LENGTH):
                 raise Exception('Error: string "{}" is not a valid matrix string!'.format(transform_matrix_string))
 
     def add2X(self, add_to_x=0):
         """Return x-value of matrix (float) + add_to_x.
         """
         return self.matrix[Matrix.XINDEX] + float(add_to_x)
 
     def add2Y(self, add_to_y=0):
         """Return y-value of matrix (float) + add_to_y.
         """
         return self.matrix[Matrix.YINDEX] + float(add_to_y)
 
     def getX(self):
         """Return x-value of matrix (float).
         """
         return self.matrix[Matrix.XINDEX]
 
     def getY(self):
         """Return y-value of matrix (float).
         """
         return self.matrix[Matrix.YINDEX]
 
     def is_matrix_horizontal(self):
         """Returns whether matrix is horizontal.
 
             [:return:] True/False
         """
         return self.matrix[Matrix.A] == 1 and self.matrix[Matrix.B] == 0 and self.matrix[Matrix.C] == 0 and self.matrix[Matrix.D] == 1
 
     def get_new_x(self, x=0.0, y=0.0):
         """Returns new position of x.
 
             :return: (float) x
         """
         top_left_x = x - self.matrix[self.E] if x != 0.0 else 0.0
         top_left_y = y - self.matrix[self.F] if y != 0.0 else 0.0
         return self.matrix[Matrix.A] * top_left_x + self.matrix[Matrix.C] * top_left_y + self.matrix[self.E]
 
     def get_new_y(self, x=0.0, y=0.0):
         """Returns new position of y.
 
             :return: (float) y
         """
         top_left_x = x - self.matrix[self.E] if x != 0.0 else 0.0
         top_left_y = y - self.matrix[self.F] if y != 0.0 else 0.0
         return self.matrix[Matrix.B] * top_left_x + self.matrix[Matrix.D] * top_left_y + self.matrix[self.F]
 
     def get_old_x(self, x=0.0, y=0.0):
         """Returns old position of x.
 
             :return: (float) x
         """
         old_x = (self.matrix[self.D]*x - self.matrix[Matrix.D]*self.matrix[Matrix.E] - self.matrix[Matrix.C]*y + self.matrix[Matrix.C]*self.matrix[Matrix.F])\
                 /(self.matrix[Matrix.A]*self.matrix[Matrix.D] - self.matrix[Matrix.B]*self.matrix[Matrix.C]) 
         return self.add2X(old_x)
 
     def get_transformed_positions(self, x=0.0, y=0.0, width=0.0, height=0.0):
         """Returns transformed x, y, width and height.
         """
         top_left_x = x
         top_left_y = y
         top_right_x = x + width
         top_right_y = y
         bottom_left_x = x
         bottom_left_y = y + height
         bottom_right_x = x + width
         bottom_right_y = y + height
         new_x = self.matrix[Matrix.A] * top_left_x + self.matrix[Matrix.C] * top_left_y + self.matrix[self.E]
         new_y = self.matrix[Matrix.B] * top_left_x + self.matrix[Matrix.D] * top_left_y + self.matrix[self.F]
         new_top_right_x = self.matrix[Matrix.A] * top_right_x + self.matrix[Matrix.C] * top_right_y + self.matrix[self.E]
         new_top_right_y = self.matrix[Matrix.B] * top_right_x + self.matrix[Matrix.D] * top_right_y + self.matrix[self.F]
         new_bottom_left_x = self.matrix[Matrix.A] * bottom_left_x + self.matrix[Matrix.C] * bottom_left_y + self.matrix[self.E]
         new_bottom_left_y = self.matrix[Matrix.B] * bottom_left_x + self.matrix[Matrix.D] * bottom_left_y + self.matrix[self.F]
         new_bottom_right_x = self.matrix[Matrix.A] * bottom_right_x + self.matrix[Matrix.C] * bottom_right_y + self.matrix[self.E]
         new_bottom_right_y = self.matrix[Matrix.B] * bottom_right_x + self.matrix[Matrix.D] * bottom_right_y + self.matrix[self.F]
         new_width = abs(new_top_right_x - new_x)\
                 if abs(new_top_right_x - new_x) >= abs(new_bottom_right_x - new_bottom_left_x)\
                 else abs(new_bottom_right_x - new_bottom_left_x)
         new_height = abs(new_bottom_left_y - new_y)\
                 if abs(new_bottom_left_y - new_y) >= abs(new_top_right_y - new_bottom_right_y)\
                 else abs(new_top_right_y - new_bottom_right_y)
         return new_x, new_y, new_width, new_height
 
     def clone_transformation_matrix(self):
         """Returns a matrix that contains only the transformation part.
 
             [:return:] (Matrix) a clone of this matrix
         """
         return Matrix(matrix_list=self.matrix[0:4]+[0,0])
 
     def isRotationMatrix(self):
         """Return whether matrix is a rotation matrix.
         """
         return self.matrix[Matrix.A] < 1 or self.matrix[Matrix.B] != 0 
 
     def toCSSTransformString(self):
         """Returns the CSS3 transform string: 'rotate(Xdeg)' where X is the angle.
         """
         angle = 0
         if self.isRotationMatrix():
             angle = int(round(math.degrees(math.asin(self.matrix[Matrix.B])), 0))
             if angle == 0:
                 angle = int(round(math.degrees(math.acos(self.matrix[Matrix.A])), 0))
         return 'rotate({}deg)'.format(angle)
 
     def toString(self):
         """Returns a transform_matrix_string representation of the matrix.
 
             [:returns:] (str) 'matrix(X X X X X X)'
         """
         return 'matrix(' + ' '.join([ str(round(x, 5)) for x in self.matrix ]) + ')'
 
     def get_rotation_direction(self):
         """Get rotation direction of rotation matrix.
 
             [:return:] (int) direction code Matrix.UP, Matrix.STRAIGHT, Matrix.DOWN
         """
         if not self.isRotationMatrix():
             return self.STRAIGHT
         else:
             angle = int(round(math.degrees(math.asin(self.matrix[Matrix.B])), 0))
             return self.UP if angle < 0 else self.DOWN
 
     @staticmethod
-    def IS_PART_OF_TRANSKRIPTION_FIELD(transform_matrix_string, transkription_field):
+    def IS_PART_OF_TRANSKRIPTION_FIELD(text_node, transkription_field):
         """Returns true if matrix specifies a position that is part of transkription field.
 
             transform_matrix_string (str): string from which to init Matrix.
             transkription_field (svgscripts.TranskriptionField)
         """
-        matrix = Matrix(transform_matrix_string=transform_matrix_string)
-        return matrix.getX() > transkription_field.xmin and matrix.getX() < transkription_field.xmax\
+        if not bool(text_node.get('transform')):
+            return False
+        matrix = Matrix(transform_matrix_string=text_node.get('transform'))
+        is_part = matrix.getX() > transkription_field.xmin and matrix.getX() < transkription_field.xmax\
                 and matrix.getY() > transkription_field.ymin and matrix.getY() < transkription_field.ymax
+        if not is_part and matrix.isRotationMatrix() and len([child.text for child in text_node.getchildren() if not re.match(r'^\s*$', child.text)]) > 0:
+            first_tspan_node = [ child for child in text_node.getchildren() if not re.match(r'^\s*$', child.text)][0]    
+            x = matrix.add2X(float(first_tspan_node.get('x')))
+            y = matrix.add2Y(float(first_tspan_node.get('y')))
+            new_x = matrix.get_new_x(x=x, y=y)
+            new_y = matrix.get_new_y(x=x, y=y)
+            return new_x > transkription_field.xmin and new_x < transkription_field.xmax\
+                    and new_y > transkription_field.ymin and new_y < transkription_field.ymax
+        return is_part
 
     @staticmethod
     def IS_NEARX_TRANSKRIPTION_FIELD(transform_matrix_string, transkription_field, diffx=20.0):
         """Returns true if matrix specifies a position that is on its x axis near the transkription_field.
 
             transform_matrix_string (str): string from which to init Matrix.
             transkription_field (svgscripts.TranskriptionField)
             diffx (float): defines threshold for positions that count as near.
         """
         matrix = Matrix(transform_matrix_string=transform_matrix_string)
         MINLEFT = transkription_field.xmin - diffx
         MAXRIGHT = transkription_field.xmax + diffx
         return matrix.getY() > transkription_field.ymin and matrix.getY() < transkription_field.ymax\
                 and ((matrix.getX() > MINLEFT and matrix.getX() < transkription_field.xmin)\
                 or (matrix.getX() > transkription_field.xmax and matrix.getX() < MAXRIGHT))
 
     @staticmethod
     def DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b, diff_threshold=0.001):
         """Returns whether the conversion factors (a-d) differ more than diff_threshold.
         """
         if matrix_a is None or matrix_b is None:
             return not (matrix_a is None and matrix_b is None)
         return abs(matrix_a.matrix[Matrix.A] - matrix_b.matrix[Matrix.A]) > diff_threshold\
                 or abs(matrix_a.matrix[Matrix.B] - matrix_b.matrix[Matrix.B]) > diff_threshold\
                 or abs(matrix_a.matrix[Matrix.C] - matrix_b.matrix[Matrix.C]) > diff_threshold\
                 or abs(matrix_a.matrix[Matrix.D] - matrix_b.matrix[Matrix.D]) > diff_threshold
 
     @classmethod
     def get_semantic_dictionary(cls):
         """ Creates and returns a semantic dictionary as specified by SemanticClass.
         """
         dictionary = {}
         class_dict = cls.get_class_dictionary()
         properties = {'matrix': (float, 1)}
         dictionary.update({'class': class_dict})
         dictionary.update({'properties': properties})
         return dictionary
 
Index: svgscripts/test_data/pdfsvg/W_II_1_page001.xml
===================================================================
--- svgscripts/test_data/pdfsvg/W_II_1_page001.xml	(revision 39)
+++ svgscripts/test_data/pdfsvg/W_II_1_page001.xml	(revision 40)
@@ -1,2785 +1,2785 @@
 <?xml version="1.0" encoding="utf-8"?>
 <page number="1" orientation="North" source="svgscripts/test_data/pdfsvg/W_II_1_online_page1.svg" status="with warnings:no use_node found:" title="W II 1" transkription-field-only="true">
 	<pdf file="svgscripts/test_data/pdfsvg/W_II_1_online_page1.pdf"/>
 	<metadata>
 		<type>svgWordPosition</type>
 		<createdBy>
 			<script>/data/home/knister0/nietzsche-python/svgscripts/extractWordPosition.py</script>
 			<date>2019-06-17 17:01:32</date>
 		</createdBy>
 		<modifiedBy script="/data/home/knister0/nietzsche-python/svgscripts/extractWordPosition.py">2019-07-03 10:44:44</modifiedBy>
-		<modifiedBy script="/data/home/knister0/nietzsche-python/svgscripts/process_files.py">2019-07-04 11:27:33</modifiedBy>
+		<modifiedBy script="/data/home/knister0/nietzsche-python/svgscripts/process_files.py">2019-07-11 10:29:04</modifiedBy>
 	</metadata>
 	<style Sonderzeichen="st22 st30 st61" letterspacing-list="st17 st33 st46 st49 st57">
 		<class clip-path="url(#SVGID_2_)" fill="#F8F9F8" name="st0"/>
 		<class clip-path="url(#SVGID_4_)" name="st1"/>
 		<class font-family="Frutiger-LightItalic" name="st2"/>
 		<class font-size="9px" name="st3"/>
 		<class fill="#DADADA" name="st4"/>
 		<class fill="none" name="st5" stroke="#DC0814" stroke-miterlimit="10" stroke-width="0.4"/>
 		<class fill="none" name="st6" stroke="#DADADA" stroke-miterlimit="10" stroke-width="9.2"/>
 		<class fill="none" name="st7" stroke="#000000" stroke-miterlimit="10" stroke-width="0.4"/>
 		<class fill="none" name="st8" stroke="#DC0814" stroke-miterlimit="10" stroke-width="0.3"/>
 		<class clip-path="url(#SVGID_6_)" name="st9"/>
 		<class font-family="Weidemann-Book" name="st10"/>
 		<class font-size="7px" name="st11"/>
 		<class fill="#DC0814" name="st12"/>
 		<class font-size="10px" name="st13"/>
 		<class clip-path="url(#SVGID_8_)" name="st14"/>
 		<class font-family="Frutiger-Europeen" name="st15"/>
 		<class clip-path="url(#SVGID_10_)" name="st16"/>
 		<class letter-spacing="5" name="st17"/>
 		<class clip-path="url(#SVGID_12_)" name="st18"/>
 		<class clip-path="url(#SVGID_14_)" name="st19"/>
 		<class clip-path="url(#SVGID_16_)" name="st20"/>
 		<class clip-path="url(#SVGID_18_)" name="st21"/>
 		<class font-family="Sonderzeichen-Normal" name="st22"/>
 		<class clip-path="url(#SVGID_20_)" name="st23"/>
 		<class clip-path="url(#SVGID_22_)" name="st24"/>
 		<class clip-path="url(#SVGID_24_)" name="st25"/>
 		<class clip-path="url(#SVGID_26_)" name="st26"/>
 		<class clip-path="url(#SVGID_28_)" name="st27"/>
 		<class clip-path="url(#SVGID_30_)" name="st28"/>
 		<class clip-path="url(#SVGID_32_)" name="st29"/>
 		<class font-family="Sonderzeichen-Punktuation" name="st30"/>
 		<class fill="none" name="st31" stroke="#000000" stroke-miterlimit="10" stroke-width="0.3"/>
 		<class clip-path="url(#SVGID_34_)" name="st32"/>
 		<class letter-spacing="1" name="st33"/>
 		<class clip-path="url(#SVGID_36_)" name="st34"/>
 		<class clip-path="url(#SVGID_38_)" name="st35"/>
 		<class font-size="8px" name="st36"/>
 		<class clip-path="url(#SVGID_40_)" name="st37"/>
 		<class clip-path="url(#SVGID_42_)" name="st38"/>
 		<class clip-path="url(#SVGID_44_)" name="st39"/>
 		<class clip-path="url(#SVGID_46_)" name="st40"/>
 		<class clip-path="url(#SVGID_48_)" name="st41"/>
 		<class clip-path="url(#SVGID_50_)" name="st42"/>
 		<class clip-path="url(#SVGID_52_)" name="st43"/>
 		<class clip-path="url(#SVGID_54_)" name="st44"/>
 		<class clip-path="url(#SVGID_56_)" name="st45"/>
 		<class letter-spacing="-1" name="st46"/>
 		<class clip-path="url(#SVGID_58_)" name="st47"/>
 		<class clip-path="url(#SVGID_60_)" name="st48"/>
 		<class letter-spacing="3" name="st49"/>
 		<class font-size="6px" name="st50"/>
 		<class font-family="Frutiger-Light" name="st51"/>
 		<class font-family="Frutiger-Bold" name="st52"/>
 		<class fill="none" name="st53" stroke="#F8F9F8" stroke-miterlimit="10" stroke-width="12.7"/>
 		<class clip-path="url(#SVGID_62_)" name="st54"/>
 		<class fill="none" name="st55" stroke="#000000" stroke-miterlimit="10" stroke-width="0.25"/>
 		<class clip-path="url(#SVGID_64_)" name="st56"/>
 		<class letter-spacing="4" name="st57"/>
 		<class font-size="5px" name="st58"/>
 		<class fill="#C6C6C6" name="st59"/>
 		<class font-family="Weidemann-Bold" name="st60"/>
 		<class font-family="Sonderzeichen-BoldN" name="st61"/>
 		<class fill="none" name="st62" stroke="#DC0814" stroke-width="0.2"/>
 		<class fill="none" name="st63" stroke="#000000" stroke-width="0.4"/>
 		<class fill="none" name="st64" stroke="#000000" stroke-width="0.2"/>
 		<class fill="none" name="st65" stroke="#DC0814" stroke-width="0.4"/>
 		<class clip-path="url(#SVGID_66_)" name="st66"/>
 	</style>
 	<line-number bottom="13.649" id="1" top="0"/>
 	<line-number bottom="21.399" id="2" top="14.649"/>
 	<line-number bottom="31.649" id="3" top="22.399"/>
 	<line-number bottom="39.399" id="4" top="32.649"/>
 	<line-number bottom="56.399" id="5" top="40.399"/>
 	<line-number bottom="66.399" id="6" top="57.399"/>
 	<line-number bottom="68.399" id="7" top="67.399"/>
 	<line-number bottom="90.399" id="8" top="69.399"/>
 	<line-number bottom="106.65" id="9" top="91.399"/>
 	<line-number bottom="114.4" id="10" top="107.65"/>
 	<line-number bottom="130.65" id="11" top="115.4"/>
 	<line-number bottom="138.4" id="12" top="131.65"/>
 	<line-number bottom="140.4" id="13" top="139.4"/>
 	<line-number bottom="147.15" id="14" top="141.4"/>
 	<line-number bottom="154.9" id="15" top="148.15"/>
 	<line-number bottom="162.4" id="16" top="155.9"/>
 	<line-number bottom="164.4" id="17" top="163.4"/>
 	<line-number bottom="175.4" id="18" top="165.4"/>
 	<line-number bottom="177.4" id="19" top="176.4"/>
 	<line-number bottom="186.4" id="20" top="178.4"/>
 	<line-number bottom="188.4" id="21" top="187.4"/>
 	<line-number bottom="193.4" id="22" top="189.4"/>
 	<line-number bottom="203.4" id="23" top="194.4"/>
 	<line-number bottom="211.4" id="24" top="204.4"/>
 	<line-number bottom="224.4" id="25" top="212.4"/>
 	<line-number bottom="226.4" id="26" top="225.4"/>
 	<line-number bottom="228.4" id="27" top="227.4"/>
 	<line-number bottom="234.4" id="28" top="229.4"/>
 	<line-number bottom="250.65" id="29" top="235.4"/>
 	<line-number bottom="258.399" id="30" top="251.65"/>
 	<line-number bottom="298.649" id="31" top="259.399"/>
 	<line-number bottom="306.399" id="32" top="299.649"/>
 	<line-number bottom="322.649" id="33" top="307.399"/>
 	<line-number bottom="330.399" id="34" top="323.649"/>
 	<line-number bottom="346.649" id="35" top="331.399"/>
 	<line-number bottom="354.399" id="36" top="347.649"/>
 	<line-number bottom="356.399" id="37" top="355.399"/>
 	<line-number bottom="378.399" id="38" top="357.399"/>
 	<line-number bottom="428.4" id="39" top="379.399"/>
 	<line-number bottom="450.4" id="40" top="429.4"/>
 	<line-number bottom="452.4" id="41" top="451.4"/>
 	<line-number bottom="474.4" id="42" top="453.4"/>
 	<line-number bottom="524.621" id="43" top="475.4"/>
 	<line-number bottom="541.4" id="44" top="525.621"/>
 	<line-number bottom="546.194" id="45" top="542.4"/>
 	<line-number bottom="564.4" id="46" top="547.194"/>
 	<line-number bottom="584.4" id="47" top="565.4"/>
 	<line-number bottom="587.9" id="48" top="585.4"/>
 	<line-number bottom="752.604" id="49" top="588.9"/>
 	<writing-process description="first version" version="0"/>
 	<writing-process description="insertion and addition" version="1"/>
 	<writing-process description="later insertion and addition" version="2"/>
 	<word-deletion-path d="M 546.617,176.628 L 554.637,176.628" id="11" style-class="st5"/>
 	<word-deletion-path d="M 557.757,194.628 L 622.335,194.628" id="12" style-class="st5"/>
 	<word-deletion-path d="M 624.425,197.721 L 632.078,188.601" id="43" style-class="st65"/>
 	<word-deletion-path d="M 530.125,269.628 L 542.255,269.628" id="15" style-class="st5"/>
 	<word-deletion-path d="M 464.54,302.378 L 477.77,302.378" id="17" style-class="st5"/>
 	<word-deletion-path d="M 665.036,302.378 L 733.685,302.378" id="18" style-class="st5"/>
 	<word-deletion-path d="M 441.112,308.778 L 477.532,308.778" id="19" style-class="st8"/>
 	<word-deletion-path d="M 567.638,308.778 L 573.266,308.778" id="20" style-class="st8"/>
 	<word-deletion-path d="M 334.488,317.628 L 356.297,317.628" id="21" style-class="st5"/>
 	<word-deletion-path d="M 566.053,317.628 L 625.772,317.628" id="22" style-class="st5"/>
 	<word-deletion-path d="M 335.869,341.628 L 429.837,341.628" id="23" style-class="st5"/>
 	<word-deletion-path d="M 470.139,373.016 L 467.347,373.664 L 465.867,389.335" id="3" style-class="st64"/>
 	<word-deletion-path d="M 354.684,404.528 L 368.425,404.528" id="24" style-class="st31"/>
 	<word-deletion-path d="M 325.984,413.628 L 366.423,413.628" id="25" style-class="st7"/>
 	<word-deletion-path d="M 424.172,413.148 L 436.452,413.148" id="5" style-class="st6"/>
 	<word-deletion-path d="M 535.39,413.628 L 648.418,413.628" id="26" style-class="st7"/>
 	<word-deletion-path d="M 463.372,452.528 L 477.512,452.528" id="27" style-class="st8"/>
 	<word-deletion-path d="M 514.506,452.528 L 540.28,452.528" id="28" style-class="st8"/>
 	<word-deletion-path d="M 390.477,461.628 L 407.076,461.628" id="30" style-class="st7"/>
 	<word-deletion-path d="M 410.296,461.628 L 526.319,461.628" id="31" style-class="st5"/>
 	<word-deletion-path d="M 415.758,476.528 L 500.632,476.528" id="32" style-class="st8"/>
 	<word-deletion-path d="M 418.398,482.438 L 414.566,485.896" id="44" style-class="st65"/>
 	<word-deletion-path d="M 533.831,485.628 L 565.151,485.628" id="33" style-class="st7"/>
 	<word-deletion-path d="M 521.805,500.528 L 544.051,500.528" id="34" style-class="st31"/>
 	<word-deletion-path d="M 334.954,509.628 L 440.062,509.628" id="35" style-class="st7"/>
 	<word-deletion-path d="M 566.044,509.628 L 627.733,509.628" id="36" style-class="st7"/>
 	<word-deletion-path d="M 565.652,558.278 L 598.061,558.278" id="37" style-class="st8"/>
 	<word deleted="false" id="0" line-number="1" text="unter">
 		<transkription-position bottom="12.65" height="6.5" id="0" left="287.646" top="6.15" width="14.966" writing-process-id="1">
 			<word-part bottom="11.65" height="3.672" id="0" left="287.796" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="7.978" width="3.391"/>
 			<word-part bottom="11.65" height="3.719" id="1" left="291.464" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="7.931" width="3.422"/>
 			<word-part bottom="11.65" height="4.5" id="2" left="295.132" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="7.15" width="1.953"/>
 			<word-part bottom="11.65" height="3.672" id="3" left="297.232" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="7.978" width="2.594"/>
 			<word-part bottom="11.65" height="3.719" id="4" left="300.368" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="7.931" width="2.094"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="1" line-number="1" text="D.">
 		<transkription-position bottom="12.649" height="6.984" id="0" left="304.698" top="5.665" width="6.005" writing-process-id="1">
 			<word-part bottom="11.65" height="4.984" id="0" left="304.848" style-class="st12 st10 st11" symbol-id="glyph1-7" text="D" top="6.665" width="4.094"/>
 			<word-part bottom="11.65" height="0.859" id="1" left="309.678" style-class="st12 st10 st11" symbol-id="glyph1-8" text="." top="10.79" width="0.875"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="2" line-number="1" text="wird">
 		<transkription-position bottom="12.65" height="7.047" id="0" left="313.497" top="5.603" width="12.566" writing-process-id="1">
 			<word-part bottom="11.65" height="3.594" id="0" left="313.647" style-class="st12 st10 st11" symbol-id="glyph1-9" text="w" top="8.056" width="5.312"/>
 			<word-part bottom="11.65" height="4.797" id="1" left="318.862" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="6.853" width="1.469"/>
 			<word-part bottom="11.65" height="3.719" id="2" left="320.57" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="7.931" width="2.094"/>
 			<word-part bottom="11.65" height="5.047" id="3" left="322.929" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="6.603" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="3" line-number="1" text="heute">
 		<transkription-position bottom="12.649" height="6.984" id="0" left="328.428" top="5.665" width="15.466" writing-process-id="1">
 			<word-part bottom="11.65" height="4.984" id="0" left="328.578" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="6.665" width="3.422"/>
 			<word-part bottom="11.65" height="3.672" id="1" left="332.246" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="7.978" width="2.594"/>
 			<word-part bottom="11.65" height="3.672" id="2" left="335.382" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="7.978" width="3.391"/>
 			<word-part bottom="11.65" height="4.5" id="3" left="339.05" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="7.15" width="1.953"/>
 			<word-part bottom="11.65" height="3.672" id="4" left="341.15" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="7.978" width="2.594"/>
 			<debug id="0" message="check for line breaks, diffx: 318.445, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="4" line-number="2" text="denn">
 		<transkription-position bottom="23.197" height="11.11" id="0" left="225.85" top="12.087" width="19.921" writing-process-id="0">
 			<word-part bottom="21.4" height="7.203" id="0" left="226.0" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="14.197" width="4.281"/>
 			<word-part bottom="21.4" height="5.234" id="1" left="231.03" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<word-part bottom="21.4" height="5.312" id="2" left="235.5" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="16.087" width="4.891"/>
 			<word-part bottom="21.4" height="5.312" id="3" left="240.73" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="16.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="5" line-number="2" text="es">
 		<transkription-position bottom="25.165" height="11.11" id="0" left="248.829" top="14.055" width="7.708" writing-process-id="0">
 			<word-part bottom="21.4" height="5.234" id="0" left="248.979" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<word-part bottom="21.4" height="5.234" id="1" left="253.449" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="16.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="6" line-number="2" text="gerade">
 		<transkription-position bottom="23.119" height="11.11" id="0" left="259.869" top="12.009" width="25.623" writing-process-id="0">
 			<word-part bottom="21.4" height="7.281" id="0" left="260.019" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="14.119" width="4.203"/>
 			<word-part bottom="21.4" height="5.234" id="1" left="264.489" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<word-part bottom="21.4" height="5.312" id="2" left="268.959" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="16.087" width="2.984"/>
 			<word-part bottom="21.4" height="5.234" id="3" left="272.319" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="16.165" width="3.812"/>
 			<word-part bottom="21.4" height="7.203" id="4" left="276.609" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="14.197" width="4.281"/>
 			<word-part bottom="21.4" height="5.234" id="5" left="281.639" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="7" line-number="2" text="heute">
 		<transkription-position bottom="23.275" height="11.11" id="0" left="288.979" top="12.165" width="21.923" writing-process-id="0">
 			<word-part bottom="21.4" height="7.125" id="0" left="289.129" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="14.275" width="4.891"/>
 			<word-part bottom="21.4" height="5.234" id="1" left="294.359" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<word-part bottom="21.4" height="5.234" id="2" left="298.829" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="16.165" width="4.859"/>
 			<word-part bottom="21.4" height="6.422" id="3" left="304.059" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="14.978" width="2.781"/>
 			<word-part bottom="21.4" height="5.234" id="4" left="307.049" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="16.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="8" line-number="2" text="wird">
 		<transkription-position bottom="23.197" height="11.11" id="0" left="314.389" top="12.087" width="17.811" writing-process-id="0">
 			<word-part bottom="21.4" height="5.125" id="0" left="314.539" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="16.275" width="7.562"/>
 			<word-part bottom="21.4" height="6.844" id="1" left="321.979" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="14.556" width="2.094"/>
 			<word-part bottom="21.4" height="5.312" id="2" left="324.409" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="16.087" width="2.984"/>
 			<word-part bottom="21.4" height="7.203" id="3" left="327.769" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="14.197" width="4.281"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="9" line-number="2" text="am">
 		<transkription-position bottom="25.087" height="11.11" id="0" left="335.669" top="13.977" width="11.965" writing-process-id="0">
 			<word-part bottom="21.4" height="5.234" id="0" left="335.819" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="16.165" width="3.812"/>
 			<word-part bottom="21.4" height="5.312" id="1" left="340.109" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="16.087" width="7.375"/>
 			<debug id="0" message="check for line breaks, diffx: 317.39, diffy: 6.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="10" line-number="3" text="wenig">
 		<transkription-position bottom="30.65" height="7.094" id="0" left="326.687" top="23.556" width="16.965" writing-process-id="1">
 			<word-part bottom="29.65" height="3.594" id="0" left="326.837" style-class="st12 st10 st11" symbol-id="glyph1-9" text="w" top="26.056" width="5.312"/>
 			<word-part bottom="29.65" height="3.672" id="1" left="332.052" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="25.978" width="2.594"/>
 			<word-part bottom="29.65" height="3.719" id="2" left="335.188" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="25.931" width="3.422"/>
 			<word-part bottom="29.65" height="4.797" id="3" left="338.856" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="24.853" width="1.469"/>
 			<word-part bottom="29.65" height="5.094" id="4" left="340.564" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="24.556" width="2.938"/>
 			<debug id="0" message="check for line breaks, diffx: 317.881, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="11" line-number="4" text="$">
 		<transkription-position bottom="42.728" height="11.11" id="0" left="76.886" top="31.618" width="5.941" writing-process-id="0">
 			<word-part bottom="39.4" height="5.672" id="0" left="77.036" style-class="st15 st13" symbol-id="glyph3-1" text="$" top="33.728" width="5.641"/>
 			<debug id="0" message="check for line breaks, diffx: 6.48, diffy: 0.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="12" line-number="4" text="wenigsten">
 		<transkription-position bottom="41.119" height="11.11" id="0" left="259.969" top="30.009" width="40.241" writing-process-id="0">
 			<word-part bottom="39.4" height="5.125" id="0" left="260.119" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="34.275" width="7.562"/>
 			<word-part bottom="39.4" height="5.234" id="1" left="267.559" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="34.165" width="3.703"/>
 			<word-part bottom="39.4" height="5.312" id="2" left="272.029" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="34.087" width="4.891"/>
 			<word-part bottom="39.4" height="6.844" id="3" left="277.259" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="32.556" width="2.094"/>
 			<word-part bottom="39.4" height="7.281" id="4" left="279.689" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="32.119" width="4.203"/>
 			<word-part bottom="39.4" height="5.234" id="5" left="284.159" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="34.165" width="2.938"/>
 			<word-part bottom="39.4" height="6.422" id="6" left="287.709" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="32.978" width="2.781"/>
 			<word-part bottom="39.4" height="5.234" id="7" left="290.699" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="34.165" width="3.703"/>
 			<word-part bottom="39.4" height="5.312" id="8" left="295.169" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="34.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="13" line-number="4" text="unter">
 		<transkription-position bottom="41.978" height="11.11" id="0" left="303.269" top="30.868" width="21.204" writing-process-id="0">
 			<word-part bottom="39.4" height="5.234" id="0" left="303.419" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="34.165" width="4.859"/>
 			<word-part bottom="39.4" height="5.312" id="1" left="308.649" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="34.087" width="4.891"/>
 			<word-part bottom="39.4" height="6.422" id="2" left="313.879" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="32.978" width="2.781"/>
 			<word-part bottom="39.4" height="5.234" id="3" left="316.869" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="34.165" width="3.703"/>
 			<word-part bottom="39.4" height="5.312" id="4" left="321.339" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="34.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="14" line-number="4" text="D.">
 		<transkription-position bottom="41.275" height="11.11" id="0" left="327.567" top="30.165" width="8.424" writing-process-id="0">
 			<word-part bottom="39.4" height="7.125" id="0" left="327.717" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="32.275" width="5.859"/>
 			<word-part bottom="39.4" height="1.25" id="1" left="334.607" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="38.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="15" line-number="4" text="gedacht.">
 		<transkription-position bottom="41.119" height="11.11" id="0" left="340.107" top="30.009" width="32.304" writing-process-id="0">
 			<word-part bottom="39.4" height="7.281" id="0" left="340.257" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="32.119" width="4.203"/>
 			<word-part bottom="39.4" height="5.234" id="1" left="344.727" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="34.165" width="3.703"/>
 			<word-part bottom="39.4" height="7.203" id="2" left="349.197" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="32.197" width="4.281"/>
 			<word-part bottom="39.4" height="5.234" id="3" left="354.227" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="34.165" width="3.812"/>
 			<word-part bottom="39.4" height="5.234" id="4" left="358.517" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="34.165" width="3.531"/>
 			<word-part bottom="39.4" height="7.125" id="5" left="362.807" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="32.275" width="4.891"/>
 			<word-part bottom="39.4" height="6.422" id="6" left="368.037" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="32.978" width="2.781"/>
 			<word-part bottom="39.4" height="1.25" id="7" left="371.027" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="38.15" width="1.234"/>
 			<debug id="0" message="check for line breaks, diffx: 348.33, diffy: 15.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="16" line-number="6" text="Ein">
 		<transkription-position bottom="68.275" height="11.11" id="0" left="93.393" top="57.165" width="13.021" writing-process-id="0">
 			<word-part bottom="66.4" height="7.125" id="0" left="93.543" style-class="st12 st10 st13" symbol-id="glyph2-18" text="E" top="59.275" width="4.547"/>
 			<word-part bottom="66.4" height="6.844" id="1" left="98.943" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="59.556" width="2.094"/>
 			<word-part bottom="66.4" height="5.312" id="2" left="101.373" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="17" line-number="6" text="Buch">
 		<transkription-position bottom="68.275" height="11.11" id="0" left="109.473" top="57.165" width="20.301" writing-process-id="0">
 			<word-part bottom="66.4" height="7.125" id="0" left="109.623" style-class="st12 st10 st13" symbol-id="glyph2-19" text="B" top="59.275" width="4.719"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="115.213" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="61.165" width="4.859"/>
 			<word-part bottom="66.4" height="5.234" id="2" left="120.443" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="61.165" width="3.531"/>
 			<word-part bottom="66.4" height="7.125" id="3" left="124.733" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="59.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="18" line-number="6" text="zum">
 		<transkription-position bottom="70.087" height="11.11" id="0" left="132.833" top="58.977" width="17.375" writing-process-id="0">
 			<word-part bottom="66.4" height="5.062" id="0" left="132.983" style-class="st12 st10 st13" symbol-id="glyph2-20" text="z" top="61.337" width="4.125"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="137.453" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="61.165" width="4.859"/>
 			<word-part bottom="66.4" height="5.312" id="2" left="142.683" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="61.087" width="7.375"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="19" line-number="6" text="Denken,">
 		<transkription-position bottom="68.275" height="11.11" id="0" left="153.363" top="57.165" width="32.868" writing-process-id="0">
 			<word-part bottom="66.4" height="7.125" id="0" left="153.513" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="59.275" width="5.859"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="160.403" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.312" id="2" left="164.873" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<word-part bottom="66.4" height="7.125" id="3" left="170.103" style-class="st12 st10 st13" symbol-id="glyph2-21" text="k" top="59.275" width="4.781"/>
 			<word-part bottom="66.4" height="5.234" id="4" left="174.943" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.312" id="5" left="179.413" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<word-part bottom="66.4" height="3.234" id="6" left="184.643" style-class="st12 st10 st13" symbol-id="glyph2-22" text="," top="63.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="20" line-number="6" text="nichts">
 		<transkription-position bottom="68.275" height="11.11" id="0" left="190.143" top="57.165" width="23.408" writing-process-id="0">
 			<word-part bottom="66.4" height="5.312" id="0" left="190.293" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<word-part bottom="66.4" height="6.844" id="1" left="195.523" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="59.556" width="2.094"/>
 			<word-part bottom="66.4" height="5.234" id="2" left="197.953" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="61.165" width="3.531"/>
 			<word-part bottom="66.4" height="7.125" id="3" left="202.243" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="59.275" width="4.891"/>
 			<word-part bottom="66.4" height="6.422" id="4" left="207.473" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="59.978" width="2.781"/>
 			<word-part bottom="66.4" height="5.234" id="5" left="210.463" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="61.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="21" line-number="6" text="weiter:">
 		<transkription-position bottom="68.556" height="11.11" id="0" left="216.883" top="57.446" width="26.694" writing-process-id="0">
 			<word-part bottom="66.4" height="5.125" id="0" left="217.033" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="61.275" width="7.562"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="224.473" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="6.844" id="2" left="228.943" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="59.556" width="2.094"/>
 			<word-part bottom="66.4" height="6.422" id="3" left="231.373" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="59.978" width="2.781"/>
 			<word-part bottom="66.4" height="5.234" id="4" left="234.363" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.312" id="5" left="238.833" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="61.087" width="2.984"/>
 			<word-part bottom="66.4" height="4.75" id="6" left="242.193" style-class="st12 st10 st13" symbol-id="glyph2-23" text=":" top="61.65" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="22" line-number="6" text="es">
 		<transkription-position bottom="70.165" height="11.11" id="0" left="247.693" top="59.055" width="7.708" writing-process-id="0">
 			<word-part bottom="66.4" height="5.234" id="0" left="247.843" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="252.313" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="61.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="23" line-number="6" text="gehört">
 		<transkription-position bottom="68.119" height="11.11" id="0" left="258.733" top="57.009" width="25.451" writing-process-id="0">
 			<word-part bottom="66.4" height="7.281" id="0" left="258.883" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="59.119" width="4.203"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="263.353" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="7.125" id="2" left="267.823" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="59.275" width="4.891"/>
 			<word-part bottom="66.4" height="6.859" id="3" left="273.053" style-class="st12 st10 st13" symbol-id="glyph2-24" text="ö" top="59.54" width="4.062"/>
 			<word-part bottom="66.4" height="5.312" id="4" left="277.893" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="61.087" width="2.984"/>
 			<word-part bottom="66.4" height="6.422" id="5" left="281.253" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="59.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="24" line-number="6" text="Denen,">
 		<transkription-position bottom="68.275" height="11.11" id="0" left="287.113" top="57.165" width="28.028" writing-process-id="0">
 			<word-part bottom="66.4" height="7.125" id="0" left="287.263" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="59.275" width="5.859"/>
 			<word-part bottom="66.4" height="5.234" id="1" left="294.153" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.312" id="2" left="298.623" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<word-part bottom="66.4" height="5.234" id="3" left="303.853" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="61.165" width="3.703"/>
 			<word-part bottom="66.4" height="5.312" id="4" left="308.323" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="61.087" width="4.891"/>
 			<word-part bottom="66.4" height="3.234" id="5" left="313.553" style-class="st12 st10 st13" symbol-id="glyph2-22" text="," top="63.165" width="1.438"/>
 			<debug id="0" message="check for line breaks, diffx: 245.397, diffy: 24.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="25" line-number="8" text="welchen">
 		<transkription-position bottom="92.275" height="11.11" id="0" left="67.881" top="81.165" width="33.521" writing-process-id="0">
 			<word-part bottom="90.4" height="5.125" id="0" left="68.031" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="85.275" width="7.562"/>
 			<word-part bottom="90.4" height="5.234" id="1" left="75.471" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="7.125" id="2" left="79.941" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="83.275" width="2.094"/>
 			<word-part bottom="90.4" height="5.234" id="3" left="82.371" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="85.165" width="3.531"/>
 			<word-part bottom="90.4" height="7.125" id="4" left="86.661" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="83.275" width="4.891"/>
 			<word-part bottom="90.4" height="5.234" id="5" left="91.891" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="6" left="96.361" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="26" line-number="8" text="Denken">
 		<transkription-position bottom="92.275" height="11.11" id="0" left="104.461" top="81.165" width="31.091" writing-process-id="0">
 			<word-part bottom="90.4" height="7.125" id="0" left="104.611" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="83.275" width="5.859"/>
 			<word-part bottom="90.4" height="5.234" id="1" left="111.501" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="2" left="115.971" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<word-part bottom="90.4" height="7.125" id="3" left="121.201" style-class="st12 st10 st13" symbol-id="glyph2-21" text="k" top="83.275" width="4.781"/>
 			<word-part bottom="90.4" height="5.234" id="4" left="126.041" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="5" left="130.511" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="27" line-number="8" text="Vergnügen">
 		<transkription-position bottom="92.119" height="11.11" id="0" left="138.61" top="81.009" width="42.111" writing-process-id="0">
 			<word-part bottom="90.4" height="7.188" id="0" left="138.76" style-class="st12 st10 st13" symbol-id="glyph2-26" text="V" top="83.212" width="6.375"/>
 			<word-part bottom="90.4" height="5.234" id="1" left="143.98" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="2" left="148.45" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="85.087" width="2.984"/>
 			<word-part bottom="90.4" height="7.281" id="3" left="151.81" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="83.119" width="4.203"/>
 			<word-part bottom="90.4" height="5.312" id="4" left="156.28" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<word-part bottom="90.4" height="6.859" id="5" left="161.51" style-class="st12 st10 st13" symbol-id="glyph2-27" text="ü" top="83.54" width="4.859"/>
 			<word-part bottom="90.4" height="7.281" id="6" left="166.74" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="83.119" width="4.203"/>
 			<word-part bottom="90.4" height="5.234" id="7" left="171.21" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="8" left="175.68" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="28" line-number="8" text="macht,">
 		<transkription-position bottom="92.275" height="11.11" id="0" left="183.779" top="81.165" width="26.348" writing-process-id="0">
 			<word-part bottom="90.4" height="5.312" id="0" left="183.929" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="85.087" width="7.375"/>
 			<word-part bottom="90.4" height="5.234" id="1" left="191.739" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="85.165" width="3.812"/>
 			<word-part bottom="90.4" height="5.234" id="2" left="196.029" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="85.165" width="3.531"/>
 			<word-part bottom="90.4" height="7.125" id="3" left="200.319" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="83.275" width="4.891"/>
 			<word-part bottom="90.4" height="6.422" id="4" left="205.549" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="83.978" width="2.781"/>
 			<word-part bottom="90.4" height="3.234" id="5" left="208.539" style-class="st12 st10 st13" symbol-id="glyph2-22" text="," top="87.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="29" line-number="8" text="nichts">
 		<transkription-position bottom="92.275" height="11.11" id="0" left="214.039" top="81.165" width="23.408" writing-process-id="0">
 			<word-part bottom="90.4" height="5.312" id="0" left="214.189" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="85.087" width="4.891"/>
 			<word-part bottom="90.4" height="6.844" id="1" left="219.419" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="83.556" width="2.094"/>
 			<word-part bottom="90.4" height="5.234" id="2" left="221.849" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="85.165" width="3.531"/>
 			<word-part bottom="90.4" height="7.125" id="3" left="226.139" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="83.275" width="4.891"/>
 			<word-part bottom="90.4" height="6.422" id="4" left="231.369" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="83.978" width="2.781"/>
 			<word-part bottom="90.4" height="5.234" id="5" left="234.359" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="85.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="30" line-number="8" text="weiter">
 		<transkription-position bottom="92.556" height="11.11" id="0" left="240.779" top="81.446" width="25.084" writing-process-id="0">
 			<word-part bottom="90.4" height="5.125" id="0" left="240.929" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="85.275" width="7.562"/>
 			<word-part bottom="90.4" height="5.234" id="1" left="248.369" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="6.844" id="2" left="252.839" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="83.556" width="2.094"/>
 			<word-part bottom="90.4" height="6.422" id="3" left="255.269" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="83.978" width="2.781"/>
 			<word-part bottom="90.4" height="5.234" id="4" left="258.259" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="85.165" width="3.703"/>
 			<word-part bottom="90.4" height="5.312" id="5" left="262.729" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="85.087" width="2.984"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="31" line-number="9" text="…">
 		<transkription-position bottom="98.15" height="11.11" id="0" left="267.219" top="87.04" width="8.206" writing-process-id="0">
 			<word-part bottom="90.4" height="1.25" id="0" left="267.369" style-class="st12 st10 st13" symbol-id="glyph2-28" text="…" top="89.15" width="7.906"/>
 			<debug id="0" message="check for line breaks, diffx: 199.337, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="32" line-number="9" text="zum">
 		<transkription-position bottom="105.65" height="5.719" id="0" left="216.348" top="99.931" width="12.276" writing-process-id="1">
 			<word-part bottom="104.65" height="3.547" id="0" left="216.498" style-class="st12 st10 st11" symbol-id="glyph1-14" text="z" top="101.103" width="2.891"/>
 			<word-part bottom="104.65" height="3.672" id="1" left="219.634" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="100.978" width="3.391"/>
 			<word-part bottom="104.65" height="3.719" id="2" left="223.302" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="100.931" width="5.172"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="33" line-number="9" text="Mindesten">
 		<transkription-position bottom="105.65" height="7.047" id="0" left="230.747" top="98.603" width="29.608" writing-process-id="1">
 			<word-part bottom="104.65" height="4.984" id="0" left="230.897" style-class="st12 st10 st11" symbol-id="glyph1-16" text="M" top="99.665" width="6.0"/>
 			<word-part bottom="104.65" height="4.797" id="1" left="237.015" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="99.853" width="1.469"/>
 			<word-part bottom="104.65" height="3.719" id="2" left="238.723" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="100.931" width="3.422"/>
 			<word-part bottom="104.65" height="5.047" id="3" left="242.391" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="99.603" width="2.984"/>
 			<word-part bottom="104.65" height="3.672" id="4" left="245.919" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="100.978" width="2.594"/>
 			<word-part bottom="104.65" height="3.672" id="5" left="249.055" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="100.978" width="2.062"/>
 			<word-part bottom="104.65" height="4.5" id="6" left="251.547" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="100.15" width="1.953"/>
 			<word-part bottom="104.65" height="3.672" id="7" left="253.647" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="100.978" width="2.594"/>
 			<word-part bottom="104.65" height="3.719" id="8" left="256.783" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="100.931" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="34" line-number="9" text="Fehltritt:">
 		<transkription-position bottom="105.649" height="6.984" id="0" left="266.663" top="98.665" width="23.456" writing-process-id="1">
 			<word-part bottom="104.65" height="4.984" id="0" left="266.813" style-class="st12 st10 st11" symbol-id="glyph1-18" text="F" top="99.665" width="2.984"/>
 			<word-part bottom="104.65" height="3.672" id="1" left="270.215" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="100.978" width="2.594"/>
 			<word-part bottom="104.65" height="4.984" id="2" left="273.351" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="99.665" width="3.422"/>
 			<word-part bottom="104.65" height="4.984" id="3" left="277.019" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="99.665" width="1.469"/>
 			<word-part bottom="104.65" height="4.5" id="4" left="278.727" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="100.15" width="1.953"/>
 			<word-part bottom="104.65" height="3.719" id="5" left="280.827" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="100.931" width="2.094"/>
 			<word-part bottom="104.65" height="4.797" id="6" left="283.186" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="99.853" width="1.469"/>
 			<word-part bottom="104.65" height="4.5" id="7" left="284.894" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="100.15" width="1.953"/>
 			<word-part bottom="104.65" height="4.5" id="8" left="286.994" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="100.15" width="1.953"/>
 			<word-part bottom="104.65" height="3.312" id="9" left="289.094" style-class="st12 st10 st11" symbol-id="glyph1-20" text=":" top="101.337" width="0.875"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="35" line-number="9" text="unzeitgemäß">
 		<transkription-position bottom="105.65" height="7.125" id="0" left="297.155" top="98.525" width="35.628" writing-process-id="1">
 			<word-part bottom="104.65" height="3.672" id="0" left="297.305" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="100.978" width="3.391"/>
 			<word-part bottom="104.65" height="3.719" id="1" left="300.973" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="100.931" width="3.422"/>
 			<word-part bottom="104.65" height="3.547" id="2" left="304.641" style-class="st12 st10 st11" symbol-id="glyph1-14" text="z" top="101.103" width="2.891"/>
 			<word-part bottom="104.65" height="3.672" id="3" left="307.777" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="100.978" width="2.594"/>
 			<word-part bottom="104.65" height="4.797" id="4" left="310.913" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="99.853" width="1.469"/>
 			<word-part bottom="104.65" height="4.5" id="5" left="312.621" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="100.15" width="1.953"/>
 			<word-part bottom="104.65" height="5.094" id="6" left="314.721" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="99.556" width="2.938"/>
 			<word-part bottom="104.65" height="3.672" id="7" left="317.857" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="100.978" width="2.594"/>
 			<word-part bottom="104.65" height="3.719" id="8" left="320.993" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="100.931" width="5.172"/>
 			<word-part bottom="104.65" height="4.812" id="9" left="326.467" style-class="st12 st10 st11" symbol-id="glyph1-21" text="ä" top="99.837" width="2.672"/>
 			<word-part bottom="104.65" height="5.125" id="10" left="329.477" style-class="st12 st10 st11" symbol-id="glyph1-22" text="ß" top="99.525" width="3.156"/>
 			<debug id="0" message="check for line breaks, diffx: 261.416, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="36" line-number="10" text="Daß">
 		<transkription-position bottom="116.087" height="11.11" id="0" left="67.881" top="104.977" width="15.996" writing-process-id="0">
 			<word-part bottom="114.4" height="7.125" id="0" left="68.031" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="107.275" width="5.859"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="74.921" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="109.165" width="3.812"/>
 			<word-part bottom="114.4" height="7.312" id="2" left="79.211" style-class="st12 st10 st13" symbol-id="glyph2-29" text="ß" top="107.087" width="4.516"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="37" line-number="10" text="es">
 		<transkription-position bottom="118.165" height="11.11" id="0" left="87.111" top="107.055" width="7.708" writing-process-id="0">
 			<word-part bottom="114.4" height="5.234" id="0" left="87.261" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="91.731" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="38" line-number="10" text="Deutsch">
 		<transkription-position bottom="116.275" height="11.11" id="0" left="98.151" top="105.165" width="32.611" writing-process-id="0">
 			<word-part bottom="114.4" height="7.125" id="0" left="98.301" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="107.275" width="5.859"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="105.191" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="5.234" id="2" left="109.661" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="109.165" width="4.859"/>
 			<word-part bottom="114.4" height="6.422" id="3" left="114.891" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="107.978" width="2.781"/>
 			<word-part bottom="114.4" height="5.234" id="4" left="117.881" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="5.234" id="5" left="121.431" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="109.165" width="3.531"/>
 			<word-part bottom="114.4" height="7.125" id="6" left="125.721" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="107.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="39" line-number="10" text="geschrieben">
 		<transkription-position bottom="116.119" height="11.11" id="0" left="133.821" top="105.009" width="46.771" writing-process-id="0">
 			<word-part bottom="114.4" height="7.281" id="0" left="133.971" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="107.119" width="4.203"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="138.441" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="5.234" id="2" left="142.911" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="5.234" id="3" left="146.461" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="109.165" width="3.531"/>
 			<word-part bottom="114.4" height="7.125" id="4" left="150.751" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="107.275" width="4.891"/>
 			<word-part bottom="114.4" height="5.312" id="5" left="155.981" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="109.087" width="2.984"/>
 			<word-part bottom="114.4" height="6.844" id="6" left="159.341" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="7" left="161.771" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="7.203" id="8" left="166.241" style-class="st12 st10 st13" symbol-id="glyph2-30" text="b" top="107.197" width="4.281"/>
 			<word-part bottom="114.4" height="5.234" id="9" left="171.081" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="5.312" id="10" left="175.551" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="109.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="40" line-number="10" text="ist,">
 		<transkription-position bottom="116.556" height="11.11" id="0" left="183.651" top="105.446" width="10.708" writing-process-id="0">
 			<word-part bottom="114.4" height="6.844" id="0" left="183.801" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="186.231" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="6.422" id="2" left="189.781" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="107.978" width="2.781"/>
 			<word-part bottom="114.4" height="3.234" id="3" left="192.771" style-class="st12 st10 st13" symbol-id="glyph2-22" text="," top="111.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="41" line-number="10" text="ist">
 		<transkription-position bottom="116.556" height="11.11" id="0" left="198.271" top="105.446" width="9.061" writing-process-id="0">
 			<word-part bottom="114.4" height="6.844" id="0" left="198.421" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="200.851" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="6.422" id="2" left="204.401" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="107.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="42" line-number="10" text="viell.">
 		<transkription-position bottom="116.275" height="11.11" id="0" left="210.258" top="105.165" width="17.963" writing-process-id="0">
 			<word-part bottom="114.4" height="5.125" id="0" left="210.408" style-class="st12 st10 st13" symbol-id="glyph2-31" text="v" top="109.275" width="4.797"/>
 			<word-part bottom="114.4" height="6.844" id="1" left="215.078" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="2" left="217.508" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="7.125" id="3" left="221.978" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="107.275" width="2.094"/>
 			<word-part bottom="114.4" height="7.125" id="4" left="224.408" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="107.275" width="2.094"/>
 			<word-part bottom="114.4" height="1.25" id="5" left="226.837" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="113.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="43" line-number="10" text="ein">
 		<transkription-position bottom="116.556" height="11.11" id="0" left="232.337" top="105.446" width="12.091" writing-process-id="0">
 			<word-part bottom="114.4" height="5.234" id="0" left="232.487" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="6.844" id="1" left="236.957" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.312" id="2" left="239.387" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="109.087" width="4.891"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="44" line-number="10" text="Übelstand:">
 		<transkription-position bottom="114.54" height="11.11" id="0" left="247.487" top="103.43" width="41.063" writing-process-id="0">
 			<word-part bottom="114.4" height="8.859" id="0" left="247.637" style-class="st12 st10 st13" symbol-id="glyph2-32" text="Ü" top="105.54" width="6.234"/>
 			<word-part bottom="114.4" height="7.203" id="1" left="254.337" style-class="st12 st10 st13" symbol-id="glyph2-30" text="b" top="107.197" width="4.281"/>
 			<word-part bottom="114.4" height="5.234" id="2" left="259.177" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="7.125" id="3" left="263.647" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="107.275" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="4" left="266.077" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="6.422" id="5" left="269.627" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="107.978" width="2.781"/>
 			<word-part bottom="114.4" height="5.234" id="6" left="272.617" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="109.165" width="3.812"/>
 			<word-part bottom="114.4" height="5.312" id="7" left="276.907" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="109.087" width="4.891"/>
 			<word-part bottom="114.4" height="7.203" id="8" left="282.137" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="107.197" width="4.281"/>
 			<word-part bottom="114.4" height="4.75" id="9" left="287.166" style-class="st12 st10 st13" symbol-id="glyph2-23" text=":" top="109.65" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="45" line-number="10" text="ich">
 		<transkription-position bottom="116.275" height="11.11" id="0" left="292.866" top="105.165" width="11.911" writing-process-id="0">
 			<word-part bottom="114.4" height="6.844" id="0" left="293.016" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="107.556" width="2.094"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="295.446" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="109.165" width="3.531"/>
 			<word-part bottom="114.4" height="7.125" id="2" left="299.736" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="107.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="46" line-number="10" text="wünschte">
 		<transkription-position bottom="116.275" height="11.11" id="0" left="307.836" top="105.165" width="37.963" writing-process-id="0">
 			<word-part bottom="114.4" height="5.125" id="0" left="307.986" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="109.275" width="7.562"/>
 			<word-part bottom="114.4" height="6.859" id="1" left="315.426" style-class="st12 st10 st13" symbol-id="glyph2-27" text="ü" top="107.54" width="4.859"/>
 			<word-part bottom="114.4" height="5.312" id="2" left="320.656" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="109.087" width="4.891"/>
 			<word-part bottom="114.4" height="5.234" id="3" left="325.886" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<word-part bottom="114.4" height="5.234" id="4" left="329.436" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="109.165" width="3.531"/>
 			<word-part bottom="114.4" height="7.125" id="5" left="333.726" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="107.275" width="4.891"/>
 			<word-part bottom="114.4" height="6.422" id="6" left="338.956" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="107.978" width="2.781"/>
 			<word-part bottom="114.4" height="5.234" id="7" left="341.946" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="47" line-number="10" text="es">
 		<transkription-position bottom="118.165" height="11.11" id="0" left="349.286" top="107.055" width="7.708" writing-process-id="0">
 			<word-part bottom="114.4" height="5.234" id="0" left="349.436" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="109.165" width="3.703"/>
 			<word-part bottom="114.4" height="5.234" id="1" left="353.906" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="109.165" width="2.938"/>
 			<debug id="0" message="check for line breaks, diffx: 331.208, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="48" line-number="11" text="nicht">
 		<transkription-position bottom="129.649" height="6.984" id="0" left="190.083" top="122.665" width="14.307" writing-process-id="1">
 			<word-part bottom="128.65" height="3.719" id="0" left="190.233" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="124.931" width="3.422"/>
 			<word-part bottom="128.65" height="4.797" id="1" left="193.901" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="123.853" width="1.469"/>
 			<word-part bottom="128.65" height="3.672" id="2" left="195.609" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="124.978" width="2.469"/>
 			<word-part bottom="128.65" height="4.984" id="3" left="198.619" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="123.665" width="3.422"/>
 			<word-part bottom="128.65" height="4.5" id="4" left="202.287" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="124.15" width="1.953"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="49" line-number="11" text="als">
 		<transkription-position bottom="129.649" height="6.984" id="0" left="206.358" top="122.665" width="7.08" writing-process-id="1">
 			<word-part bottom="128.65" height="3.672" id="0" left="206.508" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="124.978" width="2.672"/>
 			<word-part bottom="128.65" height="4.984" id="1" left="209.518" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="123.665" width="1.469"/>
 			<word-part bottom="128.65" height="3.672" id="2" left="211.226" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="124.978" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="50" line-number="11" text="Befürwortung">
 		<transkription-position bottom="129.65" height="7.094" id="0" left="215.689" top="122.556" width="38.567" writing-process-id="1">
 			<word-part bottom="128.65" height="4.984" id="0" left="215.839" style-class="st12 st10 st11" symbol-id="glyph1-25" text="B" top="123.665" width="3.297"/>
 			<word-part bottom="128.65" height="3.672" id="1" left="219.759" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="124.978" width="2.594"/>
 			<word-part bottom="128.65" height="4.984" id="2" left="222.895" style-class="st12 st10 st11" symbol-id="glyph1-26" text="f" top="123.665" width="1.938"/>
 			<word-part bottom="128.65" height="4.812" id="3" left="224.736" style-class="st12 st10 st11" symbol-id="glyph1-27" text="ü" top="123.837" width="3.391"/>
 			<word-part bottom="128.65" height="3.719" id="4" left="228.404" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="124.931" width="2.094"/>
 			<word-part bottom="128.65" height="3.594" id="5" left="230.763" style-class="st12 st10 st11" symbol-id="glyph1-9" text="w" top="125.056" width="5.312"/>
 			<word-part bottom="128.65" height="3.672" id="6" left="235.978" style-class="st12 st10 st11" symbol-id="glyph1-28" text="o" top="124.978" width="2.828"/>
 			<word-part bottom="128.65" height="3.719" id="7" left="239.373" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="124.931" width="2.094"/>
 			<word-part bottom="128.65" height="4.5" id="8" left="241.732" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="124.15" width="1.953"/>
 			<word-part bottom="128.65" height="3.672" id="9" left="243.832" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="124.978" width="3.391"/>
 			<word-part bottom="128.65" height="3.719" id="10" left="247.5" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="124.931" width="3.422"/>
 			<word-part bottom="128.65" height="5.094" id="11" left="251.168" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="123.556" width="2.938"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="51" line-number="11" text="Denken">
 		<transkription-position bottom="127.399" height="6.984" id="0" left="263.85" top="120.415" width="21.887" writing-process-id="1">
 			<word-part bottom="126.4" height="4.984" id="0" left="264.0" style-class="st12 st10 st11" symbol-id="glyph1-7" text="D" top="121.415" width="4.094"/>
 			<word-part bottom="126.4" height="3.672" id="1" left="268.83" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="122.728" width="2.594"/>
 			<word-part bottom="126.4" height="3.719" id="2" left="271.966" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="122.681" width="3.422"/>
 			<word-part bottom="126.4" height="4.984" id="3" left="275.634" style-class="st12 st10 st11" symbol-id="glyph1-29" text="k" top="121.415" width="3.344"/>
 			<word-part bottom="126.4" height="3.672" id="4" left="279.029" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="122.728" width="2.594"/>
 			<word-part bottom="126.4" height="3.719" id="5" left="282.165" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="122.681" width="3.422"/>
 			<debug id="0" message="check for line breaks, diffx: 265.157, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="52" line-number="12" text="französisch">
 		<transkription-position bottom="140.275" height="11.11" id="0" left="16.858" top="129.165" width="43.821" writing-process-id="0">
 			<word-part bottom="138.4" height="7.125" id="0" left="17.008" style-class="st12 st10 st13" symbol-id="glyph2-33" text="f" top="131.275" width="2.766"/>
 			<word-part bottom="138.4" height="5.312" id="1" left="19.628" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="133.087" width="2.984"/>
 			<word-part bottom="138.4" height="5.234" id="2" left="22.988" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="133.165" width="3.812"/>
 			<word-part bottom="138.4" height="5.312" id="3" left="27.278" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="133.087" width="4.891"/>
 			<word-part bottom="138.4" height="5.062" id="4" left="32.508" style-class="st12 st10 st13" symbol-id="glyph2-20" text="z" top="133.337" width="4.125"/>
 			<word-part bottom="138.4" height="6.859" id="5" left="36.978" style-class="st12 st10 st13" symbol-id="glyph2-24" text="ö" top="131.54" width="4.062"/>
 			<word-part bottom="138.4" height="5.234" id="6" left="41.818" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="133.165" width="2.938"/>
 			<word-part bottom="138.4" height="6.844" id="7" left="45.368" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="131.556" width="2.094"/>
 			<word-part bottom="138.4" height="5.234" id="8" left="47.798" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="133.165" width="2.938"/>
 			<word-part bottom="138.4" height="5.234" id="9" left="51.348" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="133.165" width="3.531"/>
 			<word-part bottom="138.4" height="7.125" id="10" left="55.638" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="131.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="53" line-number="12" text="geschrieben">
 		<transkription-position bottom="140.119" height="11.11" id="0" left="63.738" top="129.009" width="46.771" writing-process-id="0">
 			<word-part bottom="138.4" height="7.281" id="0" left="63.888" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="131.119" width="4.203"/>
 			<word-part bottom="138.4" height="5.234" id="1" left="68.358" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="133.165" width="3.703"/>
 			<word-part bottom="138.4" height="5.234" id="2" left="72.828" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="133.165" width="2.938"/>
 			<word-part bottom="138.4" height="5.234" id="3" left="76.378" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="133.165" width="3.531"/>
 			<word-part bottom="138.4" height="7.125" id="4" left="80.668" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="131.275" width="4.891"/>
 			<word-part bottom="138.4" height="5.312" id="5" left="85.898" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="133.087" width="2.984"/>
 			<word-part bottom="138.4" height="6.844" id="6" left="89.258" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="131.556" width="2.094"/>
 			<word-part bottom="138.4" height="5.234" id="7" left="91.688" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="133.165" width="3.703"/>
 			<word-part bottom="138.4" height="7.203" id="8" left="96.158" style-class="st12 st10 st13" symbol-id="glyph2-30" text="b" top="131.197" width="4.281"/>
 			<word-part bottom="138.4" height="5.234" id="9" left="100.998" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="133.165" width="3.703"/>
 			<word-part bottom="138.4" height="5.312" id="10" left="105.468" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="133.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="54" line-number="12" text="zu">
 		<transkription-position bottom="142.165" height="11.11" id="0" left="113.568" top="131.055" width="9.629" writing-process-id="0">
 			<word-part bottom="138.4" height="5.062" id="0" left="113.718" style-class="st12 st10 st13" symbol-id="glyph2-20" text="z" top="133.337" width="4.125"/>
 			<word-part bottom="138.4" height="5.234" id="1" left="118.188" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="133.165" width="4.859"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="55" line-number="12" text="haben,">
 		<transkription-position bottom="140.197" height="11.11" id="0" left="126.288" top="129.087" width="25.798" writing-process-id="0">
 			<word-part bottom="138.4" height="7.125" id="0" left="126.438" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="131.275" width="4.891"/>
 			<word-part bottom="138.4" height="5.234" id="1" left="131.668" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="133.165" width="3.812"/>
 			<word-part bottom="138.4" height="7.203" id="2" left="135.958" style-class="st12 st10 st13" symbol-id="glyph2-30" text="b" top="131.197" width="4.281"/>
 			<word-part bottom="138.4" height="5.234" id="3" left="140.798" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="133.165" width="3.703"/>
 			<word-part bottom="138.4" height="5.312" id="4" left="145.268" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="133.087" width="4.891"/>
 			<word-part bottom="138.4" height="3.234" id="5" left="150.498" style-class="st12 st10 st13" symbol-id="glyph2-22" text="," top="135.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="56" line-number="12" text="damit">
 		<transkription-position bottom="140.197" height="11.11" id="0" left="155.998" top="129.087" width="22.641" writing-process-id="0">
 			<word-part bottom="138.4" height="7.203" id="0" left="156.148" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="131.197" width="4.281"/>
 			<word-part bottom="138.4" height="5.234" id="1" left="161.178" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="133.165" width="3.812"/>
 			<word-part bottom="138.4" height="5.312" id="2" left="165.468" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="133.087" width="7.375"/>
 			<word-part bottom="138.4" height="6.844" id="3" left="173.278" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="131.556" width="2.094"/>
 			<word-part bottom="138.4" height="6.422" id="4" left="175.708" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="131.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="57" line-number="12" text="es">
 		<transkription-position bottom="142.165" height="11.11" id="0" left="181.568" top="131.055" width="7.708" writing-process-id="0">
 			<word-part bottom="138.4" height="5.234" id="0" left="181.718" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="133.165" width="3.703"/>
 			<word-part bottom="138.4" height="5.234" id="1" left="186.188" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="133.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="58" line-number="12" text="nicht">
 		<transkription-position bottom="140.275" height="11.11" id="0" left="192.608" top="129.165" width="20.261" writing-process-id="0">
 			<word-part bottom="138.4" height="5.312" id="0" left="192.758" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="133.087" width="4.891"/>
 			<word-part bottom="138.4" height="6.844" id="1" left="197.988" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="131.556" width="2.094"/>
 			<word-part bottom="138.4" height="5.234" id="2" left="200.418" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="133.165" width="3.531"/>
 			<word-part bottom="138.4" height="7.125" id="3" left="204.708" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="131.275" width="4.891"/>
 			<word-part bottom="138.4" height="6.422" id="4" left="209.938" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="131.978" width="2.781"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="59" line-number="12" text="erscheint.">
 		<transkription-position bottom="139.115" height="7.857" id="0" left="371.85" top="131.258" width="26.452" writing-process-id="1">
 			<word-part bottom="138.4" height="3.672" id="0" left="372.0" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="134.728" width="2.594"/>
 			<word-part bottom="138.4" height="3.719" id="1" left="375.136" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="134.681" width="2.094"/>
 			<word-part bottom="138.4" height="3.672" id="2" left="377.495" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="134.728" width="2.062"/>
 			<word-part bottom="138.4" height="3.672" id="3" left="379.987" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="134.728" width="2.469"/>
 			<word-part bottom="138.4" height="4.984" id="4" left="382.997" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="133.415" width="3.422"/>
 			<word-part bottom="138.4" height="3.672" id="5" left="386.665" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="134.728" width="2.594"/>
 			<word-part bottom="138.4" height="4.797" id="6" left="389.801" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="133.603" width="1.469"/>
 			<word-part bottom="138.4" height="3.719" id="7" left="391.509" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="134.681" width="3.422"/>
 			<word-part bottom="138.4" height="4.5" id="8" left="395.177" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="133.9" width="1.953"/>
 			<word-part bottom="138.4" height="0.859" id="9" left="397.277" style-class="st12 st10 st11" symbol-id="glyph1-8" text="." top="137.54" width="0.875"/>
 			<debug id="0" message="check for line breaks, diffx: 374.586, diffy: 6.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="60" line-number="14" text="mit">
 		<transkription-position bottom="149.306" height="11.11" id="0" left="166.752" top="138.196" width="13.321" writing-process-id="0">
 			<word-part bottom="147.15" height="5.312" id="0" left="166.902" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="141.837" width="7.375"/>
 			<word-part bottom="147.15" height="6.844" id="1" left="174.712" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="6.422" id="2" left="177.142" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="140.728" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="61" line-number="14" text="irgend">
 		<transkription-position bottom="148.869" height="11.11" id="0" left="183.002" top="137.759" width="24.541" writing-process-id="0">
 			<word-part bottom="147.15" height="6.844" id="0" left="183.152" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="5.312" id="1" left="185.582" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="141.837" width="2.984"/>
 			<word-part bottom="147.15" height="7.281" id="2" left="188.942" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="139.869" width="4.203"/>
 			<word-part bottom="147.15" height="5.234" id="3" left="193.412" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.312" id="4" left="197.882" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="141.837" width="4.891"/>
 			<word-part bottom="147.15" height="7.203" id="5" left="203.112" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="139.947" width="4.281"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="62" line-number="14" text="welchen">
 		<transkription-position bottom="149.025" height="11.11" id="0" left="211.012" top="137.915" width="33.521" writing-process-id="0">
 			<word-part bottom="147.15" height="5.125" id="0" left="211.162" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="142.025" width="7.562"/>
 			<word-part bottom="147.15" height="5.234" id="1" left="218.602" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="7.125" id="2" left="223.072" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="140.025" width="2.094"/>
 			<word-part bottom="147.15" height="5.234" id="3" left="225.502" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="141.915" width="3.531"/>
 			<word-part bottom="147.15" height="7.125" id="4" left="229.792" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="140.025" width="4.891"/>
 			<word-part bottom="147.15" height="5.234" id="5" left="235.022" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.312" id="6" left="239.492" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="141.837" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="63" line-number="14" text="reichsdeutschen">
 		<transkription-position bottom="148.947" height="11.11" id="0" left="247.592" top="137.837" width="63.781" writing-process-id="0">
 			<word-part bottom="147.15" height="5.312" id="0" left="247.742" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="141.837" width="2.984"/>
 			<word-part bottom="147.15" height="5.234" id="1" left="251.102" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="6.844" id="2" left="255.572" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="5.234" id="3" left="258.002" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="141.915" width="3.531"/>
 			<word-part bottom="147.15" height="7.125" id="4" left="262.292" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="140.025" width="4.891"/>
 			<word-part bottom="147.15" height="5.234" id="5" left="267.522" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="141.915" width="2.938"/>
 			<word-part bottom="147.15" height="7.203" id="6" left="271.072" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="139.947" width="4.281"/>
 			<word-part bottom="147.15" height="5.234" id="7" left="276.102" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.234" id="8" left="280.572" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="141.915" width="4.859"/>
 			<word-part bottom="147.15" height="6.422" id="9" left="285.802" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="140.728" width="2.781"/>
 			<word-part bottom="147.15" height="5.234" id="10" left="288.792" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="141.915" width="2.938"/>
 			<word-part bottom="147.15" height="5.234" id="11" left="292.342" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="141.915" width="3.531"/>
 			<word-part bottom="147.15" height="7.125" id="12" left="296.632" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="140.025" width="4.891"/>
 			<word-part bottom="147.15" height="5.234" id="13" left="301.862" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.312" id="14" left="306.332" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="141.837" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="64" line-number="14" text="Aspirationen">
 		<transkription-position bottom="148.962" height="11.11" id="0" left="314.432" top="137.852" width="49.761" writing-process-id="0">
 			<word-part bottom="147.15" height="7.125" id="0" left="314.582" style-class="st12 st10 st13" symbol-id="glyph2-34" text="A" top="140.025" width="6.359"/>
 			<word-part bottom="147.15" height="5.234" id="1" left="320.722" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="141.915" width="2.938"/>
 			<word-part bottom="147.15" height="7.188" id="2" left="324.272" style-class="st12 st10 st13" symbol-id="glyph2-35" text="p" top="139.962" width="4.284"/>
 			<word-part bottom="147.15" height="6.844" id="3" left="329.112" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="5.312" id="4" left="331.542" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="141.837" width="2.984"/>
 			<word-part bottom="147.15" height="5.234" id="5" left="334.902" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="141.915" width="3.812"/>
 			<word-part bottom="147.15" height="6.422" id="6" left="339.192" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="140.728" width="2.781"/>
 			<word-part bottom="147.15" height="6.844" id="7" left="342.182" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="5.234" id="8" left="344.612" style-class="st12 st10 st13" symbol-id="glyph2-36" text="o" top="141.915" width="4.062"/>
 			<word-part bottom="147.15" height="5.312" id="9" left="349.452" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="141.837" width="4.891"/>
 			<word-part bottom="147.15" height="5.234" id="10" left="354.682" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.312" id="11" left="359.152" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="141.837" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="65" line-number="14" text="verwechselt">
 		<transkription-position bottom="149.025" height="11.11" id="0" left="367.248" top="137.915" width="47.461" writing-process-id="0">
 			<word-part bottom="147.15" height="5.125" id="0" left="367.398" style-class="st12 st10 st13" symbol-id="glyph2-31" text="v" top="142.025" width="4.797"/>
 			<word-part bottom="147.15" height="5.234" id="1" left="372.068" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.312" id="2" left="376.538" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="141.837" width="2.984"/>
 			<word-part bottom="147.15" height="5.125" id="3" left="379.898" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="142.025" width="7.562"/>
 			<word-part bottom="147.15" height="5.234" id="4" left="387.338" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="5.234" id="5" left="391.808" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="141.915" width="3.531"/>
 			<word-part bottom="147.15" height="7.125" id="6" left="396.098" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="140.025" width="4.891"/>
 			<word-part bottom="147.15" height="5.234" id="7" left="401.328" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="141.915" width="2.938"/>
 			<word-part bottom="147.15" height="5.234" id="8" left="404.878" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="141.915" width="3.703"/>
 			<word-part bottom="147.15" height="7.125" id="9" left="409.348" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="140.025" width="2.094"/>
 			<word-part bottom="147.15" height="6.422" id="10" left="411.778" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="140.728" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="66" line-number="14" text="wird.">
 		<transkription-position bottom="148.947" height="11.11" id="0" left="417.638" top="137.837" width="19.792" writing-process-id="0">
 			<word-part bottom="147.15" height="5.125" id="0" left="417.788" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="142.025" width="7.562"/>
 			<word-part bottom="147.15" height="6.844" id="1" left="425.228" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="140.306" width="2.094"/>
 			<word-part bottom="147.15" height="5.312" id="2" left="427.658" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="141.837" width="2.984"/>
 			<word-part bottom="147.15" height="7.203" id="3" left="431.018" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="139.947" width="4.281"/>
 			<word-part bottom="147.15" height="1.25" id="4" left="436.046" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="145.9" width="1.234"/>
 			<debug id="0" message="check for line breaks, diffx: 413.369, diffy: 3.25, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="67" line-number="15" text="nichts">
 		<transkription-position bottom="153.899" height="6.984" id="0" left="143.325" top="146.915" width="16.516" writing-process-id="1">
 			<word-part bottom="152.9" height="3.719" id="0" left="143.475" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="149.181" width="3.422"/>
 			<word-part bottom="152.9" height="4.797" id="1" left="147.143" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="148.103" width="1.469"/>
 			<word-part bottom="152.9" height="3.672" id="2" left="148.851" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="149.228" width="2.469"/>
 			<word-part bottom="152.9" height="4.984" id="3" left="151.861" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="147.915" width="3.422"/>
 			<word-part bottom="152.9" height="4.5" id="4" left="155.529" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="148.4" width="1.953"/>
 			<word-part bottom="152.9" height="3.672" id="5" left="157.629" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="149.228" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="68" line-number="15" text="weiter:">
 		<transkription-position bottom="153.9" height="6.797" id="0" left="162.092" top="147.103" width="18.828" writing-process-id="1">
 			<word-part bottom="152.9" height="3.594" id="0" left="162.242" style-class="st10 st11" symbol-id="glyph1-9" text="w" top="149.306" width="5.312"/>
 			<word-part bottom="152.9" height="3.672" id="1" left="167.457" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="149.228" width="2.594"/>
 			<word-part bottom="152.9" height="4.797" id="2" left="170.593" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="148.103" width="1.469"/>
 			<word-part bottom="152.9" height="4.5" id="3" left="172.301" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="148.4" width="1.953"/>
 			<word-part bottom="152.9" height="3.672" id="4" left="174.401" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="149.228" width="2.594"/>
 			<word-part bottom="152.9" height="3.719" id="5" left="177.537" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="149.181" width="2.094"/>
 			<word-part bottom="152.9" height="3.312" id="6" left="179.895" style-class="st10 st11" symbol-id="glyph1-20" text=":" top="149.587" width="0.875"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="69" line-number="15" text="es">
 		<transkription-position bottom="153.9" height="5.672" id="0" left="269.85" top="148.228" width="5.498" writing-process-id="1">
 			<word-part bottom="152.9" height="3.672" id="0" left="270.0" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="149.228" width="2.594"/>
 			<word-part bottom="152.9" height="3.672" id="1" left="273.136" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="149.228" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="70" line-number="15" text="Vergnügen">
 		<transkription-position bottom="153.9" height="7.094" id="0" left="277.599" top="146.806" width="29.622" writing-process-id="1">
 			<word-part bottom="152.9" height="5.031" id="0" left="277.749" style-class="st12 st10 st11" symbol-id="glyph1-30" text="V" top="147.869" width="4.469"/>
 			<word-part bottom="152.9" height="3.672" id="1" left="281.41" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="149.228" width="2.594"/>
 			<word-part bottom="152.9" height="3.719" id="2" left="284.546" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="149.181" width="2.094"/>
 			<word-part bottom="152.9" height="5.094" id="3" left="286.905" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="147.806" width="2.938"/>
 			<word-part bottom="152.9" height="3.719" id="4" left="290.041" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="149.181" width="3.422"/>
 			<word-part bottom="152.9" height="4.812" id="5" left="293.709" style-class="st12 st10 st11" symbol-id="glyph1-27" text="ü" top="148.087" width="3.391"/>
 			<word-part bottom="152.9" height="5.094" id="6" left="297.377" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="147.806" width="2.938"/>
 			<word-part bottom="152.9" height="3.672" id="7" left="300.513" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="149.228" width="2.594"/>
 			<word-part bottom="152.9" height="3.719" id="8" left="303.649" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="149.181" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="71" line-number="15" text="macht">
 		<transkription-position bottom="153.899" height="6.984" id="0" left="309.288" top="146.915" width="17.415" writing-process-id="1">
 			<word-part bottom="152.9" height="3.719" id="0" left="309.438" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="149.181" width="5.172"/>
 			<word-part bottom="152.9" height="3.672" id="1" left="314.912" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="149.228" width="2.672"/>
 			<word-part bottom="152.9" height="3.672" id="2" left="317.922" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="149.228" width="2.469"/>
 			<word-part bottom="152.9" height="4.984" id="3" left="320.932" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="147.915" width="3.422"/>
 			<word-part bottom="152.9" height="4.5" id="4" left="324.6" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="148.4" width="1.953"/>
 			<debug id="0" message="check for line breaks, diffx: 301.901, diffy: 9.5, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="72" line-number="16" text="Diese">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="36.7" top="153.165" width="21.343" writing-process-id="0">
 			<word-part bottom="162.4" height="7.125" id="0" left="36.85" style-class="st10 st13" symbol-id="glyph2-15" text="D" top="155.275" width="5.859"/>
 			<word-part bottom="162.4" height="6.844" id="1" left="43.74" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="155.556" width="2.094"/>
 			<word-part bottom="162.4" height="5.234" id="2" left="46.17" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.234" id="3" left="50.64" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<word-part bottom="162.4" height="5.234" id="4" left="54.19" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="73" line-number="16" text="Bücher">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="61.53" top="153.165" width="28.094" writing-process-id="0">
 			<word-part bottom="162.4" height="7.125" id="0" left="61.68" style-class="st10 st13" symbol-id="glyph2-19" text="B" top="155.275" width="4.719"/>
 			<word-part bottom="162.4" height="6.859" id="1" left="67.27" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="155.54" width="4.859"/>
 			<word-part bottom="162.4" height="5.234" id="2" left="72.5" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="157.165" width="3.531"/>
 			<word-part bottom="162.4" height="7.125" id="3" left="76.79" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="155.275" width="4.891"/>
 			<word-part bottom="162.4" height="5.234" id="4" left="82.02" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="5" left="86.49" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="157.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="74" line-number="16" text="zum">
 		<transkription-position bottom="166.087" height="11.11" id="0" left="92.72" top="154.977" width="17.375" writing-process-id="0">
 			<word-part bottom="162.4" height="5.062" id="0" left="92.87" style-class="st10 st13" symbol-id="glyph2-20" text="z" top="157.337" width="4.125"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="97.34" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="157.165" width="4.859"/>
 			<word-part bottom="162.4" height="5.312" id="2" left="102.57" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="157.087" width="7.375"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="75" line-number="16" text="Denken,">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="113.25" top="153.165" width="32.868" writing-process-id="0">
 			<word-part bottom="162.4" height="7.125" id="0" left="113.4" style-class="st10 st13" symbol-id="glyph2-15" text="D" top="155.275" width="5.859"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="120.29" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="2" left="124.76" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<word-part bottom="162.4" height="7.125" id="3" left="129.99" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="155.275" width="4.781"/>
 			<word-part bottom="162.4" height="5.234" id="4" left="134.83" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="5" left="139.3" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<word-part bottom="162.4" height="3.234" id="6" left="144.53" style-class="st10 st13" symbol-id="glyph2-22" text="," top="159.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="76" line-number="18" text="–">
 		<transkription-position bottom="170.962" height="11.11" id="0" left="150.03" top="159.852" width="5.3" writing-process-id="0">
 			<word-part bottom="162.4" height="0.438" id="0" left="150.18" style-class="st10 st13" symbol-id="glyph2-37" text="–" top="161.962" width="5.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="77" line-number="16" text="sie">
 		<transkription-position bottom="164.556" height="11.11" id="0" left="158.08" top="153.446" width="9.983" writing-process-id="0">
 			<word-part bottom="162.4" height="5.234" id="0" left="158.23" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<word-part bottom="162.4" height="6.844" id="1" left="161.78" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="155.556" width="2.094"/>
 			<word-part bottom="162.4" height="5.234" id="2" left="164.21" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="78" line-number="16" text="gehören">
 		<transkription-position bottom="164.119" height="11.11" id="0" left="171.55" top="153.009" width="32.031" writing-process-id="0">
 			<word-part bottom="162.4" height="7.281" id="0" left="171.7" style-class="st10 st13" symbol-id="glyph2-6" text="g" top="155.119" width="4.203"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="176.17" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="7.125" id="2" left="180.64" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="155.275" width="4.891"/>
 			<word-part bottom="162.4" height="6.859" id="3" left="185.87" style-class="st10 st13" symbol-id="glyph2-24" text="ö" top="155.54" width="4.062"/>
 			<word-part bottom="162.4" height="5.312" id="4" left="190.71" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="157.087" width="2.984"/>
 			<word-part bottom="162.4" height="5.234" id="5" left="194.07" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="6" left="198.54" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="79" line-number="16" text="denen,">
 		<transkription-position bottom="164.197" height="11.11" id="0" left="206.64" top="153.087" width="26.168" writing-process-id="0">
 			<word-part bottom="162.4" height="7.203" id="0" left="206.79" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="155.197" width="4.281"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="211.82" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="2" left="216.29" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<word-part bottom="162.4" height="5.234" id="3" left="221.52" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="4" left="225.99" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<word-part bottom="162.4" height="3.234" id="5" left="231.22" style-class="st10 st13" symbol-id="glyph2-22" text="," top="159.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="80" line-number="16" text="welche">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="236.72" top="153.165" width="27.863" writing-process-id="0">
 			<word-part bottom="162.4" height="5.125" id="0" left="236.87" style-class="st10 st13" symbol-id="glyph2-12" text="w" top="157.275" width="7.562"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="244.31" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="7.125" id="2" left="248.78" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="155.275" width="2.094"/>
 			<word-part bottom="162.4" height="5.234" id="3" left="251.21" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="157.165" width="3.531"/>
 			<word-part bottom="162.4" height="7.125" id="4" left="255.5" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="155.275" width="4.891"/>
 			<word-part bottom="162.4" height="5.234" id="5" left="260.73" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="81" line-number="16" text="nichts">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="268.265" top="153.165" width="23.408" writing-process-id="0">
 			<word-part bottom="162.4" height="5.312" id="0" left="268.415" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="157.087" width="4.891"/>
 			<word-part bottom="162.4" height="6.844" id="1" left="273.645" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="155.556" width="2.094"/>
 			<word-part bottom="162.4" height="5.234" id="2" left="276.075" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="157.165" width="3.531"/>
 			<word-part bottom="162.4" height="7.125" id="3" left="280.365" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="155.275" width="4.891"/>
 			<word-part bottom="162.4" height="6.422" id="4" left="285.595" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="155.978" width="2.781"/>
 			<word-part bottom="162.4" height="5.234" id="5" left="288.585" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="82" line-number="16" text="Besseres">
 		<transkription-position bottom="164.275" height="11.11" id="0" left="295.005" top="153.165" width="32.698" writing-process-id="0">
 			<word-part bottom="162.4" height="7.125" id="0" left="295.155" style-class="st10 st13" symbol-id="glyph2-19" text="B" top="155.275" width="4.719"/>
 			<word-part bottom="162.4" height="5.234" id="1" left="300.745" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.234" id="2" left="305.215" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<word-part bottom="162.4" height="5.234" id="3" left="308.765" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<word-part bottom="162.4" height="5.234" id="4" left="312.315" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.312" id="5" left="316.785" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="157.087" width="2.984"/>
 			<word-part bottom="162.4" height="5.234" id="6" left="320.145" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="157.165" width="3.703"/>
 			<word-part bottom="162.4" height="5.234" id="7" left="324.615" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="157.165" width="2.938"/>
 			<debug id="0" message="check for line breaks, diffx: 301.917, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="83" line-number="18" text="Die">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="192.203" top="166.165" width="13.323" writing-process-id="0">
 			<word-part bottom="175.4" height="7.125" id="0" left="192.353" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="168.275" width="5.859"/>
 			<word-part bottom="175.4" height="6.844" id="1" left="199.243" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="168.556" width="2.094"/>
 			<word-part bottom="175.4" height="5.234" id="2" left="201.673" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="84" line-number="18" text="D.">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="209.013" top="166.165" width="8.424" writing-process-id="0">
 			<word-part bottom="175.4" height="7.125" id="0" left="209.163" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="168.275" width="5.859"/>
 			<word-part bottom="175.4" height="1.25" id="1" left="216.053" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="174.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="85" line-number="18" text="von">
 		<transkription-position bottom="179.087" height="11.11" id="0" left="221.553" top="167.977" width="14.701" writing-process-id="0">
 			<word-part bottom="175.4" height="5.125" id="0" left="221.703" style-class="st12 st10 st13" symbol-id="glyph2-31" text="v" top="170.275" width="4.797"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="226.373" style-class="st12 st10 st13" symbol-id="glyph2-36" text="o" top="170.165" width="4.062"/>
 			<word-part bottom="175.4" height="5.312" id="2" left="231.213" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="86" line-number="18" text="Heute">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="239.313" top="166.165" width="23.573" writing-process-id="0">
 			<word-part bottom="175.4" height="7.125" id="0" left="239.463" style-class="st12 st10 st13" symbol-id="glyph2-38" text="H" top="168.275" width="6.016"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="246.343" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="5.234" id="2" left="250.813" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="170.165" width="4.859"/>
 			<word-part bottom="175.4" height="6.422" id="3" left="256.043" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="168.978" width="2.781"/>
 			<word-part bottom="175.4" height="5.234" id="4" left="259.033" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="87" line-number="18" text="sind">
 		<transkription-position bottom="177.197" height="11.11" id="0" left="266.373" top="166.087" width="15.791" writing-process-id="0">
 			<word-part bottom="175.4" height="5.234" id="0" left="266.523" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="170.165" width="2.938"/>
 			<word-part bottom="175.4" height="6.844" id="1" left="270.073" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="168.556" width="2.094"/>
 			<word-part bottom="175.4" height="5.312" id="2" left="272.503" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<word-part bottom="175.4" height="7.203" id="3" left="277.733" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="168.197" width="4.281"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="88" line-number="18" text="keine">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="285.633" top="166.165" width="20.973" writing-process-id="0">
 			<word-part bottom="175.4" height="7.125" id="0" left="285.783" style-class="st12 st10 st13" symbol-id="glyph2-21" text="k" top="168.275" width="4.781"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="290.623" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="6.844" id="2" left="295.093" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="168.556" width="2.094"/>
 			<word-part bottom="175.4" height="5.312" id="3" left="297.523" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<word-part bottom="175.4" height="5.234" id="4" left="302.753" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="89" line-number="18" text="Denker">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="310.093" top="166.165" width="29.184" writing-process-id="0">
 			<word-part bottom="175.4" height="7.125" id="0" left="310.243" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="168.275" width="5.859"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="317.133" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="5.312" id="2" left="321.603" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<word-part bottom="175.4" height="7.125" id="3" left="326.833" style-class="st12 st10 st13" symbol-id="glyph2-21" text="k" top="168.275" width="4.781"/>
 			<word-part bottom="175.4" height="5.234" id="4" left="331.673" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="5.312" id="5" left="336.143" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="170.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="90" line-number="18" text="mehr:">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="342.373" top="166.165" width="22.404" writing-process-id="0">
 			<word-part bottom="175.4" height="5.312" id="0" left="342.523" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="170.087" width="7.375"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="350.333" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="7.125" id="2" left="354.803" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="168.275" width="4.891"/>
 			<word-part bottom="175.4" height="5.312" id="3" left="360.033" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="170.087" width="2.984"/>
 			<word-part bottom="175.4" height="4.75" id="4" left="363.393" style-class="st12 st10 st13" symbol-id="glyph2-23" text=":" top="170.65" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="91" line-number="18" text="ihnen">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="368.893" top="166.165" width="22.551" writing-process-id="0">
 			<word-part bottom="175.4" height="6.844" id="0" left="369.043" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="168.556" width="2.094"/>
 			<word-part bottom="175.4" height="7.125" id="1" left="371.473" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="168.275" width="4.891"/>
 			<word-part bottom="175.4" height="5.312" id="2" left="376.703" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<word-part bottom="175.4" height="5.234" id="3" left="381.933" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="170.165" width="3.703"/>
 			<word-part bottom="175.4" height="5.312" id="4" left="386.403" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="170.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="92" line-number="18" text="macht">
 		<transkription-position bottom="177.275" height="11.11" id="0" left="394.503" top="166.165" width="24.701" writing-process-id="0">
 			<word-part bottom="175.4" height="5.312" id="0" left="394.653" style-class="st12 st10 st13" symbol-id="glyph2-14" text="m" top="170.087" width="7.375"/>
 			<word-part bottom="175.4" height="5.234" id="1" left="402.463" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="170.165" width="3.812"/>
 			<word-part bottom="175.4" height="5.234" id="2" left="406.753" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="170.165" width="3.531"/>
 			<word-part bottom="175.4" height="7.125" id="3" left="411.043" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="168.275" width="4.891"/>
 			<word-part bottom="175.4" height="6.422" id="4" left="416.273" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="168.978" width="2.781"/>
 			<debug id="0" message="check for line breaks, diffx: 390.667, diffy: 11.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="93" line-number="20" text="zu">
 		<transkription-position bottom="190.165" height="11.11" id="0" left="25.362" top="179.055" width="9.629" writing-process-id="0">
 			<word-part bottom="186.4" height="5.062" id="0" left="25.512" style-class="st10 st13" symbol-id="glyph2-20" text="z" top="181.337" width="4.125"/>
 			<word-part bottom="186.4" height="5.234" id="1" left="29.982" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="181.165" width="4.859"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="94" line-number="20" text="thun">
 		<transkription-position bottom="188.275" height="11.11" id="0" left="38.081" top="177.165" width="18.641" writing-process-id="0">
 			<word-part bottom="186.4" height="6.422" id="0" left="38.231" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="179.978" width="2.781"/>
 			<word-part bottom="186.4" height="7.125" id="1" left="41.221" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="179.275" width="4.891"/>
 			<word-part bottom="186.4" height="5.234" id="2" left="46.451" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="181.165" width="4.859"/>
 			<word-part bottom="186.4" height="5.312" id="3" left="51.681" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="181.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="95" line-number="20" text="haben">
 		<transkription-position bottom="188.197" height="11.11" id="0" left="59.781" top="177.087" width="24.021" writing-process-id="0">
 			<word-part bottom="186.4" height="7.125" id="0" left="59.931" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="179.275" width="4.891"/>
 			<word-part bottom="186.4" height="5.234" id="1" left="65.161" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="181.165" width="3.812"/>
 			<word-part bottom="186.4" height="7.203" id="2" left="69.451" style-class="st10 st13" symbol-id="glyph2-30" text="b" top="179.197" width="4.281"/>
 			<word-part bottom="186.4" height="5.234" id="3" left="74.291" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="181.165" width="3.703"/>
 			<word-part bottom="186.4" height="5.312" id="4" left="78.761" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="181.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="96" line-number="20" text="als">
 		<transkription-position bottom="188.275" height="11.11" id="0" left="86.861" top="177.165" width="9.958" writing-process-id="0">
 			<word-part bottom="186.4" height="5.234" id="0" left="87.011" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="181.165" width="3.812"/>
 			<word-part bottom="186.4" height="7.125" id="1" left="91.301" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="179.275" width="2.094"/>
 			<word-part bottom="186.4" height="5.234" id="2" left="93.731" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="181.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="97" line-number="20" text="denken.,">
 		<transkription-position bottom="188.197" height="11.11" id="0" left="100.151" top="177.087" width="30.804" writing-process-id="0">
 			<word-part bottom="186.4" height="7.203" id="0" left="100.301" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="179.197" width="4.281"/>
 			<word-part bottom="186.4" height="5.234" id="1" left="105.331" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="181.165" width="3.703"/>
 			<word-part bottom="186.4" height="5.312" id="2" left="109.801" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="181.087" width="4.891"/>
 			<word-part bottom="186.4" height="7.125" id="3" left="115.031" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="179.275" width="4.781"/>
 			<word-part bottom="186.4" height="5.234" id="4" left="119.871" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="181.165" width="3.703"/>
 			<word-part bottom="186.4" height="5.312" id="5" left="124.341" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="181.087" width="4.891"/>
 			<word-part bottom="186.4" height="1.25" id="6" left="129.571" style-class="st10 st13" symbol-id="glyph2-16" text="." top="185.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 		<transkription-position bottom="189.834" height="7.857" id="1" left="132.049" top="181.977" width="1.3" writing-process-id="1">
 			<word-part bottom="186.4" height="2.266" id="0" left="132.199" style-class="st12 st10 st11" symbol-id="glyph1-31" text="," top="184.134" width="1.0"/>
 			<debug id="0" message="styles differ"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="98" line-number="20" text="nichts">
 		<transkription-position bottom="187.115" height="7.857" id="0" left="136.018" top="179.258" width="16.516" writing-process-id="1">
 			<word-part bottom="186.4" height="3.719" id="0" left="136.168" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="182.681" width="3.422"/>
 			<word-part bottom="186.4" height="4.797" id="1" left="139.836" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="181.603" width="1.469"/>
 			<word-part bottom="186.4" height="3.672" id="2" left="141.544" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="182.728" width="2.469"/>
 			<word-part bottom="186.4" height="4.984" id="3" left="144.554" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="181.415" width="3.422"/>
 			<word-part bottom="186.4" height="4.5" id="4" left="148.222" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="181.9" width="1.953"/>
 			<word-part bottom="186.4" height="3.672" id="5" left="150.322" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="182.728" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="99" line-number="20" text="weiter">
 		<transkription-position bottom="187.303" height="7.857" id="0" left="154.785" top="179.446" width="17.689" writing-process-id="1">
 			<word-part bottom="186.4" height="3.594" id="0" left="154.935" style-class="st12 st10 st11" symbol-id="glyph1-9" text="w" top="182.806" width="5.312"/>
 			<word-part bottom="186.4" height="3.672" id="1" left="160.15" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="182.728" width="2.594"/>
 			<word-part bottom="186.4" height="4.797" id="2" left="163.286" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="181.603" width="1.469"/>
 			<word-part bottom="186.4" height="4.5" id="3" left="164.994" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="181.9" width="1.953"/>
 			<word-part bottom="186.4" height="3.672" id="4" left="167.094" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="182.728" width="2.594"/>
 			<word-part bottom="186.4" height="3.719" id="5" left="170.23" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="182.681" width="2.094"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="100" text="…">
 		<transkription-position bottom="191.24" height="7.857" id="0" left="173.342" top="183.383" width="5.831" writing-process-id="1">
 			<word-part bottom="186.4" height="0.859" id="0" left="173.492" style-class="st12 st10 st11" symbol-id="glyph1-32" text="…" top="185.54" width="5.531"/>
 			<debug id="0" message="check for line breaks, diffx: 150.815, diffy: 6.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="101" line-number="22" text="etwas">
 		<transkription-position bottom="195.978" height="11.11" id="0" left="209.171" top="184.868" width="22.428" writing-process-id="0">
 			<word-part bottom="193.4" height="5.234" id="0" left="209.321" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="6.422" id="1" left="213.791" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="186.978" width="2.781"/>
 			<word-part bottom="193.4" height="5.125" id="2" left="216.781" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="188.275" width="7.562"/>
 			<word-part bottom="193.4" height="5.234" id="3" left="224.221" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="188.165" width="3.812"/>
 			<word-part bottom="193.4" height="5.234" id="4" left="228.511" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="188.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="102" line-number="22" text="Anderes">
 		<transkription-position bottom="195.197" height="11.11" id="0" left="234.931" top="184.087" width="31.938" writing-process-id="0">
 			<word-part bottom="193.4" height="7.125" id="0" left="235.081" style-class="st12 st10 st13" symbol-id="glyph2-34" text="A" top="186.275" width="6.359"/>
 			<word-part bottom="193.4" height="5.312" id="1" left="241.221" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="188.087" width="4.891"/>
 			<word-part bottom="193.4" height="7.203" id="2" left="246.451" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="186.197" width="4.281"/>
 			<word-part bottom="193.4" height="5.234" id="3" left="251.481" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="5.312" id="4" left="255.951" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="188.087" width="2.984"/>
 			<word-part bottom="193.4" height="5.234" id="5" left="259.311" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="5.234" id="6" left="263.781" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="188.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="103" line-number="22" text="Vergnügen">
 		<transkription-position bottom="195.119" height="11.11" id="0" left="270.201" top="184.009" width="42.111" writing-process-id="0">
 			<word-part bottom="193.4" height="7.188" id="0" left="270.351" style-class="st12 st10 st13" symbol-id="glyph2-26" text="V" top="186.212" width="6.375"/>
 			<word-part bottom="193.4" height="5.234" id="1" left="275.571" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="5.312" id="2" left="280.041" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="188.087" width="2.984"/>
 			<word-part bottom="193.4" height="7.281" id="3" left="283.401" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="186.119" width="4.203"/>
 			<word-part bottom="193.4" height="5.312" id="4" left="287.871" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="188.087" width="4.891"/>
 			<word-part bottom="193.4" height="6.859" id="5" left="293.101" style-class="st12 st10 st13" symbol-id="glyph2-27" text="ü" top="186.54" width="4.859"/>
 			<word-part bottom="193.4" height="7.281" id="6" left="298.331" style-class="st12 st10 st13" symbol-id="glyph2-6" text="g" top="186.119" width="4.203"/>
 			<word-part bottom="193.4" height="5.234" id="7" left="302.801" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="5.312" id="8" left="307.271" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="188.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="104" line-number="22" text="u">
 		<transkription-position bottom="197.165" height="11.11" id="0" left="315.371" top="186.055" width="5.159" writing-process-id="0">
 			<word-part bottom="193.4" height="5.234" id="0" left="315.521" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="188.165" width="4.859"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="105" line-number="22" text="Eindruck.">
 		<transkription-position bottom="195.197" height="11.11" id="0" left="323.621" top="184.087" width="37.344" writing-process-id="0">
 			<word-part bottom="193.4" height="7.125" id="0" left="323.771" style-class="st12 st10 st13" symbol-id="glyph2-18" text="E" top="186.275" width="4.547"/>
 			<word-part bottom="193.4" height="6.844" id="1" left="329.171" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="186.556" width="2.094"/>
 			<word-part bottom="193.4" height="5.312" id="2" left="331.601" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="188.087" width="4.891"/>
 			<word-part bottom="193.4" height="7.203" id="3" left="336.831" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="186.197" width="4.281"/>
 			<word-part bottom="193.4" height="5.312" id="4" left="341.861" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="188.087" width="2.984"/>
 			<word-part bottom="193.4" height="5.234" id="5" left="345.221" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="188.165" width="4.859"/>
 			<word-part bottom="193.4" height="5.234" id="6" left="350.451" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="188.165" width="3.531"/>
 			<word-part bottom="193.4" height="7.125" id="7" left="354.741" style-class="st12 st10 st13" symbol-id="glyph2-21" text="k" top="186.275" width="4.781"/>
 			<word-part bottom="193.4" height="1.25" id="8" left="359.581" style-class="st12 st10 st13" symbol-id="glyph2-16" text="." top="192.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="106" line-number="22" text="Der">
 		<transkription-position bottom="195.275" height="11.11" id="0" left="365.081" top="184.165" width="14.644" writing-process-id="0">
 			<word-part bottom="193.4" height="7.125" id="0" left="365.231" style-class="st12 st10 st13" symbol-id="glyph2-15" text="D" top="186.275" width="5.859"/>
 			<word-part bottom="193.4" height="5.234" id="1" left="372.121" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<word-part bottom="193.4" height="5.312" id="2" left="376.591" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="188.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="107" line-number="22" text="Wille">
 		<transkription-position bottom="195.212" height="11.11" id="0" left="382.821" top="184.102" width="20.213" writing-process-id="0">
 			<word-part bottom="193.4" height="7.188" id="0" left="382.971" style-class="st12 st10 st13" symbol-id="glyph2-39" text="W" top="186.212" width="9.094"/>
 			<word-part bottom="193.4" height="6.844" id="1" left="391.891" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="186.556" width="2.094"/>
 			<word-part bottom="193.4" height="7.125" id="2" left="394.321" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="186.275" width="2.094"/>
 			<word-part bottom="193.4" height="7.125" id="3" left="396.751" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="186.275" width="2.094"/>
 			<word-part bottom="193.4" height="5.234" id="4" left="399.181" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="188.165" width="3.703"/>
 			<debug id="0" message="check for line breaks, diffx: 376.44, diffy: 5.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="108" line-number="23" text="als">
 		<transkription-position bottom="202.399" height="6.984" id="0" left="366.122" top="195.415" width="7.08" writing-process-id="1">
 			<word-part bottom="201.4" height="3.672" id="0" left="366.272" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="197.728" width="2.672"/>
 			<word-part bottom="201.4" height="4.984" id="1" left="369.282" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="196.415" width="1.469"/>
 			<word-part bottom="201.4" height="3.672" id="2" left="370.99" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="197.728" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="109" line-number="23" text="Princip">
 		<transkription-position bottom="202.4" height="7.031" id="0" left="375.453" top="195.369" width="19.408" writing-process-id="1">
 			<word-part bottom="201.4" height="4.984" id="0" left="375.603" style-class="st12 st10 st11" symbol-id="glyph1-33" text="P" top="196.415" width="3.078"/>
 			<word-part bottom="201.4" height="3.719" id="1" left="379.271" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="197.681" width="2.094"/>
 			<word-part bottom="201.4" height="4.797" id="2" left="381.63" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="196.603" width="1.469"/>
 			<word-part bottom="201.4" height="3.719" id="3" left="383.338" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="197.681" width="3.422"/>
 			<word-part bottom="201.4" height="3.672" id="4" left="387.006" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="197.728" width="2.469"/>
 			<word-part bottom="201.4" height="4.797" id="5" left="390.016" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="196.603" width="1.469"/>
 			<word-part bottom="201.4" height="5.031" id="6" left="391.724" style-class="st12 st10 st11" symbol-id="glyph1-34" text="p" top="196.369" width="2.987"/>
 			<debug id="0" message="check for line breaks, diffx: 369.026, diffy: 9.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="110" line-number="24" text="zur">
 		<transkription-position bottom="215.087" height="11.11" id="0" left="324.181" top="203.977" width="12.984" writing-process-id="0">
 			<word-part bottom="211.4" height="5.062" id="0" left="324.331" style-class="st12 st10 st13" symbol-id="glyph2-20" text="z" top="206.337" width="4.125"/>
 			<word-part bottom="211.4" height="5.234" id="1" left="328.801" style-class="st12 st10 st13" symbol-id="glyph2-10" text="u" top="206.165" width="4.859"/>
 			<word-part bottom="211.4" height="5.312" id="2" left="334.031" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="206.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="111" line-number="24" text="Macht">
 		<transkription-position bottom="213.275" height="11.11" id="0" left="340.261" top="202.165" width="25.621" writing-process-id="0">
 			<word-part bottom="211.4" height="7.125" id="0" left="340.411" style-class="st12 st10 st13" symbol-id="glyph2-40" text="M" top="204.275" width="8.562"/>
 			<word-part bottom="211.4" height="5.234" id="1" left="349.141" style-class="st12 st10 st13" symbol-id="glyph2-8" text="a" top="206.165" width="3.812"/>
 			<word-part bottom="211.4" height="5.234" id="2" left="353.431" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="206.165" width="3.531"/>
 			<word-part bottom="211.4" height="7.125" id="3" left="357.721" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="204.275" width="4.891"/>
 			<word-part bottom="211.4" height="6.422" id="4" left="362.951" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="204.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="112" line-number="24" text="wäre">
 		<transkription-position bottom="213.54" height="11.11" id="0" left="368.811" top="202.43" width="19.093" writing-process-id="0">
 			<word-part bottom="211.4" height="5.125" id="0" left="368.961" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="206.275" width="7.562"/>
 			<word-part bottom="211.4" height="6.859" id="1" left="376.401" style-class="st12 st10 st13" symbol-id="glyph2-41" text="ä" top="204.54" width="3.812"/>
 			<word-part bottom="211.4" height="5.312" id="2" left="380.691" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="206.087" width="2.984"/>
 			<word-part bottom="211.4" height="5.234" id="3" left="384.051" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="206.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="113" line-number="24" text="ihnen">
 		<transkription-position bottom="213.275" height="11.11" id="0" left="391.391" top="202.165" width="22.551" writing-process-id="0">
 			<word-part bottom="211.4" height="6.844" id="0" left="391.541" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="204.556" width="2.094"/>
 			<word-part bottom="211.4" height="7.125" id="1" left="393.971" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="204.275" width="4.891"/>
 			<word-part bottom="211.4" height="5.312" id="2" left="399.201" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="206.087" width="4.891"/>
 			<word-part bottom="211.4" height="5.234" id="3" left="404.431" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="206.165" width="3.703"/>
 			<word-part bottom="211.4" height="5.312" id="4" left="408.901" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="206.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="114" line-number="24" text="schwer">
 		<transkription-position bottom="213.275" height="11.11" id="0" left="417.001" top="202.165" width="28.264" writing-process-id="0">
 			<word-part bottom="211.4" height="5.234" id="0" left="417.151" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="206.165" width="2.938"/>
 			<word-part bottom="211.4" height="5.234" id="1" left="420.701" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="206.165" width="3.531"/>
 			<word-part bottom="211.4" height="7.125" id="2" left="424.991" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="204.275" width="4.891"/>
 			<word-part bottom="211.4" height="5.125" id="3" left="430.221" style-class="st12 st10 st13" symbol-id="glyph2-12" text="w" top="206.275" width="7.562"/>
 			<word-part bottom="211.4" height="5.234" id="4" left="437.661" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="206.165" width="3.703"/>
 			<word-part bottom="211.4" height="5.312" id="5" left="442.131" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="206.087" width="2.984"/>
 			<debug id="0" message="check for line breaks, diffx: 436.399, diffy: 11.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="115" line-number="25" text="$">
 		<transkription-position bottom="223.4" height="7.672" id="0" left="5.519" top="215.728" width="5.941" writing-process-id="0">
 			<word-part bottom="222.4" height="5.672" id="0" left="5.669" style-class="st15 st13" symbol-id="glyph3-1" text="$" top="216.728" width="5.641"/>
 			<debug id="0" message="check for line breaks, diffx: 6.48, diffy: 0.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="116" line-number="24" text="Systemen">
 		<transkription-position bottom="213.959" height="7.857" id="0" left="105.299" top="206.102" width="26.472" writing-process-id="1">
 			<word-part bottom="213.4" height="5.141" id="0" left="105.449" style-class="st10 st11" symbol-id="glyph1-35" text="S" top="208.259" width="2.781"/>
 			<word-part bottom="213.4" height="4.969" id="1" left="108.725" style-class="st10 st11" symbol-id="glyph1-36" text="y" top="208.431" width="3.359"/>
 			<word-part bottom="213.4" height="3.672" id="2" left="111.861" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="209.728" width="2.062"/>
 			<word-part bottom="213.4" height="4.5" id="3" left="114.353" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="208.9" width="1.953"/>
 			<word-part bottom="213.4" height="3.672" id="4" left="116.453" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="3.719" id="5" left="119.589" style-class="st10 st11" symbol-id="glyph1-15" text="m" top="209.681" width="5.172"/>
 			<word-part bottom="213.4" height="3.672" id="6" left="125.063" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="3.719" id="7" left="128.199" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="209.681" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="117" text="u.">
 		<transkription-position bottom="214.4" height="5.672" id="0" left="133.838" top="208.728" width="4.843" writing-process-id="1">
 			<word-part bottom="213.4" height="3.672" id="0" left="133.988" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="209.728" width="3.391"/>
 			<word-part bottom="213.4" height="0.859" id="1" left="137.656" style-class="st10 st11" symbol-id="glyph1-8" text="." top="212.54" width="0.875"/>
 			<debug id="0" message="check for line breaks, diffx: 1.862, diffy: 9.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="118" text="u">
 		<transkription-position bottom="214.4" height="5.672" id="0" left="156.971" top="208.728" width="3.691" writing-process-id="1">
 			<word-part bottom="213.4" height="3.672" id="0" left="157.121" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="209.728" width="3.391"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="119" line-number="24" text="gehe">
 		<transkription-position bottom="214.006" height="7.857" id="0" left="162.76" top="206.149" width="12.834" writing-process-id="1">
 			<word-part bottom="213.4" height="5.094" id="0" left="162.91" style-class="st10 st11" symbol-id="glyph1-13" text="g" top="208.306" width="2.938"/>
 			<word-part bottom="213.4" height="3.672" id="1" left="166.046" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="4.984" id="2" left="169.182" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="208.415" width="3.422"/>
 			<word-part bottom="213.4" height="3.672" id="3" left="172.85" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="120" line-number="24" text="ihnen">
 		<transkription-position bottom="214.115" height="7.857" id="0" left="177.957" top="206.258" width="15.902" writing-process-id="1">
 			<word-part bottom="213.4" height="4.797" id="0" left="178.107" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="208.603" width="1.469"/>
 			<word-part bottom="213.4" height="4.984" id="1" left="179.815" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="208.415" width="3.422"/>
 			<word-part bottom="213.4" height="3.719" id="2" left="183.483" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="209.681" width="3.422"/>
 			<word-part bottom="213.4" height="3.672" id="3" left="187.151" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="3.719" id="4" left="190.287" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="209.681" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="121" text="aus">
 		<transkription-position bottom="214.4" height="5.672" id="0" left="195.926" top="208.728" width="9.04" writing-process-id="1">
 			<word-part bottom="213.4" height="3.672" id="0" left="196.076" style-class="st10 st11" symbol-id="glyph1-24" text="a" top="209.728" width="2.672"/>
 			<word-part bottom="213.4" height="3.672" id="1" left="199.086" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="209.728" width="3.391"/>
 			<word-part bottom="213.4" height="3.672" id="2" left="202.754" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="209.728" width="2.062"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="122" line-number="24" text="dem">
 		<transkription-position bottom="214.053" height="7.857" id="0" left="207.217" top="206.196" width="12.136" writing-process-id="1">
 			<word-part bottom="213.4" height="5.047" id="0" left="207.367" style-class="st10 st11" symbol-id="glyph1-11" text="d" top="208.353" width="2.984"/>
 			<word-part bottom="213.4" height="3.672" id="1" left="210.895" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="3.719" id="2" left="214.031" style-class="st10 st11" symbol-id="glyph1-15" text="m" top="209.681" width="5.172"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="123" line-number="24" text="Wege">
 		<transkription-position bottom="214.006" height="7.857" id="0" left="221.476" top="206.149" width="15.158" writing-process-id="1">
 			<word-part bottom="213.4" height="5.031" id="0" left="221.626" style-class="st10 st11" symbol-id="glyph1-37" text="W" top="208.369" width="6.359"/>
 			<word-part bottom="213.4" height="3.672" id="1" left="227.618" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<word-part bottom="213.4" height="5.094" id="2" left="230.754" style-class="st10 st11" symbol-id="glyph1-13" text="g" top="208.306" width="2.938"/>
 			<word-part bottom="213.4" height="3.672" id="3" left="233.89" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="209.728" width="2.594"/>
 			<debug id="0" message="check for line breaks, diffx: 3.15, diffy: 9.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="124" line-number="25" text="noch">
 		<transkription-position bottom="225.649" height="6.984" id="0" left="265.334" top="218.665" width="13.795" writing-process-id="1">
 			<word-part bottom="224.65" height="3.719" id="0" left="265.484" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="220.931" width="3.422"/>
 			<word-part bottom="224.65" height="3.672" id="1" left="269.152" style-class="st10 st11" symbol-id="glyph1-28" text="o" top="220.978" width="2.828"/>
 			<word-part bottom="224.65" height="3.672" id="2" left="272.547" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="220.978" width="2.469"/>
 			<word-part bottom="224.65" height="4.984" id="3" left="275.557" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="219.665" width="3.422"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="125" line-number="25" text="verständlich">
 		<transkription-position bottom="227.4" height="9.203" id="0" left="373.181" top="218.197" width="47.931" writing-process-id="0">
 			<word-part bottom="226.4" height="5.125" id="0" left="373.331" style-class="st12 st10 st13" symbol-id="glyph2-31" text="v" top="221.275" width="4.797"/>
 			<word-part bottom="226.4" height="5.234" id="1" left="378.001" style-class="st12 st10 st13" symbol-id="glyph2-2" text="e" top="221.165" width="3.703"/>
 			<word-part bottom="226.4" height="5.312" id="2" left="382.471" style-class="st12 st10 st13" symbol-id="glyph2-7" text="r" top="221.087" width="2.984"/>
 			<word-part bottom="226.4" height="5.234" id="3" left="385.831" style-class="st12 st10 st13" symbol-id="glyph2-5" text="s" top="221.165" width="2.938"/>
 			<word-part bottom="226.4" height="6.422" id="4" left="389.381" style-class="st12 st10 st13" symbol-id="glyph2-11" text="t" top="219.978" width="2.781"/>
 			<word-part bottom="226.4" height="6.859" id="5" left="392.371" style-class="st12 st10 st13" symbol-id="glyph2-41" text="ä" top="219.54" width="3.812"/>
 			<word-part bottom="226.4" height="5.312" id="6" left="396.661" style-class="st12 st10 st13" symbol-id="glyph2-3" text="n" top="221.087" width="4.891"/>
 			<word-part bottom="226.4" height="7.203" id="7" left="401.891" style-class="st12 st10 st13" symbol-id="glyph2-1" text="d" top="219.197" width="4.281"/>
 			<word-part bottom="226.4" height="7.125" id="8" left="406.921" style-class="st12 st10 st13" symbol-id="glyph2-25" text="l" top="219.275" width="2.094"/>
 			<word-part bottom="226.4" height="6.844" id="9" left="409.351" style-class="st12 st10 st13" symbol-id="glyph2-13" text="i" top="219.556" width="2.094"/>
 			<word-part bottom="226.4" height="5.234" id="10" left="411.781" style-class="st12 st10 st13" symbol-id="glyph2-17" text="c" top="221.165" width="3.531"/>
 			<word-part bottom="226.4" height="7.125" id="11" left="416.071" style-class="st12 st10 st13" symbol-id="glyph2-9" text="h" top="219.275" width="4.891"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="126" text="…">
 		<transkription-position bottom="234.15" height="11.11" id="0" left="422.431" top="223.04" width="8.206" writing-process-id="0">
 			<word-part bottom="226.4" height="1.25" id="0" left="422.581" style-class="st12 st10 st13" symbol-id="glyph2-28" text="…" top="225.15" width="7.906"/>
 			<debug id="0" message="check for line breaks, diffx: 399.904, diffy: 8.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="127" line-number="28" text="Ich">
 		<transkription-position bottom="236.275" height="11.11" id="0" left="36.697" top="225.165" width="12.471" writing-process-id="0">
 			<word-part bottom="234.4" height="7.125" id="0" left="36.847" style-class="st10 st13" symbol-id="glyph2-42" text="I" top="227.275" width="2.172"/>
 			<word-part bottom="234.4" height="5.234" id="1" left="39.837" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="229.165" width="3.531"/>
 			<word-part bottom="234.4" height="7.125" id="2" left="44.127" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="227.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="128" line-number="28" text="mißtraue">
 		<transkription-position bottom="236.087" height="11.11" id="0" left="52.227" top="224.977" width="35.143" writing-process-id="0">
 			<word-part bottom="234.4" height="5.312" id="0" left="52.377" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="229.087" width="7.375"/>
 			<word-part bottom="234.4" height="6.844" id="1" left="60.187" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="7.312" id="2" left="62.617" style-class="st10 st13" symbol-id="glyph2-29" text="ß" top="227.087" width="4.516"/>
 			<word-part bottom="234.4" height="6.422" id="3" left="67.647" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<word-part bottom="234.4" height="5.312" id="4" left="70.637" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="229.087" width="2.984"/>
 			<word-part bottom="234.4" height="5.234" id="5" left="73.997" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="229.165" width="3.812"/>
 			<word-part bottom="234.4" height="5.234" id="6" left="78.287" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="229.165" width="4.859"/>
 			<word-part bottom="234.4" height="5.234" id="7" left="83.517" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="129" line-number="28" text="allen">
 		<transkription-position bottom="236.275" height="11.11" id="0" left="90.857" top="225.165" width="18.811" writing-process-id="0">
 			<word-part bottom="234.4" height="5.234" id="0" left="91.007" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="229.165" width="3.812"/>
 			<word-part bottom="234.4" height="7.125" id="1" left="95.297" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="227.275" width="2.094"/>
 			<word-part bottom="234.4" height="7.125" id="2" left="97.727" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="227.275" width="2.094"/>
 			<word-part bottom="234.4" height="5.234" id="3" left="100.157" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="4" left="104.627" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="130" line-number="28" text="Systematikern:">
 		<transkription-position bottom="236.04" height="11.11" id="0" left="112.727" top="224.93" width="55.531" writing-process-id="0">
 			<word-part bottom="234.4" height="7.359" id="0" left="112.877" style-class="st10 st13" symbol-id="glyph2-43" text="S" top="227.04" width="3.984"/>
 			<word-part bottom="234.4" height="7.094" id="1" left="117.547" style-class="st10 st13" symbol-id="glyph2-44" text="y" top="227.306" width="4.812"/>
 			<word-part bottom="234.4" height="5.234" id="2" left="122.017" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="229.165" width="2.938"/>
 			<word-part bottom="234.4" height="6.422" id="3" left="125.567" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<word-part bottom="234.4" height="5.234" id="4" left="128.557" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="5" left="133.027" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="229.087" width="7.375"/>
 			<word-part bottom="234.4" height="5.234" id="6" left="140.837" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="229.165" width="3.812"/>
 			<word-part bottom="234.4" height="6.422" id="7" left="145.127" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<word-part bottom="234.4" height="6.844" id="8" left="148.117" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="7.125" id="9" left="150.547" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="227.275" width="4.781"/>
 			<word-part bottom="234.4" height="5.234" id="10" left="155.387" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="11" left="159.857" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="229.087" width="2.984"/>
 			<word-part bottom="234.4" height="5.312" id="12" left="163.217" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 		<transkription-position bottom="238.65" height="11.11" id="1" left="168.297" top="227.54" width="1.534" writing-process-id="0">
 			<word-part bottom="234.4" height="4.75" id="0" left="168.447" style-class="st30 st13" symbol-id="glyph5-1" text=":" top="229.65" width="1.234"/>
 			<debug id="0" message="styles differ"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="131" line-number="28" text="vielleicht">
 		<transkription-position bottom="236.275" height="11.11" id="0" left="173.947" top="225.165" width="35.931" writing-process-id="0">
 			<word-part bottom="234.4" height="5.125" id="0" left="174.097" style-class="st10 st13" symbol-id="glyph2-31" text="v" top="229.275" width="4.797"/>
 			<word-part bottom="234.4" height="6.844" id="1" left="178.767" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="5.234" id="2" left="181.197" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="7.125" id="3" left="185.667" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="227.275" width="2.094"/>
 			<word-part bottom="234.4" height="7.125" id="4" left="188.097" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="227.275" width="2.094"/>
 			<word-part bottom="234.4" height="5.234" id="5" left="190.527" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="6.844" id="6" left="194.997" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="5.234" id="7" left="197.427" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="229.165" width="3.531"/>
 			<word-part bottom="234.4" height="7.125" id="8" left="201.717" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="227.275" width="4.891"/>
 			<word-part bottom="234.4" height="6.422" id="9" left="206.947" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="132" line-number="28" text="entdeckt">
 		<transkription-position bottom="236.197" height="11.11" id="0" left="212.807" top="225.087" width="34.401" writing-process-id="0">
 			<word-part bottom="234.4" height="5.234" id="0" left="212.957" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="1" left="217.427" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<word-part bottom="234.4" height="6.422" id="2" left="222.657" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<word-part bottom="234.4" height="7.203" id="3" left="225.647" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="227.197" width="4.281"/>
 			<word-part bottom="234.4" height="5.234" id="4" left="230.677" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.234" id="5" left="235.147" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="229.165" width="3.531"/>
 			<word-part bottom="234.4" height="7.125" id="6" left="239.437" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="227.275" width="4.781"/>
 			<word-part bottom="234.4" height="6.422" id="7" left="244.277" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="133" line-number="28" text="man">
 		<transkription-position bottom="238.087" height="11.11" id="0" left="250.137" top="226.977" width="17.291" writing-process-id="0">
 			<word-part bottom="234.4" height="5.312" id="0" left="250.287" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="229.087" width="7.375"/>
 			<word-part bottom="234.4" height="5.234" id="1" left="258.097" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="229.165" width="3.812"/>
 			<word-part bottom="234.4" height="5.312" id="2" left="262.387" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="134" line-number="28" text="hinter">
 		<transkription-position bottom="236.275" height="11.11" id="0" left="270.487" top="225.165" width="23.634" writing-process-id="0">
 			<word-part bottom="234.4" height="7.125" id="0" left="270.637" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="227.275" width="4.891"/>
 			<word-part bottom="234.4" height="6.844" id="1" left="275.867" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="5.312" id="2" left="278.297" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<word-part bottom="234.4" height="6.422" id="3" left="283.527" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="227.978" width="2.781"/>
 			<word-part bottom="234.4" height="5.234" id="4" left="286.517" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="5" left="290.987" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="229.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="135" line-number="28" text="diesen">
 		<transkription-position bottom="236.197" height="11.11" id="0" left="297.217" top="225.087" width="25.141" writing-process-id="0">
 			<word-part bottom="234.4" height="7.203" id="0" left="297.367" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="227.197" width="4.281"/>
 			<word-part bottom="234.4" height="6.844" id="1" left="302.397" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="227.556" width="2.094"/>
 			<word-part bottom="234.4" height="5.234" id="2" left="304.827" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.234" id="3" left="309.297" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="229.165" width="2.938"/>
 			<word-part bottom="234.4" height="5.234" id="4" left="312.847" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="229.165" width="3.703"/>
 			<word-part bottom="234.4" height="5.312" id="5" left="317.317" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="229.087" width="4.891"/>
 			<debug id="0" message="check for line breaks, diffx: 294.556, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="136" line-number="29" text="Buche">
 		<transkription-position bottom="249.649" height="6.984" id="0" left="35.253" top="242.665" width="17.16" writing-process-id="1">
 			<word-part bottom="248.65" height="4.984" id="0" left="35.403" style-class="st10 st11" symbol-id="glyph1-25" text="B" top="243.665" width="3.297"/>
 			<word-part bottom="248.65" height="3.672" id="1" left="39.323" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="244.978" width="3.391"/>
 			<word-part bottom="248.65" height="3.672" id="2" left="42.991" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="244.978" width="2.469"/>
 			<word-part bottom="248.65" height="4.984" id="3" left="46.001" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="243.665" width="3.422"/>
 			<word-part bottom="248.65" height="3.672" id="4" left="49.669" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="244.978" width="2.594"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="137" line-number="29" text="noch">
 		<transkription-position bottom="249.649" height="6.984" id="0" left="56.896" top="242.665" width="13.795" writing-process-id="1">
 			<word-part bottom="248.65" height="3.719" id="0" left="57.046" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="244.931" width="3.422"/>
 			<word-part bottom="248.65" height="3.672" id="1" left="60.714" style-class="st10 st11" symbol-id="glyph1-28" text="o" top="244.978" width="2.828"/>
 			<word-part bottom="248.65" height="3.672" id="2" left="64.109" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="244.978" width="2.469"/>
 			<word-part bottom="248.65" height="4.984" id="3" left="67.119" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="243.665" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="138" line-number="29" text="u">
 		<transkription-position bottom="249.65" height="5.672" id="0" left="224.721" top="243.978" width="3.691" writing-process-id="1">
 			<word-part bottom="248.65" height="3.672" id="0" left="224.871" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="244.978" width="3.391"/>
 			<debug id="0" message="check for line breaks, diffx: 196.354, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="139" line-number="30" text="Gedanken">
 		<transkription-position bottom="260.04" height="11.11" id="0" left="28.196" top="248.93" width="40.401" writing-process-id="0">
 			<word-part bottom="258.4" height="7.359" id="0" left="28.346" style-class="st10 st13" symbol-id="glyph2-45" text="G" top="251.04" width="6.188"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="35.226" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="7.203" id="2" left="39.696" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="251.197" width="4.281"/>
 			<word-part bottom="258.4" height="5.234" id="3" left="44.726" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="253.165" width="3.812"/>
 			<word-part bottom="258.4" height="5.312" id="4" left="49.016" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="253.087" width="4.891"/>
 			<word-part bottom="258.4" height="7.125" id="5" left="54.246" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="251.275" width="4.781"/>
 			<word-part bottom="258.4" height="5.234" id="6" left="59.086" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="7" left="63.556" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="253.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="140" line-number="30" text="das">
 		<transkription-position bottom="260.197" height="11.11" id="0" left="71.855" top="249.087" width="12.558" writing-process-id="0">
 			<word-part bottom="258.4" height="7.203" id="0" left="72.005" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="251.197" width="4.281"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="77.035" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="253.165" width="3.812"/>
 			<word-part bottom="258.4" height="5.234" id="2" left="81.325" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="253.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="141" line-number="30" text="System,">
 		<transkription-position bottom="260.04" height="11.11" id="0" left="87.745" top="248.93" width="29.698" writing-process-id="0">
 			<word-part bottom="258.4" height="7.359" id="0" left="87.895" style-class="st10 st13" symbol-id="glyph2-43" text="S" top="251.04" width="3.984"/>
 			<word-part bottom="258.4" height="7.094" id="1" left="92.565" style-class="st10 st13" symbol-id="glyph2-44" text="y" top="251.306" width="4.812"/>
 			<word-part bottom="258.4" height="5.234" id="2" left="97.035" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="253.165" width="2.938"/>
 			<word-part bottom="258.4" height="6.422" id="3" left="100.585" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="251.978" width="2.781"/>
 			<word-part bottom="258.4" height="5.234" id="4" left="103.575" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="5" left="108.045" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="253.087" width="7.375"/>
 			<word-part bottom="258.4" height="3.234" id="6" left="115.855" style-class="st10 st13" symbol-id="glyph2-22" text="," top="255.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="142" line-number="30" text="dem">
 		<transkription-position bottom="260.197" height="11.11" id="0" left="121.355" top="249.087" width="17.174" writing-process-id="0">
 			<word-part bottom="258.4" height="7.203" id="0" left="121.505" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="251.197" width="4.281"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="126.534" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="2" left="131.004" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="253.087" width="7.375"/>
 			<debug id="0" message="check for line breaks, diffx: 7.81, diffy: 0.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="143" line-number="30" text="ich">
 		<transkription-position bottom="260.275" height="11.11" id="0" left="141.684" top="249.165" width="11.911" writing-process-id="0">
 			<word-part bottom="258.4" height="6.844" id="0" left="141.834" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="251.556" width="2.094"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="144.264" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="253.165" width="3.531"/>
 			<word-part bottom="258.4" height="7.125" id="2" left="148.554" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="251.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="144" line-number="30" text="ausgewichen">
 		<transkription-position bottom="260.119" height="11.11" id="0" left="156.654" top="249.009" width="51.061" writing-process-id="0">
 			<word-part bottom="258.4" height="5.234" id="0" left="156.804" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="253.165" width="3.812"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="161.094" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="253.165" width="4.859"/>
 			<word-part bottom="258.4" height="5.234" id="2" left="166.324" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="253.165" width="2.938"/>
 			<word-part bottom="258.4" height="7.281" id="3" left="169.874" style-class="st10 st13" symbol-id="glyph2-6" text="g" top="251.119" width="4.203"/>
 			<word-part bottom="258.4" height="5.234" id="4" left="174.344" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.125" id="5" left="178.814" style-class="st10 st13" symbol-id="glyph2-12" text="w" top="253.275" width="7.562"/>
 			<word-part bottom="258.4" height="6.844" id="6" left="186.254" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="251.556" width="2.094"/>
 			<word-part bottom="258.4" height="5.234" id="7" left="188.684" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="253.165" width="3.531"/>
 			<word-part bottom="258.4" height="7.125" id="8" left="192.974" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="251.275" width="4.891"/>
 			<word-part bottom="258.4" height="5.234" id="9" left="198.204" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="10" left="202.674" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="253.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="145" line-number="30" text="bin">
 		<transkription-position bottom="260.197" height="11.11" id="0" left="210.773" top="249.087" width="12.461" writing-process-id="0">
 			<word-part bottom="258.4" height="7.203" id="0" left="210.923" style-class="st10 st13" symbol-id="glyph2-30" text="b" top="251.197" width="4.281"/>
 			<word-part bottom="258.4" height="6.844" id="1" left="215.763" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="251.556" width="2.094"/>
 			<word-part bottom="258.4" height="5.312" id="2" left="218.193" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="253.087" width="4.891"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="146" line-number="31" text="…">
 		<transkription-position bottom="266.15" height="11.11" id="0" left="224.553" top="255.04" width="8.206" writing-process-id="0">
 			<word-part bottom="258.4" height="1.25" id="0" left="224.703" style-class="st10 st13" symbol-id="glyph2-28" text="…" top="257.15" width="7.906"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="147" line-number="30" text="u">
 		<transkription-position bottom="262.165" height="11.11" id="0" left="237.602" top="251.055" width="5.159" writing-process-id="0">
 			<word-part bottom="258.4" height="5.234" id="0" left="237.752" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="253.165" width="4.859"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="148" line-number="30" text="mich,">
 		<transkription-position bottom="260.275" height="11.11" id="0" left="245.852" top="249.165" width="21.498" writing-process-id="0">
 			<word-part bottom="258.4" height="5.312" id="0" left="246.002" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="253.087" width="7.375"/>
 			<word-part bottom="258.4" height="6.844" id="1" left="253.812" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="251.556" width="2.094"/>
 			<word-part bottom="258.4" height="5.234" id="2" left="256.242" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="253.165" width="3.531"/>
 			<word-part bottom="258.4" height="7.125" id="3" left="260.532" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="251.275" width="4.891"/>
 			<word-part bottom="258.4" height="3.234" id="4" left="265.762" style-class="st10 st13" symbol-id="glyph2-22" text="," top="255.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="149" line-number="30" text="den">
 		<transkription-position bottom="260.197" height="11.11" id="0" left="271.262" top="249.087" width="14.691" writing-process-id="0">
 			<word-part bottom="258.4" height="7.203" id="0" left="271.412" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="251.197" width="4.281"/>
 			<word-part bottom="258.4" height="5.234" id="1" left="276.442" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="2" left="280.912" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="253.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="150" line-number="30" text="Systematiker">
 		<transkription-position bottom="260.04" height="11.11" id="0" left="289.012" top="248.93" width="50.264" writing-process-id="0">
 			<word-part bottom="258.4" height="7.359" id="0" left="289.162" style-class="st10 st13" symbol-id="glyph2-43" text="S" top="251.04" width="3.984"/>
 			<word-part bottom="258.4" height="7.094" id="1" left="293.832" style-class="st10 st13" symbol-id="glyph2-44" text="y" top="251.306" width="4.812"/>
 			<word-part bottom="258.4" height="5.234" id="2" left="298.302" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="253.165" width="2.938"/>
 			<word-part bottom="258.4" height="6.422" id="3" left="301.852" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="251.978" width="2.781"/>
 			<word-part bottom="258.4" height="5.234" id="4" left="304.842" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="5" left="309.312" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="253.087" width="7.375"/>
 			<word-part bottom="258.4" height="5.234" id="6" left="317.122" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="253.165" width="3.812"/>
 			<word-part bottom="258.4" height="6.422" id="7" left="321.412" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="251.978" width="2.781"/>
 			<word-part bottom="258.4" height="6.844" id="8" left="324.402" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="251.556" width="2.094"/>
 			<word-part bottom="258.4" height="7.125" id="9" left="326.832" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="251.275" width="4.781"/>
 			<word-part bottom="258.4" height="5.234" id="10" left="331.672" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="253.165" width="3.703"/>
 			<word-part bottom="258.4" height="5.312" id="11" left="336.142" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="253.087" width="2.984"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="151" line-number="31" text="…">
 		<transkription-position bottom="266.15" height="11.11" id="0" left="340.632" top="255.04" width="8.206" writing-process-id="0">
 			<word-part bottom="258.4" height="1.25" id="0" left="340.782" style-class="st10 st13" symbol-id="glyph2-28" text="…" top="257.15" width="7.906"/>
 			<debug id="0" message="check for line breaks, diffx: 312.436, diffy: 24.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="152" line-number="31" text="moralisch">
 		<transkription-position bottom="288.649" height="6.984" id="0" left="98.188" top="281.665" width="26.878" writing-process-id="1">
 			<word-part bottom="287.65" height="3.719" id="0" left="98.338" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="283.931" width="5.172"/>
 			<word-part bottom="287.65" height="3.672" id="1" left="103.812" style-class="st12 st10 st11" symbol-id="glyph1-28" text="o" top="283.978" width="2.828"/>
 			<word-part bottom="287.65" height="3.719" id="2" left="107.207" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="283.931" width="2.094"/>
 			<word-part bottom="287.65" height="3.672" id="3" left="109.566" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="283.978" width="2.672"/>
 			<word-part bottom="287.65" height="4.984" id="4" left="112.576" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="282.665" width="1.469"/>
 			<word-part bottom="287.65" height="4.797" id="5" left="114.284" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="282.853" width="1.469"/>
 			<word-part bottom="287.65" height="3.672" id="6" left="115.992" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="283.978" width="2.062"/>
 			<word-part bottom="287.65" height="3.672" id="7" left="118.484" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="283.978" width="2.469"/>
 			<word-part bottom="287.65" height="4.984" id="8" left="121.494" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="282.665" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="153" line-number="31" text="ausgedrückt,">
 		<transkription-position bottom="288.65" height="7.094" id="0" left="127.133" top="281.556" width="34.802" writing-process-id="1">
 			<word-part bottom="287.65" height="3.672" id="0" left="127.283" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="283.978" width="2.672"/>
 			<word-part bottom="287.65" height="3.672" id="1" left="130.293" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="283.978" width="3.391"/>
 			<word-part bottom="287.65" height="3.672" id="2" left="133.961" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="283.978" width="2.062"/>
 			<word-part bottom="287.65" height="5.094" id="3" left="136.453" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="282.556" width="2.938"/>
 			<word-part bottom="287.65" height="3.672" id="4" left="139.589" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="283.978" width="2.594"/>
 			<word-part bottom="287.65" height="5.047" id="5" left="142.725" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="282.603" width="2.984"/>
 			<word-part bottom="287.65" height="3.719" id="6" left="146.253" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="283.931" width="2.094"/>
 			<word-part bottom="287.65" height="4.812" id="7" left="148.612" style-class="st12 st10 st11" symbol-id="glyph1-27" text="ü" top="282.837" width="3.391"/>
 			<word-part bottom="287.65" height="3.672" id="8" left="152.28" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="283.978" width="2.469"/>
 			<word-part bottom="287.65" height="4.984" id="9" left="155.29" style-class="st12 st10 st11" symbol-id="glyph1-29" text="k" top="282.665" width="3.344"/>
 			<word-part bottom="287.65" height="4.5" id="10" left="158.685" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="283.15" width="1.953"/>
 			<word-part bottom="287.65" height="2.266" id="11" left="160.785" style-class="st12 st10 st11" symbol-id="glyph1-31" text="," top="285.384" width="1.0"/>
 			<debug id="0" message="check for line breaks, diffx: 1.883, diffy: 5.25, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="154" line-number="31" text="Charakter=">
 		<transkription-position bottom="288.65" height="7.141" id="0" left="295.85" top="281.509" width="27.636" writing-process-id="1">
 			<word-part bottom="287.65" height="5.141" id="0" left="296.0" style-class="st12 st10 st11" symbol-id="glyph1-38" text="C" top="282.509" width="3.719"/>
 			<word-part bottom="287.65" height="4.984" id="1" left="300.564" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="282.665" width="3.422"/>
 			<word-part bottom="287.65" height="3.672" id="2" left="304.232" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="283.978" width="2.672"/>
 			<word-part bottom="287.65" height="3.719" id="3" left="307.242" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="283.931" width="2.094"/>
 			<word-part bottom="287.65" height="3.672" id="4" left="309.601" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="283.978" width="2.672"/>
 			<word-part bottom="287.65" height="4.984" id="5" left="312.611" style-class="st12 st10 st11" symbol-id="glyph1-29" text="k" top="282.665" width="3.344"/>
 			<word-part bottom="287.65" height="4.5" id="6" left="316.006" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="283.15" width="1.953"/>
 			<word-part bottom="287.65" height="3.672" id="7" left="318.106" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="283.978" width="2.594"/>
 			<word-part bottom="287.65" height="3.719" id="8" left="321.242" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="283.931" width="2.094"/>
 			<debug id="0" message="check for line breaks, diffx: 295.254, diffy: 9.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 		<transkription-position bottom="288.65" height="3.375" id="1" left="323.45" top="285.275" width="1.847" writing-process-id="1">
 			<word-part bottom="287.65" height="1.375" id="0" left="323.6" style-class="st12 st22 st11" symbol-id="glyph6-1" text="=" top="286.275" width="1.547"/>
 			<debug id="0" message="styles differ"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="155" line-number="31" text="Der">
 		<transkription-position bottom="297.649" height="6.984" id="0" left="28.196" top="290.665" width="10.36" writing-process-id="1">
 			<word-part bottom="296.65" height="4.984" id="0" left="28.346" style-class="st12 st10 st11" symbol-id="glyph1-7" text="D" top="291.665" width="4.094"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="33.176" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="36.312" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="156" line-number="31" text="Wille">
 		<transkription-position bottom="297.65" height="7.031" id="0" left="40.642" top="290.619" width="14.269" writing-process-id="1">
 			<word-part bottom="296.65" height="5.031" id="0" left="40.792" style-class="st12 st10 st11" symbol-id="glyph1-37" text="W" top="291.619" width="6.359"/>
 			<word-part bottom="296.65" height="4.797" id="1" left="47.043" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="4.984" id="2" left="48.751" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="291.665" width="1.469"/>
 			<word-part bottom="296.65" height="4.984" id="3" left="50.459" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="291.665" width="1.469"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="52.167" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="157" line-number="31" text="zum">
 		<transkription-position bottom="297.65" height="5.719" id="0" left="57.274" top="291.931" width="12.276" writing-process-id="1">
 			<word-part bottom="296.65" height="3.547" id="0" left="57.424" style-class="st12 st10 st11" symbol-id="glyph1-14" text="z" top="293.103" width="2.891"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="60.56" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="292.978" width="3.391"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="64.228" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="292.931" width="5.172"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="158" line-number="31" text="System:">
 		<transkription-position bottom="297.65" height="7.141" id="0" left="71.673" top="290.509" width="20.789" writing-process-id="1">
 			<word-part bottom="296.65" height="5.141" id="0" left="71.823" style-class="st12 st10 st11" symbol-id="glyph1-35" text="S" top="291.509" width="2.781"/>
 			<word-part bottom="296.65" height="4.969" id="1" left="75.099" style-class="st12 st10 st11" symbol-id="glyph1-36" text="y" top="291.681" width="3.359"/>
 			<word-part bottom="296.65" height="3.672" id="2" left="78.235" style-class="st12 st10 st11" symbol-id="glyph1-17" text="s" top="292.978" width="2.062"/>
 			<word-part bottom="296.65" height="4.5" id="3" left="80.727" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="292.15" width="1.953"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="82.827" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="5" left="85.963" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="292.931" width="5.172"/>
 			<word-part bottom="296.65" height="3.312" id="6" left="91.437" style-class="st12 st10 st11" symbol-id="glyph1-20" text=":" top="293.337" width="0.875"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="159" line-number="31" text="bei">
 		<transkription-position bottom="297.65" height="7.047" id="0" left="99.498" top="290.603" width="8.3" writing-process-id="1">
 			<word-part bottom="296.65" height="5.047" id="0" left="99.648" style-class="st10 st11" symbol-id="glyph1-39" text="b" top="291.603" width="2.984"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="103.043" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="2" left="106.179" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="160" line-number="31" text="einem">
 		<transkription-position bottom="297.65" height="6.797" id="0" left="109.858" top="290.853" width="17.12" writing-process-id="1">
 			<word-part bottom="296.65" height="3.672" id="0" left="110.008" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="1" left="113.144" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="114.852" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="3" left="118.52" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="4" left="121.656" style-class="st10 st11" symbol-id="glyph1-15" text="m" top="292.931" width="5.172"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="161" line-number="31" text="Philosophen">
 		<transkription-position bottom="297.65" height="7.031" id="0" left="129.101" top="290.619" width="33.955" writing-process-id="1">
 			<word-part bottom="296.65" height="4.984" id="0" left="129.251" style-class="st10 st11" symbol-id="glyph1-33" text="P" top="291.665" width="3.078"/>
 			<word-part bottom="296.65" height="4.984" id="1" left="132.919" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="291.665" width="3.422"/>
 			<word-part bottom="296.65" height="4.797" id="2" left="136.587" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="4.984" id="3" left="138.295" style-class="st10 st11" symbol-id="glyph1-19" text="l" top="291.665" width="1.469"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="140.003" style-class="st10 st11" symbol-id="glyph1-28" text="o" top="292.978" width="2.828"/>
 			<word-part bottom="296.65" height="3.672" id="5" left="143.398" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="292.978" width="2.062"/>
 			<word-part bottom="296.65" height="3.672" id="6" left="145.89" style-class="st10 st11" symbol-id="glyph1-28" text="o" top="292.978" width="2.828"/>
 			<word-part bottom="296.65" height="5.031" id="7" left="149.285" style-class="st10 st11" symbol-id="glyph1-34" text="p" top="291.619" width="2.987"/>
 			<word-part bottom="296.65" height="4.984" id="8" left="152.68" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="291.665" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="9" left="156.348" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="10" left="159.484" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="162" line-number="31" text="seine">
 		<transkription-position bottom="297.65" height="6.797" id="0" left="165.584" top="290.853" width="13.898" writing-process-id="1">
 			<word-part bottom="296.65" height="3.672" id="0" left="165.734" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="292.978" width="2.062"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="168.226" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="2" left="171.362" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="3.719" id="3" left="173.07" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="176.738" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="163" line-number="31" text="eine">
 		<transkription-position bottom="297.65" height="6.797" id="0" left="181.845" top="290.853" width="11.406" writing-process-id="1">
 			<word-part bottom="296.65" height="3.672" id="0" left="181.995" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="1" left="185.131" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="186.839" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="3" left="190.507" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="164" line-number="31" text="feinere">
 		<transkription-position bottom="297.649" height="6.984" id="0" left="195.614" top="290.665" width="18.742" writing-process-id="1">
 			<word-part bottom="296.65" height="4.984" id="0" left="195.764" style-class="st12 st10 st11" symbol-id="glyph1-26" text="f" top="291.665" width="1.938"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="197.605" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="2" left="200.741" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="3.719" id="3" left="202.449" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="206.117" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="5" left="209.253" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<word-part bottom="296.65" height="3.672" id="6" left="211.612" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="165" line-number="31" text="Form">
 		<transkription-position bottom="297.649" height="6.984" id="0" left="216.718" top="290.665" width="14.628" writing-process-id="1">
 			<word-part bottom="296.65" height="4.984" id="0" left="216.868" style-class="st12 st10 st11" symbol-id="glyph1-18" text="F" top="291.665" width="2.984"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="220.27" style-class="st12 st10 st11" symbol-id="glyph1-28" text="o" top="292.978" width="2.828"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="223.665" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<word-part bottom="296.65" height="3.719" id="3" left="226.024" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="292.931" width="5.172"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="166" line-number="31" text="der">
 		<transkription-position bottom="297.65" height="7.047" id="0" left="233.468" top="290.603" width="9.058" writing-process-id="1">
 			<word-part bottom="296.65" height="5.047" id="0" left="233.618" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="291.603" width="2.984"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="237.146" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="240.282" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="167" line-number="31" text="Verdorbenheit,">
 		<transkription-position bottom="297.65" height="7.047" id="0" left="244.612" top="290.603" width="40.549" writing-process-id="1">
 			<word-part bottom="296.65" height="5.031" id="0" left="244.762" style-class="st12 st10 st11" symbol-id="glyph1-30" text="V" top="291.619" width="4.469"/>
 			<word-part bottom="296.65" height="3.672" id="1" left="248.423" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="251.559" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<word-part bottom="296.65" height="5.047" id="3" left="253.918" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="291.603" width="2.984"/>
 			<word-part bottom="296.65" height="3.672" id="4" left="257.446" style-class="st12 st10 st11" symbol-id="glyph1-28" text="o" top="292.978" width="2.828"/>
 			<word-part bottom="296.65" height="3.719" id="5" left="260.841" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<word-part bottom="296.65" height="5.047" id="6" left="263.2" style-class="st12 st10 st11" symbol-id="glyph1-39" text="b" top="291.603" width="2.984"/>
 			<word-part bottom="296.65" height="3.672" id="7" left="266.595" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="3.719" id="8" left="269.731" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="4.984" id="9" left="273.399" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="291.665" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="10" left="277.067" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="11" left="280.203" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="4.5" id="12" left="281.911" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="292.15" width="1.953"/>
 			<word-part bottom="296.65" height="2.266" id="13" left="284.011" style-class="st12 st10 st11" symbol-id="glyph1-31" text="," top="294.384" width="1.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="168" line-number="31" text="eine">
 		<transkription-position bottom="297.65" height="6.797" id="0" left="287.83" top="290.853" width="11.406" writing-process-id="1">
 			<word-part bottom="296.65" height="3.672" id="0" left="287.98" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="1" left="291.116" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="3.719" id="2" left="292.824" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="3" left="296.492" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<debug id="0" message="check for line breaks, diffx: 290.469, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="169" line-number="31" text="Krankheit">
 		<transkription-position bottom="297.649" height="6.984" id="0" left="302.061" top="290.665" width="27.376" writing-process-id="1">
 			<word-part bottom="296.65" height="4.984" id="0" left="302.211" style-class="st12 st10 st11" symbol-id="glyph1-40" text="K" top="291.665" width="3.797"/>
 			<word-part bottom="296.65" height="3.719" id="1" left="306.39" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="292.931" width="2.094"/>
 			<word-part bottom="296.65" height="3.672" id="2" left="308.749" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="292.978" width="2.672"/>
 			<word-part bottom="296.65" height="3.719" id="3" left="311.759" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="292.931" width="3.422"/>
 			<word-part bottom="296.65" height="4.984" id="4" left="315.427" style-class="st12 st10 st11" symbol-id="glyph1-29" text="k" top="291.665" width="3.344"/>
 			<word-part bottom="296.65" height="4.984" id="5" left="318.822" style-class="st12 st10 st11" symbol-id="glyph1-12" text="h" top="291.665" width="3.422"/>
 			<word-part bottom="296.65" height="3.672" id="6" left="322.49" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="292.978" width="2.594"/>
 			<word-part bottom="296.65" height="4.797" id="7" left="325.626" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="291.853" width="1.469"/>
 			<word-part bottom="296.65" height="4.5" id="8" left="327.334" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="292.15" width="1.953"/>
 			<debug id="0" message="check for line breaks, diffx: 290.469, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="170" line-number="32" text="Systematiker:">
 		<transkription-position bottom="308.04" height="11.11" id="0" left="36.7" top="296.93" width="51.873" writing-process-id="0">
 			<word-part bottom="306.4" height="7.359" id="0" left="36.85" style-class="st10 st13" symbol-id="glyph2-43" text="S" top="299.04" width="3.984"/>
 			<word-part bottom="306.4" height="7.094" id="1" left="41.52" style-class="st10 st13" symbol-id="glyph2-44" text="y" top="299.306" width="4.812"/>
 			<word-part bottom="306.4" height="5.234" id="2" left="45.99" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="301.165" width="2.938"/>
 			<word-part bottom="306.4" height="6.422" id="3" left="49.54" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="299.978" width="2.781"/>
 			<word-part bottom="306.4" height="5.234" id="4" left="52.53" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="5.312" id="5" left="57.0" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="301.087" width="7.375"/>
 			<word-part bottom="306.4" height="5.234" id="6" left="64.81" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="301.165" width="3.812"/>
 			<word-part bottom="306.4" height="6.422" id="7" left="69.1" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="299.978" width="2.781"/>
 			<word-part bottom="306.4" height="6.844" id="8" left="72.09" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="299.556" width="2.094"/>
 			<word-part bottom="306.4" height="7.125" id="9" left="74.52" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="299.275" width="4.781"/>
 			<word-part bottom="306.4" height="5.234" id="10" left="79.36" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="5.312" id="11" left="83.83" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="301.087" width="2.984"/>
 			<word-part bottom="306.4" height="4.75" id="12" left="87.189" style-class="st10 st13" symbol-id="glyph2-23" text=":" top="301.65" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="171" line-number="32" text="eine">
 		<transkription-position bottom="308.556" height="11.11" id="0" left="92.689" top="297.446" width="16.133" writing-process-id="0">
 			<word-part bottom="306.4" height="5.234" id="0" left="92.839" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="6.844" id="1" left="97.309" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="299.556" width="2.094"/>
 			<word-part bottom="306.4" height="5.312" id="2" left="99.739" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="301.087" width="4.891"/>
 			<word-part bottom="306.4" height="5.234" id="3" left="104.969" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="172" line-number="32" text="feinere">
 		<transkription-position bottom="308.275" height="11.11" id="0" left="112.508" top="297.165" width="18.753" writing-process-id="0">
 			<word-part bottom="306.4" height="7.125" id="0" left="112.658" style-class="st10 st13" symbol-id="glyph2-33" text="f" top="299.275" width="2.766"/>
 			<word-part bottom="306.4" height="5.234" id="1" left="115.278" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="6.844" id="2" left="119.748" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="299.556" width="2.094"/>
 			<word-part bottom="306.4" height="5.312" id="3" left="122.178" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="301.087" width="4.891"/>
 			<word-part bottom="306.4" height="5.234" id="4" left="127.408" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 		<transkription-position bottom="308.381" height="7.857" id="1" left="131.727" top="300.524" width="5.253" writing-process-id="1">
 			<word-part bottom="306.4" height="3.719" id="0" left="131.877" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="302.681" width="2.094"/>
 			<word-part bottom="306.4" height="3.672" id="1" left="134.236" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="302.728" width="2.594"/>
 			<debug id="0" message="styles differ"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="173" line-number="32" text="Form">
 		<transkription-position bottom="308.275" height="11.11" id="0" left="139.343" top="297.165" width="20.725" writing-process-id="0">
 			<word-part bottom="306.4" height="7.125" id="0" left="139.493" style-class="st10 st13" symbol-id="glyph2-46" text="F" top="299.275" width="4.266"/>
 			<word-part bottom="306.4" height="5.234" id="1" left="144.343" style-class="st10 st13" symbol-id="glyph2-36" text="o" top="301.165" width="4.062"/>
 			<word-part bottom="306.4" height="5.312" id="2" left="149.183" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="301.087" width="2.984"/>
 			<word-part bottom="306.4" height="5.312" id="3" left="152.543" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="301.087" width="7.375"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="174" line-number="32" text="der">
 		<transkription-position bottom="308.197" height="11.11" id="0" left="163.223" top="297.087" width="12.784" writing-process-id="0">
 			<word-part bottom="306.4" height="7.203" id="0" left="163.373" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="299.197" width="4.281"/>
 			<word-part bottom="306.4" height="5.234" id="1" left="168.403" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="5.312" id="2" left="172.873" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="301.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="175" line-number="32" text="Unlauterkeit,">
 		<transkription-position bottom="308.15" height="11.11" id="0" left="179.103" top="297.04" width="51.166" writing-process-id="0">
 			<word-part bottom="306.4" height="7.25" id="0" left="179.253" style-class="st10 st13" symbol-id="glyph2-47" text="U" top="299.15" width="6.234"/>
 			<word-part bottom="306.4" height="5.312" id="1" left="185.953" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="301.087" width="4.891"/>
 			<word-part bottom="306.4" height="7.125" id="2" left="191.183" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="299.275" width="2.094"/>
 			<word-part bottom="306.4" height="5.234" id="3" left="193.613" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="301.165" width="3.812"/>
 			<word-part bottom="306.4" height="5.234" id="4" left="197.903" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="301.165" width="4.859"/>
 			<word-part bottom="306.4" height="6.422" id="5" left="203.133" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="299.978" width="2.781"/>
 			<word-part bottom="306.4" height="5.234" id="6" left="206.123" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="5.312" id="7" left="210.593" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="301.087" width="2.984"/>
 			<word-part bottom="306.4" height="7.125" id="8" left="213.953" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="299.275" width="4.781"/>
 			<word-part bottom="306.4" height="5.234" id="9" left="218.793" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="301.165" width="3.703"/>
 			<word-part bottom="306.4" height="6.844" id="10" left="223.263" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="299.556" width="2.094"/>
 			<word-part bottom="306.4" height="6.422" id="11" left="225.693" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="299.978" width="2.781"/>
 			<word-part bottom="306.4" height="3.234" id="12" left="228.681" style-class="st10 st13" symbol-id="glyph2-22" text="," top="303.165" width="1.438"/>
 			<debug id="0" message="check for line breaks, diffx: 206.005, diffy: 12.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="176" line-number="33" text="aber,">
 		<transkription-position bottom="321.65" height="7.047" id="0" left="117.97" top="314.603" width="12.423" writing-process-id="1">
 			<word-part bottom="320.65" height="3.672" id="0" left="118.12" style-class="st10 st11" symbol-id="glyph1-24" text="a" top="316.978" width="2.672"/>
 			<word-part bottom="320.65" height="5.047" id="1" left="121.13" style-class="st10 st11" symbol-id="glyph1-39" text="b" top="315.603" width="2.984"/>
 			<word-part bottom="320.65" height="3.672" id="2" left="124.525" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="316.978" width="2.594"/>
 			<word-part bottom="320.65" height="3.719" id="3" left="127.661" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="316.931" width="2.094"/>
 			<word-part bottom="320.65" height="2.266" id="4" left="129.243" style-class="st10 st11" symbol-id="glyph1-31" text="," top="318.384" width="1.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="177" line-number="33" text="unmoralisch">
 		<transkription-position bottom="321.649" height="6.984" id="0" left="133.062" top="314.665" width="34.214" writing-process-id="1">
 			<word-part bottom="320.65" height="3.672" id="0" left="133.212" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="316.978" width="3.391"/>
 			<word-part bottom="320.65" height="3.719" id="1" left="136.88" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="316.931" width="3.422"/>
 			<word-part bottom="320.65" height="3.719" id="2" left="140.548" style-class="st10 st11" symbol-id="glyph1-15" text="m" top="316.931" width="5.172"/>
 			<word-part bottom="320.65" height="3.672" id="3" left="146.022" style-class="st10 st11" symbol-id="glyph1-28" text="o" top="316.978" width="2.828"/>
 			<word-part bottom="320.65" height="3.719" id="4" left="149.417" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="316.931" width="2.094"/>
 			<word-part bottom="320.65" height="3.672" id="5" left="151.776" style-class="st10 st11" symbol-id="glyph1-24" text="a" top="316.978" width="2.672"/>
 			<word-part bottom="320.65" height="4.984" id="6" left="154.786" style-class="st10 st11" symbol-id="glyph1-19" text="l" top="315.665" width="1.469"/>
 			<word-part bottom="320.65" height="4.797" id="7" left="156.494" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="315.853" width="1.469"/>
 			<word-part bottom="320.65" height="3.672" id="8" left="158.202" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="316.978" width="2.062"/>
 			<word-part bottom="320.65" height="3.672" id="9" left="160.694" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="316.978" width="2.469"/>
 			<word-part bottom="320.65" height="4.984" id="10" left="163.704" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="315.665" width="3.422"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="178" line-number="33" text="ausgedrückt">
 		<transkription-position bottom="321.65" height="7.094" id="0" left="169.343" top="314.556" width="33.655" writing-process-id="1">
 			<word-part bottom="320.65" height="3.672" id="0" left="169.493" style-class="st10 st11" symbol-id="glyph1-24" text="a" top="316.978" width="2.672"/>
 			<word-part bottom="320.65" height="3.672" id="1" left="172.503" style-class="st10 st11" symbol-id="glyph1-2" text="u" top="316.978" width="3.391"/>
 			<word-part bottom="320.65" height="3.672" id="2" left="176.171" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="316.978" width="2.062"/>
 			<word-part bottom="320.65" height="5.094" id="3" left="178.663" style-class="st10 st11" symbol-id="glyph1-13" text="g" top="315.556" width="2.938"/>
 			<word-part bottom="320.65" height="3.672" id="4" left="181.799" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="316.978" width="2.594"/>
 			<word-part bottom="320.65" height="5.047" id="5" left="184.935" style-class="st10 st11" symbol-id="glyph1-11" text="d" top="315.603" width="2.984"/>
 			<word-part bottom="320.65" height="3.719" id="6" left="188.463" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="316.931" width="2.094"/>
 			<word-part bottom="320.65" height="4.812" id="7" left="190.822" style-class="st10 st11" symbol-id="glyph1-27" text="ü" top="315.837" width="3.391"/>
 			<word-part bottom="320.65" height="3.672" id="8" left="194.49" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="316.978" width="2.469"/>
 			<word-part bottom="320.65" height="4.984" id="9" left="197.5" style-class="st10 st11" symbol-id="glyph1-29" text="k" top="315.665" width="3.344"/>
 			<word-part bottom="320.65" height="4.5" id="10" left="200.895" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="316.15" width="1.953"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="179" line-number="33" text="en">
 		<transkription-position bottom="321.649" height="6.984" id="0" left="243.143" top="314.665" width="18.002" writing-process-id="1">
 			<word-part bottom="320.65" height="3.672" id="0" left="243.293" style-class="st10 st11" symbol-id="glyph1-17" text="s" top="316.978" width="2.062"/>
 			<word-part bottom="320.65" height="4.5" id="1" left="245.785" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="316.15" width="1.953"/>
 			<word-part bottom="320.65" height="3.672" id="2" left="247.885" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="316.978" width="2.594"/>
 			<word-part bottom="320.65" height="4.984" id="3" left="251.021" style-class="st10 st11" symbol-id="glyph1-19" text="l" top="315.665" width="1.469"/>
 			<word-part bottom="320.65" height="4.984" id="4" left="252.729" style-class="st10 st11" symbol-id="glyph1-19" text="l" top="315.665" width="1.469"/>
 			<word-part bottom="320.65" height="3.672" id="5" left="254.437" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="316.978" width="2.594"/>
 			<word-part bottom="320.65" height="3.719" id="6" left="257.573" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="316.931" width="3.422"/>
 			<debug id="0" message="check for line breaks, diffx: 243.371, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="180" line-number="34" text="un">
 		<transkription-position bottom="332.381" height="7.857" id="0" left="20.063" top="324.524" width="7.39" writing-process-id="1">
 			<word-part bottom="330.4" height="3.672" id="0" left="20.213" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="326.728" width="3.391"/>
 			<word-part bottom="330.4" height="3.719" id="1" left="23.881" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="326.681" width="3.422"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="181" line-number="34" text="moralisch">
 		<transkription-position bottom="332.275" height="11.11" id="0" left="28.196" top="321.165" width="38.191" writing-process-id="0">
 			<word-part bottom="330.4" height="5.312" id="0" left="28.346" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="325.087" width="7.375"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="36.156" style-class="st10 st13" symbol-id="glyph2-36" text="o" top="325.165" width="4.062"/>
 			<word-part bottom="330.4" height="5.312" id="2" left="40.996" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="325.087" width="2.984"/>
 			<word-part bottom="330.4" height="5.234" id="3" left="44.356" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="325.165" width="3.812"/>
 			<word-part bottom="330.4" height="7.125" id="4" left="48.646" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="323.275" width="2.094"/>
 			<word-part bottom="330.4" height="6.844" id="5" left="51.076" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="323.556" width="2.094"/>
 			<word-part bottom="330.4" height="5.234" id="6" left="53.506" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="325.165" width="2.938"/>
 			<word-part bottom="330.4" height="5.234" id="7" left="57.056" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="325.165" width="3.531"/>
 			<word-part bottom="330.4" height="7.125" id="8" left="61.346" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="323.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="182" line-number="34" text="ausgedrückt;">
 		<transkription-position bottom="332.119" height="11.11" id="0" left="69.446" top="321.009" width="49.488" writing-process-id="0">
 			<word-part bottom="330.4" height="5.234" id="0" left="69.596" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="325.165" width="3.812"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="73.886" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="325.165" width="4.859"/>
 			<word-part bottom="330.4" height="5.234" id="2" left="79.116" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="325.165" width="2.938"/>
 			<word-part bottom="330.4" height="7.281" id="3" left="82.666" style-class="st10 st13" symbol-id="glyph2-6" text="g" top="323.119" width="4.203"/>
 			<word-part bottom="330.4" height="5.234" id="4" left="87.136" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="325.165" width="3.703"/>
 			<word-part bottom="330.4" height="7.203" id="5" left="91.606" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="323.197" width="4.281"/>
 			<word-part bottom="330.4" height="5.312" id="6" left="96.636" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="325.087" width="2.984"/>
 			<word-part bottom="330.4" height="6.859" id="7" left="99.996" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="323.54" width="4.859"/>
 			<word-part bottom="330.4" height="5.234" id="8" left="105.226" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="325.165" width="3.531"/>
 			<word-part bottom="330.4" height="7.125" id="9" left="109.516" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="323.275" width="4.781"/>
 			<word-part bottom="330.4" height="6.422" id="10" left="114.356" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="323.978" width="2.781"/>
 			<word-part bottom="330.4" height="6.656" id="11" left="117.346" style-class="st10 st13" symbol-id="glyph2-48" text=";" top="323.744" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="183" line-number="34" text="sein">
 		<transkription-position bottom="332.556" height="11.11" id="0" left="123.044" top="321.446" width="15.641" writing-process-id="0">
 			<word-part bottom="330.4" height="5.234" id="0" left="123.194" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="325.165" width="2.938"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="126.744" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="325.165" width="3.703"/>
 			<word-part bottom="330.4" height="6.844" id="2" left="131.214" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="323.556" width="2.094"/>
 			<word-part bottom="330.4" height="5.312" id="3" left="133.644" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="325.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="184" line-number="34" text="Wille,">
 		<transkription-position bottom="332.212" height="11.11" id="0" left="141.744" top="321.102" width="22.418" writing-process-id="0">
 			<word-part bottom="330.4" height="7.188" id="0" left="141.894" style-class="st10 st13" symbol-id="glyph2-39" text="W" top="323.212" width="9.094"/>
 			<word-part bottom="330.4" height="6.844" id="1" left="150.814" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="323.556" width="2.094"/>
 			<word-part bottom="330.4" height="7.125" id="2" left="153.244" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="323.275" width="2.094"/>
 			<word-part bottom="330.4" height="7.125" id="3" left="155.674" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="323.275" width="2.094"/>
 			<word-part bottom="330.4" height="5.234" id="4" left="158.104" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="325.165" width="3.703"/>
 			<word-part bottom="330.4" height="3.234" id="5" left="162.574" style-class="st10 st13" symbol-id="glyph2-22" text="," top="327.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="185" line-number="34" text="sich">
 		<transkription-position bottom="332.275" height="11.11" id="0" left="168.074" top="321.165" width="15.461" writing-process-id="0">
 			<word-part bottom="330.4" height="5.234" id="0" left="168.224" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="325.165" width="2.938"/>
 			<word-part bottom="330.4" height="6.844" id="1" left="171.774" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="323.556" width="2.094"/>
 			<word-part bottom="330.4" height="5.234" id="2" left="174.204" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="325.165" width="3.531"/>
 			<word-part bottom="330.4" height="7.125" id="3" left="178.494" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="323.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="186" line-number="34" text="dümmer">
 		<transkription-position bottom="332.197" height="11.11" id="0" left="186.594" top="321.087" width="33.634" writing-process-id="0">
 			<word-part bottom="330.4" height="7.203" id="0" left="186.744" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="323.197" width="4.281"/>
 			<word-part bottom="330.4" height="6.859" id="1" left="191.774" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="323.54" width="4.859"/>
 			<word-part bottom="330.4" height="5.312" id="2" left="197.004" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="325.087" width="7.375"/>
 			<word-part bottom="330.4" height="5.312" id="3" left="204.814" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="325.087" width="7.375"/>
 			<word-part bottom="330.4" height="5.234" id="4" left="212.624" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="325.165" width="3.703"/>
 			<word-part bottom="330.4" height="5.312" id="5" left="217.094" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="325.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="187" line-number="34" text="zu">
 		<transkription-position bottom="334.165" height="11.11" id="0" left="223.324" top="323.055" width="9.629" writing-process-id="0">
 			<word-part bottom="330.4" height="5.062" id="0" left="223.474" style-class="st10 st13" symbol-id="glyph2-20" text="z" top="325.337" width="4.125"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="227.944" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="325.165" width="4.859"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="188" line-number="34" text="machen">
 		<transkription-position bottom="332.275" height="11.11" id="0" left="236.044" top="321.165" width="31.281" writing-process-id="0">
 			<word-part bottom="330.4" height="5.312" id="0" left="236.194" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="325.087" width="7.375"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="244.004" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="325.165" width="3.812"/>
 			<word-part bottom="330.4" height="5.234" id="2" left="248.294" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="325.165" width="3.531"/>
 			<word-part bottom="330.4" height="7.125" id="3" left="252.584" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="323.275" width="4.891"/>
 			<word-part bottom="330.4" height="5.234" id="4" left="257.814" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="325.165" width="3.703"/>
 			<word-part bottom="330.4" height="5.312" id="5" left="262.284" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="325.087" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="189" line-number="34" text="als">
 		<transkription-position bottom="332.275" height="11.11" id="0" left="270.383" top="321.165" width="9.958" writing-process-id="0">
 			<word-part bottom="330.4" height="5.234" id="0" left="270.533" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="325.165" width="3.812"/>
 			<word-part bottom="330.4" height="7.125" id="1" left="274.823" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="323.275" width="2.094"/>
 			<word-part bottom="330.4" height="5.234" id="2" left="277.253" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="325.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="190" line-number="34" text="man">
 		<transkription-position bottom="334.087" height="11.11" id="0" left="283.673" top="322.977" width="17.291" writing-process-id="0">
 			<word-part bottom="330.4" height="5.312" id="0" left="283.823" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="325.087" width="7.375"/>
 			<word-part bottom="330.4" height="5.234" id="1" left="291.633" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="325.165" width="3.812"/>
 			<word-part bottom="330.4" height="5.312" id="2" left="295.923" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="325.087" width="4.891"/>
 			<debug id="0" message="check for line breaks, diffx: 273.227, diffy: 6.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="191" line-number="35" text="u.">
 		<transkription-position bottom="339.4" height="5.672" id="0" left="290.789" top="333.728" width="4.843" writing-process-id="1">
 			<word-part bottom="338.4" height="3.672" id="0" left="290.939" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="334.728" width="3.391"/>
 			<word-part bottom="338.4" height="0.859" id="1" left="294.607" style-class="st12 st10 st11" symbol-id="glyph1-8" text="." top="337.54" width="0.875"/>
 			<debug id="0" message="check for line breaks, diffx: 271.931, diffy: 4.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="192" line-number="35" text="nämlich:">
 		<transkription-position bottom="345.649" height="6.984" id="0" left="224.018" top="338.665" width="23.42" writing-process-id="1">
 			<word-part bottom="344.65" height="3.719" id="0" left="224.168" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="340.931" width="3.422"/>
 			<word-part bottom="344.65" height="4.812" id="1" left="227.836" style-class="st10 st11" symbol-id="glyph1-21" text="ä" top="339.837" width="2.672"/>
 			<word-part bottom="344.65" height="3.719" id="2" left="230.846" style-class="st10 st11" symbol-id="glyph1-15" text="m" top="340.931" width="5.172"/>
 			<word-part bottom="344.65" height="4.984" id="3" left="236.32" style-class="st10 st11" symbol-id="glyph1-19" text="l" top="339.665" width="1.469"/>
 			<word-part bottom="344.65" height="4.797" id="4" left="238.028" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="339.853" width="1.469"/>
 			<word-part bottom="344.65" height="3.672" id="5" left="239.736" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="340.978" width="2.469"/>
 			<word-part bottom="344.65" height="4.984" id="6" left="242.746" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="339.665" width="3.422"/>
 			<word-part bottom="344.65" height="3.312" id="7" left="246.413" style-class="st10 st11" symbol-id="glyph1-20" text=":" top="341.337" width="0.875"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="193" line-number="35" text="einfacher,">
 		<transkription-position bottom="345.649" height="6.984" id="0" left="265.079" top="338.665" width="26.059" writing-process-id="1">
 			<word-part bottom="344.65" height="3.672" id="0" left="265.229" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="4.797" id="1" left="268.365" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="339.853" width="1.469"/>
 			<word-part bottom="344.65" height="3.719" id="2" left="270.073" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="340.931" width="3.422"/>
 			<word-part bottom="344.65" height="4.984" id="3" left="273.741" style-class="st10 st11" symbol-id="glyph1-26" text="f" top="339.665" width="1.938"/>
 			<word-part bottom="344.65" height="3.672" id="4" left="275.582" style-class="st10 st11" symbol-id="glyph1-24" text="a" top="340.978" width="2.672"/>
 			<word-part bottom="344.65" height="3.672" id="5" left="278.592" style-class="st10 st11" symbol-id="glyph1-23" text="c" top="340.978" width="2.469"/>
 			<word-part bottom="344.65" height="4.984" id="6" left="281.602" style-class="st10 st11" symbol-id="glyph1-12" text="h" top="339.665" width="3.422"/>
 			<word-part bottom="344.65" height="3.672" id="7" left="285.27" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="3.719" id="8" left="288.406" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="340.931" width="2.094"/>
 			<word-part bottom="344.65" height="2.266" id="9" left="289.988" style-class="st10 st11" symbol-id="glyph1-31" text="," top="342.384" width="1.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="194" line-number="35" text="gebietender">
 		<transkription-position bottom="345.65" height="7.094" id="0" left="293.807" top="338.556" width="32.473" writing-process-id="1">
 			<word-part bottom="344.65" height="5.094" id="0" left="293.957" style-class="st10 st11" symbol-id="glyph1-13" text="g" top="339.556" width="2.938"/>
 			<word-part bottom="344.65" height="3.672" id="1" left="297.093" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="5.047" id="2" left="300.229" style-class="st10 st11" symbol-id="glyph1-39" text="b" top="339.603" width="2.984"/>
 			<word-part bottom="344.65" height="4.797" id="3" left="303.624" style-class="st10 st11" symbol-id="glyph1-10" text="i" top="339.853" width="1.469"/>
 			<word-part bottom="344.65" height="3.672" id="4" left="305.332" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="4.5" id="5" left="308.468" style-class="st10 st11" symbol-id="glyph1-4" text="t" top="340.15" width="1.953"/>
 			<word-part bottom="344.65" height="3.672" id="6" left="310.568" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="3.719" id="7" left="313.704" style-class="st10 st11" symbol-id="glyph1-3" text="n" top="340.931" width="3.422"/>
 			<word-part bottom="344.65" height="5.047" id="8" left="317.372" style-class="st10 st11" symbol-id="glyph1-11" text="d" top="339.603" width="2.984"/>
 			<word-part bottom="344.65" height="3.672" id="9" left="320.9" style-class="st10 st11" symbol-id="glyph1-5" text="e" top="340.978" width="2.594"/>
 			<word-part bottom="344.65" height="3.719" id="10" left="324.036" style-class="st10 st11" symbol-id="glyph1-6" text="r" top="340.931" width="2.094"/>
 			<debug id="0" message="check for line breaks, diffx: 295.653, diffy: 9.75, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="195" line-number="36" text="ist,">
 		<transkription-position bottom="356.556" height="11.11" id="0" left="28.196" top="345.446" width="10.708" writing-process-id="0">
 			<word-part bottom="354.4" height="6.844" id="0" left="28.346" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="347.556" width="2.094"/>
 			<word-part bottom="354.4" height="5.234" id="1" left="30.776" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<word-part bottom="354.4" height="6.422" id="2" left="34.326" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="347.978" width="2.781"/>
 			<word-part bottom="354.4" height="3.234" id="3" left="37.316" style-class="st10 st13" symbol-id="glyph2-22" text="," top="351.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="196" line-number="36" text="unmoralisch">
 		<transkription-position bottom="356.275" height="11.11" id="0" left="42.816" top="345.165" width="48.651" writing-process-id="0">
 			<word-part bottom="354.4" height="5.234" id="0" left="42.966" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="349.165" width="4.859"/>
 			<word-part bottom="354.4" height="5.312" id="1" left="48.196" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="349.087" width="4.891"/>
 			<word-part bottom="354.4" height="5.312" id="2" left="53.426" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="349.087" width="7.375"/>
 			<word-part bottom="354.4" height="5.234" id="3" left="61.236" style-class="st10 st13" symbol-id="glyph2-36" text="o" top="349.165" width="4.062"/>
 			<word-part bottom="354.4" height="5.312" id="4" left="66.076" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<word-part bottom="354.4" height="5.234" id="5" left="69.436" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="349.165" width="3.812"/>
 			<word-part bottom="354.4" height="7.125" id="6" left="73.726" style-class="st10 st13" symbol-id="glyph2-25" text="l" top="347.275" width="2.094"/>
 			<word-part bottom="354.4" height="6.844" id="7" left="76.156" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="347.556" width="2.094"/>
 			<word-part bottom="354.4" height="5.234" id="8" left="78.586" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<word-part bottom="354.4" height="5.234" id="9" left="82.136" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="349.165" width="3.531"/>
 			<word-part bottom="354.4" height="7.125" id="10" left="86.426" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="347.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="197" line-number="36" text="ausgedrückt">
 		<transkription-position bottom="356.119" height="11.11" id="0" left="94.526" top="345.009" width="47.841" writing-process-id="0">
 			<word-part bottom="354.4" height="5.234" id="0" left="94.676" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="349.165" width="3.812"/>
 			<word-part bottom="354.4" height="5.234" id="1" left="98.966" style-class="st10 st13" symbol-id="glyph2-10" text="u" top="349.165" width="4.859"/>
 			<word-part bottom="354.4" height="5.234" id="2" left="104.196" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<word-part bottom="354.4" height="7.281" id="3" left="107.746" style-class="st10 st13" symbol-id="glyph2-6" text="g" top="347.119" width="4.203"/>
 			<word-part bottom="354.4" height="5.234" id="4" left="112.216" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<word-part bottom="354.4" height="7.203" id="5" left="116.686" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="347.197" width="4.281"/>
 			<word-part bottom="354.4" height="5.312" id="6" left="121.716" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<word-part bottom="354.4" height="6.859" id="7" left="125.076" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="347.54" width="4.859"/>
 			<word-part bottom="354.4" height="5.234" id="8" left="130.306" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="349.165" width="3.531"/>
 			<word-part bottom="354.4" height="7.125" id="9" left="134.596" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="347.275" width="4.781"/>
 			<word-part bottom="354.4" height="6.422" id="10" left="139.436" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="347.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="198" line-number="38" text="–">
 		<transkription-position bottom="362.962" height="11.11" id="0" left="145.294" top="351.852" width="5.3" writing-process-id="0">
 			<word-part bottom="354.4" height="0.438" id="0" left="145.444" style-class="st10 st13" symbol-id="glyph2-37" text="–" top="353.962" width="5.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="199" line-number="36" text="Dümmer">
 		<transkription-position bottom="356.275" height="11.11" id="0" left="153.344" top="345.165" width="31.743" writing-process-id="0">
 			<word-part bottom="354.4" height="7.125" id="0" left="153.494" style-class="st10 st13" symbol-id="glyph2-15" text="D" top="347.275" width="5.859"/>
 			<word-part bottom="354.4" height="6.859" id="1" left="160.384" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="347.54" width="4.859"/>
 			<word-part bottom="354.4" height="5.312" id="2" left="165.614" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="349.087" width="7.375"/>
 			<word-part bottom="354.4" height="5.312" id="3" left="173.424" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="349.087" width="7.375"/>
 			<word-part bottom="354.4" height="5.234" id="4" left="181.234" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<debug id="0" message="tspan with letterspacing"/>
 		</transkription-position>
 		<transkription-position bottom="358.087" height="11.11" id="1" left="185.554" top="346.977" width="3.284" writing-process-id="0">
 			<word-part bottom="354.4" height="5.312" id="0" left="185.704" style-class="st10 st13 st46" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<debug id="0" message="styles differ"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="200" text=",">
 		<transkription-position bottom="360.165" height="11.11" id="0" left="187.804" top="349.055" width="1.738" writing-process-id="0">
 			<word-part bottom="354.4" height="3.234" id="0" left="187.954" style-class="st10 st13" symbol-id="glyph2-22" text="," top="351.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="201" line-number="36" text="das">
 		<transkription-position bottom="356.197" height="11.11" id="0" left="193.454" top="345.087" width="12.558" writing-process-id="0">
 			<word-part bottom="354.4" height="7.203" id="0" left="193.604" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="347.197" width="4.281"/>
 			<word-part bottom="354.4" height="5.234" id="1" left="198.634" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="349.165" width="3.812"/>
 			<word-part bottom="354.4" height="5.234" id="2" left="202.924" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="202" line-number="36" text="heißt:">
 		<transkription-position bottom="356.087" height="11.11" id="0" left="209.344" top="344.977" width="21.684" writing-process-id="0">
 			<word-part bottom="354.4" height="7.125" id="0" left="209.494" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="347.275" width="4.891"/>
 			<word-part bottom="354.4" height="5.234" id="1" left="214.724" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<word-part bottom="354.4" height="6.844" id="2" left="219.194" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="347.556" width="2.094"/>
 			<word-part bottom="354.4" height="7.312" id="3" left="221.624" style-class="st10 st13" symbol-id="glyph2-29" text="ß" top="347.087" width="4.516"/>
 			<word-part bottom="354.4" height="6.422" id="4" left="226.654" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="347.978" width="2.781"/>
 			<word-part bottom="354.4" height="4.75" id="5" left="229.644" style-class="st10 st13" symbol-id="glyph2-23" text=":" top="349.65" width="1.234"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="203" line-number="36" text="stärker">
 		<transkription-position bottom="356.275" height="11.11" id="0" left="234.844" top="345.165" width="26.784" writing-process-id="0">
 			<word-part bottom="354.4" height="5.234" id="0" left="234.994" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<word-part bottom="354.4" height="6.422" id="1" left="238.544" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="347.978" width="2.781"/>
 			<word-part bottom="354.4" height="6.859" id="2" left="241.534" style-class="st10 st13" symbol-id="glyph2-41" text="ä" top="347.54" width="3.812"/>
 			<word-part bottom="354.4" height="5.312" id="3" left="245.824" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<word-part bottom="354.4" height="7.125" id="4" left="249.184" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="347.275" width="4.781"/>
 			<word-part bottom="354.4" height="5.234" id="5" left="254.024" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<word-part bottom="354.4" height="5.312" id="6" left="258.494" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="204" text=",">
 		<transkription-position bottom="360.165" height="11.11" id="0" left="262.606" top="349.055" width="1.738" writing-process-id="0">
 			<word-part bottom="354.4" height="3.234" id="0" left="262.756" style-class="st10 st13" symbol-id="glyph2-22" text="," top="351.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="205" line-number="36" text="imperatorischer">
 		<transkription-position bottom="356.212" height="11.11" id="0" left="268.256" top="345.102" width="61.644" writing-process-id="0">
 			<word-part bottom="354.4" height="6.844" id="0" left="268.406" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="347.556" width="2.094"/>
 			<word-part bottom="354.4" height="5.312" id="1" left="270.836" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="349.087" width="7.375"/>
 			<word-part bottom="354.4" height="7.188" id="2" left="278.646" style-class="st10 st13" symbol-id="glyph2-35" text="p" top="347.212" width="4.284"/>
 			<word-part bottom="354.4" height="5.234" id="3" left="283.486" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<word-part bottom="354.4" height="5.312" id="4" left="287.956" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<word-part bottom="354.4" height="5.234" id="5" left="291.316" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="349.165" width="3.812"/>
 			<word-part bottom="354.4" height="6.422" id="6" left="295.606" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="347.978" width="2.781"/>
 			<word-part bottom="354.4" height="5.234" id="7" left="298.596" style-class="st10 st13" symbol-id="glyph2-36" text="o" top="349.165" width="4.062"/>
 			<word-part bottom="354.4" height="5.312" id="8" left="303.436" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<word-part bottom="354.4" height="6.844" id="9" left="306.796" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="347.556" width="2.094"/>
 			<word-part bottom="354.4" height="5.234" id="10" left="309.226" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="349.165" width="2.938"/>
 			<word-part bottom="354.4" height="5.234" id="11" left="312.776" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="349.165" width="3.531"/>
 			<word-part bottom="354.4" height="7.125" id="12" left="317.066" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="347.275" width="4.891"/>
 			<word-part bottom="354.4" height="5.234" id="13" left="322.296" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="349.165" width="3.703"/>
 			<word-part bottom="354.4" height="5.312" id="14" left="326.766" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="349.087" width="2.984"/>
 			<debug id="0" message="check for line breaks, diffx: 298.378, diffy: 24.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="206" line-number="38" text="tyrannischer">
 		<transkription-position bottom="380.275" height="11.11" id="0" left="28.196" top="369.165" width="48.824" writing-process-id="0">
 			<word-part bottom="378.4" height="6.422" id="0" left="28.346" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="371.978" width="2.781"/>
 			<word-part bottom="378.4" height="7.094" id="1" left="31.336" style-class="st10 st13" symbol-id="glyph2-44" text="y" top="371.306" width="4.812"/>
 			<word-part bottom="378.4" height="5.312" id="2" left="35.806" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="373.087" width="2.984"/>
 			<word-part bottom="378.4" height="5.234" id="3" left="39.166" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="373.165" width="3.812"/>
 			<word-part bottom="378.4" height="5.312" id="4" left="43.456" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="373.087" width="4.891"/>
 			<word-part bottom="378.4" height="5.312" id="5" left="48.686" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="373.087" width="4.891"/>
 			<word-part bottom="378.4" height="6.844" id="6" left="53.916" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="371.556" width="2.094"/>
 			<word-part bottom="378.4" height="5.234" id="7" left="56.346" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="373.165" width="2.938"/>
 			<word-part bottom="378.4" height="5.234" id="8" left="59.896" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="373.165" width="3.531"/>
 			<word-part bottom="378.4" height="7.125" id="9" left="64.186" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="371.275" width="4.891"/>
 			<word-part bottom="378.4" height="5.234" id="10" left="69.416" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="373.165" width="3.703"/>
 			<word-part bottom="378.4" height="5.312" id="11" left="73.886" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="373.087" width="2.984"/>
 			<debug id="0" message="svg/text/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="207" line-number="39" text="…">
 		<transkription-position bottom="386.15" height="11.11" id="0" left="79.726" top="375.04" width="8.206" writing-process-id="0">
 			<word-part bottom="378.4" height="1.25" id="0" left="79.876" style-class="st10 st13" symbol-id="glyph2-28" text="…" top="377.15" width="7.906"/>
 			<debug id="0" message="check for line breaks, diffx: 10.028, diffy: 0.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="208" line-number="39" text="ungebildeter,">
 		<transkription-position bottom="385.4" height="7.094" id="0" left="272.157" top="378.306" width="35.201" writing-process-id="1">
 			<word-part bottom="384.4" height="3.672" id="0" left="272.307" style-class="st12 st10 st11" symbol-id="glyph1-2" text="u" top="380.728" width="3.391"/>
 			<word-part bottom="384.4" height="3.719" id="1" left="275.975" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="380.681" width="3.422"/>
 			<word-part bottom="384.4" height="5.094" id="2" left="279.643" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="379.306" width="2.938"/>
 			<word-part bottom="384.4" height="3.672" id="3" left="282.779" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="380.728" width="2.594"/>
 			<word-part bottom="384.4" height="5.047" id="4" left="285.915" style-class="st12 st10 st11" symbol-id="glyph1-39" text="b" top="379.353" width="2.984"/>
 			<word-part bottom="384.4" height="4.797" id="5" left="289.31" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="379.603" width="1.469"/>
 			<word-part bottom="384.4" height="4.984" id="6" left="291.018" style-class="st12 st10 st11" symbol-id="glyph1-19" text="l" top="379.415" width="1.469"/>
 			<word-part bottom="384.4" height="5.047" id="7" left="292.726" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="379.353" width="2.984"/>
 			<word-part bottom="384.4" height="3.672" id="8" left="296.254" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="380.728" width="2.594"/>
 			<word-part bottom="384.4" height="4.5" id="9" left="299.39" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="379.9" width="1.953"/>
 			<word-part bottom="384.4" height="3.672" id="10" left="301.49" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="380.728" width="2.594"/>
 			<word-part bottom="384.4" height="3.719" id="11" left="304.626" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="380.681" width="2.094"/>
 			<word-part bottom="384.4" height="2.266" id="12" left="306.208" style-class="st12 st10 st11" symbol-id="glyph1-31" text="," top="382.134" width="1.0"/>
 			<debug id="0" message="check for line breaks, diffx: 277.861, diffy: 18.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="true" id="209" line-number="39" text="gebietender">
 		<transkription-position bottom="403.4" height="7.094" id="0" left="267.864" top="396.306" width="32.473" writing-process-id="1">
 			<word-part bottom="402.4" height="5.094" id="0" left="268.014" style-class="st12 st10 st11" symbol-id="glyph1-13" text="g" top="397.306" width="2.938"/>
 			<word-part bottom="402.4" height="3.672" id="1" left="271.15" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="398.728" width="2.594"/>
 			<word-part bottom="402.4" height="5.047" id="2" left="274.286" style-class="st12 st10 st11" symbol-id="glyph1-39" text="b" top="397.353" width="2.984"/>
 			<word-part bottom="402.4" height="4.797" id="3" left="277.681" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="397.603" width="1.469"/>
 			<word-part bottom="402.4" height="3.672" id="4" left="279.389" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="398.728" width="2.594"/>
 			<word-part bottom="402.4" height="4.5" id="5" left="282.525" style-class="st12 st10 st11" symbol-id="glyph1-4" text="t" top="397.9" width="1.953"/>
 			<word-part bottom="402.4" height="3.672" id="6" left="284.625" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="398.728" width="2.594"/>
 			<word-part bottom="402.4" height="3.719" id="7" left="287.761" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="398.681" width="3.422"/>
 			<word-part bottom="402.4" height="5.047" id="8" left="291.429" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="397.353" width="2.984"/>
 			<word-part bottom="402.4" height="3.672" id="9" left="294.957" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="398.728" width="2.594"/>
 			<word-part bottom="402.4" height="3.719" id="10" left="298.093" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="398.681" width="2.094"/>
 			<debug id="0" message="check for line breaks, diffx: 269.739, diffy: 24.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="210" line-number="39" text="commandirender">
 		<transkription-position bottom="421.4" height="7.047" id="0" left="255.138" top="414.353" width="47.488" writing-process-id="1">
 			<word-part bottom="420.4" height="3.672" id="0" left="255.288" style-class="st12 st10 st11" symbol-id="glyph1-23" text="c" top="416.728" width="2.469"/>
 			<word-part bottom="420.4" height="3.672" id="1" left="258.298" style-class="st12 st10 st11" symbol-id="glyph1-28" text="o" top="416.728" width="2.828"/>
 			<word-part bottom="420.4" height="3.719" id="2" left="261.693" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="416.681" width="5.172"/>
 			<word-part bottom="420.4" height="3.719" id="3" left="267.167" style-class="st12 st10 st11" symbol-id="glyph1-15" text="m" top="416.681" width="5.172"/>
 			<word-part bottom="420.4" height="3.672" id="4" left="272.641" style-class="st12 st10 st11" symbol-id="glyph1-24" text="a" top="416.728" width="2.672"/>
 			<word-part bottom="420.4" height="3.719" id="5" left="275.651" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="416.681" width="3.422"/>
 			<word-part bottom="420.4" height="5.047" id="6" left="279.319" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="415.353" width="2.984"/>
 			<word-part bottom="420.4" height="4.797" id="7" left="282.847" style-class="st12 st10 st11" symbol-id="glyph1-10" text="i" top="415.603" width="1.469"/>
 			<word-part bottom="420.4" height="3.719" id="8" left="284.555" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="416.681" width="2.094"/>
 			<word-part bottom="420.4" height="3.672" id="9" left="286.914" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="416.728" width="2.594"/>
 			<word-part bottom="420.4" height="3.719" id="10" left="290.05" style-class="st12 st10 st11" symbol-id="glyph1-3" text="n" top="416.681" width="3.422"/>
 			<word-part bottom="420.4" height="5.047" id="11" left="293.718" style-class="st12 st10 st11" symbol-id="glyph1-11" text="d" top="415.353" width="2.984"/>
 			<word-part bottom="420.4" height="3.672" id="12" left="297.246" style-class="st12 st10 st11" symbol-id="glyph1-5" text="e" top="416.728" width="2.594"/>
 			<word-part bottom="420.4" height="3.719" id="13" left="300.382" style-class="st12 st10 st11" symbol-id="glyph1-6" text="r" top="416.681" width="2.094"/>
 			<debug id="0" message="check for line breaks, diffx: 274.828, diffy: 30.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="211" line-number="40" text="Ich">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="48.041" top="441.165" width="12.471" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="48.191" style-class="st10 st13" symbol-id="glyph2-42" text="I" top="443.275" width="2.172"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="51.181" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="445.165" width="3.531"/>
 			<word-part bottom="450.4" height="7.125" id="2" left="55.471" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="212" line-number="40" text="achte">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="63.571" top="441.165" width="20.803" writing-process-id="0">
 			<word-part bottom="450.4" height="5.234" id="0" left="63.721" style-class="st10 st13" symbol-id="glyph2-8" text="a" top="445.165" width="3.812"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="68.011" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="445.165" width="3.531"/>
 			<word-part bottom="450.4" height="7.125" id="2" left="72.301" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<word-part bottom="450.4" height="6.422" id="3" left="77.531" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="443.978" width="2.781"/>
 			<word-part bottom="450.4" height="5.234" id="4" left="80.521" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="213" line-number="40" text="die">
 		<transkription-position bottom="452.197" height="11.11" id="0" left="87.861" top="441.087" width="11.463" writing-process-id="0">
 			<word-part bottom="450.4" height="7.203" id="0" left="88.011" style-class="st10 st13" symbol-id="glyph2-1" text="d" top="443.197" width="4.281"/>
 			<word-part bottom="450.4" height="6.844" id="1" left="93.041" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="443.556" width="2.094"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="95.471" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="214" line-number="40" text="Leser">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="102.811" top="441.165" width="20.804" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="102.961" style-class="st10 st13" symbol-id="glyph2-49" text="L" top="443.275" width="4.547"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="107.991" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="112.461" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="445.165" width="2.938"/>
 			<word-part bottom="450.4" height="5.234" id="3" left="116.011" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.312" id="4" left="120.481" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="215" line-number="40" text="nicht">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="126.711" top="441.165" width="20.261" writing-process-id="0">
 			<word-part bottom="450.4" height="5.312" id="0" left="126.861" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="445.087" width="4.891"/>
 			<word-part bottom="450.4" height="6.844" id="1" left="132.091" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="443.556" width="2.094"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="134.521" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="445.165" width="3.531"/>
 			<word-part bottom="450.4" height="7.125" id="3" left="138.811" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<word-part bottom="450.4" height="6.422" id="4" left="144.041" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="443.978" width="2.781"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="216" line-number="40" text="mehr:">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="149.901" top="441.165" width="22.404" writing-process-id="0">
 			<word-part bottom="450.4" height="5.312" id="0" left="150.051" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="445.087" width="7.375"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="157.861" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="7.125" id="2" left="162.331" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<word-part bottom="450.4" height="5.312" id="3" left="167.561" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<word-part bottom="450.4" height="4.75" id="4" left="170.921" style-class="st10 st13" symbol-id="glyph2-23" text=":" top="445.65" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="217" line-number="40" text="wie">
 		<transkription-position bottom="452.556" height="11.11" id="0" left="176.421" top="441.446" width="13.873" writing-process-id="0">
 			<word-part bottom="450.4" height="5.125" id="0" left="176.571" style-class="st10 st13" symbol-id="glyph2-12" text="w" top="445.275" width="7.562"/>
 			<word-part bottom="450.4" height="6.844" id="1" left="184.011" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="443.556" width="2.094"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="186.441" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="218" line-number="40" text="könnte">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="193.781" top="441.165" width="27.133" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="193.931" style-class="st10 st13" symbol-id="glyph2-21" text="k" top="443.275" width="4.781"/>
 			<word-part bottom="450.4" height="6.859" id="1" left="198.771" style-class="st10 st13" symbol-id="glyph2-24" text="ö" top="443.54" width="4.062"/>
 			<word-part bottom="450.4" height="5.312" id="2" left="203.611" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="445.087" width="4.891"/>
 			<word-part bottom="450.4" height="5.312" id="3" left="208.841" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="445.087" width="4.891"/>
 			<word-part bottom="450.4" height="6.422" id="4" left="214.071" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="443.978" width="2.781"/>
 			<word-part bottom="450.4" height="5.234" id="5" left="217.061" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="219" line-number="40" text="ich">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="224.401" top="441.165" width="11.911" writing-process-id="0">
 			<word-part bottom="450.4" height="6.844" id="0" left="224.551" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="443.556" width="2.094"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="226.981" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="445.165" width="3.531"/>
 			<word-part bottom="450.4" height="7.125" id="2" left="231.271" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="220" line-number="40" text="für">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="239.371" top="441.165" width="11.134" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="239.521" style-class="st10 st13" symbol-id="glyph2-33" text="f" top="443.275" width="2.766"/>
 			<word-part bottom="450.4" height="6.859" id="1" left="242.141" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="443.54" width="4.859"/>
 			<word-part bottom="450.4" height="5.312" id="2" left="247.371" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="221" line-number="40" text="Leser">
 		<transkription-position bottom="452.275" height="11.11" id="0" left="253.601" top="441.165" width="20.804" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="253.751" style-class="st10 st13" symbol-id="glyph2-49" text="L" top="443.275" width="4.547"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="258.781" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="263.251" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="445.165" width="2.938"/>
 			<word-part bottom="450.4" height="5.234" id="3" left="266.801" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.312" id="4" left="271.271" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="222" line-number="40" text="schreiben?..">
 		<transkription-position bottom="452.197" height="11.11" id="0" left="277.501" top="441.087" width="47.284" writing-process-id="0">
 			<word-part bottom="450.4" height="5.234" id="0" left="277.651" style-class="st10 st13" symbol-id="glyph2-5" text="s" top="445.165" width="2.938"/>
 			<word-part bottom="450.4" height="5.234" id="1" left="281.201" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="445.165" width="3.531"/>
 			<word-part bottom="450.4" height="7.125" id="2" left="285.491" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="443.275" width="4.891"/>
 			<word-part bottom="450.4" height="5.312" id="3" left="290.721" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<word-part bottom="450.4" height="5.234" id="4" left="294.081" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="6.844" id="5" left="298.551" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="443.556" width="2.094"/>
 			<word-part bottom="450.4" height="7.203" id="6" left="300.981" style-class="st10 st13" symbol-id="glyph2-30" text="b" top="443.197" width="4.281"/>
 			<word-part bottom="450.4" height="5.234" id="7" left="305.821" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.312" id="8" left="310.291" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="445.087" width="4.891"/>
 			<word-part bottom="450.4" height="6.891" id="9" left="315.521" style-class="st10 st13" symbol-id="glyph2-50" text="?" top="443.509" width="2.969"/>
 			<word-part bottom="450.4" height="1.25" id="10" left="320.021" style-class="st10 st13" symbol-id="glyph2-16" text="." top="449.15" width="1.234"/>
 			<word-part bottom="450.4" height="1.25" id="11" left="323.401" style-class="st10 st13" symbol-id="glyph2-16" text="." top="449.15" width="1.234"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="223" line-number="40" text="Aber">
 		<transkription-position bottom="452.197" height="11.11" id="0" left="328.901" top="441.087" width="18.734" writing-process-id="0">
 			<word-part bottom="450.4" height="7.125" id="0" left="329.051" style-class="st10 st13" symbol-id="glyph2-34" text="A" top="443.275" width="6.359"/>
 			<word-part bottom="450.4" height="7.203" id="1" left="335.191" style-class="st10 st13" symbol-id="glyph2-30" text="b" top="443.197" width="4.281"/>
 			<word-part bottom="450.4" height="5.234" id="2" left="340.031" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="445.165" width="3.703"/>
 			<word-part bottom="450.4" height="5.312" id="3" left="344.501" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="445.087" width="2.984"/>
 			<debug id="0" message="check for line breaks, diffx: 321.629, diffy: 24.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="224" line-number="42" text="ich">
 		<transkription-position bottom="476.275" height="11.11" id="0" left="22.527" top="465.165" width="11.911" writing-process-id="0">
 			<word-part bottom="474.4" height="6.844" id="0" left="22.677" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="467.556" width="2.094"/>
 			<word-part bottom="474.4" height="5.234" id="1" left="25.107" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="469.165" width="3.531"/>
 			<word-part bottom="474.4" height="7.125" id="2" left="29.397" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="467.275" width="4.891"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="225" line-number="42" text="notire">
 		<transkription-position bottom="476.556" height="11.11" id="0" left="37.497" top="465.446" width="22.853" writing-process-id="0">
 			<word-part bottom="474.4" height="5.312" id="0" left="37.647" style-class="st10 st13" symbol-id="glyph2-3" text="n" top="469.087" width="4.891"/>
 			<word-part bottom="474.4" height="5.234" id="1" left="42.877" style-class="st10 st13" symbol-id="glyph2-36" text="o" top="469.165" width="4.062"/>
 			<word-part bottom="474.4" height="6.422" id="2" left="47.717" style-class="st10 st13" symbol-id="glyph2-11" text="t" top="467.978" width="2.781"/>
 			<word-part bottom="474.4" height="6.844" id="3" left="50.707" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="467.556" width="2.094"/>
 			<word-part bottom="474.4" height="5.312" id="4" left="53.137" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="469.087" width="2.984"/>
 			<word-part bottom="474.4" height="5.234" id="5" left="56.497" style-class="st10 st13" symbol-id="glyph2-2" text="e" top="469.165" width="3.703"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="226" line-number="42" text="mich,">
 		<transkription-position bottom="476.275" height="11.11" id="0" left="63.837" top="465.165" width="21.498" writing-process-id="0">
 			<word-part bottom="474.4" height="5.312" id="0" left="63.987" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="469.087" width="7.375"/>
 			<word-part bottom="474.4" height="6.844" id="1" left="71.797" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="467.556" width="2.094"/>
 			<word-part bottom="474.4" height="5.234" id="2" left="74.227" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="469.165" width="3.531"/>
 			<word-part bottom="474.4" height="7.125" id="3" left="78.517" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="467.275" width="4.891"/>
 			<word-part bottom="474.4" height="3.234" id="4" left="83.747" style-class="st10 st13" symbol-id="glyph2-22" text="," top="471.165" width="1.438"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="227" line-number="42" text="für">
 		<transkription-position bottom="476.275" height="11.11" id="0" left="89.247" top="465.165" width="11.134" writing-process-id="0">
 			<word-part bottom="474.4" height="7.125" id="0" left="89.397" style-class="st10 st13" symbol-id="glyph2-33" text="f" top="467.275" width="2.766"/>
 			<word-part bottom="474.4" height="6.859" id="1" left="92.017" style-class="st10 st13" symbol-id="glyph2-27" text="ü" top="467.54" width="4.859"/>
 			<word-part bottom="474.4" height="5.312" id="2" left="97.247" style-class="st10 st13" symbol-id="glyph2-7" text="r" top="469.087" width="2.984"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="228" line-number="42" text="mich.">
 		<transkription-position bottom="476.275" height="11.11" id="0" left="103.477" top="465.165" width="21.294" writing-process-id="0">
 			<word-part bottom="474.4" height="5.312" id="0" left="103.627" style-class="st10 st13" symbol-id="glyph2-14" text="m" top="469.087" width="7.375"/>
 			<word-part bottom="474.4" height="6.844" id="1" left="111.437" style-class="st10 st13" symbol-id="glyph2-13" text="i" top="467.556" width="2.094"/>
 			<word-part bottom="474.4" height="5.234" id="2" left="113.867" style-class="st10 st13" symbol-id="glyph2-17" text="c" top="469.165" width="3.531"/>
 			<word-part bottom="474.4" height="7.125" id="3" left="118.157" style-class="st10 st13" symbol-id="glyph2-9" text="h" top="467.275" width="4.891"/>
 			<word-part bottom="474.4" height="1.25" id="4" left="123.387" style-class="st10 st13" symbol-id="glyph2-16" text="." top="473.15" width="1.234"/>
 			<debug id="0" message="check for line breaks, diffx: 116.208, diffy: 104.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="229" line-number="47" text="$">
 		<transkription-position bottom="579.4" height="7.672" id="0" left="6.936" top="571.728" width="5.941" writing-process-id="0">
 			<word-part bottom="578.4" height="5.672" id="0" left="7.086" style-class="st15 st13" symbol-id="glyph3-1" text="$" top="572.728" width="5.641"/>
 			<debug id="0" message="check for line breaks, diffx: 15.59, diffy: 4.0, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="230" text="$">
 		<transkription-position bottom="593.728" height="11.11" id="0" left="34.607" top="582.618" width="5.941" writing-process-id="0">
 			<word-part bottom="590.4" height="5.672" id="0" left="34.757" style-class="st15 st13" symbol-id="glyph3-1" text="$" top="584.728" width="5.641"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="231" text="$">
 		<transkription-position bottom="593.728" height="11.11" id="0" left="163.298" top="582.618" width="5.941" writing-process-id="0">
 			<word-part bottom="590.4" height="5.672" id="0" left="163.448" style-class="st15 st13" symbol-id="glyph3-1" text="$" top="584.728" width="5.641"/>
 			<debug id="0" message="check for line breaks, diffx: 137.291, diffy: 67.779, diff_conversion_matrix: True"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="232" line-number="43" text="Ich">
 		<transkription-position bottom="527.292" height="13.11" id="0" left="26.007" top="514.182" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="10.65" writing-process-id="0">
 			<word-part bottom="522.622" height="7.44" id="0" left="26.157" style-class="st59 st60 st13" symbol-id="glyph12-1" text="I" top="515.182" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="5.858"/>
 			<word-part bottom="533.731" height="11.11" id="1" left="29.507" style-class="st59 st60 st13" text="ch" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="233" line-number="44" text="l">
 		<transkription-position bottom="531.621" height="11.11" id="0" left="42.977" top="520.511" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.3" writing-process-id="0">
 			<word-part bottom="533.731" height="11.11" id="0" left="43.127" style-class="st59 st60 st13" text="l" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="234" line-number="44" text="ese">
 		<transkription-position bottom="531.621" height="11.11" id="0" left="45.777" top="520.511" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="16.78" writing-process-id="0">
 			<word-part bottom="533.731" height="11.11" id="0" left="45.927" style-class="st59 st60 st13" text="e" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<word-part bottom="533.731" height="11.11" id="1" left="51.127" style-class="st59 st60 st13" text="s" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<word-part bottom="533.731" height="11.11" id="2" left="55.407" style-class="st59 st60 st13" text="e" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="235" line-number="44" text="Zara">
 		<transkription-position bottom="531.621" height="11.11" id="0" left="63.667" top="520.511" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="21.619" writing-process-id="0">
 			<word-part bottom="533.731" height="11.11" id="0" left="63.817" style-class="st59 st60 st13" text="Zar" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<word-part bottom="533.731" height="11.11" id="1" left="78.136" style-class="st59 st60 st13" text="a" top="522.621" transform="matrix(0.866 -0.5 0.5 0.866 26.1569 522.6215)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="236" line-number="43" text="-">
 		<transkription-position bottom="495.195" height="3.844" id="0" left="75.243" top="491.351" transform="matrix(0.866 -0.5 0.5 0.866 75.3933 494.195)" width="2.644" writing-process-id="0">
 			<word-part bottom="494.195" height="1.844" id="0" left="75.393" style-class="st59 st61 st13" symbol-id="glyph13-1" text="-" top="492.351" transform="matrix(0.866 -0.5 0.5 0.866 75.3933 494.195)" width="2.344"/>
 			<debug id="0" message="check for line breaks, diffx: 46.601, diffy: 49.999, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="237" line-number="44" text="thu">
 		<transkription-position bottom="542.759" height="11.11" id="0" left="28.642" top="531.649" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="14.75" writing-process-id="0">
 			<word-part bottom="544.194" height="5.725" id="0" left="28.792" style-class="st59 st60 st13" symbol-id="glyph12-11" text="t" top="538.469" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="4.837"/>
 			<word-part bottom="542.609" height="6.982" id="1" left="31.537" style-class="st59 st60 st13" symbol-id="glyph12-3" text="h" top="535.627" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.83"/>
 			<word-part bottom="539.729" height="5.97" id="2" left="36.526" style-class="st59 st60 st13" symbol-id="glyph12-12" text="u" top="533.759" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="6.716"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="238" line-number="44" text="stra:">
 		<transkription-position bottom="553.194" height="11.11" id="0" left="43.152" top="542.084" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="11.57" writing-process-id="0">
 			<word-part bottom="555.304" height="11.11" id="0" left="43.302" style-class="st59 st60 st13" text="s" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<word-part bottom="555.304" height="11.11" id="1" left="47.572" style-class="st59 st60 st13" text="tra:" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="239" line-number="46" text="aber">
 		<transkription-position bottom="553.194" height="11.11" id="0" left="65.351" top="542.084" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="22.91" writing-process-id="0">
 			<word-part bottom="555.304" height="11.11" id="0" left="65.501" style-class="st59 st60 st13" text="ab" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<word-part bottom="555.304" height="11.11" id="1" left="75.911" style-class="st59 st60 st13" text="e" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<word-part bottom="555.304" height="11.11" id="2" left="81.111" style-class="st59 st60 st13" text="r" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="240" line-number="46" text="wie">
 		<transkription-position bottom="553.194" height="11.11" id="0" left="88.091" top="542.084" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="18.08" writing-process-id="0">
 			<word-part bottom="555.304" height="11.11" id="0" left="88.241" style-class="st59 st60 st13" text="wi" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<word-part bottom="555.304" height="11.11" id="1" left="99.021" style-class="st59 st60 st13" text="e" top="544.194" transform="matrix(0.866 -0.5 0.5 0.866 28.7921 544.194)" width="7.0"/>
 			<debug id="0" message="check for line breaks, diffx: 60.229, diffy: 17.32, diff_conversion_matrix: False"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="241" line-number="47" text="k">
 		<transkription-position bottom="573.624" height="13.11" id="0" left="45.072" top="560.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.3" writing-process-id="0">
 			<word-part bottom="572.625" height="11.11" id="0" left="45.222" style-class="st59 st60 st13" text="k" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="242" line-number="47" text="onnte">
 		<transkription-position bottom="573.624" height="13.11" id="0" left="50.832" top="560.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="12.69" writing-process-id="0">
 			<word-part bottom="572.625" height="11.11" id="0" left="50.982" style-class="st59 st60 st13" text="o" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<word-part bottom="572.625" height="11.11" id="1" left="56.372" style-class="st59 st60 st13" text="nnte" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="243" line-number="47" text="ich">
 		<transkription-position bottom="573.624" height="13.11" id="0" left="79.331" top="560.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.3" writing-process-id="0">
 			<word-part bottom="572.625" height="11.11" id="0" left="79.481" style-class="st59 st60 st13" text="ich" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<debug id="0" message="svg/text/tspan/\s"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="244" line-number="47" text="d">
 		<transkription-position bottom="573.624" height="13.11" id="0" left="95.751" top="560.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.3" writing-process-id="0">
 			<word-part bottom="572.625" height="11.11" id="0" left="95.901" style-class="st59 st60 st13" text="d" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="245" line-number="47" text="ergestalt">
 		<transkription-position bottom="573.624" height="13.11" id="0" left="101.331" top="560.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="41.52" writing-process-id="0">
 			<word-part bottom="572.625" height="11.11" id="0" left="101.481" style-class="st59 st60 st13" text="e" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<word-part bottom="572.625" height="11.11" id="1" left="106.681" style-class="st59 st60 st13" text="rge" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<word-part bottom="572.625" height="11.11" id="2" left="120.63" style-class="st59 st60 st13" text="s" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<word-part bottom="572.625" height="11.11" id="3" left="124.901" style-class="st59 st60 st13" text="tal" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<word-part bottom="572.625" height="11.11" id="4" left="135.701" style-class="st59 st60 st13" text="t" top="561.514" transform="matrix(0.866 -0.5 0.5 0.866 38.792 561.5145)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="246" line-number="47" text="m">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="74.372" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.3" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="74.522" style-class="st59 st60 st13" text="m" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="247" line-number="47" text="eine">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="82.912" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="21.059" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="83.062" style-class="st59 st60 st13" text="e" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="1" left="88.262" style-class="st59 st60 st13" text="in" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="2" left="96.821" style-class="st59 st60 st13" text="e" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="248" line-number="47" text="P">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="105.081" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.3" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="105.231" style-class="st59 st60 st13" text="P" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="249" line-number="47" text="erl">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="110.842" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="16.409" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="110.992" style-class="st59 st60 st13" text="e" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="1" left="116.191" style-class="st59 st60 st13" text="r" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="2" left="120.101" style-class="st59 st60 st13" text="l" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="250" line-number="47" text="en">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="122.741" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.3" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="122.891" style-class="st59 st60 st13" text="en" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="251" line-number="47" text="vor">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="136.921" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.3" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="137.071" style-class="st59 st60 st13" text="vor" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="word.split"/>
 		</transkription-position>
 	</word>
 	<word deleted="false" id="252" line-number="47" text="die">
 		<transkription-position bottom="590.946" height="13.11" id="0" left="154.27" top="577.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="15.671" writing-process-id="0">
 			<word-part bottom="589.946" height="11.11" id="0" left="154.42" style-class="st59 st60 st13" text="d" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="1" left="160.0" style-class="st59 st60 st13" text="i" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<word-part bottom="589.946" height="11.11" id="2" left="162.791" style-class="st59 st60 st13" text="e" top="578.836" transform="matrix(0.866 -0.5 0.5 0.866 48.7924 578.8355)" width="7.0"/>
 			<debug id="0" message="end of loop"/>
 		</transkription-position>
 	</word>
 	<word-insertion-mark bottom="114.4" height="5.578" id="0" left="289.796" line-number="10" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-1" top="108.821" width="2.047"/>
 	<word-insertion-mark bottom="162.4" height="5.578" id="1" left="265.195" line-number="16" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-1" top="156.821" width="2.047"/>
 	<word-insertion-mark bottom="258.399" height="5.578" id="2" left="68.785" line-number="30" mark-type="{" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-2" top="252.821" width="2.062"/>
 	<word-insertion-mark bottom="296.649" height="4.453" id="3" left="163.15" line-number="31" mark-type="{" next-word-id="-1" previous-word-id="-1" symbol-id="glyph7-1" top="292.196" width="1.656"/>
 	<word-insertion-mark bottom="296.649" height="4.453" id="4" left="299.627" line-number="31" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph7-2" top="292.196" width="1.641"/>
 	<word-insertion-mark bottom="306.399" height="5.578" id="5" left="109.438" line-number="32" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-1" top="300.821" width="2.047"/>
 	<word-insertion-mark bottom="330.399" height="5.578" id="6" left="119.974" line-number="34" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-1" top="324.821" width="2.047"/>
 	<word-insertion-mark bottom="354.399" height="5.578" id="7" left="231.774" line-number="36" mark-type="A" next-word-id="-1" previous-word-id="-1" symbol-id="glyph4-1" top="348.821" width="2.047"/>
 	<svg file="svgscripts/test_data/pdfsvg/W_II_1_page001_web.svg" height="595.277" width="467.719"/>
 </page>
Index: svgscripts/test_matrix.py
===================================================================
--- svgscripts/test_matrix.py	(revision 39)
+++ svgscripts/test_matrix.py	(revision 40)
@@ -1,145 +1,159 @@
 import unittest
+import lxml.etree as ET
 from os import sep, path
 from os.path import isdir, dirname
 
+
 from datatypes.matrix import Matrix
 from datatypes.transkriptionField import TranskriptionField
 
+class FakeTF:
+    def __init__(self):
+        self.xmin = 297.6379999999997
+        self.xmax = 765.354
+        self.ymin = 157.328
+        self.ymax = 752.6040160033832
+
 class TestMatrix(unittest.TestCase):
     def setUp(self):
         self.x = 219.4058
         self.y = 106.4634
         self.matrix_string = 'matrix(1 0 0 1 {} {})'.format(str(self.x), str(self.y))
         self.test_data_dir = dirname(__file__) + sep + 'test_data'  
         if not isdir(self.test_data_dir):
             self.test_data_dir = dirname(dirname(__file__)) + sep + 'test_data'
         self.test_file = self.test_data_dir + sep + 'test_ai.svg' 
         self.rotation_angle = 20
         self.rotation_matrix_string = 'matrix(0.94 0.342 -0.342 0.94 0 0)'
 
     def test_Matrix(self):
         matrix = Matrix(self.matrix_string)
         self.assertEqual(matrix.getX(), self.x)
         self.assertEqual(matrix.add2X(1), self.x + 1)
         self.assertEqual(matrix.getY(), self.y)
 
     def test_Matrix_rotation(self):
         rotation_string = 'rotate({})'.format(self.rotation_angle)
         rotation_stringC = 'rotate(-{})'.format(self.rotation_angle)
         matrixA = Matrix(rotation_string)
         matrixB = Matrix(self.rotation_matrix_string)
         matrixC = Matrix(rotation_stringC)
         self.assertEqual(matrixA.matrix[Matrix.A], matrixB.matrix[Matrix.A])
         self.assertEqual(matrixA.matrix[Matrix.B], matrixB.matrix[Matrix.B])
         self.assertEqual(matrixA.matrix[Matrix.C], matrixB.matrix[Matrix.C])
         self.assertEqual(matrixA.matrix[Matrix.D], matrixB.matrix[Matrix.D])
         self.assertEqual(matrixA.matrix[Matrix.E], matrixB.matrix[Matrix.E])
         self.assertEqual(matrixA.matrix[Matrix.F], matrixB.matrix[Matrix.F])
         self.assertEqual(matrixA.toString(), self.rotation_matrix_string)
         self.assertEqual(matrixC.toCSSTransformString(), 'rotate(-{}deg)'.format(self.rotation_angle))
 
     def test_get_rotation_direction(self):
         rotation_string = 'rotate(-{})'.format(self.rotation_angle)
         matrixA = Matrix(rotation_string)
         matrixB = Matrix(self.rotation_matrix_string)
         matrixC = Matrix(self.matrix_string)
         self.assertEqual(matrixA.get_rotation_direction(), Matrix.UP)
         self.assertEqual(matrixB.get_rotation_direction(), Matrix.DOWN)
         self.assertEqual(matrixC.get_rotation_direction(), Matrix.STRAIGHT)
 
     def test_isRotationMatrix(self):
         rotation_string = 'rotate({})'.format(self.rotation_angle)
         matrixA = Matrix(rotation_string)
         self.assertEqual(matrixA.isRotationMatrix(), True)
         matrixB = Matrix(self.matrix_string)
         self.assertEqual(matrixB.isRotationMatrix(), False)
     
     def test_toCSSTransformString(self):
         rotation_string = 'rotate({})'.format(self.rotation_angle)
         matrixA = Matrix(rotation_string)
         self.assertEqual(matrixA.toCSSTransformString(), 'rotate({}deg)'.format(self.rotation_angle))
         matrixB = Matrix(self.rotation_matrix_string)
         self.assertEqual(matrixB.toCSSTransformString(), 'rotate({}deg)'.format(self.rotation_angle))
 
     def test_Matrix_Exception(self):
         with self.assertRaises(Exception):
             Matrix('matrix({})'.format(' '.join([ '0.0' for i in range(5)])))
 
     def test_Matrix_TranskriptionField(self):
         tf = TranskriptionField(self.test_file)
         matrix = Matrix(self.matrix_string, transkription_field=tf)
         self.assertEqual(round(matrix.getX(), 3) , 28.706)
         self.assertEqual(round(matrix.getY(), 3) , 31.563)
 
     def test_get_transformed_positions(self):
         # Test relies on the example from "https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/transform"
         x = 10
         y = 10
         width = 30
         height = 20
         matrix = Matrix(transform_matrix_string='matrix(3 1 -1 3 30 40)')
         new_x, new_y, new_width, new_height = matrix.get_transformed_positions(x=x, y=y, width=width, height=height)
         self.assertEqual(new_x, 50)
         self.assertEqual(new_y, 80)
         self.assertEqual(new_width, 90)
         self.assertEqual(new_height, 60)
 
     def test_is_matrix_horizontal(self):
         matrix = Matrix(transform_matrix_string='matrix(3 1 -1 3 30 40)')
         self.assertEqual(matrix.is_matrix_horizontal(), False)
         matrix = Matrix(transform_matrix_string='matrix(1 0 0 1 30 40)')
         self.assertEqual(matrix.is_matrix_horizontal(), True)
 
     def test_is_part_of_transkription_field(self):
         tf = TranskriptionField(self.test_file)
-        matrix_string = 'matrix(1 0 0 1 244.1211 91.7134)'
-        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(matrix_string, tf), True)
-        matrix_string = 'matrix(1 0 0 1 244.1211 51.7134)'
-        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(matrix_string, tf), False)
-        matrix_string = 'matrix(1 0 0 1 44.1211 91.7134)'
-        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(matrix_string, tf), False)
-        matrix_string = 'matrix(1 0 0 1 244.1211 891.7134)'
-        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(matrix_string, tf), False)
-        matrix_string = 'matrix(1 0 0 1 844.1211 91.7134)'
-        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(matrix_string, tf), False)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(1 0 0 1 244.1211 91.7134)'}) 
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, tf), True)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(1 0 0 1 244.1211 51.7134)'}) 
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, tf), False)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(1 0 0 1 44.1211 91.7134)'}) 
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, tf), False)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(1 0 0 1 244.1211 891.7134)'}) 
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, tf), False)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(1 0 0 1 844.1211 91.7134)'}) 
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, tf), False)
+        text_node = ET.Element('text', attrib={'transform': 'matrix(0.866 -0.5 0.5 0.866 356.4303 753.4836)'}) 
+        tspan_node = ET.SubElement(text_node, 'tspan', attrib={'x': '41.82', 'y': '0'})
+        tspan_node.text = 'De'
+        fake_tf = FakeTF()
+        self.assertEqual(Matrix.IS_PART_OF_TRANSKRIPTION_FIELD(text_node, fake_tf), True)
 
     def test_is_nearx_tf(self):
         tf = TranskriptionField(self.test_file)
         matrix_string = 'matrix(1 0 0 1 180.8755 315.9131)'
         self.assertEqual(Matrix.IS_NEARX_TRANSKRIPTION_FIELD(matrix_string, tf), True)
         matrix_string = 'matrix(1 0 0 1 100.8755 315.9131)'
         self.assertEqual(Matrix.IS_NEARX_TRANSKRIPTION_FIELD(matrix_string, tf), False)
 
     def test_do_conversion_factors_differ(self):
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(None, None), False)
         matrix_a = Matrix('matrix(1 0 0 1 180.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, None), True)
         matrix_b = Matrix('matrix(1 0 0 1 100.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), False)
         matrix_b = Matrix('matrix(0 0 0 1 100.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), True)
         matrix_b = Matrix('matrix(1 1 0 1 100.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), True)
         matrix_b = Matrix('matrix(1 0 1 1 100.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), True)
         matrix_b = Matrix('matrix(1 0 0 0 100.8755 315.9131)')
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), True)
 
     def test_clone_transformation_matrix(self):
         matrix_a = Matrix(matrix_list=[ 1, 0, 0, 1, 180.8755, 315.9131 ])
         matrix_b = matrix_a.clone_transformation_matrix()
         self.assertEqual(Matrix.DO_CONVERSION_FACTORS_DIFFER(matrix_a, matrix_b), False)
         self.assertEqual(matrix_b.matrix[Matrix.E], 0)
         self.assertEqual(matrix_b.matrix[Matrix.F], 0)
 
     def test_toString(self):
         matrix_string = 'matrix(1.0 0.0 0.0 1.0 180.8755 315.9131)'
         matrix = Matrix(matrix_string)
         self.assertEqual(matrix.toString(), matrix_string)
 
     def test_get_semanticAndDataDict(self):
         matrix = Matrix('rotate(20)')
         #self.assertEqual(matrix.get_data_dictionary()['body'].get('matrix'), matrix.matrix)
 
 if __name__ == "__main__":
     unittest.main()
Index: error_log.xml
===================================================================
--- error_log.xml	(revision 39)
+++ error_log.xml	(revision 40)
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
 <error-log>
 	<metadata>
 		<type>xmlErrorLog</type>
 		<createdBy>
 			<script>/data/home/knister0/nietzsche-python/svgscripts/process_files.py</script>
 			<date>2019-06-18 18:31:49</date>
 		</createdBy>
-		<modifiedBy script="/data/home/knister0/nietzsche-python/svgscripts/process_files.py">2019-07-04 11:27:33</modifiedBy>
+		<modifiedBy script="/data/home/knister0/nietzsche-python/svgscripts/process_files.py">2019-07-11 10:29:04</modifiedBy>
 		<modifiedBy script="svgscripts/process_files.py">2019-07-09 17:59:16</modifiedBy>
 	</metadata>
 </error-log>