better explanation of roles

This commit is contained in:
lingdocs 2022-04-15 19:42:37 +05:00
parent b1fa372a38
commit 14465065b9
8 changed files with 1413 additions and 71 deletions

View File

@ -15,6 +15,12 @@ fs.mkdir("dist/node_modules", {}, (err) => {
fs.copySync(file, `dist/components/verb-info/${path.basename(file)}`);
});
});
glob("src/components/vp-explorer/*.svg", (err, files) => {
if (err) throw err;
files.forEach((file) => {
fs.copySync(file, `dist/components/vp-explorer/${path.basename(file)}`);
});
});
glob("src/components/vp-explorer/*.jpg", (err, files) => {
if (err) throw err;
files.forEach((file) => {

View File

@ -1,6 +1,6 @@
{
"name": "@lingdocs/pashto-inflector",
"version": "2.0.8",
"version": "2.0.9",
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com",

View File

@ -6,6 +6,10 @@ import {
} from "../../lib/accent-and-ps-utils";
import { ReactNode } from "react";
import classNames from "classnames";
import {
kawulStat,
kedulStat,
} from "../../lib/irregular-conjugations";
function CompoundFormula({ a, b }: {
a: ReactNode,
@ -84,7 +88,15 @@ function CompoundDisplay({ info, opts, handleLinkClick }: {
b={<div
className={classNames([{ clickable: handleLinkClick }])}
onClick={(handleLinkClick !== "none")
? () => handleLinkClick(info.entry.entry.ts)
? () => handleLinkClick(
"auxVerb" in info
// dyanmic compound auxVerb ts
? info.auxVerb.ts
// stative compound auxVerb ts
: ((info.transitivity === "intransitive"
? kedulStat
: kawulStat).info.entry.entry.ts)
)
: undefined}>
<div>
<Pashto opts={opts}>{aux.ps}</Pashto>

View File

@ -3,7 +3,6 @@ import VerbPicker from "./VerbPicker";
import TensePicker from "./TensePicker";
import VPDisplay from "./VPDisplay";
import ButtonSelect from "../ButtonSelect";
import { Modal } from "react-bootstrap";
import {
isInvalidSubjObjCombo,
} from "../../lib/phrase-building/vp-tools";
@ -16,9 +15,7 @@ import { getKingAndServant } from "../../lib/phrase-building/render-vp";
import { isPastTense } from "../../lib/phrase-building/vp-tools";
import VPExplorerQuiz from "./VPExplorerQuiz";
import { switchSubjObj } from "../../lib/phrase-building/vp-tools";
const kingIcon = <i className="mx-1 fas fa-crown" />;
const servantIcon = <i className="mx-1 fas fa-male" />;
import VPExplorerExplanationModal, { roleIcon } from "./VPExplorerExplanationModal";
// TODO: make answerFeedback emojis appear at random translate angles a little bit
// add energy drinks?
@ -61,8 +58,7 @@ export function VPExplorer(props: {
},
"verbExplorerMode",
);
const [showingKingExplanation, setShowingKingExplanation] = useState<"subject" | "object" | false>(false);
const [showingServantExplanation, setShowingServantExplanation] = useState<"subject" | "object" | false>(false);
const [showingExplanation, setShowingExplanation] = useState<{ role: "servant" | "king", item: "subject" | "object" } | false>(false);
const roles = getKingAndServant(isPastTense(vps.verb.tense), vps.verb.transitivity !== "intransitive");
useEffect(() => {
setVps(oldVps => {
@ -143,8 +139,8 @@ export function VPExplorer(props: {
{mode === "phrases" && <>
<div className="my-2">
{roles.king === "subject"
? <div className="h5 text-center clickable" onClick={() => setShowingKingExplanation("subject")}>Subject {kingIcon}</div>
: <div className="h5 text-center clickable" onClick={() => setShowingServantExplanation("subject")}>Subject {servantIcon}</div>}
? <div className="h5 text-center clickable" onClick={() => setShowingExplanation({ role: "king", item: "subject" })}>Subject {roleIcon.king}</div>
: <div className="h5 text-center clickable" onClick={() => setShowingExplanation({ role: "servant", item: "subject" })}>Subject {roleIcon.servant}</div>}
<NPPicker
{..."getNounByTs" in props ? {
getNounByTs: props.getNounByTs,
@ -163,8 +159,8 @@ export function VPExplorer(props: {
</div>
{vps.verb && (vps.verb.object !== "none") && <div className="my-2">
{roles.king === "object"
? <div className="h5 text-center clickable" onClick={() => setShowingKingExplanation("object")}>Object {kingIcon}</div>
: <div className="h5 text-center clickable" onClick={() => setShowingServantExplanation("object")}>Object {servantIcon}</div>}
? <div className="h5 text-center clickable" onClick={() => setShowingExplanation({ role: "king", item: "object" })}>Object {roleIcon.king}</div>
: <div className="h5 text-center clickable" onClick={() => setShowingExplanation({ role: "servant", item: "object" })}>Object {roleIcon.servant}</div>}
{(typeof vps.verb.object === "number")
? <div className="text-muted">Unspoken 3rd Pers. Masc. Plur.</div>
: <NPPicker
@ -196,64 +192,10 @@ export function VPExplorer(props: {
{mode === "phrases" && <VPDisplay VP={vps} opts={props.opts} />}
{mode === "charts" && <ChartDisplay VS={vps.verb} opts={props.opts} />}
{mode === "quiz" && <VPExplorerQuiz opts={props.opts} vps={vps} />}
<Modal show={!!showingKingExplanation} onHide={() => setShowingKingExplanation(false)}>
<Modal.Header closeButton>
<Modal.Title>About the King {kingIcon}</Modal.Title>
</Modal.Header>
<Modal.Body>
In this tense/form, the {showingKingExplanation} is the <strong>king</strong> {kingIcon} of the phrase. That means that:
<ul className="mt-2">
<li>
<div>It <strong>controls the verb conjugation</strong>. The verb agrees with the gender and number of the king.</div>
</li>
<li>
<div>👍 It <strong>can</strong> be removed / left out from the phrase.</div>
<div className="text-muted">(You can kill the king)</div>
</li>
<li>
<div>🙅 It <strong>cannot be</strong> shrunk it into a <a target="_blank" rel="noreferrer" href="https://grammar.lingdocs.com/pronouns/pronouns-mini/">mini-pronoun</a>. 👶</div>
<div className="text-muted">(You can't shrink the king)</div>
</li>
</ul>
<p>Mnemonic for shortening phrases:</p>
<p className="text-muted">"🚫 Kill the king 👶 Shrink the servant"</p>
</Modal.Body>
<Modal.Footer>
<button type="button" className="btn btn-primary clb" onClick={() => setShowingKingExplanation(false)}>
Close
</button>
</Modal.Footer>
</Modal>
<Modal show={!!showingServantExplanation} onHide={() => setShowingServantExplanation(false)}>
<Modal.Header closeButton>
<Modal.Title>About the Servant {servantIcon}</Modal.Title>
</Modal.Header>
<Modal.Body>
<p>
In this tense/form, the {showingServantExplanation} is the <strong>servant</strong> {servantIcon} of the phrase. That means that:
</p>
<ul>
<li>
It does not affect the conjugation of the verb. That's the king's job.
</li>
<li>
<div>👍 It <strong>can</strong> shrink it into a <a target="_blank" rel="noreferrer" href="https://grammar.lingdocs.com/pronouns/pronouns-mini/">mini-pronoun</a>. 👶</div>
<div className="text-muted">(You can <strong>shrink the servant</strong>)</div>
</li>
<li>
<div>🙅 It <strong>cannot</strong> be removed / left out of the phrase</div>
<div className="text-muted">(You can't kill the servant)</div>
</li>
</ul>
<p>Mnemonic for shortening phrases:</p>
<p className="text-muted">"🚫 Kill the king 👶 Shrink the servant"</p>
</Modal.Body>
<Modal.Footer>
<button type="button" className="btn btn-primary clb" onClick={() => setShowingServantExplanation(false)}>
Close
</button>
</Modal.Footer>
</Modal>
<VPExplorerExplanationModal
showing={showingExplanation}
setShowing={setShowingExplanation}
/>
</div>
}

View File

@ -0,0 +1,56 @@
import { Modal } from "react-bootstrap";
import structureDiagram from "./vp-structure.svg";
export const roleIcon = {
king: <i className="mx-1 fas fa-crown" />,
servant: <i className="mx-1 fas fa-male" />,
};
function VPExplorerExplanationModal({ showing, setShowing }: {
showing: { role: "servant" | "king", item: "subject" | "object" } | false,
setShowing: (s: { role: "servant" | "king", item: "subject" | "object" } | false) => void,
}) {
if (!showing) return null;
return <>
<Modal show={!!showing} onHide={() => setShowing(false)}>
<Modal.Header closeButton>
<Modal.Title>About the {showing.role === "king"
? <span>King {roleIcon.king}</span>
: <span>Servant {roleIcon.servant}</span>}
</Modal.Title>
</Modal.Header>
<Modal.Body>
<p>In this tense/form, the {showing.item} is the <strong>{showing.role}</strong> {roleIcon[showing.role]} of the phrase.</p>
<p>That means that:</p>
{showing.role === "king"
? <ul className="mt-2">
<li>
<div>It <strong>controls the verb conjugation</strong>. The verb agrees with the gender and number of the king.</div>
</li>
<li>
<div>It can be removed / left out from the phrase.</div>
<div className="text-muted">(You can <strong>kill the king</strong>)</div>
</li>
</ul>
: <ul>
<li>
<div>It can shrink it into a <a target="_blank" rel="noreferrer" href="https://grammar.lingdocs.com/pronouns/pronouns-mini/">mini-pronoun</a>.</div>
<div className="text-muted">(You can <strong>shrink the servant</strong>)</div>
</li>
</ul>
}
<h4>Mnemonic for shortening phrases:</h4>
<p className="text-muted lead">"🚫 Kill the king 👶 Shrink the servant"</p>
<h4 className="mb-3">Verb Phrase Structure</h4>
<img className="img-fluid" alt="Pashto verb phrase structure diagram" src={structureDiagram} />
</Modal.Body>
<Modal.Footer>
<button type="button" className="btn btn-primary clb" onClick={() => setShowing(false)}>
Close
</button>
</Modal.Footer>
</Modal>
</>;
}
export default VPExplorerExplanationModal;

View File

@ -0,0 +1,470 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="724.26672"
height="540.30212"
viewBox="0 0 191.62886 142.95493"
version="1.1"
id="svg5"
sodipodi:docname="vp-structure-source.svg"
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
inkscape:snap-global="false"
fit-margin-top="10"
fit-margin-right="10"
fit-margin-left="10"
fit-margin-bottom="10"
units="px"
width="708.26672px"
inkscape:zoom="0.51029737"
inkscape:cx="455.6167"
inkscape:cy="436.02028"
inkscape:window-width="1440"
inkscape:window-height="847"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2">
<rect
x="155.22249"
y="356.55067"
width="280.47628"
height="70.695392"
id="rect72315" />
<rect
x="78.62825"
y="395.80661"
width="207.89842"
height="63.968745"
id="rect62162" />
<rect
x="225.33717"
y="427.01395"
width="449.54767"
height="181.39642"
id="rect31448" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504" />
<rect
x="403.30399"
y="53.033859"
width="292.77869"
height="40.570595"
id="rect10344" />
<rect
x="71.534042"
y="16.033491"
width="318.20316"
height="115.93448"
id="rect5826" />
<rect
x="17.266838"
y="20.966875"
width="326.83658"
height="141.83475"
id="rect2632" />
<rect
x="71.534042"
y="16.033491"
width="318.20316"
height="115.93448"
id="rect5826-8" />
<rect
x="403.30399"
y="53.033859"
width="242.73721"
height="74.698952"
id="rect10344-1" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5-8" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-9" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-6" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-4" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5-8-0" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-65" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-9-3" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-6-8" />
<rect
x="225.33717"
y="427.01395"
width="449.54767"
height="181.39642"
id="rect31448-5" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-65-6" />
<rect
x="155.22249"
y="356.55066"
width="175.97005"
height="90.674522"
id="rect72315-4" />
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-15.669658,-11.130171)">
<path
style="fill:none;stroke:#000000;stroke-width:0.868766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 100.74353,24.58879 V 145.4719"
id="path75" />
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,11.270724,8.281136)"
id="text5824"
style="font-style:normal;font-weight:normal;font-size:37.3333px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect5826);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="71.533203"
y="50.093506"
id="tspan81199">intransitive</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,113.91444,7.7519693)"
id="text5824-7"
style="font-style:normal;font-weight:normal;font-size:37.3333px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect5826-8);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="71.533203"
y="50.093506"
id="tspan81201">transitive</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100.71453,90.494346 h 106.0549"
id="path8140" />
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,-2.9596209,11.254175)"
id="text10342"
style="font-style:normal;font-weight:normal;font-size:29.3333px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect10344);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="403.30469"
y="79.794862"
id="tspan81203">present - future</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,-3.3754359,78.145384)"
id="text10342-3"
style="font-style:normal;font-weight:normal;font-size:29.3333px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect10344-1);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="403.30469"
y="79.794862"
id="tspan81205">past - perfect</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect12589"
width="21.06028"
height="20.407637"
x="66.610214"
y="73.787094"
ry="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.126606,89.377611 2.730095,3.476076 19.35886,-0.204474 2.730098,-3.271602"
id="path12748" />
<text
xml:space="preserve"
id="text14502"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,9.7464998,26.570443)"><tspan
x="102.5293"
y="295.63188"
id="tspan81207">S</tspan></text>
<text
xml:space="preserve"
id="text14502-7"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-5);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,46.395459,9.618951)"><tspan
x="102.5293"
y="295.63188"
id="tspan81209">V</tspan></text>
<path
d="m 45.186783,72.680168 h -9.308078 c -0.196908,0 -0.358009,0.165295 -0.358009,0.36732 v 0.73464 c 0,0.202025 0.161101,0.36732 0.358009,0.36732 h 9.308078 c 0.196899,0 0.358,-0.165295 0.358,-0.36732 v -0.73464 c 0,-0.202025 -0.161101,-0.36732 -0.358,-0.36732 z m 1.432009,-7.346382 c -0.592944,0 -1.074009,0.493592 -1.074009,1.101959 0,0.163003 0.03583,0.314515 0.09845,0.454554 l -1.619967,0.996357 c -0.344576,0.211205 -0.789843,0.09183 -0.988988,-0.266303 L 41.2107,64.346617 c 0.239418,-0.202025 0.396044,-0.505066 0.396044,-0.849423 0,-0.608375 -0.481065,-1.10196 -1.074008,-1.10196 -0.592944,0 -1.074009,0.493585 -1.074009,1.10196 0,0.344357 0.156626,0.647398 0.396044,0.849423 l -1.823578,3.273736 c -0.199145,0.358131 -0.646641,0.477508 -0.988988,0.266303 l -1.617721,-0.996357 c 0.06044,-0.137746 0.09845,-0.291551 0.09845,-0.454554 0,-0.608367 -0.481065,-1.101959 -1.074009,-1.101959 -0.592943,0 -1.076246,0.493592 -1.076246,1.101959 0,0.608376 0.481065,1.10196 1.074009,1.10196 0.05821,0 0.116353,-0.0092 0.172288,-0.01834 l 1.617729,4.4262 h 8.592069 l 1.61773,-4.4262 c 0.05589,0.0092 0.114116,0.01834 0.172288,0.01834 0.592943,0 1.074008,-0.493584 1.074008,-1.10196 0,-0.608367 -0.481065,-1.101959 -1.074008,-1.101959 z"
id="path21494"
style="stroke-width:0.0226644" />
<rect
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect12589-5"
width="21.06028"
height="20.407637"
x="181.62965"
y="53.718853"
ry="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 110.47169,69.30937 2.7301,3.476076 19.35886,-0.204474 2.7301,-3.271602"
id="path12748-4" />
<text
xml:space="preserve"
id="text14502-5"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-7);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,92.091557,6.5022028)"><tspan
x="102.5293"
y="295.63188"
id="tspan81211">S</tspan></text>
<text
xml:space="preserve"
id="text14502-7-3"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-5-8);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,161.41503,-10.449287)"><tspan
x="102.5293"
y="295.63188"
id="tspan81213">V</tspan></text>
<path
id="path21494-1"
style="stroke-width:0.0226644"
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 122.87695 40.376953 C 122.28401 40.376953 121.80469 40.872094 121.80469 41.480469 C 121.80469 41.824826 121.9598 42.128054 122.19922 42.330078 L 120.37695 45.603516 C 120.17781 45.961647 119.72907 46.080346 119.38672 45.869141 L 117.76953 44.873047 C 117.82993 44.735301 117.86719 44.580972 117.86719 44.417969 C 117.86719 43.809602 117.38787 43.316406 116.79492 43.316406 C 116.20198 43.316406 115.7168 43.809602 115.7168 44.417969 C 115.7168 45.026345 116.19807 45.519531 116.79102 45.519531 C 116.84922 45.519531 116.90891 45.511093 116.96484 45.501953 L 118.58203 49.927734 L 127.17383 49.927734 L 128.79102 45.501953 C 128.84692 45.511153 128.90667 45.519531 128.96484 45.519531 C 129.55778 45.519531 130.03711 45.026345 130.03711 44.417969 C 130.03711 43.809602 129.55778 43.316406 128.96484 43.316406 C 128.3719 43.316406 127.89062 43.809602 127.89062 44.417969 C 127.89062 44.580972 127.92568 44.733008 127.98828 44.873047 L 126.36914 45.869141 C 126.02457 46.080346 125.57805 45.961649 125.37891 45.603516 L 123.55664 42.330078 C 123.79606 42.128054 123.95117 41.824826 123.95117 41.480469 C 123.95117 40.872094 123.4699 40.376953 122.87695 40.376953 z M 118.22461 50.662109 C 118.0277 50.662109 117.86523 50.827272 117.86523 51.029297 L 117.86523 51.765625 C 117.86523 51.96765 118.0277 52.132812 118.22461 52.132812 L 127.53125 52.132812 C 127.72815 52.132812 127.89062 51.96765 127.89062 51.765625 L 127.89062 51.029297 C 127.89062 50.827272 127.72815 50.662109 127.53125 50.662109 L 118.22461 50.662109 z "
d="m 122.87695,40.376953 c -0.59294,0 -1.07226,0.495141 -1.07226,1.103516 0,0.344357 0.15511,0.647585 0.39453,0.849609 l -1.82227,3.273438 c -0.19914,0.358131 -0.64788,0.47683 -0.99023,0.265625 l -1.61719,-0.996094 c 0.0604,-0.137746 0.0977,-0.292075 0.0977,-0.455078 0,-0.608367 -0.47932,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07812,0.493196 -1.07812,1.101563 0,0.608376 0.48127,1.101562 1.07422,1.101562 0.0582,0 0.11789,-0.0084 0.17382,-0.01758 l 1.61719,4.425781 h 8.5918 l 1.61719,-4.425781 c 0.0559,0.0092 0.11565,0.01758 0.17382,0.01758 0.59294,0 1.07227,-0.493186 1.07227,-1.101562 0,-0.608367 -0.47933,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07422,0.493196 -1.07422,1.101563 0,0.163003 0.0351,0.315039 0.0977,0.455078 l -1.61914,0.996094 c -0.34457,0.211205 -0.79109,0.09251 -0.99023,-0.265625 l -1.82227,-3.273438 c 0.23942,-0.202024 0.39453,-0.505252 0.39453,-0.849609 0,-0.608375 -0.48127,-1.103516 -1.07422,-1.103516 z m -4.65234,10.285156 c -0.19691,0 -0.35938,0.165163 -0.35938,0.367188 v 0.736328 c 0,0.202025 0.16247,0.367187 0.35938,0.367187 h 9.30664 c 0.1969,0 0.35937,-0.165162 0.35937,-0.367187 v -0.736328 c 0,-0.202025 -0.16247,-0.367188 -0.35937,-0.367188 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 145.43427,68.929606 2.7301,3.476076 19.35886,-0.204474 2.7301,-3.271602"
id="path12748-4-6" />
<text
xml:space="preserve"
id="text14502-5-4"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-7-9);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,126.54516,6.1224388)"><tspan
x="102.5293"
y="295.63188"
id="tspan81215">O</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,38.760473,-57.593256)"
id="text31446"
style="font-style:normal;font-weight:normal;font-size:18.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect31448);fill:#000000;fill-opacity:1;stroke:none"
x="93.880325"
y="0"><tspan
x="382.75444"
y="444.04387"
id="tspan81219"><tspan
style="text-align:center;text-anchor:middle"
id="tspan81217">infl. 1st + 2nd
</tspan></tspan><tspan
x="411.24667"
y="467.37724"
id="tspan81223"><tspan
style="text-align:center;text-anchor:middle"
id="tspan81221">pronoun</tspan></tspan></text>
<path
id="path36134"
style="stroke-width:0.0248982"
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 157.83984 39.880859 C 156.95979 39.880859 156.24609 40.594564 156.24609 41.474609 C 156.24609 42.354667 156.95979 43.068359 157.83984 43.068359 C 158.71988 43.068359 159.43359 42.354667 159.43359 41.474609 C 159.43359 40.594564 158.71988 39.880859 157.83984 39.880859 z M 156.64453 43.466797 C 155.98448 43.466797 155.44922 44.002054 155.44922 44.662109 L 155.44922 48.046875 C 155.44922 48.376897 155.71683 48.644531 156.04688 48.644531 L 156.44531 48.644531 L 156.44531 52.03125 C 156.44531 52.361271 156.71294 52.628906 157.04297 52.628906 L 158.63672 52.628906 C 158.96674 52.628906 159.23437 52.361271 159.23438 52.03125 L 159.23438 48.644531 L 159.63281 48.644531 C 159.96284 48.644531 160.23047 48.376897 160.23047 48.046875 L 160.23047 44.662109 C 160.23047 44.002054 159.69521 43.466797 159.03516 43.466797 L 158.75195 43.466797 C 158.18649 43.726808 157.51757 43.738048 156.92773 43.466797 L 156.64453 43.466797 z "
d="m 157.83984,39.880859 c -0.88005,0 -1.59375,0.713705 -1.59375,1.59375 0,0.880058 0.7137,1.59375 1.59375,1.59375 0.88004,0 1.59375,-0.713692 1.59375,-1.59375 0,-0.880045 -0.71371,-1.59375 -1.59375,-1.59375 z m -1.19531,3.585938 c -0.66005,0 -1.19531,0.535257 -1.19531,1.195312 v 3.384766 c 0,0.330022 0.26761,0.597656 0.59766,0.597656 h 0.39843 v 3.386719 c 0,0.330021 0.26763,0.597656 0.59766,0.597656 h 1.59375 c 0.33002,0 0.59765,-0.267635 0.59766,-0.597656 v -3.386719 h 0.39843 c 0.33003,0 0.59766,-0.267634 0.59766,-0.597656 v -3.384766 c 0,-0.660055 -0.53526,-1.195312 -1.19531,-1.195312 h -0.28321 c -0.56546,0.260011 -1.23438,0.271251 -1.82422,0 z" />
<g
id="g60074"
transform="translate(6.3500003)">
<rect
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect12589-5-1"
width="21.06028"
height="20.407637"
x="175.28523"
y="120.29713"
ry="0" />
<text
xml:space="preserve"
id="text14502-7-3-7"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-5-8-0);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,155.07048,56.128988)"><tspan
x="102.5293"
y="295.63188"
id="tspan81225">V</tspan></text>
</g>
<g
id="g60080"
transform="translate(6.3500003)">
<path
d="m 156.94586,117.13885 h -9.30808 c -0.19691,0 -0.35801,0.1653 -0.35801,0.36732 v 0.73464 c 0,0.20203 0.1611,0.36732 0.35801,0.36732 h 9.30808 c 0.1969,0 0.358,-0.16529 0.358,-0.36732 v -0.73464 c 0,-0.20202 -0.1611,-0.36732 -0.358,-0.36732 z m 1.43201,-7.34638 c -0.59294,0 -1.07401,0.49359 -1.07401,1.10196 0,0.163 0.0358,0.31451 0.0984,0.45455 l -1.61997,0.99636 c -0.34457,0.2112 -0.78984,0.0918 -0.98898,-0.2663 l -1.82358,-3.27374 c 0.23942,-0.20203 0.39604,-0.50507 0.39604,-0.84943 0,-0.60837 -0.48106,-1.10196 -1.07401,-1.10196 -0.59294,0 -1.07401,0.49359 -1.07401,1.10196 0,0.34436 0.15663,0.6474 0.39605,0.84943 l -1.82358,3.27374 c -0.19914,0.35813 -0.64664,0.4775 -0.98899,0.2663 l -1.61772,-0.99636 c 0.0604,-0.13774 0.0985,-0.29155 0.0985,-0.45455 0,-0.60837 -0.48106,-1.10196 -1.07401,-1.10196 -0.59294,0 -1.07624,0.49359 -1.07624,1.10196 0,0.60837 0.48106,1.10196 1.07401,1.10196 0.0582,0 0.11635,-0.009 0.17228,-0.0183 l 1.61773,4.4262 h 8.59207 l 1.61773,-4.4262 c 0.0559,0.009 0.11412,0.0183 0.17229,0.0183 0.59294,0 1.07401,-0.49359 1.07401,-1.10196 0,-0.60837 -0.48107,-1.10196 -1.07401,-1.10196 z"
id="path21494-1-5"
style="stroke-width:0.0226644" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 139.88568,135.50788 2.7301,3.47607 19.35886,-0.20447 2.7301,-3.2716"
id="path12748-4-6-0" />
<text
xml:space="preserve"
id="text14502-5-4-5"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-7-9-3);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,120.99657,72.700714)"><tspan
x="102.5293"
y="295.63188"
id="tspan81227">O</tspan></text>
</g>
<g
id="g60088"
transform="translate(6.3500003)">
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 105.70061,135.88764 2.7301,3.47608 19.35886,-0.20448 2.7301,-3.2716"
id="path12748-4-2" />
<text
xml:space="preserve"
id="text14502-5-46"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect14504-7-4);fill:#000000;fill-opacity:1;stroke:none"
transform="matrix(0.26458333,0,0,0.26458333,87.320516,73.080478)"><tspan
x="102.5293"
y="295.63188"
id="tspan81229">S</tspan></text>
<path
d="m 118.10675,106.35707 c 0.88004,0 1.59349,0.71345 1.59349,1.59349 0,0.88006 -0.71345,1.59349 -1.59349,1.59349 -0.88005,0 -1.59348,-0.71343 -1.59348,-1.59349 0,-0.88004 0.71343,-1.59349 1.59348,-1.59349 m 1.19512,3.58535 h -0.28285 c -0.56546,0.26001 -1.2347,0.27125 -1.82454,0 h -0.28284 c -0.66005,0 -1.19512,0.53507 -1.19512,1.19513 v 3.38615 c 0,0.33002 0.26753,0.59755 0.59757,0.59755 h 0.39835 v 3.38617 c 0,0.33002 0.26754,0.59755 0.59757,0.59755 h 1.59349 c 0.33002,0 0.59755,-0.26753 0.59755,-0.59755 v -3.38617 h 0.39837 c 0.33003,0 0.59756,-0.26753 0.59756,-0.59755 v -3.38615 c 0,-0.66006 -0.53506,-1.19513 -1.19511,-1.19513 z"
id="path36134-7"
style="stroke-width:0.0248982" />
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,94.729003,85.884962)"
id="text20616-0-5-8"
style="font-style:normal;font-weight:normal;font-size:26.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect20618-2-65-6);fill:#4d4d4d;fill-opacity:1;stroke:none"><tspan
x="31.546875"
y="162.91087"
id="tspan81231">inflected</tspan></text>
</g>
<path
id="path21494-1-4"
style="stroke-width:0.0226644"
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 122.87695 40.376953 C 122.28401 40.376953 121.80469 40.872094 121.80469 41.480469 C 121.80469 41.824826 121.9598 42.128054 122.19922 42.330078 L 120.37695 45.603516 C 120.17781 45.961647 119.72907 46.080346 119.38672 45.869141 L 117.76953 44.873047 C 117.82993 44.735301 117.86719 44.580972 117.86719 44.417969 C 117.86719 43.809602 117.38787 43.316406 116.79492 43.316406 C 116.20198 43.316406 115.7168 43.809602 115.7168 44.417969 C 115.7168 45.026345 116.19807 45.519531 116.79102 45.519531 C 116.84922 45.519531 116.90891 45.511093 116.96484 45.501953 L 118.58203 49.927734 L 127.17383 49.927734 L 128.79102 45.501953 C 128.84692 45.511153 128.90667 45.519531 128.96484 45.519531 C 129.55778 45.519531 130.03711 45.026345 130.03711 44.417969 C 130.03711 43.809602 129.55778 43.316406 128.96484 43.316406 C 128.3719 43.316406 127.89062 43.809602 127.89062 44.417969 C 127.89062 44.580972 127.92568 44.733008 127.98828 44.873047 L 126.36914 45.869141 C 126.02457 46.080346 125.57805 45.961649 125.37891 45.603516 L 123.55664 42.330078 C 123.79606 42.128054 123.95117 41.824826 123.95117 41.480469 C 123.95117 40.872094 123.4699 40.376953 122.87695 40.376953 z M 118.22461 50.662109 C 118.0277 50.662109 117.86523 50.827272 117.86523 51.029297 L 117.86523 51.765625 C 117.86523 51.96765 118.0277 52.132812 118.22461 52.132812 L 127.53125 52.132812 C 127.72815 52.132812 127.89062 51.96765 127.89062 51.765625 L 127.89062 51.029297 C 127.89062 50.827272 127.72815 50.662109 127.53125 50.662109 L 118.22461 50.662109 z "
d="m 122.87695,40.376953 c -0.59294,0 -1.07226,0.495141 -1.07226,1.103516 0,0.344357 0.15511,0.647585 0.39453,0.849609 l -1.82227,3.273438 c -0.19914,0.358131 -0.64788,0.47683 -0.99023,0.265625 l -1.61719,-0.996094 c 0.0604,-0.137746 0.0977,-0.292075 0.0977,-0.455078 0,-0.608367 -0.47932,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07812,0.493196 -1.07812,1.101563 0,0.608376 0.48127,1.101562 1.07422,1.101562 0.0582,0 0.11789,-0.0084 0.17382,-0.01758 l 1.61719,4.425781 h 8.5918 l 1.61719,-4.425781 c 0.0559,0.0092 0.11565,0.01758 0.17382,0.01758 0.59294,0 1.07227,-0.493186 1.07227,-1.101562 0,-0.608367 -0.47933,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07422,0.493196 -1.07422,1.101563 0,0.163003 0.0351,0.315039 0.0977,0.455078 l -1.61914,0.996094 c -0.34457,0.211205 -0.79109,0.09251 -0.99023,-0.265625 l -1.82227,-3.273438 c 0.23942,-0.202024 0.39453,-0.505252 0.39453,-0.849609 0,-0.608375 -0.48127,-1.103516 -1.07422,-1.103516 z m -4.65234,10.285156 c -0.19691,0 -0.35938,0.165163 -0.35938,0.367188 v 0.736328 c 0,0.202025 0.16247,0.367187 0.35938,0.367187 h 9.30664 c 0.1969,0 0.35937,-0.165162 0.35937,-0.367187 v -0.736328 c 0,-0.202025 -0.16247,-0.367188 -0.35937,-0.367188 z"
transform="matrix(0.61892847,0,0,0.61892847,-50.037764,91.556376)" />
<path
id="path36134-1"
style="stroke-width:0.0248982"
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M 157.83984 39.880859 C 156.95979 39.880859 156.24609 40.594564 156.24609 41.474609 C 156.24609 42.354667 156.95979 43.068359 157.83984 43.068359 C 158.71988 43.068359 159.43359 42.354667 159.43359 41.474609 C 159.43359 40.594564 158.71988 39.880859 157.83984 39.880859 z M 156.64453 43.466797 C 155.98448 43.466797 155.44922 44.002054 155.44922 44.662109 L 155.44922 48.046875 C 155.44922 48.376897 155.71683 48.644531 156.04688 48.644531 L 156.44531 48.644531 L 156.44531 52.03125 C 156.44531 52.361271 156.71294 52.628906 157.04297 52.628906 L 158.63672 52.628906 C 158.96674 52.628906 159.23437 52.361271 159.23438 52.03125 L 159.23438 48.644531 L 159.63281 48.644531 C 159.96284 48.644531 160.23047 48.376897 160.23047 48.046875 L 160.23047 44.662109 C 160.23047 44.002054 159.69521 43.466797 159.03516 43.466797 L 158.75195 43.466797 C 158.18649 43.726808 157.51757 43.738048 156.92773 43.466797 L 156.64453 43.466797 z "
d="m 157.83984,39.880859 c -0.88005,0 -1.59375,0.713705 -1.59375,1.59375 0,0.880058 0.7137,1.59375 1.59375,1.59375 0.88004,0 1.59375,-0.713692 1.59375,-1.59375 0,-0.880045 -0.71371,-1.59375 -1.59375,-1.59375 z m -1.19531,3.585938 c -0.66005,0 -1.19531,0.535257 -1.19531,1.195312 v 3.384766 c 0,0.330022 0.26761,0.597656 0.59766,0.597656 h 0.39843 v 3.386719 c 0,0.330021 0.26763,0.597656 0.59766,0.597656 h 1.59375 c 0.33002,0 0.59765,-0.267635 0.59766,-0.597656 v -3.386719 h 0.39843 c 0.33003,0 0.59766,-0.267634 0.59766,-0.597656 v -3.384766 c 0,-0.660055 -0.53526,-1.195312 -1.19531,-1.195312 h -0.28321 c -0.56546,0.260011 -1.23438,0.271251 -1.82422,0 z"
transform="matrix(0.87637134,0,0,0.87637134,-112.02144,101.15683)" />
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,15.669658,11.130171)"
id="text62160"
style="font-style:normal;font-weight:normal;font-size:21.3333336px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect62162);fill:#000000;fill-opacity:1;stroke:none" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05556px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.866039"
y="122.80521"
id="text65914"><tspan
sodipodi:role="line"
id="tspan65912"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.05556px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
x="32.866039"
y="122.80521">king</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.05556px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.362537"
y="143.16978"
id="text65914-0"><tspan
sodipodi:role="line"
id="tspan65912-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.05556px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.264583"
x="32.362537"
y="143.16978">servant</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,-8.9312498,50.776261)"
id="text72313"
style="font-style:normal;font-weight:normal;font-size:18.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect72315);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="155.22266"
y="373.58098"
id="tspan81233">can be mini-pronoun</tspan></text>
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,-8.0903811,30.587097)"
id="text72313-6"
style="font-style:normal;font-weight:normal;font-size:18.6667px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect72315-4);fill:#000000;fill-opacity:1;stroke:none"><tspan
x="155.22266"
y="373.58098"
id="tspan81235">controls the verb
</tspan><tspan
x="155.22266"
y="396.91435"
id="tspan81237">can be left out</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,856 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="724.26672"
height="540.30212"
viewBox="0 0 191.62886 142.95493"
version="1.1"
id="svg5"
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
sodipodi:docname="sentence-structure.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
inkscape:snap-global="false"
fit-margin-top="10"
fit-margin-right="10"
fit-margin-left="10"
fit-margin-bottom="10"
units="px"
width="708.26672px"
inkscape:zoom="0.51029737"
inkscape:cx="455.6167"
inkscape:cy="436.02028"
inkscape:window-width="1440"
inkscape:window-height="847"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2">
<rect
x="155.22249"
y="356.55067"
width="280.47628"
height="70.695392"
id="rect72315" />
<rect
x="78.62825"
y="395.80661"
width="207.89842"
height="63.968745"
id="rect62162" />
<rect
x="225.33717"
y="427.01395"
width="449.54767"
height="181.39642"
id="rect31448" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504" />
<rect
x="403.30399"
y="53.033859"
width="292.77869"
height="40.570595"
id="rect10344" />
<rect
x="71.534042"
y="16.033491"
width="318.20316"
height="115.93448"
id="rect5826" />
<rect
x="17.266838"
y="20.966875"
width="326.83658"
height="141.83475"
id="rect2632" />
<rect
x="71.534042"
y="16.033491"
width="318.20316"
height="115.93448"
id="rect5826-8" />
<rect
x="403.30399"
y="53.033859"
width="242.73721"
height="74.698952"
id="rect10344-1" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5-8" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-9" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-6" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-4" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-5-8-0" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-65" />
<rect
x="102.52842"
y="259.13776"
width="75.487953"
height="79.994698"
id="rect14504-7-9-3" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-6-8" />
<rect
x="225.33717"
y="427.01395"
width="449.54767"
height="181.39642"
id="rect31448-5" />
<rect
x="31.547207"
y="138.58237"
width="176.88969"
height="56.334297"
id="rect20618-2-65-6" />
<rect
x="155.22249"
y="356.55066"
width="175.97005"
height="90.674522"
id="rect72315-4" />
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-15.669658,-11.130171)">
<rect
style="fill:#ffffff;stroke:none;stroke-width:0.811626;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
id="rect79617"
width="191.51024"
height="142.37195"
x="16.162476"
y="11.622981" />
<path
style="fill:none;stroke:#000000;stroke-width:0.868766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 100.74353,24.58879 V 145.4719"
id="path75" />
<g
aria-label="intransitive"
transform="matrix(0.26458333,0,0,0.26458333,12.329058,8.281136)"
id="text5824"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)">
<path
d="m 78.587885,26.322693 h -3.86458 v -3.554685 h 3.86458 z m -0.21875,23.770813 H 74.942054 V 29.731544 h 3.427081 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79051" />
<path
d="m 102.21286,50.093506 h -3.427076 v -11.59374 q 0,-1.403645 -0.164062,-2.624998 -0.164062,-1.239582 -0.601562,-1.93229 -0.455729,-0.765624 -1.312499,-1.130207 -0.85677,-0.382813 -2.223956,-0.382813 -1.403645,0 -2.934894,0.692708 -1.531248,0.692708 -2.934893,1.768228 v 15.203112 h -3.42708 V 29.731544 h 3.42708 v 2.260415 q 1.604165,-1.330728 3.317705,-2.078123 1.713541,-0.747396 3.518227,-0.747396 3.299476,0 5.03125,1.986978 1.73176,1.986977 1.73176,5.723953 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79053" />
<path
d="m 119.38472,49.911214 q -0.96614,0.255209 -2.11458,0.419271 -1.13021,0.164062 -2.02343,0.164062 -3.11719,0 -4.73958,-1.677082 -1.6224,-1.677082 -1.6224,-5.377599 V 32.61175 h -2.3151 v -2.880206 h 2.3151 v -5.851557 h 3.42708 v 5.851557 h 7.07291 v 2.880206 h -7.07291 v 9.278638 q 0,1.604165 0.0729,2.515623 0.0729,0.893228 0.51042,1.677082 0.40104,0.729166 1.09374,1.07552 0.71094,0.328124 2.15104,0.328124 0.83855,0 1.75,-0.236979 0.91146,-0.255208 1.3125,-0.41927 h 0.18229 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79055" />
<path
d="m 136.24669,33.46852 h -0.18229 q -0.76563,-0.182291 -1.49479,-0.255208 -0.71094,-0.09115 -1.69531,-0.09115 -1.58594,0 -3.0625,0.710937 -1.47656,0.692708 -2.84375,1.804686 v 14.455717 h -3.42708 V 29.731544 h 3.42708 v 3.00781 q 2.04167,-1.640624 3.59115,-2.315102 1.5677,-0.692708 3.1901,-0.692708 0.89323,0 1.29427,0.05469 0.40104,0.03646 1.20312,0.164062 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79057" />
<path
d="m 155.33261,50.093506 h -3.40885 v -2.169269 q -0.45573,0.309896 -1.23958,0.874999 -0.76563,0.546875 -1.49479,0.874999 -0.85677,0.419271 -1.96875,0.692708 -1.11198,0.291667 -2.60677,0.291667 -2.7526,0 -4.66666,-1.822915 -1.91406,-1.822916 -1.91406,-4.648434 0,-2.315102 0.98437,-3.736976 1.0026,-1.440103 2.84375,-2.260415 1.85937,-0.820312 4.46614,-1.111978 2.60677,-0.291666 5.59635,-0.4375 v -0.528645 q 0,-1.166666 -0.41927,-1.93229 -0.40104,-0.765624 -1.16667,-1.203124 -0.72916,-0.41927 -1.75,-0.565104 -1.02083,-0.145833 -2.13281,-0.145833 -1.34895,0 -3.00781,0.364583 -1.65885,0.346354 -3.42708,1.020833 h -0.18229 v -3.481768 q 1.0026,-0.273438 2.89844,-0.601562 1.89583,-0.328125 3.73697,-0.328125 2.15104,0 3.73698,0.364583 1.60416,0.346354 2.77083,1.203124 1.14844,0.838541 1.75,2.169269 0.60156,1.330728 0.60156,3.299476 z m -3.40885,-5.013017 v -5.669266 q -1.56771,0.09115 -3.70052,0.273438 -2.11458,0.182291 -3.35416,0.528645 -1.47656,0.419271 -2.38802,1.312499 -0.91146,0.874999 -0.91146,2.424477 0,1.749999 1.05729,2.643227 1.05729,0.874999 3.22656,0.874999 1.80469,0 3.29948,-0.692708 1.49479,-0.710936 2.77083,-1.695311 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79059" />
<path
d="m 178.99405,50.093506 h -3.42708 v -11.59374 q 0,-1.403645 -0.16407,-2.624998 -0.16406,-1.239582 -0.60156,-1.93229 -0.45573,-0.765624 -1.3125,-1.130207 -0.85677,-0.382813 -2.22395,-0.382813 -1.40365,0 -2.9349,0.692708 -1.53125,0.692708 -2.93489,1.768228 v 15.203112 h -3.42708 V 29.731544 h 3.42708 v 2.260415 q 1.60417,-1.330728 3.31771,-2.078123 1.71354,-0.747396 3.51822,-0.747396 3.29948,0 5.03125,1.986978 1.73177,1.986977 1.73177,5.723953 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79061" />
<path
d="m 200.13987,44.223719 q 0,2.78906 -2.31511,4.575517 -2.29687,1.786457 -6.28905,1.786457 -2.26042,0 -4.15625,-0.528645 -1.8776,-0.546875 -3.15364,-1.184895 v -3.846351 h 0.18229 q 1.62239,1.221353 3.60937,1.950519 1.98698,0.710937 3.80989,0.710937 2.26042,0 3.53646,-0.729166 1.27604,-0.729166 1.27604,-2.296873 0,-1.203124 -0.69271,-1.822915 -0.69271,-0.619791 -2.66145,-1.057291 -0.72917,-0.164062 -1.91406,-0.382812 -1.16667,-0.21875 -2.13282,-0.473958 -2.67968,-0.710937 -3.80989,-2.078123 -1.11198,-1.385416 -1.11198,-3.390622 0,-1.257812 0.51042,-2.36979 0.52865,-1.111978 1.58594,-1.986978 1.02083,-0.85677 2.58854,-1.348957 1.58593,-0.510416 3.53645,-0.510416 1.82292,0 3.68229,0.455729 1.8776,0.437499 3.11718,1.07552 v 3.664059 h -0.18229 q -1.3125,-0.966145 -3.1901,-1.622394 -1.8776,-0.674479 -3.68229,-0.674479 -1.8776,0 -3.17187,0.729166 -1.29427,0.710937 -1.29427,2.132811 0,1.257811 0.78385,1.895832 0.76563,0.63802 2.47917,1.039061 0.94791,0.21875 2.11458,0.4375 1.1849,0.21875 1.96875,0.401041 2.38802,0.546875 3.68229,1.877603 1.29427,1.348957 1.29427,3.572913 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79063" />
<path
d="m 208.74403,26.322693 h -3.86458 v -3.554685 h 3.86458 z m -0.21875,23.770813 H 205.0982 V 29.731544 h 3.42708 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79065" />
<path
d="m 225.91588,49.911214 q -0.96614,0.255209 -2.11458,0.419271 -1.13021,0.164062 -2.02344,0.164062 -3.11718,0 -4.73957,-1.677082 -1.6224,-1.677082 -1.6224,-5.377599 V 32.61175 h -2.3151 v -2.880206 h 2.3151 v -5.851557 h 3.42708 v 5.851557 h 7.07291 v 2.880206 h -7.07291 v 9.278638 q 0,1.604165 0.0729,2.515623 0.0729,0.893228 0.51041,1.677082 0.40105,0.729166 1.09375,1.07552 0.71094,0.328124 2.15104,0.328124 0.83854,0 1.75,-0.236979 0.91146,-0.255208 1.3125,-0.41927 h 0.18229 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79067" />
<path
d="m 233.75442,26.322693 h -3.86458 v -3.554685 h 3.86458 z m -0.21875,23.770813 h -3.42708 V 29.731544 h 3.42708 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79069" />
<path
d="m 257.96273,29.731544 -8.23958,20.361962 h -3.44531 l -8.18489,-20.361962 h 3.71875 l 6.30728,16.205715 6.2526,-16.205715 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79071" />
<path
d="m 279.49136,40.267993 h -15.0026 q 0,1.877603 0.56511,3.281248 0.5651,1.385415 1.54948,2.278644 0.94791,0.874999 2.24218,1.312498 1.3125,0.4375 2.88021,0.4375 2.07812,0 4.17447,-0.820312 2.11459,-0.838541 3.00781,-1.640623 h 0.18229 v 3.736976 q -1.73176,0.729166 -3.53645,1.221353 -1.80469,0.492187 -3.79166,0.492187 -5.06771,0 -7.91146,-2.734373 -2.84374,-2.752602 -2.84374,-7.802076 0,-4.994788 2.71614,-7.929681 2.73437,-2.934894 7.18229,-2.934894 4.11978,0 6.34374,2.406248 2.24219,2.406248 2.24219,6.835932 z m -3.33594,-2.624997 q -0.0182,-2.697915 -1.36718,-4.174476 -1.33073,-1.476561 -4.06511,-1.476561 -2.7526,0 -4.39322,1.622394 -1.6224,1.622395 -1.84115,4.028643 z"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826)"
id="path79073" />
</g>
<g
aria-label="transitive"
transform="matrix(0.26458333,0,0,0.26458333,113.91444,7.7519693)"
id="text5824-7"
style="font-size:37.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect5826-8)">
<path
d="m 85.478504,49.911214 q -0.966145,0.255209 -2.114582,0.419271 -1.130207,0.164062 -2.023436,0.164062 -3.117184,0 -4.739579,-1.677082 -1.622394,-1.677082 -1.622394,-5.377599 V 32.61175 H 72.66341 v -2.880206 h 2.315103 v -5.851557 h 3.42708 v 5.851557 h 7.072911 v 2.880206 h -7.072911 v 9.278638 q 0,1.604165 0.07292,2.515623 0.07292,0.893228 0.510416,1.677082 0.401041,0.729166 1.093749,1.07552 0.710937,0.328124 2.15104,0.328124 0.838541,0 1.749998,-0.236979 0.911458,-0.255208 1.312499,-0.41927 h 0.182292 z"
id="path79076" />
<path
d="m 102.34047,33.46852 h -0.18229 q -0.76563,-0.182291 -1.49479,-0.255208 -0.71094,-0.09115 -1.695314,-0.09115 -1.585936,0 -3.062497,0.710937 -1.476562,0.692708 -2.843748,1.804686 v 14.455717 h -3.42708 V 29.731544 h 3.42708 v 3.00781 q 2.041665,-1.640624 3.591143,-2.315102 1.567707,-0.692708 3.190101,-0.692708 0.893225,0 1.294275,0.05469 0.40104,0.03646 1.20312,0.164062 z"
id="path79078" />
<path
d="m 121.42639,50.093506 h -3.40885 v -2.169269 q -0.45573,0.309896 -1.23958,0.874999 -0.76563,0.546875 -1.49479,0.874999 -0.85677,0.419271 -1.96875,0.692708 -1.11198,0.291667 -2.60677,0.291667 -2.7526,0 -4.66666,-1.822915 -1.91406,-1.822916 -1.91406,-4.648434 0,-2.315102 0.98437,-3.736976 1.0026,-1.440103 2.84375,-2.260415 1.85937,-0.820312 4.46614,-1.111978 2.60677,-0.291666 5.59635,-0.4375 v -0.528645 q 0,-1.166666 -0.41927,-1.93229 -0.40104,-0.765624 -1.16667,-1.203124 -0.72916,-0.41927 -1.75,-0.565104 -1.02083,-0.145833 -2.13281,-0.145833 -1.34895,0 -3.00781,0.364583 -1.65885,0.346354 -3.42708,1.020833 h -0.18229 v -3.481768 q 1.00261,-0.273438 2.89844,-0.601562 1.89583,-0.328125 3.73697,-0.328125 2.15104,0 3.73698,0.364583 1.60416,0.346354 2.77083,1.203124 1.14844,0.838541 1.75,2.169269 0.60156,1.330728 0.60156,3.299476 z m -3.40885,-5.013017 v -5.669266 q -1.56771,0.09115 -3.70052,0.273438 -2.11458,0.182291 -3.35416,0.528645 -1.47656,0.419271 -2.38802,1.312499 -0.91146,0.874999 -0.91146,2.424477 0,1.749999 1.05729,2.643227 1.05729,0.874999 3.22656,0.874999 1.80469,0 3.29948,-0.692708 1.49479,-0.710936 2.77083,-1.695311 z"
id="path79080" />
<path
d="m 145.08783,50.093506 h -3.42708 v -11.59374 q 0,-1.403645 -0.16407,-2.624998 -0.16406,-1.239582 -0.60156,-1.93229 -0.45573,-0.765624 -1.3125,-1.130207 -0.85677,-0.382813 -2.22395,-0.382813 -1.40365,0 -2.9349,0.692708 -1.53124,0.692708 -2.93489,1.768228 V 50.093506 H 128.0618 V 29.731544 h 3.42708 v 2.260415 q 1.60417,-1.330728 3.31771,-2.078123 1.71354,-0.747396 3.51822,-0.747396 3.29948,0 5.03125,1.986978 1.73177,1.986977 1.73177,5.723953 z"
id="path79082" />
<path
d="m 166.23365,44.223719 q 0,2.78906 -2.3151,4.575517 -2.29688,1.786457 -6.28906,1.786457 -2.26042,0 -4.15625,-0.528645 -1.8776,-0.546875 -3.15364,-1.184895 v -3.846351 h 0.18229 q 1.62239,1.221353 3.60937,1.950519 1.98698,0.710937 3.80989,0.710937 2.26042,0 3.53646,-0.729166 1.27604,-0.729166 1.27604,-2.296873 0,-1.203124 -0.69271,-1.822915 -0.6927,-0.619791 -2.66145,-1.057291 -0.72917,-0.164062 -1.91406,-0.382812 -1.16667,-0.21875 -2.13281,-0.473958 -2.67969,-0.710937 -3.8099,-2.078123 -1.11198,-1.385416 -1.11198,-3.390622 0,-1.257812 0.51042,-2.36979 0.52865,-1.111978 1.58594,-1.986978 1.02083,-0.85677 2.58854,-1.348957 1.58593,-0.510416 3.53645,-0.510416 1.82292,0 3.68229,0.455729 1.8776,0.437499 3.11719,1.07552 v 3.664059 h -0.1823 q -1.3125,-0.966145 -3.1901,-1.622394 -1.8776,-0.674479 -3.68229,-0.674479 -1.8776,0 -3.17187,0.729166 -1.29427,0.710937 -1.29427,2.132811 0,1.257811 0.78385,1.895832 0.76563,0.63802 2.47917,1.039061 0.94792,0.21875 2.11458,0.4375 1.1849,0.21875 1.96875,0.401041 2.38802,0.546875 3.68229,1.877603 1.29427,1.348957 1.29427,3.572913 z"
id="path79084" />
<path
d="m 174.8378,26.322693 h -3.86458 v -3.554685 h 3.86458 z m -0.21875,23.770813 h -3.42708 V 29.731544 h 3.42708 z"
id="path79086" />
<path
d="m 192.00966,49.911214 q -0.96614,0.255209 -2.11458,0.419271 -1.13021,0.164062 -2.02344,0.164062 -3.11718,0 -4.73957,-1.677082 -1.6224,-1.677082 -1.6224,-5.377599 V 32.61175 h -2.3151 v -2.880206 h 2.3151 v -5.851557 h 3.42708 v 5.851557 h 7.07291 v 2.880206 h -7.07291 v 9.278638 q 0,1.604165 0.0729,2.515623 0.0729,0.893228 0.51041,1.677082 0.40105,0.729166 1.09375,1.07552 0.71094,0.328124 2.15104,0.328124 0.83854,0 1.75,-0.236979 0.91146,-0.255208 1.3125,-0.41927 h 0.18229 z"
id="path79088" />
<path
d="m 199.8482,26.322693 h -3.86458 v -3.554685 h 3.86458 z m -0.21875,23.770813 h -3.42708 V 29.731544 h 3.42708 z"
id="path79090" />
<path
d="m 224.05651,29.731544 -8.23958,20.361962 h -3.44531 l -8.18489,-20.361962 h 3.71875 l 6.30728,16.205715 6.2526,-16.205715 z"
id="path79092" />
<path
d="m 245.58514,40.267993 h -15.00259 q 0,1.877603 0.5651,3.281248 0.5651,1.385415 1.54948,2.278644 0.94791,0.874999 2.24218,1.312498 1.3125,0.4375 2.88021,0.4375 2.07812,0 4.17447,-0.820312 2.11459,-0.838541 3.00781,-1.640623 h 0.1823 v 3.736976 q -1.73177,0.729166 -3.53646,1.221353 -1.80469,0.492187 -3.79166,0.492187 -5.06771,0 -7.91145,-2.734373 -2.84375,-2.752602 -2.84375,-7.802076 0,-4.994788 2.71614,-7.929681 2.73437,-2.934894 7.18229,-2.934894 4.11978,0 6.34374,2.406248 2.24219,2.406248 2.24219,6.835932 z m -3.33594,-2.624997 q -0.0182,-2.697915 -1.36718,-4.174476 -1.33073,-1.476561 -4.0651,-1.476561 -2.75261,0 -4.39323,1.622394 -1.62239,1.622395 -1.84114,4.028643 z"
id="path79094" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 100.71453,90.494346 h 106.0549"
id="path8140" />
<g
aria-label="present - future"
transform="matrix(0.26458333,0,0,0.26458333,-2.9596209,11.254175)"
id="text10342"
style="font-size:29.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect10344)">
<path
d="m 420.03383,71.602163 q 0,1.947914 -0.55859,3.566402 -0.55859,1.604165 -1.57552,2.721351 -0.94531,1.059895 -2.23437,1.647133 -1.27474,0.572916 -2.70703,0.572916 -1.24609,0 -2.26302,-0.272135 -1.0026,-0.272135 -2.04817,-0.845051 v 6.703118 h -2.69271 V 63.796182 h 2.69271 v 1.675779 q 1.07422,-0.902342 2.40625,-1.503904 1.34635,-0.615885 2.86458,-0.615885 2.89322,0 4.49739,2.191404 1.61848,2.177081 1.61848,6.058587 z m -2.77864,0.07161 q 0,-2.893226 -0.98828,-4.325516 -0.98828,-1.43229 -3.03645,-1.43229 -1.16016,0 -2.33464,0.501302 -1.17447,0.501301 -2.24869,1.317707 v 9.066396 q 1.14583,0.515624 1.96224,0.701822 0.83072,0.186197 1.8763,0.186197 2.24869,0 3.50911,-1.518227 1.26041,-1.518228 1.26041,-4.497391 z"
id="path79097" />
<path
d="m 434.21351,66.732377 h -0.14323 q -0.60157,-0.143229 -1.17448,-0.200521 -0.55859,-0.07161 -1.33203,-0.07161 -1.24609,0 -2.40625,0.558593 -1.16015,0.54427 -2.23437,1.417967 v 11.35806 h -2.69271 v -15.99868 h 2.69271 v 2.363279 q 1.60416,-1.289061 2.82161,-1.819009 1.23177,-0.54427 2.50651,-0.54427 0.70182,0 1.01692,0.04297 0.31511,0.02865 0.94532,0.128906 z"
id="path79099" />
<path
d="m 450.16922,72.074818 h -11.78775 q 0,1.475259 0.44401,2.578122 0.44401,1.088541 1.21745,1.790363 0.74479,0.687499 1.76171,1.031249 1.03125,0.343749 2.26302,0.343749 1.63281,0 3.27994,-0.64453 1.66146,-0.658853 2.36328,-1.289061 h 0.14323 v 2.936194 q -1.36067,0.572916 -2.77864,0.959635 -1.41797,0.386718 -2.97916,0.386718 -3.98177,0 -6.21614,-2.148435 -2.23438,-2.162758 -2.23438,-6.130201 0,-3.924475 2.13412,-6.230462 2.14843,-2.305987 5.64322,-2.305987 3.23697,0 4.98437,1.890623 1.76172,1.890623 1.76172,5.371088 z m -2.6211,-2.062497 q -0.0143,-2.119789 -1.07421,-3.279944 -1.04557,-1.160155 -3.19401,-1.160155 -2.16276,0 -3.45182,1.274738 -1.27474,1.274738 -1.44661,3.165361 z"
id="path79101" />
<path
d="m 465.68092,75.182888 q 0,2.191404 -1.81901,3.595048 -1.80469,1.403644 -4.9414,1.403644 -1.77604,0 -3.26562,-0.415364 -1.47526,-0.429687 -2.47787,-0.930989 v -3.022132 h 0.14323 q 1.27474,0.959635 2.83594,1.532551 1.56119,0.558593 2.99348,0.558593 1.77604,0 2.77865,-0.572916 1.0026,-0.572916 1.0026,-1.804686 0,-0.945311 -0.54427,-1.43229 -0.54427,-0.486978 -2.09114,-0.830728 -0.57292,-0.128906 -1.50391,-0.300781 -0.91666,-0.171875 -1.67578,-0.372395 -2.10546,-0.558593 -2.99348,-1.632811 -0.8737,-1.08854 -0.8737,-2.664059 0,-0.98828 0.40104,-1.861977 0.41536,-0.873697 1.24609,-1.561196 0.80208,-0.673177 2.03385,-1.059895 1.2461,-0.401041 2.77865,-0.401041 1.43229,0 2.89322,0.358072 1.47526,0.34375 2.44922,0.845051 v 2.878903 h -0.14323 q -1.03125,-0.759113 -2.50651,-1.274738 -1.47526,-0.529947 -2.89322,-0.529947 -1.47526,0 -2.49219,0.572916 -1.01692,0.558593 -1.01692,1.675779 0,0.98828 0.61588,1.489582 0.60156,0.501301 1.94791,0.816405 0.7448,0.171875 1.66146,0.34375 0.93099,0.171875 1.54687,0.315104 1.8763,0.429687 2.89323,1.475258 1.01693,1.059895 1.01693,2.807289 z"
id="path79103" />
<path
d="m 482.94001,72.074818 h -11.78774 q 0,1.475259 0.44401,2.578122 0.44401,1.088541 1.21744,1.790363 0.74479,0.687499 1.76172,1.031249 1.03125,0.343749 2.26302,0.343749 1.63281,0 3.27994,-0.64453 1.66146,-0.658853 2.36328,-1.289061 h 0.14323 v 2.936194 q -1.36068,0.572916 -2.77864,0.959635 -1.41797,0.386718 -2.97917,0.386718 -3.98176,0 -6.21614,-2.148435 -2.23437,-2.162758 -2.23437,-6.130201 0,-3.924475 2.13411,-6.230462 2.14844,-2.305987 5.64323,-2.305987 3.23697,0 4.98437,1.890623 1.76171,1.890623 1.76171,5.371088 z m -2.62109,-2.062497 q -0.0143,-2.119789 -1.07421,-3.279944 -1.04558,-1.160155 -3.19401,-1.160155 -2.16276,0 -3.45182,1.274738 -1.27474,1.274738 -1.44661,3.165361 z"
id="path79105" />
<path
d="m 500.39962,79.794862 h -2.6927 v -9.109365 q 0,-1.102863 -0.12891,-2.062497 -0.1289,-0.973958 -0.47265,-1.518228 -0.35808,-0.601562 -1.03125,-0.88802 -0.67318,-0.300781 -1.7474,-0.300781 -1.10286,0 -2.30598,0.544271 -1.20313,0.54427 -2.30599,1.389321 v 11.945299 h -2.6927 v -15.99868 h 2.6927 v 1.77604 q 1.26042,-1.045572 2.60677,-1.632811 1.34635,-0.587239 2.76432,-0.587239 2.59244,0 3.95312,1.561196 1.36067,1.561196 1.36067,4.497391 z"
id="path79107" />
<path
d="m 513.8918,79.651633 q -0.75911,0.20052 -1.66145,0.329426 -0.88802,0.128906 -1.58985,0.128906 -2.44921,0 -3.72395,-1.317706 -1.27474,-1.317707 -1.27474,-4.225256 V 66.0592 h -1.81901 v -2.263018 h 1.81901 v -4.597651 h 2.69271 v 4.597651 h 5.55728 V 66.0592 h -5.55728 v 7.290357 q 0,1.260415 0.0573,1.97656 0.0573,0.701822 0.40104,1.317707 0.3151,0.572916 0.85937,0.845051 0.5586,0.257812 1.69011,0.257812 0.65885,0 1.37499,-0.186198 0.71615,-0.20052 1.03125,-0.329426 h 0.14323 z"
id="path79109" />
<path
d="m 535.94907,71.759715 h -8.93749 V 69.16727 h 8.93749 z"
id="path79111" />
<path
d="m 559.7394,60.115197 h -0.14323 q -0.44401,-0.128906 -1.16016,-0.257812 -0.71614,-0.143229 -1.26041,-0.143229 -1.73307,0 -2.52083,0.773436 -0.77344,0.759114 -0.77344,2.76432 v 0.54427 h 4.85546 V 66.0592 h -4.76952 v 13.735662 h -2.69271 V 66.0592 h -1.819 v -2.263018 h 1.819 v -0.529947 q 0,-2.850257 1.41797,-4.368485 1.41797,-1.53255 4.09635,-1.53255 0.90234,0 1.61849,0.08594 0.73047,0.08594 1.33203,0.200521 z"
id="path79113" />
<path
d="m 574.70684,79.794862 h -2.69271 v -1.77604 q -1.36067,1.074218 -2.60676,1.647134 -1.2461,0.572916 -2.75,0.572916 -2.52083,0 -3.92447,-1.532551 -1.40365,-1.546873 -1.40365,-4.526036 V 63.796182 h 2.69271 v 9.109365 q 0,1.217446 0.11458,2.091143 0.11458,0.859374 0.48698,1.475259 0.38672,0.630207 1.0026,0.916665 0.61589,0.286458 1.79036,0.286458 1.04558,0 2.27734,-0.54427 1.2461,-0.54427 2.32031,-1.389321 V 63.796182 h 2.69271 z"
id="path79115" />
<path
d="m 588.31359,79.651633 q -0.75912,0.20052 -1.66146,0.329426 -0.88802,0.128906 -1.58984,0.128906 -2.44922,0 -3.72396,-1.317706 -1.27473,-1.317707 -1.27473,-4.225256 V 66.0592 h -1.81901 v -2.263018 h 1.81901 v -4.597651 h 2.6927 v 4.597651 h 5.55729 V 66.0592 h -5.55729 v 7.290357 q 0,1.260415 0.0573,1.97656 0.0573,0.701822 0.40104,1.317707 0.31511,0.572916 0.85938,0.845051 0.55859,0.257812 1.6901,0.257812 0.65885,0 1.375,-0.186198 0.71614,-0.20052 1.03125,-0.329426 h 0.14323 z"
id="path79117" />
<path
d="m 604.84222,79.794862 h -2.69271 v -1.77604 q -1.36067,1.074218 -2.60677,1.647134 -1.24609,0.572916 -2.74999,0.572916 -2.52083,0 -3.92448,-1.532551 -1.40364,-1.546873 -1.40364,-4.526036 V 63.796182 h 2.6927 v 9.109365 q 0,1.217446 0.11459,2.091143 0.11458,0.859374 0.48697,1.475259 0.38672,0.630207 1.00261,0.916665 0.61588,0.286458 1.79036,0.286458 1.04557,0 2.27734,-0.54427 1.24609,-0.54427 2.32031,-1.389321 V 63.796182 h 2.69271 z"
id="path79119" />
<path
d="m 620.12476,66.732377 h -0.14323 q -0.60156,-0.143229 -1.17448,-0.200521 -0.55859,-0.07161 -1.33203,-0.07161 -1.24609,0 -2.40625,0.558593 -1.16015,0.54427 -2.23437,1.417967 v 11.35806 h -2.6927 v -15.99868 h 2.6927 v 2.363279 q 1.60417,-1.289061 2.82161,-1.819009 1.23177,-0.54427 2.50651,-0.54427 0.70182,0 1.01693,0.04297 0.3151,0.02865 0.94531,0.128906 z"
id="path79121" />
<path
d="m 636.08047,72.074818 h -11.78775 q 0,1.475259 0.44401,2.578122 0.44401,1.088541 1.21745,1.790363 0.74479,0.687499 1.76171,1.031249 1.03125,0.343749 2.26302,0.343749 1.63281,0 3.27995,-0.64453 1.66145,-0.658853 2.36327,-1.289061 h 0.14323 v 2.936194 q -1.36067,0.572916 -2.77864,0.959635 -1.41797,0.386718 -2.97916,0.386718 -3.98177,0 -6.21614,-2.148435 -2.23437,-2.162758 -2.23437,-6.130201 0,-3.924475 2.13411,-6.230462 2.14843,-2.305987 5.64322,-2.305987 3.23698,0 4.98437,1.890623 1.76172,1.890623 1.76172,5.371088 z m -2.62109,-2.062497 q -0.0143,-2.119789 -1.07422,-3.279944 -1.04557,-1.160155 -3.19401,-1.160155 -2.16276,0 -3.45182,1.274738 -1.27474,1.274738 -1.44661,3.165361 z"
id="path79123" />
</g>
<g
aria-label="past - perfect"
transform="matrix(0.26458333,0,0,0.26458333,-3.3754359,78.145384)"
id="text10342-3"
style="font-size:29.3333px;line-height:1.25;white-space:pre;shape-inside:url(#rect10344-1)">
<path
d="m 420.03383,71.602163 q 0,1.947914 -0.55859,3.566402 -0.55859,1.604165 -1.57552,2.721351 -0.94531,1.059895 -2.23437,1.647133 -1.27474,0.572916 -2.70703,0.572916 -1.24609,0 -2.26302,-0.272135 -1.0026,-0.272135 -2.04817,-0.845051 v 6.703118 h -2.69271 V 63.796182 h 2.69271 v 1.675779 q 1.07422,-0.902342 2.40625,-1.503904 1.34635,-0.615885 2.86458,-0.615885 2.89322,0 4.49739,2.191404 1.61848,2.177081 1.61848,6.058587 z m -2.77864,0.07161 q 0,-2.893226 -0.98828,-4.325516 -0.98828,-1.43229 -3.03645,-1.43229 -1.16016,0 -2.33464,0.501302 -1.17447,0.501301 -2.24869,1.317707 v 9.066396 q 1.14583,0.515624 1.96224,0.701822 0.83072,0.186197 1.8763,0.186197 2.24869,0 3.50911,-1.518227 1.26041,-1.518228 1.26041,-4.497391 z"
id="path79126" />
<path
d="m 436.66272,79.794862 h -2.67838 v -1.704425 q -0.35807,0.243489 -0.97396,0.687499 -0.60156,0.429687 -1.17448,0.687499 -0.67317,0.329427 -1.54687,0.54427 -0.8737,0.229167 -2.04817,0.229167 -2.16276,0 -3.66667,-1.43229 -1.5039,-1.43229 -1.5039,-3.65234 0,-1.819008 0.77344,-2.936195 0.78776,-1.131509 2.23437,-1.776039 1.46093,-0.644531 3.50911,-0.873697 2.04817,-0.229166 4.39713,-0.34375 v -0.415364 q 0,-0.916665 -0.32943,-1.518227 -0.3151,-0.601562 -0.91666,-0.945312 -0.57292,-0.329426 -1.375,-0.44401 -0.80208,-0.114583 -1.67578,-0.114583 -1.0599,0 -2.36328,0.286458 -1.30338,0.272135 -2.6927,0.802083 h -0.14323 v -2.735674 q 0.78776,-0.214844 2.27734,-0.472656 1.48958,-0.257812 2.93619,-0.257812 1.6901,0 2.9362,0.286458 1.26041,0.272135 2.17708,0.945311 0.90234,0.658854 1.375,1.704425 0.47265,1.045572 0.47265,2.592445 z m -2.67838,-3.938798 v -4.454422 q -1.23177,0.07162 -2.90755,0.214844 -1.66146,0.143229 -2.63541,0.415364 -1.16016,0.329426 -1.8763,1.031249 -0.71615,0.687499 -0.71615,1.904945 0,1.374999 0.83073,2.076821 0.83073,0.687499 2.53515,0.687499 1.41797,0 2.59245,-0.54427 1.17448,-0.558593 2.17708,-1.33203 z"
id="path79128" />
<path
d="m 453.30593,75.182888 q 0,2.191404 -1.81901,3.595048 -1.80468,1.403644 -4.9414,1.403644 -1.77604,0 -3.26562,-0.415364 -1.47526,-0.429687 -2.47786,-0.930989 v -3.022132 h 0.14323 q 1.27474,0.959635 2.83593,1.532551 1.5612,0.558593 2.99349,0.558593 1.77604,0 2.77864,-0.572916 1.0026,-0.572916 1.0026,-1.804686 0,-0.945311 -0.54427,-1.43229 -0.54427,-0.486978 -2.09114,-0.830728 -0.57292,-0.128906 -1.5039,-0.300781 -0.91667,-0.171875 -1.67578,-0.372395 -2.10547,-0.558593 -2.99349,-1.632811 -0.8737,-1.08854 -0.8737,-2.664059 0,-0.98828 0.40105,-1.861977 0.41536,-0.873697 1.24609,-1.561196 0.80208,-0.673177 2.03385,-1.059895 1.24609,-0.401041 2.77864,-0.401041 1.43229,0 2.89323,0.358072 1.47526,0.34375 2.44921,0.845051 v 2.878903 h -0.14323 q -1.03124,-0.759113 -2.5065,-1.274738 -1.47526,-0.529947 -2.89323,-0.529947 -1.47526,0 -2.49218,0.572916 -1.01693,0.558593 -1.01693,1.675779 0,0.98828 0.61589,1.489582 0.60156,0.501301 1.94791,0.816405 0.74479,0.171875 1.66146,0.34375 0.93098,0.171875 1.54687,0.315104 1.8763,0.429687 2.89323,1.475258 1.01692,1.059895 1.01692,2.807289 z"
id="path79130" />
<path
d="m 465.4804,79.651633 q -0.75912,0.20052 -1.66146,0.329426 -0.88802,0.128906 -1.58984,0.128906 -2.44922,0 -3.72396,-1.317706 -1.27474,-1.317707 -1.27474,-4.225256 V 66.0592 h -1.819 v -2.263018 h 1.819 v -4.597651 h 2.69271 v 4.597651 h 5.55729 V 66.0592 h -5.55729 v 7.290357 q 0,1.260415 0.0573,1.97656 0.0573,0.701822 0.40104,1.317707 0.31511,0.572916 0.85938,0.845051 0.55859,0.257812 1.6901,0.257812 0.65885,0 1.375,-0.186198 0.71614,-0.20052 1.03125,-0.329426 h 0.14323 z"
id="path79132" />
<path
d="m 487.53766,71.759715 h -8.93749 V 69.16727 h 8.93749 z"
id="path79134" />
<path
d="m 516.79935,71.602163 q 0,1.947914 -0.55859,3.566402 -0.55859,1.604165 -1.57552,2.721351 -0.94531,1.059895 -2.23437,1.647133 -1.27474,0.572916 -2.70703,0.572916 -1.24609,0 -2.26302,-0.272135 -1.0026,-0.272135 -2.04817,-0.845051 v 6.703118 h -2.69271 V 63.796182 h 2.69271 v 1.675779 q 1.07421,-0.902342 2.40624,-1.503904 1.34636,-0.615885 2.86458,-0.615885 2.89323,0 4.4974,2.191404 1.61848,2.177081 1.61848,6.058587 z m -2.77864,0.07161 q 0,-2.893226 -0.98828,-4.325516 -0.98828,-1.43229 -3.03645,-1.43229 -1.16016,0 -2.33464,0.501302 -1.17448,0.501301 -2.24869,1.317707 v 9.066396 q 1.14583,0.515624 1.96223,0.701822 0.83073,0.186197 1.8763,0.186197 2.2487,0 3.50912,-1.518227 1.26041,-1.518228 1.26041,-4.497391 z"
id="path79136" />
<path
d="m 534.38787,72.074818 h -11.78775 q 0,1.475259 0.44401,2.578122 0.44401,1.088541 1.21745,1.790363 0.74479,0.687499 1.76172,1.031249 1.03125,0.343749 2.26301,0.343749 1.63282,0 3.27995,-0.64453 1.66146,-0.658853 2.36328,-1.289061 h 0.14323 v 2.936194 q -1.36068,0.572916 -2.77865,0.959635 -1.41796,0.386718 -2.97916,0.386718 -3.98177,0 -6.21614,-2.148435 -2.23437,-2.162758 -2.23437,-6.130201 0,-3.924475 2.13411,-6.230462 2.14844,-2.305987 5.64322,-2.305987 3.23698,0 4.98437,1.890623 1.76172,1.890623 1.76172,5.371088 z m -2.62109,-2.062497 q -0.0143,-2.119789 -1.07422,-3.279944 -1.04557,-1.160155 -3.194,-1.160155 -2.16276,0 -3.45182,1.274738 -1.27474,1.274738 -1.44662,3.165361 z"
id="path79138" />
<path
d="m 548.45296,66.732377 h -0.14323 q -0.60156,-0.143229 -1.17448,-0.200521 -0.55859,-0.07161 -1.33203,-0.07161 -1.24609,0 -2.40625,0.558593 -1.16015,0.54427 -2.23437,1.417967 v 11.35806 h -2.6927 v -15.99868 h 2.6927 v 2.363279 q 1.60417,-1.289061 2.82161,-1.819009 1.23177,-0.54427 2.50651,-0.54427 0.70182,0 1.01693,0.04297 0.3151,0.02865 0.94531,0.128906 z"
id="path79140" />
<path
d="m 559.62482,60.115197 h -0.14323 q -0.44401,-0.128906 -1.16015,-0.257812 -0.71615,-0.143229 -1.26042,-0.143229 -1.73307,0 -2.52083,0.773436 -0.77344,0.759114 -0.77344,2.76432 v 0.54427 h 4.85547 V 66.0592 h -4.76953 v 13.735662 h -2.6927 V 66.0592 h -1.81901 v -2.263018 h 1.81901 v -0.529947 q 0,-2.850257 1.41796,-4.368485 1.41797,-1.53255 4.09635,-1.53255 0.90234,0 1.61849,0.08594 0.73047,0.08594 1.33203,0.200521 z"
id="path79142" />
<path
d="m 574.72115,72.074818 h -11.78774 q 0,1.475259 0.44401,2.578122 0.44401,1.088541 1.21744,1.790363 0.74479,0.687499 1.76172,1.031249 1.03125,0.343749 2.26302,0.343749 1.63281,0 3.27994,-0.64453 1.66146,-0.658853 2.36328,-1.289061 h 0.14323 v 2.936194 q -1.36068,0.572916 -2.77864,0.959635 -1.41797,0.386718 -2.97917,0.386718 -3.98176,0 -6.21614,-2.148435 -2.23437,-2.162758 -2.23437,-6.130201 0,-3.924475 2.13411,-6.230462 2.14844,-2.305987 5.64323,-2.305987 3.23697,0 4.98437,1.890623 1.76171,1.890623 1.76171,5.371088 z m -2.62109,-2.062497 q -0.0143,-2.119789 -1.07422,-3.279944 -1.04557,-1.160155 -3.194,-1.160155 -2.16276,0 -3.45182,1.274738 -1.27474,1.274738 -1.44661,3.165361 z"
id="path79144" />
<path
d="m 590.63389,78.792259 q -1.34635,0.64453 -2.56379,1.002603 -1.20313,0.358072 -2.5638,0.358072 -1.73307,0 -3.17969,-0.501301 -1.44661,-0.515625 -2.47786,-1.546874 -1.04557,-1.031248 -1.61849,-2.606767 -0.57291,-1.575519 -0.57291,-3.680986 0,-3.924474 2.14843,-6.158847 2.16276,-2.234372 5.70052,-2.234372 1.37499,0 2.6927,0.386718 1.33203,0.386718 2.43489,0.945311 v 2.993487 h -0.14322 q -1.23177,-0.959635 -2.54948,-1.475259 -1.30338,-0.515625 -2.54948,-0.515625 -2.29166,0 -3.62369,1.546874 -1.31771,1.53255 -1.31771,4.511713 0,2.893226 1.28906,4.454422 1.30339,1.546873 3.65234,1.546873 0.81641,0 1.66146,-0.214843 0.84505,-0.214844 1.51823,-0.558593 0.58724,-0.300781 1.10286,-0.630208 0.51562,-0.343749 0.81641,-0.587239 h 0.14322 z"
id="path79146" />
<path
d="m 602.40732,79.651633 q -0.75911,0.20052 -1.66146,0.329426 -0.88802,0.128906 -1.58984,0.128906 -2.44921,0 -3.72395,-1.317706 -1.27474,-1.317707 -1.27474,-4.225256 V 66.0592 h -1.81901 v -2.263018 h 1.81901 v -4.597651 h 2.69271 v 4.597651 h 5.55728 V 66.0592 h -5.55728 v 7.290357 q 0,1.260415 0.0573,1.97656 0.0573,0.701822 0.40104,1.317707 0.3151,0.572916 0.85937,0.845051 0.5586,0.257812 1.6901,0.257812 0.65886,0 1.375,-0.186198 0.71615,-0.20052 1.03125,-0.329426 h 0.14323 z"
id="path79148" />
</g>
<path
id="rect12589"
style="fill:none;stroke:#000000;stroke-width:0.727604"
d="m 66.610214,73.787094 h 21.06028 v 20.407637 h -21.06028 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 28.126606,89.377611 2.730095,3.476076 19.35886,-0.204474 2.730098,-3.271602"
id="path12748" />
<g
aria-label="S"
transform="matrix(0.26458333,0,0,0.26458333,9.7464998,26.570443)"
id="text14502"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504)">
<path
d="m 127.56836,287.3311 q 0,1.69922 -0.80078,3.35938 -0.78125,1.66015 -2.20703,2.8125 -1.5625,1.25 -3.65235,1.95312 -2.07031,0.70313 -5,0.70313 -3.14453,0 -5.66406,-0.58594 -2.5,-0.58594 -5.09766,-1.73828 v -4.84375 h 0.27344 q 2.20703,1.83594 5.09766,2.83203 2.89062,0.99609 5.42969,0.99609 3.59375,0 5.58593,-1.34765 2.01172,-1.34766 2.01172,-3.59375 0,-1.9336 -0.95703,-2.85156 -0.9375,-0.91797 -2.87109,-1.42579 -1.46485,-0.39062 -3.1836,-0.64453 -1.69922,-0.2539 -3.61328,-0.64453 -3.86719,-0.82031 -5.74219,-2.79297 -1.85546,-1.99218 -1.85546,-5.17578 0,-3.65234 3.08593,-5.97656 3.08594,-2.34375 7.83203,-2.34375 3.06641,0 5.625,0.58594 2.5586,0.58593 4.53125,1.44531 v 4.57031 h -0.27343 q -1.66016,-1.40625 -4.375,-2.32422 -2.69532,-0.9375 -5.52735,-0.9375 -3.10547,0 -5,1.28907 -1.875,1.28906 -1.875,3.32031 0,1.8164 0.9375,2.85156 0.9375,1.03516 3.30078,1.58203 1.25,0.27344 3.55469,0.66406 2.30469,0.39063 3.90625,0.80079 3.24219,0.85937 4.88281,2.59765 1.64063,1.73828 1.64063,4.86328 z"
id="path79152" />
</g>
<g
aria-label="V"
transform="matrix(0.26458333,0,0,0.26458333,46.395459,9.618951)"
id="text14502-7"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-5)">
<path
d="m 129.36523,266.54985 -10.58593,29.08203 h -5.15625 l -10.58594,-29.08203 h 4.14062 l 9.1211,25.58594 9.12109,-25.58594 z"
id="path79155" />
</g>
<path
d="m 45.186783,72.680168 h -9.308078 c -0.196908,0 -0.358009,0.165295 -0.358009,0.36732 v 0.73464 c 0,0.202025 0.161101,0.36732 0.358009,0.36732 h 9.308078 c 0.196899,0 0.358,-0.165295 0.358,-0.36732 v -0.73464 c 0,-0.202025 -0.161101,-0.36732 -0.358,-0.36732 z m 1.432009,-7.346382 c -0.592944,0 -1.074009,0.493592 -1.074009,1.101959 0,0.163003 0.03583,0.314515 0.09845,0.454554 l -1.619967,0.996357 c -0.344576,0.211205 -0.789843,0.09183 -0.988988,-0.266303 L 41.2107,64.346617 c 0.239418,-0.202025 0.396044,-0.505066 0.396044,-0.849423 0,-0.608375 -0.481065,-1.10196 -1.074008,-1.10196 -0.592944,0 -1.074009,0.493585 -1.074009,1.10196 0,0.344357 0.156626,0.647398 0.396044,0.849423 l -1.823578,3.273736 c -0.199145,0.358131 -0.646641,0.477508 -0.988988,0.266303 l -1.617721,-0.996357 c 0.06044,-0.137746 0.09845,-0.291551 0.09845,-0.454554 0,-0.608367 -0.481065,-1.101959 -1.074009,-1.101959 -0.592943,0 -1.076246,0.493592 -1.076246,1.101959 0,0.608376 0.481065,1.10196 1.074009,1.10196 0.05821,0 0.116353,-0.0092 0.172288,-0.01834 l 1.617729,4.4262 h 8.592069 l 1.61773,-4.4262 c 0.05589,0.0092 0.114116,0.01834 0.172288,0.01834 0.592943,0 1.074008,-0.493584 1.074008,-1.10196 0,-0.608367 -0.481065,-1.101959 -1.074008,-1.101959 z"
id="path21494"
style="stroke-width:0.0226644" />
<path
id="rect12589-5"
style="fill:none;stroke:#000000;stroke-width:0.727604"
d="m 181.62965,53.718853 h 21.06028 V 74.12649 h -21.06028 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 110.47169,69.30937 2.7301,3.476076 19.35886,-0.204474 2.7301,-3.271602"
id="path12748-4" />
<g
aria-label="S"
transform="matrix(0.26458333,0,0,0.26458333,92.091557,6.5022028)"
id="text14502-5"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-7)">
<path
d="m 127.56836,287.3311 q 0,1.69922 -0.80078,3.35938 -0.78125,1.66015 -2.20703,2.8125 -1.5625,1.25 -3.65235,1.95312 -2.07031,0.70313 -5,0.70313 -3.14453,0 -5.66406,-0.58594 -2.5,-0.58594 -5.09766,-1.73828 v -4.84375 h 0.27344 q 2.20703,1.83594 5.09766,2.83203 2.89062,0.99609 5.42969,0.99609 3.59375,0 5.58593,-1.34765 2.01172,-1.34766 2.01172,-3.59375 0,-1.9336 -0.95703,-2.85156 -0.9375,-0.91797 -2.87109,-1.42579 -1.46485,-0.39062 -3.1836,-0.64453 -1.69922,-0.2539 -3.61328,-0.64453 -3.86719,-0.82031 -5.74219,-2.79297 -1.85546,-1.99218 -1.85546,-5.17578 0,-3.65234 3.08593,-5.97656 3.08594,-2.34375 7.83203,-2.34375 3.06641,0 5.625,0.58594 2.5586,0.58593 4.53125,1.44531 v 4.57031 h -0.27343 q -1.66016,-1.40625 -4.375,-2.32422 -2.69532,-0.9375 -5.52735,-0.9375 -3.10547,0 -5,1.28907 -1.875,1.28906 -1.875,3.32031 0,1.8164 0.9375,2.85156 0.9375,1.03516 3.30078,1.58203 1.25,0.27344 3.55469,0.66406 2.30469,0.39063 3.90625,0.80079 3.24219,0.85937 4.88281,2.59765 1.64063,1.73828 1.64063,4.86328 z"
id="path79159" />
</g>
<g
aria-label="V"
transform="matrix(0.26458333,0,0,0.26458333,161.41503,-10.449287)"
id="text14502-7-3"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-5-8)">
<path
d="m 129.36523,266.54985 -10.58593,29.08203 h -5.15625 l -10.58594,-29.08203 h 4.14062 l 9.1211,25.58594 9.12109,-25.58594 z"
id="path79162" />
</g>
<path
id="path21494-1"
style="stroke-width:0.0226644"
d="m 122.87695,40.376953 c -0.59294,0 -1.07226,0.495141 -1.07226,1.103516 0,0.344357 0.15511,0.647585 0.39453,0.849609 l -1.82227,3.273438 c -0.19914,0.358131 -0.64788,0.47683 -0.99023,0.265625 l -1.61719,-0.996094 c 0.0604,-0.137746 0.0977,-0.292075 0.0977,-0.455078 0,-0.608367 -0.47932,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07812,0.493196 -1.07812,1.101563 0,0.608376 0.48127,1.101562 1.07422,1.101562 0.0582,0 0.11789,-0.0084 0.17382,-0.01758 l 1.61719,4.425781 h 8.5918 l 1.61719,-4.425781 c 0.0559,0.0092 0.11565,0.01758 0.17382,0.01758 0.59294,0 1.07227,-0.493186 1.07227,-1.101562 0,-0.608367 -0.47933,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07422,0.493196 -1.07422,1.101563 0,0.163003 0.0351,0.315039 0.0977,0.455078 l -1.61914,0.996094 c -0.34457,0.211205 -0.79109,0.09251 -0.99023,-0.265625 l -1.82227,-3.273438 c 0.23942,-0.202024 0.39453,-0.505252 0.39453,-0.849609 0,-0.608375 -0.48127,-1.103516 -1.07422,-1.103516 z m -4.65234,10.285156 c -0.19691,0 -0.35938,0.165163 -0.35938,0.367188 v 0.736328 c 0,0.202025 0.16247,0.367187 0.35938,0.367187 h 9.30664 c 0.1969,0 0.35937,-0.165162 0.35937,-0.367187 v -0.736328 c 0,-0.202025 -0.16247,-0.367188 -0.35937,-0.367188 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 145.43427,68.929606 2.7301,3.476076 19.35886,-0.204474 2.7301,-3.271602"
id="path12748-4-6" />
<g
aria-label="O"
transform="matrix(0.26458333,0,0,0.26458333,126.54516,6.1224388)"
id="text14502-5-4"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-7-9)">
<path
d="m 128.11523,269.8897 q 1.77735,1.95312 2.71485,4.78515 0.95703,2.83203 0.95703,6.42578 0,3.59375 -0.97656,6.44532 -0.95703,2.83203 -2.69532,4.72656 -1.79687,1.97266 -4.25781,2.96875 -2.4414,0.99609 -5.58594,0.99609 -3.0664,0 -5.58593,-1.01562 -2.5,-1.01563 -4.25782,-2.94922 -1.75781,-1.93359 -2.71484,-4.74609 -0.9375,-2.8125 -0.9375,-6.42579 0,-3.55468 0.9375,-6.36718 0.9375,-2.83203 2.73438,-4.84375 1.71875,-1.91407 4.25781,-2.92969 2.55859,-1.01563 5.5664,-1.01563 3.125,0 5.60547,1.03516 2.5,1.01563 4.23828,2.91016 z m -0.35156,11.21093 q 0,-5.66406 -2.53906,-8.73046 -2.53906,-3.08594 -6.93359,-3.08594 -4.4336,0 -6.97266,3.08594 -2.51953,3.0664 -2.51953,8.73046 0,5.72266 2.57812,8.76954 2.57813,3.02734 6.91407,3.02734 4.33593,0 6.89453,-3.02734 2.57812,-3.04688 2.57812,-8.76954 z"
id="path79166" />
</g>
<g
aria-label="infl. 1st + 2nd
pronoun"
transform="matrix(0.26458333,0,0,0.26458333,38.760473,-57.593256)"
id="text31446"
style="font-size:18.6667px;line-height:1.25;white-space:pre;shape-inside:url(#rect31448)">
<path
d="m 386.28179,432.15843 h -1.9323 v -1.77735 h 1.9323 z m -0.10938,11.88544 h -1.71354 v -10.18101 h 1.71354 z"
style="text-align:center;text-anchor:middle"
id="path79169" />
<path
d="m 398.09431,444.04387 h -1.71355 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22787,-0.38281 -0.65625,-0.5651 -0.42839,-0.19141 -1.11198,-0.19141 -0.70183,0 -1.46745,0.34636 -0.76563,0.34635 -1.46745,0.88411 v 7.60158 h -1.71355 v -10.18101 h 1.71355 v 1.13021 q 0.80208,-0.66536 1.65885,-1.03906 0.85678,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
style="text-align:center;text-anchor:middle"
id="path79171" />
<path
d="m 406.87167,431.52041 h -0.0911 q -0.28255,-0.082 -0.73828,-0.16406 -0.45573,-0.0912 -0.80209,-0.0912 -1.10286,0 -1.60417,0.49219 -0.49218,0.48307 -0.49218,1.75912 v 0.34635 h 3.08984 v 1.44011 h -3.03516 v 8.7409 h -1.71354 v -8.7409 h -1.15756 v -1.44011 h 1.15756 v -0.33724 q 0,-1.8138 0.90234,-2.77995 0.90235,-0.97526 2.60678,-0.97526 0.57422,0 1.02995,0.0547 0.46484,0.0547 0.84766,0.12761 z"
style="text-align:center;text-anchor:middle"
id="path79173" />
<path
d="m 409.68808,444.04387 h -1.71355 v -14.18232 h 1.71355 z"
style="text-align:center;text-anchor:middle"
id="path79175" />
<path
d="m 415.89512,444.04387 h -2.17839 v -2.59766 h 2.17839 z"
style="text-align:center;text-anchor:middle"
id="path79177" />
<path
d="m 434.63474,444.04387 h -7.34637 v -1.38542 h 2.82553 v -9.09637 h -2.82553 v -1.23959 q 0.57422,0 1.23047,-0.0911 0.65625,-0.10026 0.99349,-0.28256 0.41927,-0.22786 0.65625,-0.57422 0.2461,-0.35546 0.28256,-0.94791 h 1.41276 v 12.23179 h 2.77084 z"
style="text-align:center;text-anchor:middle"
id="path79179" />
<path
d="m 445.5996,441.10897 q 0,1.39453 -1.15755,2.28776 -1.14844,0.89323 -3.14454,0.89323 -1.13021,0 -2.07813,-0.26432 -0.9388,-0.27344 -1.57683,-0.59245 v -1.92318 h 0.0911 q 0.8112,0.61068 1.80469,0.97526 0.99349,0.35547 1.90495,0.35547 1.13021,0 1.76824,-0.36458 0.63802,-0.36459 0.63802,-1.14844 0,-0.60157 -0.34636,-0.91146 -0.34635,-0.3099 -1.33073,-0.52865 -0.36458,-0.082 -0.95703,-0.19141 -0.58334,-0.10937 -1.06641,-0.23698 -1.33985,-0.35546 -1.90495,-1.03906 -0.55599,-0.69271 -0.55599,-1.69532 0,-0.6289 0.25521,-1.18489 0.26432,-0.55599 0.79297,-0.99349 0.51041,-0.42839 1.29427,-0.67448 0.79297,-0.25521 1.76823,-0.25521 0.91146,0 1.84115,0.22786 0.93881,0.21875 1.5586,0.53776 v 1.83204 h -0.0911 q -0.65625,-0.48308 -1.59505,-0.8112 -0.93881,-0.33724 -1.84115,-0.33724 -0.93881,0 -1.58594,0.36458 -0.64714,0.35547 -0.64714,1.06641 0,0.62891 0.39193,0.94792 0.38281,0.31901 1.23958,0.51953 0.47396,0.10938 1.0573,0.21875 0.59245,0.10938 0.98437,0.20052 1.19402,0.27344 1.84115,0.93881 0.64714,0.67448 0.64714,1.78646 z"
style="text-align:center;text-anchor:middle"
id="path79181" />
<path
d="m 453.34701,443.95272 q -0.48308,0.12761 -1.0573,0.20964 -0.5651,0.082 -1.01172,0.082 -1.55859,0 -2.36979,-0.83854 -0.8112,-0.83855 -0.8112,-2.68881 v -5.41407 h -1.15756 v -1.44011 h 1.15756 v -2.92579 h 1.71354 v 2.92579 h 3.53647 v 1.44011 h -3.53647 v 4.63933 q 0,0.80208 0.0365,1.25781 0.0365,0.44662 0.25521,0.83855 0.20052,0.36458 0.54688,0.53776 0.35547,0.16406 1.07552,0.16406 0.41927,0 0.875,-0.11849 0.45573,-0.1276 0.65625,-0.20963 h 0.0912 z"
style="text-align:center;text-anchor:middle"
id="path79183" />
<path
d="m 473.66345,438.83032 h -4.96746 v 4.96745 h -1.51302 v -4.96745 h -4.96746 v -1.45834 h 4.96746 v -4.96746 h 1.51302 v 4.96746 h 4.96746 z"
style="text-align:center;text-anchor:middle"
id="path79185" />
<path
d="m 492.795,444.04387 h -9.18752 v -1.90495 q 0.95704,-0.82032 1.91407,-1.64063 0.96615,-0.82031 1.79558,-1.63151 1.75,-1.69532 2.39714,-2.68881 0.64713,-1.00261 0.64713,-2.16016 0,-1.05729 -0.70182,-1.64974 -0.69271,-0.60157 -1.94141,-0.60157 -0.82943,0 -1.79558,0.29167 -0.96615,0.29167 -1.88672,0.89323 h -0.0911 v -1.91407 q 0.64714,-0.31901 1.72266,-0.58333 1.08464,-0.26432 2.09636,-0.26432 2.08724,0 3.27214,1.01172 1.1849,1.0026 1.1849,2.72526 0,0.77474 -0.20052,1.44922 -0.19141,0.66537 -0.57422,1.26693 -0.35547,0.56511 -0.83854,1.11198 -0.47396,0.54688 -1.15756,1.21225 -0.97526,0.95703 -2.01432,1.85937 -1.03907,0.89324 -1.94141,1.65886 h 7.30079 z"
style="text-align:center;text-anchor:middle"
id="path79187" />
<path
d="m 504.22471,444.04387 h -1.71355 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22787,-0.38281 -0.65625,-0.5651 -0.42839,-0.19141 -1.11198,-0.19141 -0.70183,0 -1.46745,0.34636 -0.76563,0.34635 -1.46745,0.88411 v 7.60158 h -1.71355 v -10.18101 h 1.71355 v 1.13021 q 0.80208,-0.66536 1.65885,-1.03906 0.85678,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
style="text-align:center;text-anchor:middle"
id="path79189" />
<path
d="m 515.78202,444.04387 h -1.71354 v -1.06641 q -0.73829,0.63802 -1.54037,0.99349 -0.80209,0.35547 -1.74089,0.35547 -1.82292,0 -2.89844,-1.40365 -1.06641,-1.40365 -1.06641,-3.89193 0,-1.29427 0.36458,-2.306 0.3737,-1.01172 1.00261,-1.72265 0.61979,-0.69271 1.44011,-1.0573 0.82942,-0.36458 1.71354,-0.36458 0.80209,0 1.42188,0.17318 0.61979,0.16406 1.30339,0.51953 v -4.41147 h 1.71354 z m -1.71354,-2.50652 v -5.84245 q -0.69271,-0.3099 -1.23959,-0.42839 -0.54688,-0.11849 -1.19401,-0.11849 -1.44011,0 -2.24219,1.00261 -0.80209,1.0026 -0.80209,2.84375 0,1.81381 0.61979,2.76172 0.6198,0.93881 1.98699,0.93881 0.72917,0 1.47656,-0.31901 0.7474,-0.32813 1.39454,-0.83855 z"
style="text-align:center;text-anchor:middle"
id="path79191" />
<path
d="m 421.89253,462.16369 q 0,1.23959 -0.35547,2.26954 -0.35547,1.02083 -1.00261,1.73177 -0.60156,0.67448 -1.42188,1.04818 -0.8112,0.36458 -1.72266,0.36458 -0.79297,0 -1.4401,-0.17317 -0.63802,-0.17318 -1.30339,-0.53777 v 4.26564 h -1.71354 v -13.93623 h 1.71354 v 1.06641 q 0.6836,-0.57422 1.53125,-0.95703 0.85678,-0.39193 1.82292,-0.39193 1.84115,0 2.86199,1.39454 1.02995,1.38541 1.02995,3.85547 z m -1.76824,0.0456 q 0,-1.84114 -0.6289,-2.7526 -0.62891,-0.91146 -1.9323,-0.91146 -0.73828,0 -1.48568,0.31901 -0.74739,0.31901 -1.43099,0.83854 v 5.76954 q 0.72917,0.32813 1.2487,0.44662 0.52865,0.11849 1.19401,0.11849 1.431,0 2.23308,-0.96615 0.80208,-0.96615 0.80208,-2.86199 z"
style="text-align:center;text-anchor:middle"
id="path79193" />
<path
d="m 430.91598,459.06473 h -0.0911 q -0.38281,-0.0911 -0.74739,-0.12761 -0.35547,-0.0456 -0.84766,-0.0456 -0.79297,0 -1.53125,0.35547 -0.73829,0.34635 -1.42188,0.90234 v 7.22788 h -1.71355 v -10.18101 h 1.71355 v 1.50391 q 1.02083,-0.82031 1.79558,-1.15755 0.78385,-0.34636 1.59505,-0.34636 0.44662,0 0.64714,0.0274 0.20052,0.0182 0.60156,0.082 z"
style="text-align:center;text-anchor:middle"
id="path79195" />
<path
d="m 441.22459,462.2913 q 0,2.48828 -1.27604,3.92839 -1.27605,1.44011 -3.41798,1.44011 -2.16016,0 -3.4362,-1.44011 -1.26693,-1.44011 -1.26693,-3.92839 0,-2.48829 1.26693,-3.9284 1.27604,-1.44922 3.4362,-1.44922 2.14193,0 3.41798,1.44922 1.27604,1.44011 1.27604,3.9284 z m -1.76823,0 q 0,-1.97787 -0.77474,-2.93491 -0.77474,-0.96614 -2.15105,-0.96614 -1.39453,0 -2.16927,0.96614 -0.76563,0.95704 -0.76563,2.93491 0,1.91406 0.77474,2.90755 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97526 0.78386,-0.98438 0.78386,-2.91667 z"
style="text-align:center;text-anchor:middle"
id="path79197" />
<path
d="m 452.39909,467.37724 h -1.71354 v -5.79688 q 0,-0.70183 -0.082,-1.31251 -0.082,-0.61979 -0.30079,-0.96614 -0.22786,-0.38282 -0.65625,-0.56511 -0.42838,-0.1914 -1.11198,-0.1914 -0.70182,0 -1.46745,0.34635 -0.76563,0.34635 -1.46745,0.88412 v 7.60157 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80209,-0.66536 1.65886,-1.03906 0.85677,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86588,0.99349 0.86588,2.86199 z"
style="text-align:center;text-anchor:middle"
id="path79199" />
<path
d="m 464.37568,462.2913 q 0,2.48828 -1.27605,3.92839 -1.27604,1.44011 -3.41797,1.44011 -2.16016,0 -3.43621,-1.44011 -1.26693,-1.44011 -1.26693,-3.92839 0,-2.48829 1.26693,-3.9284 1.27605,-1.44922 3.43621,-1.44922 2.14193,0 3.41797,1.44922 1.27605,1.44011 1.27605,3.9284 z m -1.76824,0 q 0,-1.97787 -0.77474,-2.93491 -0.77474,-0.96614 -2.15104,-0.96614 -1.39454,0 -2.16928,0.96614 -0.76562,0.95704 -0.76562,2.93491 0,1.91406 0.77474,2.90755 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97526 0.78385,-0.98438 0.78385,-2.91667 z"
style="text-align:center;text-anchor:middle"
id="path79201" />
<path
d="m 475.47726,467.37724 h -1.71355 v -1.13021 q -0.86588,0.6836 -1.65885,1.04818 -0.79297,0.36459 -1.75001,0.36459 -1.60417,0 -2.4974,-0.97527 -0.89323,-0.98437 -0.89323,-2.88021 v -6.60809 h 1.71355 v 5.79689 q 0,0.77474 0.0729,1.33073 0.0729,0.54688 0.3099,0.93881 0.24609,0.40104 0.63802,0.58333 0.39193,0.18229 1.13933,0.18229 0.66536,0 1.44922,-0.34635 0.79297,-0.34636 1.47656,-0.88412 v -7.60158 h 1.71355 z"
style="text-align:center;text-anchor:middle"
id="path79203" />
<path
d="m 487.3627,467.37724 h -1.71355 v -5.79688 q 0,-0.70183 -0.082,-1.31251 -0.082,-0.61979 -0.30078,-0.96614 -0.22786,-0.38282 -0.65625,-0.56511 -0.42839,-0.1914 -1.11198,-0.1914 -0.70183,0 -1.46745,0.34635 -0.76563,0.34635 -1.46745,0.88412 v 7.60157 h -1.71355 v -10.18101 h 1.71355 v 1.13021 q 0.80208,-0.66536 1.65885,-1.03906 0.85678,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86199 z"
style="text-align:center;text-anchor:middle"
id="path79205" />
</g>
<path
id="path36134"
style="stroke-width:0.0248982"
d="m 157.83984,39.880859 c -0.88005,0 -1.59375,0.713705 -1.59375,1.59375 0,0.880058 0.7137,1.59375 1.59375,1.59375 0.88004,0 1.59375,-0.713692 1.59375,-1.59375 0,-0.880045 -0.71371,-1.59375 -1.59375,-1.59375 z m -1.19531,3.585938 c -0.66005,0 -1.19531,0.535257 -1.19531,1.195312 v 3.384766 c 0,0.330022 0.26761,0.597656 0.59766,0.597656 h 0.39843 v 3.386719 c 0,0.330021 0.26763,0.597656 0.59766,0.597656 h 1.59375 c 0.33002,0 0.59765,-0.267635 0.59766,-0.597656 v -3.386719 h 0.39843 c 0.33003,0 0.59766,-0.267634 0.59766,-0.597656 v -3.384766 c 0,-0.660055 -0.53526,-1.195312 -1.19531,-1.195312 h -0.28321 c -0.56546,0.260011 -1.23438,0.271251 -1.82422,0 z" />
<g
id="g60074"
transform="translate(6.3500003)">
<path
id="rect12589-5-1"
style="fill:none;stroke:#000000;stroke-width:0.727604"
d="m 175.28523,120.29713 h 21.06028 v 20.40763 h -21.06028 z" />
<g
aria-label="V"
transform="matrix(0.26458333,0,0,0.26458333,155.07048,56.128988)"
id="text14502-7-3-7"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-5-8-0)">
<path
d="m 129.36523,266.54985 -10.58593,29.08203 h -5.15625 l -10.58594,-29.08203 h 4.14062 l 9.1211,25.58594 9.12109,-25.58594 z"
id="path79210" />
</g>
</g>
<g
id="g60080"
transform="translate(6.3500003)">
<path
d="m 156.94586,117.13885 h -9.30808 c -0.19691,0 -0.35801,0.1653 -0.35801,0.36732 v 0.73464 c 0,0.20203 0.1611,0.36732 0.35801,0.36732 h 9.30808 c 0.1969,0 0.358,-0.16529 0.358,-0.36732 v -0.73464 c 0,-0.20202 -0.1611,-0.36732 -0.358,-0.36732 z m 1.43201,-7.34638 c -0.59294,0 -1.07401,0.49359 -1.07401,1.10196 0,0.163 0.0358,0.31451 0.0984,0.45455 l -1.61997,0.99636 c -0.34457,0.2112 -0.78984,0.0918 -0.98898,-0.2663 l -1.82358,-3.27374 c 0.23942,-0.20203 0.39604,-0.50507 0.39604,-0.84943 0,-0.60837 -0.48106,-1.10196 -1.07401,-1.10196 -0.59294,0 -1.07401,0.49359 -1.07401,1.10196 0,0.34436 0.15663,0.6474 0.39605,0.84943 l -1.82358,3.27374 c -0.19914,0.35813 -0.64664,0.4775 -0.98899,0.2663 l -1.61772,-0.99636 c 0.0604,-0.13774 0.0985,-0.29155 0.0985,-0.45455 0,-0.60837 -0.48106,-1.10196 -1.07401,-1.10196 -0.59294,0 -1.07624,0.49359 -1.07624,1.10196 0,0.60837 0.48106,1.10196 1.07401,1.10196 0.0582,0 0.11635,-0.009 0.17228,-0.0183 l 1.61773,4.4262 h 8.59207 l 1.61773,-4.4262 c 0.0559,0.009 0.11412,0.0183 0.17229,0.0183 0.59294,0 1.07401,-0.49359 1.07401,-1.10196 0,-0.60837 -0.48107,-1.10196 -1.07401,-1.10196 z"
id="path21494-1-5"
style="stroke-width:0.0226644" />
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 139.88568,135.50788 2.7301,3.47607 19.35886,-0.20447 2.7301,-3.2716"
id="path12748-4-6-0" />
<g
aria-label="O"
transform="matrix(0.26458333,0,0,0.26458333,120.99657,72.700714)"
id="text14502-5-4-5"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-7-9-3)">
<path
d="m 128.11523,269.8897 q 1.77735,1.95312 2.71485,4.78515 0.95703,2.83203 0.95703,6.42578 0,3.59375 -0.97656,6.44532 -0.95703,2.83203 -2.69532,4.72656 -1.79687,1.97266 -4.25781,2.96875 -2.4414,0.99609 -5.58594,0.99609 -3.0664,0 -5.58593,-1.01562 -2.5,-1.01563 -4.25782,-2.94922 -1.75781,-1.93359 -2.71484,-4.74609 -0.9375,-2.8125 -0.9375,-6.42579 0,-3.55468 0.9375,-6.36718 0.9375,-2.83203 2.73438,-4.84375 1.71875,-1.91407 4.25781,-2.92969 2.55859,-1.01563 5.5664,-1.01563 3.125,0 5.60547,1.03516 2.5,1.01563 4.23828,2.91016 z m -0.35156,11.21093 q 0,-5.66406 -2.53906,-8.73046 -2.53906,-3.08594 -6.93359,-3.08594 -4.4336,0 -6.97266,3.08594 -2.51953,3.0664 -2.51953,8.73046 0,5.72266 2.57812,8.76954 2.57813,3.02734 6.91407,3.02734 4.33593,0 6.89453,-3.02734 2.57812,-3.04688 2.57812,-8.76954 z"
id="path79213" />
</g>
</g>
<g
id="g60088"
transform="translate(6.3500003)">
<path
style="fill:none;stroke:#000000;stroke-width:0.727604;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 105.70061,135.88764 2.7301,3.47608 19.35886,-0.20448 2.7301,-3.2716"
id="path12748-4-2" />
<g
aria-label="S"
transform="matrix(0.26458333,0,0,0.26458333,87.320516,73.080478)"
id="text14502-5-46"
style="font-size:40px;line-height:1.25;white-space:pre;shape-inside:url(#rect14504-7-4)">
<path
d="m 127.56836,287.3311 q 0,1.69922 -0.80078,3.35938 -0.78125,1.66015 -2.20703,2.8125 -1.5625,1.25 -3.65235,1.95312 -2.07031,0.70313 -5,0.70313 -3.14453,0 -5.66406,-0.58594 -2.5,-0.58594 -5.09766,-1.73828 v -4.84375 h 0.27344 q 2.20703,1.83594 5.09766,2.83203 2.89062,0.99609 5.42969,0.99609 3.59375,0 5.58593,-1.34765 2.01172,-1.34766 2.01172,-3.59375 0,-1.9336 -0.95703,-2.85156 -0.9375,-0.91797 -2.87109,-1.42579 -1.46485,-0.39062 -3.1836,-0.64453 -1.69922,-0.2539 -3.61328,-0.64453 -3.86719,-0.82031 -5.74219,-2.79297 -1.85546,-1.99218 -1.85546,-5.17578 0,-3.65234 3.08593,-5.97656 3.08594,-2.34375 7.83203,-2.34375 3.06641,0 5.625,0.58594 2.5586,0.58593 4.53125,1.44531 v 4.57031 h -0.27343 q -1.66016,-1.40625 -4.375,-2.32422 -2.69532,-0.9375 -5.52735,-0.9375 -3.10547,0 -5,1.28907 -1.875,1.28906 -1.875,3.32031 0,1.8164 0.9375,2.85156 0.9375,1.03516 3.30078,1.58203 1.25,0.27344 3.55469,0.66406 2.30469,0.39063 3.90625,0.80079 3.24219,0.85937 4.88281,2.59765 1.64063,1.73828 1.64063,4.86328 z"
id="path79216" />
</g>
<path
d="m 118.10675,106.35707 c 0.88004,0 1.59349,0.71345 1.59349,1.59349 0,0.88006 -0.71345,1.59349 -1.59349,1.59349 -0.88005,0 -1.59348,-0.71343 -1.59348,-1.59349 0,-0.88004 0.71343,-1.59349 1.59348,-1.59349 m 1.19512,3.58535 h -0.28285 c -0.56546,0.26001 -1.2347,0.27125 -1.82454,0 h -0.28284 c -0.66005,0 -1.19512,0.53507 -1.19512,1.19513 v 3.38615 c 0,0.33002 0.26753,0.59755 0.59757,0.59755 h 0.39835 v 3.38617 c 0,0.33002 0.26754,0.59755 0.59757,0.59755 h 1.59349 c 0.33002,0 0.59755,-0.26753 0.59755,-0.59755 v -3.38617 h 0.39837 c 0.33003,0 0.59756,-0.26753 0.59756,-0.59755 v -3.38615 c 0,-0.66006 -0.53506,-1.19513 -1.19511,-1.19513 z"
id="path36134-7"
style="stroke-width:0.0248982" />
<g
aria-label="inflected"
transform="matrix(0.26458333,0,0,0.26458333,94.729003,85.884962)"
id="text20616-0-5-8"
style="font-size:26.6667px;line-height:1.25;white-space:pre;shape-inside:url(#rect20618-2-65-6);fill:#4d4d4d">
<path
d="m 36.585944,145.93168 h -2.76042 v -2.53906 h 2.76042 z m -0.15625,16.97919 h -2.44792 v -14.54429 h 2.44792 z"
id="path79219" />
<path
d="m 53.460965,162.91087 h -2.44792 v -8.28126 q 0,-1.00261 -0.117187,-1.875 -0.117188,-0.88542 -0.429688,-1.38021 -0.325522,-0.54688 -0.937502,-0.8073 -0.61198,-0.27343 -1.588543,-0.27343 -1.002606,0 -2.096357,0.49479 -1.093752,0.49479 -2.096357,1.26302 v 10.85939 h -2.44792 v -14.54429 h 2.44792 v 1.61459 q 1.145835,-0.95053 2.369795,-1.48438 1.22396,-0.53386 2.513024,-0.53386 2.356774,0 3.593754,1.41928 1.236981,1.41927 1.236981,4.08854 z"
id="path79221" />
<path
d="m 66.000043,145.02022 h -0.130208 q -0.403646,-0.11718 -1.054689,-0.23437 -0.651042,-0.13021 -1.145835,-0.13021 -1.575522,0 -2.291669,0.70312 -0.703126,0.69011 -0.703126,2.51303 v 0.49479 h 4.414068 v 2.0573 h -4.335943 v 12.48699 h -2.44792 v -12.48699 h -1.653648 v -2.0573 h 1.653648 v -0.48177 q 0,-2.59115 1.289064,-3.97136 1.289064,-1.39323 3.723963,-1.39323 0.820314,0 1.471356,0.0781 0.664064,0.0781 1.210939,0.1823 z"
id="path79223" />
<path
d="m 70.023486,162.91087 h -2.44792 v -20.26044 h 2.44792 z"
id="path79225" />
<path
d="M 87.067776,155.89263 H 76.351617 q 0,1.34115 0.403646,2.34376 0.403647,0.98958 1.106773,1.6276 0.677084,0.625 1.601564,0.9375 0.937501,0.3125 2.057294,0.3125 1.484377,0 2.981775,-0.58594 1.510419,-0.59895 2.14844,-1.17187 h 0.130209 v 2.66927 q -1.236981,0.52084 -2.526045,0.8724 -1.289064,0.35156 -2.708337,0.35156 -3.619796,0 -5.651049,-1.95312 -2.031252,-1.96615 -2.031252,-5.57293 0,-3.56771 1.940106,-5.66407 1.953128,-2.09636 5.130215,-2.09636 2.942712,0 4.531256,1.71876 1.601564,1.71875 1.601564,4.88282 z m -2.382815,-1.875 q -0.01302,-1.92709 -0.976564,-2.98177 -0.950522,-1.05469 -2.903649,-1.05469 -1.966149,0 -3.138025,1.15885 -1.158856,1.15886 -1.315106,2.87761 z"
id="path79227" />
<path
d="m 101.53394,161.99941 q -1.22396,0.58594 -2.330731,0.91146 -1.093752,0.32552 -2.330732,0.32552 -1.575523,0 -2.890629,-0.45573 -1.315106,-0.46875 -2.252607,-1.40625 -0.950522,-0.9375 -1.471356,-2.36979 -0.520834,-1.4323 -0.520834,-3.34636 0,-3.56772 1.953127,-5.59897 1.966149,-2.03125 5.182299,-2.03125 1.250001,0 2.447919,0.35156 1.210944,0.35157 2.213544,0.85938 v 2.72136 h -0.13021 q -1.11979,-0.8724 -2.317709,-1.34115 -1.184897,-0.46875 -2.317711,-0.46875 -2.083336,0 -3.294275,1.40625 -1.197918,1.39323 -1.197918,4.10157 0,2.63021 1.171876,4.04948 1.184897,1.40625 3.320317,1.40625 0.742188,0 1.510418,-0.19531 0.76823,-0.19531 1.38021,-0.50781 0.533852,-0.27344 1.002602,-0.57292 0.46875,-0.3125 0.74219,-0.53385 h 0.13021 z"
id="path79229" />
<path
d="m 112.23708,162.78066 q -0.6901,0.18229 -1.51042,0.29948 -0.80729,0.11719 -1.44531,0.11719 -2.22657,0 -3.38542,-1.19792 -1.15886,-1.19792 -1.15886,-3.84115 v -7.73438 h -1.65365 v -2.0573 h 1.65365 v -4.17969 h 2.44792 v 4.17969 h 5.05209 v 2.0573 h -5.05209 v 6.62761 q 0,1.14583 0.0521,1.79688 0.0521,0.63802 0.36459,1.19791 0.28646,0.52084 0.78125,0.76823 0.50781,0.23438 1.53646,0.23438 0.59896,0 1.25,-0.16927 0.65104,-0.18229 0.9375,-0.29948 h 0.13021 z"
id="path79231" />
<path
d="m 127.38033,155.89263 h -10.71616 q 0,1.34115 0.40364,2.34376 0.40365,0.98958 1.10678,1.6276 0.67708,0.625 1.60156,0.9375 0.9375,0.3125 2.05729,0.3125 1.48438,0 2.98178,-0.58594 1.51042,-0.59895 2.14844,-1.17187 h 0.13021 v 2.66927 q -1.23698,0.52084 -2.52605,0.8724 -1.28906,0.35156 -2.70833,0.35156 -3.6198,0 -5.65105,-1.95312 -2.03126,-1.96615 -2.03126,-5.57293 0,-3.56771 1.94011,-5.66407 1.95313,-2.09636 5.13022,-2.09636 2.94271,0 4.53125,1.71876 1.60157,1.71875 1.60157,4.88282 z m -2.38282,-1.875 q -0.013,-1.92709 -0.97656,-2.98177 -0.95053,-1.05469 -2.90365,-1.05469 -1.96615,0 -3.13803,1.15885 -1.15885,1.15886 -1.3151,2.87761 z"
id="path79233" />
<path
d="m 142.88816,162.91087 h -2.44792 v -1.52344 q -1.05469,0.91146 -2.20053,1.41927 -1.14583,0.50782 -2.48698,0.50782 -2.60417,0 -4.14063,-2.00521 -1.52344,-2.00521 -1.52344,-5.55991 0,-1.84896 0.52084,-3.29427 0.53385,-1.44532 1.43229,-2.46094 0.88542,-0.98959 2.05729,-1.51042 1.1849,-0.52084 2.44792,-0.52084 1.14584,0 2.03126,0.2474 0.88541,0.23438 1.86198,0.74219 v -6.30209 h 2.44792 z m -2.44792,-3.58073 v -8.34637 q -0.98959,-0.44271 -1.77084,-0.61198 -0.78125,-0.16927 -1.70573,-0.16927 -2.05729,0 -3.20313,1.43229 -1.14583,1.4323 -1.14583,4.06251 0,2.59115 0.88542,3.94532 0.88541,1.34114 2.83854,1.34114 1.04167,0 2.10938,-0.45573 1.06771,-0.46875 1.99219,-1.19791 z"
id="path79235" />
</g>
</g>
<path
id="path21494-1-4"
style="stroke-width:0.0226644"
transform="matrix(0.61892847,0,0,0.61892847,-50.037764,91.556376)"
d="m 122.87695,40.376953 c -0.59294,0 -1.07226,0.495141 -1.07226,1.103516 0,0.344357 0.15511,0.647585 0.39453,0.849609 l -1.82227,3.273438 c -0.19914,0.358131 -0.64788,0.47683 -0.99023,0.265625 l -1.61719,-0.996094 c 0.0604,-0.137746 0.0977,-0.292075 0.0977,-0.455078 0,-0.608367 -0.47932,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07812,0.493196 -1.07812,1.101563 0,0.608376 0.48127,1.101562 1.07422,1.101562 0.0582,0 0.11789,-0.0084 0.17382,-0.01758 l 1.61719,4.425781 h 8.5918 l 1.61719,-4.425781 c 0.0559,0.0092 0.11565,0.01758 0.17382,0.01758 0.59294,0 1.07227,-0.493186 1.07227,-1.101562 0,-0.608367 -0.47933,-1.101563 -1.07227,-1.101563 -0.59294,0 -1.07422,0.493196 -1.07422,1.101563 0,0.163003 0.0351,0.315039 0.0977,0.455078 l -1.61914,0.996094 c -0.34457,0.211205 -0.79109,0.09251 -0.99023,-0.265625 l -1.82227,-3.273438 c 0.23942,-0.202024 0.39453,-0.505252 0.39453,-0.849609 0,-0.608375 -0.48127,-1.103516 -1.07422,-1.103516 z m -4.65234,10.285156 c -0.19691,0 -0.35938,0.165163 -0.35938,0.367188 v 0.736328 c 0,0.202025 0.16247,0.367187 0.35938,0.367187 h 9.30664 c 0.1969,0 0.35937,-0.165162 0.35937,-0.367187 v -0.736328 c 0,-0.202025 -0.16247,-0.367188 -0.35937,-0.367188 z" />
<path
id="path36134-1"
style="stroke-width:0.0248982"
transform="matrix(0.87637134,0,0,0.87637134,-112.31203,102.74434)"
d="m 157.83984,39.880859 c -0.88005,0 -1.59375,0.713705 -1.59375,1.59375 0,0.880058 0.7137,1.59375 1.59375,1.59375 0.88004,0 1.59375,-0.713692 1.59375,-1.59375 0,-0.880045 -0.71371,-1.59375 -1.59375,-1.59375 z m -1.19531,3.585938 c -0.66005,0 -1.19531,0.535257 -1.19531,1.195312 v 3.384766 c 0,0.330022 0.26761,0.597656 0.59766,0.597656 h 0.39843 v 3.386719 c 0,0.330021 0.26763,0.597656 0.59766,0.597656 h 1.59375 c 0.33002,0 0.59765,-0.267635 0.59766,-0.597656 v -3.386719 h 0.39843 c 0.33003,0 0.59766,-0.267634 0.59766,-0.597656 v -3.384766 c 0,-0.660055 -0.53526,-1.195312 -1.19531,-1.195312 h -0.28321 c -0.56546,0.260011 -1.23438,0.271251 -1.82422,0 z" />
<text
xml:space="preserve"
transform="matrix(0.26458333,0,0,0.26458333,15.669658,11.130171)"
id="text62160"
style="font-style:normal;font-weight:normal;font-size:21.3333336px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect62162);fill:#000000;fill-opacity:1;stroke:none" />
<g
aria-label="king"
id="text65914"
style="font-size:7.05556px;line-height:1.25;stroke-width:0.264583">
<path
d="m 36.79638,122.80521 h -1.443496 l -1.085206,-1.68466 -0.33762,0.40997 v 1.27469 h -1.240235 v -5.36058 h 1.240235 v 3.2005 l 1.336698,-1.70877 h 1.429716 l -1.39182,1.66743 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79240" />
<path
d="m 38.670513,122.80521 h -1.240235 v -3.86885 h 1.240235 z m 0.03445,-4.42006 h -1.309137 v -0.94052 h 1.309137 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79242" />
<path
d="m 43.727917,122.80521 h -1.247126 v -1.91892 q 0,-0.23427 -0.02412,-0.46509 -0.02412,-0.23427 -0.08268,-0.34451 -0.0689,-0.12747 -0.203261,-0.18604 -0.130913,-0.0586 -0.368625,-0.0586 -0.16881,0 -0.34451,0.0551 -0.172255,0.0551 -0.375515,0.1757 v 2.7423 h -1.240236 v -3.86885 h 1.240236 v 0.42719 q 0.330729,-0.25838 0.633898,-0.39618 0.306613,-0.13781 0.678684,-0.13781 0.627008,0 0.978408,0.36518 0.354845,0.36518 0.354845,1.0921 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79244" />
<path
d="m 48.633735,122.36079 q 0,0.54432 -0.155029,0.91639 -0.155029,0.37208 -0.434082,0.58223 -0.279053,0.21359 -0.675239,0.30661 -0.392742,0.0965 -0.888836,0.0965 -0.403076,0 -0.795817,-0.0482 -0.389296,-0.0482 -0.675239,-0.11713 v -0.96807 h 0.151584 q 0.227376,0.0896 0.554661,0.16192 0.327284,0.0758 0.585666,0.0758 0.34451,0 0.558106,-0.0655 0.217041,-0.062 0.33073,-0.17914 0.106798,-0.11025 0.155029,-0.2825 0.04823,-0.17226 0.04823,-0.41341 v -0.0724 q -0.223931,0.18259 -0.496094,0.28939 -0.272162,0.10679 -0.606337,0.10679 -0.813043,0 -1.254016,-0.4892 -0.440972,-0.4892 -0.440972,-1.48828 0,-0.47887 0.134359,-0.82682 0.134359,-0.34796 0.378961,-0.60634 0.227376,-0.24116 0.558105,-0.37552 0.334175,-0.13436 0.68213,-0.13436 0.313504,0 0.568441,0.0758 0.258382,0.0723 0.468533,0.20326 l 0.04479,-0.17226 h 1.202339 z M 47.3935,121.58564 v -1.75355 q -0.106798,-0.0448 -0.261827,-0.0689 -0.15503,-0.0276 -0.279053,-0.0276 -0.489204,0 -0.733806,0.2825 -0.244602,0.27906 -0.244602,0.78204 0,0.55811 0.206706,0.77859 0.210151,0.22049 0.620118,0.22049 0.186035,0 0.36518,-0.0586 0.179145,-0.0586 0.327284,-0.15503 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79246" />
</g>
<g
aria-label="servant"
id="text65914-0"
style="font-size:7.05556px;line-height:1.25;stroke-width:0.264583">
<path
d="m 36.310619,141.94333 q 0,0.59945 -0.537435,0.96807 -0.537435,0.36518 -1.471057,0.36518 -0.516764,0 -0.937066,-0.0965 -0.420302,-0.0965 -0.675239,-0.2136 v -1.01975 h 0.113688 q 0.09302,0.0655 0.213596,0.1447 0.124023,0.0758 0.347955,0.16536 0.192925,0.0792 0.437527,0.13781 0.244602,0.0551 0.523655,0.0551 0.36518,0 0.54088,-0.0792 0.1757,-0.0827 0.1757,-0.24115 0,-0.14125 -0.103353,-0.20327 -0.103352,-0.0654 -0.392741,-0.12402 -0.137804,-0.031 -0.375515,-0.0655 -0.234267,-0.0379 -0.427192,-0.0896 -0.5271,-0.1378 -0.782038,-0.42719 -0.254937,-0.29283 -0.254937,-0.72692 0,-0.5581 0.5271,-0.92673 0.530545,-0.37207 1.446941,-0.37207 0.434082,0 0.830269,0.0896 0.399631,0.0861 0.623562,0.18604 v 0.97841 h -0.106798 q -0.275607,-0.18948 -0.630453,-0.30662 -0.351399,-0.12057 -0.713135,-0.12057 -0.299723,0 -0.506429,0.0827 -0.203261,0.0827 -0.203261,0.23426 0,0.13781 0.09302,0.21016 0.09302,0.0723 0.437527,0.14469 0.189481,0.0379 0.406522,0.0758 0.220486,0.0344 0.440972,0.0896 0.489204,0.12747 0.723471,0.40308 0.234266,0.27216 0.234266,0.68213 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79249" />
<path
d="m 40.947721,141.46446 h -2.83876 q 0.02756,0.45475 0.344509,0.69591 0.320394,0.24116 0.940512,0.24116 0.392741,0 0.761367,-0.14125 0.368625,-0.14125 0.582221,-0.30317 h 0.137804 v 0.99563 q -0.420302,0.16881 -0.792372,0.24461 -0.372071,0.0758 -0.823379,0.0758 -1.164443,0 -1.78456,-0.52366 -0.620118,-0.52365 -0.620118,-1.49172 0,-0.95774 0.585667,-1.51585 0.589111,-0.56155 1.612305,-0.56155 0.943957,0 1.419381,0.47887 0.475423,0.47542 0.475423,1.37115 z m -1.233345,-0.72691 q -0.01034,-0.3893 -0.192925,-0.58567 -0.182591,-0.19637 -0.568441,-0.19637 -0.358291,0 -0.589112,0.18603 -0.230822,0.18604 -0.258383,0.59601 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79251" />
<path
d="m 44.627085,140.48261 h -0.110243 q -0.07924,-0.0276 -0.254937,-0.0413 -0.1757,-0.0138 -0.292833,-0.0138 -0.265273,0 -0.468534,0.0344 -0.20326,0.0344 -0.437527,0.11713 v 2.59071 h -1.240235 v -3.86884 h 1.240235 v 0.56844 q 0.409967,-0.3514 0.713135,-0.46509 0.303169,-0.11713 0.558106,-0.11713 0.06546,0 0.148139,0.003 0.08268,0.003 0.144694,0.0103 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79253" />
<path
d="m 49.233181,139.30094 -1.491727,3.86884 h -1.4056 l -1.481392,-3.86884 h 1.312582 l 0.895726,2.65962 0.88539,-2.65962 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79255" />
<path
d="m 52.268312,142.16037 v -0.80615 q -0.251492,0.0207 -0.544325,0.0586 -0.292834,0.0345 -0.444418,0.0827 -0.186035,0.0586 -0.285943,0.17225 -0.09646,0.11025 -0.09646,0.29284 0,0.12057 0.02067,0.19637 0.02067,0.0758 0.103353,0.14469 0.07924,0.0689 0.18948,0.10335 0.110243,0.031 0.34451,0.031 0.186035,0 0.375516,-0.0758 0.192925,-0.0758 0.337619,-0.19982 z m 0,0.59945 q -0.09991,0.0758 -0.248047,0.18259 -0.148139,0.1068 -0.279053,0.16881 -0.18259,0.0827 -0.37896,0.12058 -0.196371,0.0413 -0.430638,0.0413 -0.551215,0 -0.923286,-0.34107 -0.37207,-0.34106 -0.37207,-0.87161 0,-0.42374 0.18948,-0.69246 0.18948,-0.26872 0.537435,-0.42375 0.34451,-0.15503 0.854384,-0.22048 0.509875,-0.0655 1.057645,-0.0965 v -0.0207 q 0,-0.32039 -0.261827,-0.44097 -0.261827,-0.12402 -0.771702,-0.12402 -0.306614,0 -0.654568,0.11024 -0.347955,0.1068 -0.49954,0.16536 h -0.113688 v -0.93362 q 0.196371,-0.0517 0.637343,-0.12058 0.444418,-0.0723 0.888835,-0.0723 1.057645,0 1.526179,0.32728 0.471978,0.32384 0.471978,1.01975 v 2.63205 h -1.2299 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79257" />
<path
d="m 58.524609,143.16978 h -1.247126 v -1.91891 q 0,-0.23427 -0.02412,-0.46509 -0.02411,-0.23427 -0.08268,-0.34451 -0.0689,-0.12747 -0.203261,-0.18604 -0.130913,-0.0586 -0.368625,-0.0586 -0.16881,0 -0.34451,0.0551 -0.172255,0.0551 -0.375516,0.1757 v 2.74229 h -1.240235 v -3.86884 h 1.240235 v 0.42719 q 0.33073,-0.25838 0.633898,-0.39618 0.306614,-0.13781 0.678685,-0.13781 0.627008,0 0.978407,0.36518 0.354846,0.36518 0.354846,1.0921 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79259" />
<path
d="m 62.141963,143.13533 q -0.199816,0.0517 -0.423747,0.0792 -0.223932,0.031 -0.547771,0.031 -0.72347,0 -1.078315,-0.29284 -0.3514,-0.29283 -0.3514,-1.00252 v -1.80868 h -0.509875 v -0.8406 h 0.509875 v -1.10588 h 1.240235 v 1.10588 h 1.160998 v 0.8406 h -1.160998 v 1.37115 q 0,0.20326 0.0034,0.35485 0.0034,0.15158 0.05512,0.27216 0.04823,0.12058 0.16881,0.19293 0.124024,0.0689 0.35829,0.0689 0.09646,0 0.251493,-0.0413 0.158474,-0.0413 0.220486,-0.0758 h 0.103353 z"
style="font-weight:bold;-inkscape-font-specification:'sans-serif Bold'"
id="path79261" />
</g>
<g
aria-label="can be mini-pronoun"
transform="matrix(0.26458333,0,0,0.26458333,-8.6327206,50.776261)"
id="text72313"
style="font-size:18.6667px;line-height:1.25;white-space:pre;shape-inside:url(#rect72315)">
<path
d="m 164.43752,372.94296 q -0.85678,0.41015 -1.63152,0.63802 -0.76562,0.22786 -1.63151,0.22786 -1.10287,0 -2.02344,-0.31901 -0.92058,-0.32812 -1.57683,-0.98437 -0.66536,-0.65626 -1.02995,-1.65886 -0.36458,-1.00261 -0.36458,-2.34245 0,-2.4974 1.36719,-3.91928 1.3763,-1.42188 3.62761,-1.42188 0.875,0 1.71354,0.24609 0.84766,0.2461 1.54949,0.60157 v 1.90495 h -0.0911 q -0.78385,-0.61068 -1.6224,-0.9388 -0.82943,-0.32813 -1.6224,-0.32813 -1.45833,0 -2.30599,0.98438 -0.83854,0.97526 -0.83854,2.8711 0,1.84114 0.82031,2.83464 0.82943,0.98437 2.32422,0.98437 0.51954,0 1.0573,-0.13672 0.53776,-0.13671 0.96614,-0.35547 0.3737,-0.1914 0.70183,-0.40104 0.32812,-0.21875 0.51953,-0.3737 h 0.0911 z"
id="path79264" />
<path
d="m 174.55472,373.58098 h -1.70443 v -1.08464 q -0.22786,0.15495 -0.61979,0.4375 -0.38281,0.27344 -0.7474,0.4375 -0.42838,0.20964 -0.98437,0.34636 -0.556,0.14583 -1.30339,0.14583 -1.37631,0 -2.33334,-0.91146 -0.95703,-0.91146 -0.95703,-2.32422 0,-1.15756 0.49219,-1.8685 0.5013,-0.72005 1.42187,-1.13021 0.92969,-0.41015 2.23308,-0.55599 1.30339,-0.14583 2.79818,-0.21875 v -0.26432 q 0,-0.58333 -0.20963,-0.96615 -0.20053,-0.38281 -0.58334,-0.60156 -0.36458,-0.20964 -0.875,-0.28255 -0.51042,-0.0729 -1.06641,-0.0729 -0.67448,0 -1.50391,0.18229 -0.82943,0.17318 -1.71354,0.51042 h -0.0911 v -1.74089 q 0.50131,-0.13672 1.44922,-0.30078 0.94792,-0.16406 1.8685,-0.16406 1.07552,0 1.86849,0.18229 0.80208,0.17318 1.38542,0.60156 0.57422,0.41927 0.875,1.08464 0.30078,0.66536 0.30078,1.64974 z m -1.70443,-2.50652 v -2.83464 q -0.78385,0.0456 -1.85026,0.13672 -1.0573,0.0912 -1.67709,0.26432 -0.73828,0.20964 -1.19401,0.65626 -0.45573,0.4375 -0.45573,1.21224 0,0.875 0.52865,1.32161 0.52864,0.43751 1.61328,0.43751 0.90235,0 1.64974,-0.34636 0.7474,-0.35547 1.38542,-0.84766 z"
id="path79266" />
<path
d="m 186.38547,373.58098 h -1.71354 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30079,-0.96615 -0.22786,-0.38281 -0.65625,-0.5651 -0.42838,-0.19141 -1.11198,-0.19141 -0.70182,0 -1.46745,0.34636 -0.76562,0.34635 -1.46745,0.88411 v 7.60158 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80209,-0.66537 1.65886,-1.03906 0.85677,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86588,0.99349 0.86588,2.86198 z"
id="path79268" />
<path
d="m 205.20712,368.413 q 0,1.27604 -0.36458,2.29688 -0.35547,1.02083 -0.96615,1.71354 -0.64714,0.72006 -1.42188,1.08464 -0.77474,0.35547 -1.70443,0.35547 -0.86589,0 -1.51302,-0.20964 -0.64714,-0.20052 -1.27605,-0.54687 l -0.10937,0.47396 h -1.60417 v -14.18232 h 1.71354 v 5.06772 q 0.72006,-0.59245 1.53126,-0.96615 0.8112,-0.38281 1.82292,-0.38281 1.80469,0 2.84375,1.38542 1.04818,1.38542 1.04818,3.91016 z m -1.76823,0.0456 q 0,-1.82292 -0.60157,-2.76172 -0.60156,-0.94792 -1.94141,-0.94792 -0.74739,0 -1.51302,0.32813 -0.76563,0.31901 -1.42188,0.82942 v 5.83335 q 0.72917,0.32812 1.2487,0.45573 0.52865,0.1276 1.19402,0.1276 1.42187,0 2.22396,-0.92969 0.8112,-0.9388 0.8112,-2.9349 z"
id="path79270" />
<path
d="m 216.39985,368.66821 h -7.50132 q 0,0.9388 0.28256,1.64063 0.28255,0.69271 0.77474,1.13932 0.47396,0.4375 1.12109,0.65625 0.65625,0.21875 1.44011,0.21875 1.03906,0 2.08724,-0.41015 1.0573,-0.41928 1.50391,-0.82032 h 0.0911 v 1.8685 q -0.86589,0.36458 -1.76823,0.61067 -0.90235,0.2461 -1.89584,0.2461 -2.53386,0 -3.95574,-1.36719 -1.42187,-1.37631 -1.42187,-3.90105 0,-2.4974 1.35807,-3.96485 1.36719,-1.46745 3.59115,-1.46745 2.0599,0 3.17188,1.20312 1.1211,1.20313 1.1211,3.41798 z m -1.66797,-1.3125 q -0.009,-1.34896 -0.6836,-2.08725 -0.66536,-0.73828 -2.03255,-0.73828 -1.37631,0 -2.19662,0.8112 -0.8112,0.8112 -0.92058,2.01433 z"
id="path79272" />
<path
d="m 240.41682,373.58098 h -1.71354 v -5.79689 q 0,-0.65625 -0.0638,-1.26693 -0.0547,-0.61068 -0.2461,-0.97526 -0.20963,-0.39193 -0.60156,-0.59245 -0.39193,-0.20052 -1.13021,-0.20052 -0.72005,0 -1.44011,0.36458 -0.72005,0.35547 -1.4401,0.91146 0.0273,0.20964 0.0456,0.49219 0.0182,0.27344 0.0182,0.54688 v 6.51694 h -1.71355 v -5.79689 q 0,-0.67448 -0.0638,-1.27604 -0.0547,-0.61068 -0.24609,-0.97526 -0.20964,-0.39193 -0.60157,-0.58334 -0.39193,-0.20052 -1.13021,-0.20052 -0.70182,0 -1.41276,0.34636 -0.70183,0.34635 -1.40365,0.88411 v 7.60158 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80209,-0.66537 1.59506,-1.03906 0.80208,-0.3737 1.70443,-0.3737 1.03906,0 1.75911,0.4375 0.72917,0.4375 1.08464,1.21224 1.03907,-0.875 1.89584,-1.25781 0.85677,-0.39193 1.83203,-0.39193 1.67709,0 2.47006,1.02083 0.80208,1.01172 0.80208,2.83464 z"
id="path79274" />
<path
d="m 245.55746,361.69554 h -1.9323 v -1.77735 h 1.9323 z m -0.10938,11.88544 h -1.71354 v -10.18101 h 1.71354 z"
id="path79276" />
<path
d="m 257.36998,373.58098 h -1.71355 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22787,-0.38281 -0.65625,-0.5651 -0.42839,-0.19141 -1.11198,-0.19141 -0.70183,0 -1.46746,0.34636 -0.76562,0.34635 -1.46745,0.88411 v 7.60158 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80209,-0.66537 1.65886,-1.03906 0.85677,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
id="path79278" />
<path
d="m 262.51061,361.69554 h -1.93229 v -1.77735 h 1.93229 z m -0.10937,11.88544 h -1.71355 v -10.18101 h 1.71355 z"
id="path79280" />
<path
d="m 271.20594,368.46769 h -5.68751 v -1.64975 h 5.68751 z"
id="path79282" />
<path
d="m 283.26455,368.36743 q 0,1.23958 -0.35547,2.26953 -0.35547,1.02084 -1.0026,1.73178 -0.60157,0.67448 -1.42188,1.04818 -0.8112,0.36458 -1.72266,0.36458 -0.79297,0 -1.44011,-0.17318 -0.63802,-0.17318 -1.30339,-0.53776 v 4.26563 h -1.71354 v -13.93622 h 1.71354 v 1.06641 q 0.6836,-0.57422 1.53126,-0.95703 0.85677,-0.39193 1.82292,-0.39193 1.84115,0 2.86198,1.39453 1.02995,1.38542 1.02995,3.85548 z m -1.76823,0.0456 q 0,-1.84115 -0.62891,-2.75261 -0.62891,-0.91146 -1.93229,-0.91146 -0.73829,0 -1.48568,0.31901 -0.7474,0.31901 -1.431,0.83854 v 5.76955 q 0.72917,0.32812 1.2487,0.44661 0.52865,0.11849 1.19402,0.11849 1.43099,0 2.23307,-0.96615 0.80209,-0.96614 0.80209,-2.86198 z"
id="path79284" />
<path
d="m 292.28801,365.26846 h -0.0911 q -0.38281,-0.0911 -0.74739,-0.1276 -0.35547,-0.0456 -0.84766,-0.0456 -0.79297,0 -1.53125,0.35546 -0.73829,0.34636 -1.42188,0.90235 v 7.22788 h -1.71355 v -10.18101 h 1.71355 v 1.50391 q 1.02083,-0.82032 1.79557,-1.15756 0.78386,-0.34635 1.59506,-0.34635 0.44661,0 0.64714,0.0273 0.20052,0.0182 0.60156,0.082 z"
id="path79286" />
<path
d="m 302.59662,368.49503 q 0,2.48829 -1.27604,3.92839 -1.27605,1.44011 -3.41798,1.44011 -2.16016,0 -3.4362,-1.44011 -1.26693,-1.4401 -1.26693,-3.92839 0,-2.48828 1.26693,-3.92839 1.27604,-1.44922 3.4362,-1.44922 2.14193,0 3.41798,1.44922 1.27604,1.44011 1.27604,3.92839 z m -1.76823,0 q 0,-1.97787 -0.77474,-2.9349 -0.77474,-0.96615 -2.15105,-0.96615 -1.39453,0 -2.16927,0.96615 -0.76563,0.95703 -0.76563,2.9349 0,1.91407 0.77474,2.90756 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97527 0.78386,-0.98437 0.78386,-2.91667 z"
id="path79288" />
<path
d="m 313.77112,373.58098 h -1.71354 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30079,-0.96615 -0.22786,-0.38281 -0.65625,-0.5651 -0.42838,-0.19141 -1.11198,-0.19141 -0.70182,0 -1.46745,0.34636 -0.76563,0.34635 -1.46745,0.88411 v 7.60158 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80208,-0.66537 1.65886,-1.03906 0.85677,-0.3737 1.75911,-0.3737 1.64975,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
id="path79290" />
<path
d="m 325.7477,368.49503 q 0,2.48829 -1.27604,3.92839 -1.27605,1.44011 -3.41798,1.44011 -2.16016,0 -3.4362,-1.44011 -1.26693,-1.4401 -1.26693,-3.92839 0,-2.48828 1.26693,-3.92839 1.27604,-1.44922 3.4362,-1.44922 2.14193,0 3.41798,1.44922 1.27604,1.44011 1.27604,3.92839 z m -1.76823,0 q 0,-1.97787 -0.77474,-2.9349 -0.77474,-0.96615 -2.15105,-0.96615 -1.39453,0 -2.16927,0.96615 -0.76563,0.95703 -0.76563,2.9349 0,1.91407 0.77474,2.90756 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97527 0.78386,-0.98437 0.78386,-2.91667 z"
id="path79292" />
<path
d="m 336.84928,373.58098 h -1.71354 v -1.13021 q -0.86589,0.68359 -1.65886,1.04818 -0.79297,0.36458 -1.75,0.36458 -1.60417,0 -2.4974,-0.97526 -0.89323,-0.98438 -0.89323,-2.88022 v -6.60808 h 1.71354 v 5.79689 q 0,0.77474 0.0729,1.33073 0.0729,0.54687 0.30989,0.9388 0.2461,0.40104 0.63803,0.58334 0.39192,0.18229 1.13932,0.18229 0.66537,0 1.44922,-0.34636 0.79297,-0.34635 1.47657,-0.88411 v -7.60158 h 1.71354 z"
id="path79294" />
<path
d="m 348.73473,373.58098 h -1.71355 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22786,-0.38281 -0.65625,-0.5651 -0.42839,-0.19141 -1.11198,-0.19141 -0.70183,0 -1.46745,0.34636 -0.76563,0.34635 -1.46745,0.88411 v 7.60158 h -1.71355 v -10.18101 h 1.71355 v 1.13021 q 0.80208,-0.66537 1.65885,-1.03906 0.85678,-0.3737 1.75912,-0.3737 1.64975,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
id="path79296" />
</g>
<g
aria-label="controls the verb
can be left out"
transform="matrix(0.26458333,0,0,0.26458333,-8.6327206,30.587097)"
id="text72313-6"
style="font-size:18.6667px;line-height:1.25;white-space:pre;shape-inside:url(#rect72315-4)">
<path
d="m 164.43752,372.94296 q -0.85678,0.41015 -1.63152,0.63802 -0.76562,0.22786 -1.63151,0.22786 -1.10287,0 -2.02344,-0.31901 -0.92058,-0.32812 -1.57683,-0.98437 -0.66536,-0.65626 -1.02995,-1.65886 -0.36458,-1.00261 -0.36458,-2.34245 0,-2.4974 1.36719,-3.91928 1.3763,-1.42188 3.62761,-1.42188 0.875,0 1.71354,0.24609 0.84766,0.2461 1.54949,0.60157 v 1.90495 h -0.0911 q -0.78385,-0.61068 -1.6224,-0.9388 -0.82943,-0.32813 -1.6224,-0.32813 -1.45833,0 -2.30599,0.98438 -0.83854,0.97526 -0.83854,2.8711 0,1.84114 0.82031,2.83464 0.82943,0.98437 2.32422,0.98437 0.51954,0 1.0573,-0.13672 0.53776,-0.13671 0.96614,-0.35547 0.3737,-0.1914 0.70183,-0.40104 0.32812,-0.21875 0.51953,-0.3737 h 0.0911 z"
id="path79299" />
<path
d="m 175.32035,368.49503 q 0,2.48829 -1.27605,3.92839 -1.27604,1.44011 -3.41797,1.44011 -2.16016,0 -3.4362,-1.44011 -1.26693,-1.4401 -1.26693,-3.92839 0,-2.48828 1.26693,-3.92839 1.27604,-1.44922 3.4362,-1.44922 2.14193,0 3.41797,1.44922 1.27605,1.44011 1.27605,3.92839 z m -1.76823,0 q 0,-1.97787 -0.77474,-2.9349 -0.77475,-0.96615 -2.15105,-0.96615 -1.39453,0 -2.16928,0.96615 -0.76562,0.95703 -0.76562,2.9349 0,1.91407 0.77474,2.90756 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97527 0.78386,-0.98437 0.78386,-2.91667 z"
id="path79301" />
<path
d="m 186.49485,373.58098 h -1.71355 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22787,-0.38281 -0.65625,-0.5651 -0.42839,-0.19141 -1.11198,-0.19141 -0.70183,0 -1.46745,0.34636 -0.76563,0.34635 -1.46745,0.88411 v 7.60158 h -1.71355 v -10.18101 h 1.71355 v 1.13021 q 0.80208,-0.66537 1.65885,-1.03906 0.85678,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86589,0.99349 0.86589,2.86198 z"
id="path79303" />
<path
d="m 195.0808,373.48983 q -0.48307,0.12761 -1.05729,0.20964 -0.56511,0.082 -1.01172,0.082 -1.5586,0 -2.3698,-0.83854 -0.8112,-0.83855 -0.8112,-2.68881 v -5.41407 h -1.15755 v -1.44011 h 1.15755 v -2.92579 h 1.71355 v 2.92579 h 3.53646 v 1.44011 h -3.53646 v 4.63933 q 0,0.80208 0.0365,1.25781 0.0365,0.44662 0.25521,0.83855 0.20052,0.36458 0.54688,0.53776 0.35547,0.16406 1.07552,0.16406 0.41927,0 0.875,-0.11849 0.45573,-0.1276 0.65625,-0.20964 h 0.0911 z"
id="path79305" />
<path
d="m 203.51181,365.26846 h -0.0911 q -0.38281,-0.0911 -0.7474,-0.1276 -0.35547,-0.0456 -0.84766,-0.0456 -0.79297,0 -1.53125,0.35546 -0.73828,0.34636 -1.42188,0.90235 v 7.22788 h -1.71354 v -10.18101 h 1.71354 v 1.50391 q 1.02084,-0.82032 1.79558,-1.15756 0.78386,-0.34635 1.59506,-0.34635 0.44661,0 0.64713,0.0273 0.20052,0.0182 0.60157,0.082 z"
id="path79307" />
<path
d="m 213.82042,368.49503 q 0,2.48829 -1.27605,3.92839 -1.27604,1.44011 -3.41797,1.44011 -2.16016,0 -3.4362,-1.44011 -1.26693,-1.4401 -1.26693,-3.92839 0,-2.48828 1.26693,-3.92839 1.27604,-1.44922 3.4362,-1.44922 2.14193,0 3.41797,1.44922 1.27605,1.44011 1.27605,3.92839 z m -1.76823,0 q 0,-1.97787 -0.77474,-2.9349 -0.77475,-0.96615 -2.15105,-0.96615 -1.39453,0 -2.16927,0.96615 -0.76563,0.95703 -0.76563,2.9349 0,1.91407 0.77474,2.90756 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97527 0.78386,-0.98437 0.78386,-2.91667 z"
id="path79309" />
<path
d="m 218.21366,373.58098 h -1.71355 v -14.18232 h 1.71355 z"
id="path79311" />
<path
d="m 228.89596,370.64608 q 0,1.39453 -1.15755,2.28776 -1.14844,0.89323 -3.14454,0.89323 -1.13021,0 -2.07813,-0.26432 -0.9388,-0.27344 -1.57682,-0.59245 v -1.92318 h 0.0911 q 0.8112,0.61068 1.80469,0.97526 0.99349,0.35547 1.90495,0.35547 1.13021,0 1.76824,-0.36458 0.63802,-0.36459 0.63802,-1.14844 0,-0.60157 -0.34636,-0.91146 -0.34635,-0.3099 -1.33073,-0.52865 -0.36458,-0.082 -0.95703,-0.19141 -0.58334,-0.10937 -1.06641,-0.23698 -1.33985,-0.35547 -1.90495,-1.03906 -0.55599,-0.69271 -0.55599,-1.69532 0,-0.6289 0.25521,-1.18489 0.26432,-0.55599 0.79297,-0.9935 0.51042,-0.42838 1.29427,-0.67448 0.79297,-0.2552 1.76823,-0.2552 0.91146,0 1.84115,0.22786 0.93881,0.21875 1.5586,0.53776 v 1.83204 h -0.0911 q -0.65625,-0.48308 -1.59505,-0.8112 -0.93881,-0.33724 -1.84115,-0.33724 -0.9388,0 -1.58594,0.36458 -0.64714,0.35547 -0.64714,1.06641 0,0.62891 0.39193,0.94792 0.38281,0.31901 1.23959,0.51953 0.47395,0.10938 1.05729,0.21875 0.59245,0.10938 0.98438,0.20052 1.19401,0.27344 1.84114,0.93881 0.64714,0.67448 0.64714,1.78646 z"
id="path79313" />
<path
d="m 243.20588,373.48983 q -0.48307,0.12761 -1.05729,0.20964 -0.5651,0.082 -1.01172,0.082 -1.5586,0 -2.3698,-0.83854 -0.8112,-0.83855 -0.8112,-2.68881 v -5.41407 h -1.15755 v -1.44011 h 1.15755 v -2.92579 h 1.71355 v 2.92579 h 3.53646 v 1.44011 h -3.53646 v 4.63933 q 0,0.80208 0.0365,1.25781 0.0365,0.44662 0.25521,0.83855 0.20052,0.36458 0.54687,0.53776 0.35547,0.16406 1.07553,0.16406 0.41927,0 0.875,-0.11849 0.45573,-0.1276 0.65625,-0.20964 h 0.0911 z"
id="path79315" />
<path
d="m 253.79705,373.58098 h -1.71354 v -5.79689 q 0,-0.70182 -0.082,-1.3125 -0.082,-0.61979 -0.30078,-0.96615 -0.22787,-0.38281 -0.65626,-0.5651 -0.42838,-0.19141 -1.11198,-0.19141 -0.70182,0 -1.46745,0.34636 -0.76562,0.34635 -1.46745,0.88411 v 7.60158 h -1.71354 v -14.18232 h 1.71354 v 5.13152 q 0.80209,-0.66537 1.65886,-1.03906 0.85677,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86588,0.99349 0.86588,2.86198 z"
id="path79317" />
<path
d="m 265.61869,368.66821 h -7.50131 q 0,0.9388 0.28255,1.64063 0.28255,0.69271 0.77474,1.13932 0.47396,0.4375 1.12109,0.65625 0.65626,0.21875 1.44011,0.21875 1.03907,0 2.08724,-0.41015 1.0573,-0.41928 1.50391,-0.82032 h 0.0911 v 1.8685 q -0.86589,0.36458 -1.76823,0.61067 -0.90235,0.2461 -1.89584,0.2461 -2.53386,0 -3.95574,-1.36719 -1.42187,-1.37631 -1.42187,-3.90105 0,-2.4974 1.35807,-3.96485 1.36719,-1.46745 3.59115,-1.46745 2.0599,0 3.17189,1.20312 1.12109,1.20313 1.12109,3.41798 z m -1.66797,-1.3125 q -0.009,-1.34896 -0.6836,-2.08725 -0.66536,-0.73828 -2.03255,-0.73828 -1.37631,0 -2.19662,0.8112 -0.8112,0.8112 -0.92057,2.01433 z"
id="path79319" />
<path
d="m 283.58356,363.39997 -4.1198,10.18101 h -1.72266 l -4.09245,-10.18101 h 1.85938 l 3.15365,8.10288 3.12631,-8.10288 z"
id="path79321" />
<path
d="m 294.34791,368.66821 h -7.50132 q 0,0.9388 0.28256,1.64063 0.28255,0.69271 0.77474,1.13932 0.47396,0.4375 1.12109,0.65625 0.65625,0.21875 1.44011,0.21875 1.03906,0 2.08724,-0.41015 1.0573,-0.41928 1.50391,-0.82032 h 0.0911 v 1.8685 q -0.86589,0.36458 -1.76823,0.61067 -0.90235,0.2461 -1.89584,0.2461 -2.53386,0 -3.95574,-1.36719 -1.42188,-1.37631 -1.42188,-3.90105 0,-2.4974 1.35808,-3.96485 1.36719,-1.46745 3.59115,-1.46745 2.0599,0 3.17188,1.20312 1.1211,1.20313 1.1211,3.41798 z m -1.66797,-1.3125 q -0.009,-1.34896 -0.6836,-2.08725 -0.66536,-0.73828 -2.03255,-0.73828 -1.37631,0 -2.19662,0.8112 -0.8112,0.8112 -0.92058,2.01433 z"
id="path79323" />
<path
d="m 303.29845,365.26846 h -0.0912 q -0.38281,-0.0911 -0.7474,-0.1276 -0.35547,-0.0456 -0.84766,-0.0456 -0.79297,0 -1.53125,0.35546 -0.73828,0.34636 -1.42188,0.90235 v 7.22788 h -1.71354 v -10.18101 h 1.71354 v 1.50391 q 1.02084,-0.82032 1.79558,-1.15756 0.78386,-0.34635 1.59506,-0.34635 0.44661,0 0.64713,0.0273 0.20052,0.0182 0.60157,0.082 z"
id="path79325" />
<path
d="m 313.88961,368.413 q 0,1.27604 -0.36458,2.29688 -0.35547,1.02083 -0.96615,1.71354 -0.64714,0.72006 -1.42188,1.08464 -0.77474,0.35547 -1.70443,0.35547 -0.86588,0 -1.51302,-0.20964 -0.64714,-0.20052 -1.27605,-0.54687 l -0.10937,0.47396 h -1.60417 v -14.18232 h 1.71354 v 5.06772 q 0.72006,-0.59245 1.53126,-0.96615 0.8112,-0.38281 1.82292,-0.38281 1.80469,0 2.84375,1.38542 1.04818,1.38542 1.04818,3.91016 z m -1.76823,0.0456 q 0,-1.82292 -0.60156,-2.76172 -0.60157,-0.94792 -1.94141,-0.94792 -0.7474,0 -1.51303,0.32813 -0.76562,0.31901 -1.42188,0.82942 v 5.83335 q 0.72917,0.32812 1.24871,0.45573 0.52864,0.1276 1.19401,0.1276 1.42188,0 2.22396,-0.92969 0.8112,-0.9388 0.8112,-2.9349 z"
id="path79327" />
<path
d="m 164.43752,396.27633 q -0.85678,0.41016 -1.63152,0.63802 -0.76562,0.22787 -1.63151,0.22787 -1.10287,0 -2.02344,-0.31901 -0.92058,-0.32813 -1.57683,-0.98438 -0.66536,-0.65625 -1.02995,-1.65886 -0.36458,-1.0026 -0.36458,-2.34245 0,-2.4974 1.36719,-3.91928 1.3763,-1.42188 3.62761,-1.42188 0.875,0 1.71354,0.2461 0.84766,0.24609 1.54949,0.60156 v 1.90495 h -0.0911 q -0.78385,-0.61067 -1.6224,-0.9388 -0.82943,-0.32813 -1.6224,-0.32813 -1.45833,0 -2.30599,0.98438 -0.83854,0.97526 -0.83854,2.8711 0,1.84115 0.82031,2.83464 0.82943,0.98438 2.32422,0.98438 0.51954,0 1.0573,-0.13672 0.53776,-0.13672 0.96614,-0.35547 0.3737,-0.19141 0.70183,-0.40104 0.32812,-0.21875 0.51953,-0.3737 h 0.0911 z"
id="path79329" />
<path
d="m 174.55472,396.91435 h -1.70443 v -1.08464 q -0.22786,0.15495 -0.61979,0.43751 -0.38281,0.27343 -0.7474,0.4375 -0.42838,0.20963 -0.98437,0.34635 -0.556,0.14583 -1.30339,0.14583 -1.37631,0 -2.33334,-0.91146 -0.95703,-0.91146 -0.95703,-2.32422 0,-1.15755 0.49219,-1.86849 0.5013,-0.72005 1.42187,-1.13021 0.92969,-0.41016 2.23308,-0.55599 1.30339,-0.14584 2.79818,-0.21875 v -0.26433 q 0,-0.58333 -0.20963,-0.96614 -0.20053,-0.38282 -0.58334,-0.60157 -0.36458,-0.20963 -0.875,-0.28255 -0.51042,-0.0729 -1.06641,-0.0729 -0.67448,0 -1.50391,0.1823 -0.82943,0.17317 -1.71354,0.51041 h -0.0911 v -1.74089 q 0.50131,-0.13671 1.44922,-0.30078 0.94792,-0.16406 1.8685,-0.16406 1.07552,0 1.86849,0.18229 0.80208,0.17318 1.38542,0.60157 0.57422,0.41927 0.875,1.08463 0.30078,0.66537 0.30078,1.64975 z m -1.70443,-2.50651 v -2.83464 q -0.78385,0.0456 -1.85026,0.13672 -1.0573,0.0911 -1.67709,0.26432 -0.73828,0.20963 -1.19401,0.65625 -0.45573,0.4375 -0.45573,1.21224 0,0.875 0.52865,1.32162 0.52864,0.4375 1.61328,0.4375 0.90235,0 1.64974,-0.34636 0.7474,-0.35546 1.38542,-0.84765 z"
id="path79331" />
<path
d="m 186.38547,396.91435 h -1.71354 v -5.79688 q 0,-0.70183 -0.082,-1.31251 -0.082,-0.61979 -0.30079,-0.96614 -0.22786,-0.38282 -0.65625,-0.56511 -0.42838,-0.19141 -1.11198,-0.19141 -0.70182,0 -1.46745,0.34636 -0.76562,0.34635 -1.46745,0.88412 v 7.60157 h -1.71354 v -10.18101 h 1.71354 v 1.13021 q 0.80209,-0.66536 1.65886,-1.03906 0.85677,-0.3737 1.75912,-0.3737 1.64974,0 2.51563,0.99349 0.86588,0.99349 0.86588,2.86199 z"
id="path79333" />
<path
d="m 205.20712,391.74637 q 0,1.27605 -0.36458,2.29688 -0.35547,1.02084 -0.96615,1.71355 -0.64714,0.72005 -1.42188,1.08464 -0.77474,0.35546 -1.70443,0.35546 -0.86589,0 -1.51302,-0.20963 -0.64714,-0.20052 -1.27605,-0.54688 l -0.10937,0.47396 h -1.60417 v -14.18232 h 1.71354 v 5.06772 q 0.72006,-0.59245 1.53126,-0.96615 0.8112,-0.38281 1.82292,-0.38281 1.80469,0 2.84375,1.38542 1.04818,1.38542 1.04818,3.91016 z m -1.76823,0.0456 q 0,-1.82292 -0.60157,-2.76173 -0.60156,-0.94792 -1.94141,-0.94792 -0.74739,0 -1.51302,0.32813 -0.76563,0.31901 -1.42188,0.82943 v 5.83334 q 0.72917,0.32813 1.2487,0.45573 0.52865,0.12761 1.19402,0.12761 1.42187,0 2.22396,-0.92969 0.8112,-0.93881 0.8112,-2.9349 z"
id="path79335" />
<path
d="m 216.39985,392.00158 h -7.50132 q 0,0.93881 0.28256,1.64063 0.28255,0.69271 0.77474,1.13933 0.47396,0.4375 1.12109,0.65625 0.65625,0.21875 1.44011,0.21875 1.03906,0 2.08724,-0.41016 1.0573,-0.41927 1.50391,-0.82031 h 0.0911 v 1.86849 q -0.86589,0.36458 -1.76823,0.61068 -0.90235,0.24609 -1.89584,0.24609 -2.53386,0 -3.95574,-1.36719 -1.42187,-1.3763 -1.42187,-3.90105 0,-2.4974 1.35807,-3.96485 1.36719,-1.46745 3.59115,-1.46745 2.0599,0 3.17188,1.20313 1.1211,1.20313 1.1211,3.41797 z m -1.66797,-1.3125 q -0.009,-1.34896 -0.6836,-2.08724 -0.66536,-0.73829 -2.03255,-0.73829 -1.37631,0 -2.19662,0.8112 -0.8112,0.8112 -0.92058,2.01433 z"
id="path79337" />
<path
d="m 227.2918,396.91435 h -1.71354 v -14.18232 h 1.71354 z"
id="path79339" />
<path
d="m 239.22281,392.00158 h -7.50132 q 0,0.93881 0.28256,1.64063 0.28255,0.69271 0.77474,1.13933 0.47396,0.4375 1.12109,0.65625 0.65625,0.21875 1.44011,0.21875 1.03906,0 2.08724,-0.41016 1.0573,-0.41927 1.50391,-0.82031 h 0.0911 v 1.86849 q -0.86589,0.36458 -1.76823,0.61068 -0.90235,0.24609 -1.89584,0.24609 -2.53386,0 -3.95574,-1.36719 -1.42187,-1.3763 -1.42187,-3.90105 0,-2.4974 1.35807,-3.96485 1.36719,-1.46745 3.59115,-1.46745 2.0599,0 3.17188,1.20313 1.1211,1.20313 1.1211,3.41797 z m -1.66797,-1.3125 q -0.009,-1.34896 -0.6836,-2.08724 -0.66536,-0.73829 -2.03255,-0.73829 -1.37631,0 -2.19662,0.8112 -0.8112,0.8112 -0.92058,2.01433 z"
id="path79341" />
<path
d="m 247.29835,384.39089 h -0.0911 q -0.28255,-0.082 -0.73828,-0.16406 -0.45573,-0.0912 -0.80209,-0.0912 -1.10286,0 -1.60417,0.49219 -0.49219,0.48308 -0.49219,1.75912 v 0.34635 h 3.08985 v 1.44011 h -3.03516 v 8.7409 h -1.71354 v -8.7409 h -1.15756 v -1.44011 h 1.15756 v -0.33724 q 0,-1.8138 0.90234,-2.77995 0.90235,-0.97526 2.60678,-0.97526 0.57422,0 1.02995,0.0547 0.46484,0.0547 0.84766,0.1276 z"
id="path79343" />
<path
d="m 253.66945,396.82321 q -0.48308,0.1276 -1.0573,0.20963 -0.5651,0.082 -1.01172,0.082 -1.55859,0 -2.36979,-0.83854 -0.8112,-0.83854 -0.8112,-2.68881 v -5.41407 h -1.15756 v -1.44011 h 1.15756 v -2.92578 h 1.71354 v 2.92578 h 3.53647 v 1.44011 h -3.53647 v 4.63933 q 0,0.80209 0.0365,1.25782 0.0365,0.44661 0.25521,0.83854 0.20052,0.36458 0.54687,0.53776 0.35547,0.16406 1.07553,0.16406 0.41927,0 0.875,-0.11849 0.45573,-0.1276 0.65625,-0.20963 h 0.0911 z"
id="path79345" />
<path
d="m 270.98719,391.82841 q 0,2.48828 -1.27605,3.92839 -1.27604,1.4401 -3.41797,1.4401 -2.16016,0 -3.43621,-1.4401 -1.26693,-1.44011 -1.26693,-3.92839 0,-2.48829 1.26693,-3.9284 1.27605,-1.44922 3.43621,-1.44922 2.14193,0 3.41797,1.44922 1.27605,1.44011 1.27605,3.9284 z m -1.76824,0 q 0,-1.97787 -0.77474,-2.93491 -0.77474,-0.96614 -2.15104,-0.96614 -1.39454,0 -2.16928,0.96614 -0.76562,0.95704 -0.76562,2.93491 0,1.91406 0.77474,2.90755 0.77474,0.98438 2.16016,0.98438 1.36719,0 2.14193,-0.97526 0.78385,-0.98438 0.78385,-2.91667 z"
id="path79347" />
<path
d="m 282.08877,396.91435 h -1.71355 v -1.13021 q -0.86588,0.6836 -1.65885,1.04818 -0.79297,0.36458 -1.75001,0.36458 -1.60417,0 -2.4974,-0.97526 -0.89323,-0.98437 -0.89323,-2.88021 v -6.60809 h 1.71355 v 5.79689 q 0,0.77474 0.0729,1.33073 0.0729,0.54688 0.3099,0.9388 0.24609,0.40105 0.63802,0.58334 0.39193,0.18229 1.13933,0.18229 0.66536,0 1.44922,-0.34635 0.79297,-0.34636 1.47656,-0.88412 v -7.60158 h 1.71355 z"
id="path79349" />
<path
d="m 290.74763,396.82321 q -0.48307,0.1276 -1.05729,0.20963 -0.56511,0.082 -1.01172,0.082 -1.5586,0 -2.3698,-0.83854 -0.8112,-0.83854 -0.8112,-2.68881 v -5.41407 h -1.15755 v -1.44011 h 1.15755 v -2.92578 h 1.71355 v 2.92578 h 3.53646 v 1.44011 h -3.53646 v 4.63933 q 0,0.80209 0.0365,1.25782 0.0365,0.44661 0.2552,0.83854 0.20053,0.36458 0.54688,0.53776 0.35547,0.16406 1.07552,0.16406 0.41928,0 0.87501,-0.11849 0.45573,-0.1276 0.65625,-0.20963 h 0.0911 z"
id="path79351" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 98 KiB

File diff suppressed because one or more lines are too long