1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-03-14 19:29:51 +01:00

rebuild + sections up to 14

This commit is contained in:
Pomax 2016-01-02 10:05:27 -08:00
parent 15523da391
commit c8ebcf29b9
31 changed files with 3079 additions and 94 deletions

File diff suppressed because it is too large Load Diff

View File

@ -457,7 +457,27 @@ var Graphic = React.createClass({
offset.y += this.offset.y;
}
this.ctx.fillText(text, offset.x, offset.y);
},
drawAxes: function(pad, xlabel, xs, xe, ylabel, ys, ye, offset) {
offset = offset || { x:0, y:0 };
var dim = this.getPanelWidth();
this.drawLine({x:pad, y:pad}, {x:dim-pad, y:pad}, offset);
this.drawLine({x:pad, y:pad}, {x:pad, y:dim-pad}, offset);
this.setFill("black");
this.text(xlabel + " →", {x: offset.x + dim/2, y: offset.y + 15});
this.text(xs, {x: offset.x + pad, y: offset.y + 15});
this.text(xe, {x: offset.x + dim - pad, y: offset.y + 15});
this.text(ylabel, {x: offset.x + 5, y: offset.y + dim/2 - pad});
this.text("↓", {x: offset.x + 5, y: offset.y + dim/2});
this.text(ys, {x: offset.x + 4, y: offset.y + pad + 5});
this.text(ye, {x: offset.x + 2, y: offset.y + dim - pad + 10});
}
});
module.exports = Graphic;

View File

@ -0,0 +1,82 @@
var React = require("react");
var Graphic = require("../../Graphic.jsx");
var SectionHeader = require("../../SectionHeader.jsx");
var Components = React.createClass({
statics: {
title: "Component functions"
},
setupQuadratic: function(api) {
var curve = api.getDefaultQuadratic();
curve.points[2].x = 210;
api.setCurve(curve);
},
setupCubic: function(api) {
var curve = api.getDefaultCubic();
api.setCurve(curve);
},
draw: function(api, curve) {
api.setPanelCount(3);
api.reset();
api.drawSkeleton(curve);
api.drawCurve(curve);
var tf = curve.order + 1,
pad = 20,
pts = curve.points,
w = api.getPanelWidth(),
h = api.getPanelHeight(),
offset = { x: w, y: 0 };
var x_pts = JSON.parse(JSON.stringify(pts)).map((p,t) => { return {x:w*t/tf, y:p.x}; });
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
api.drawAxes(pad, "t",0,1, "x",0,w, offset);
offset.x += pad;
api.drawCurve(new api.Bezier(x_pts), offset);
offset.x += w-pad;
var y_pts = JSON.parse(JSON.stringify(pts)).map((p,t) => { return {x:w*t/tf, y:p.y}; });
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
api.drawAxes(pad, "t",0,1, "y",0,w, offset);
offset.x += pad;
api.drawCurve(new api.Bezier(y_pts), offset);
},
render: function() {
return (
<section>
<SectionHeader {...this.props}>{ Components.title }</SectionHeader>
<p>One of the first things people run into when they start using Bézier curves in their own programs is
"I know how to draw the curve, but how do I determine the bounding box?". It's actually reasonably straight
forward to do so, but it requires having some knowledge on exploiting math to get the values we need.
For bounding boxes, we aren't actually interested in the curve itself, but only in its "extremities": the
minimum and maximum values the curve has for its x- and y-axis values. If you remember your calculus
(provided you ever took calculus, otherwise it's going to be hard to remember) we can determine function
extremities using the first derivative of that function, but this poses a problem, since our function is
parametric: every axis has its own function.</p>
<p>The solution: compute the derivative for each axis separately, and then fit them back together in the same
way we do for the original.</p>
<p>Let's look at how a parametric Bézier curve "splits up" into two normal functions, one for the x-axis and
one for the y-axis. Note the left-most figure is again an interactive curve, without labeled axes (you
get coordinates in the graph instead). The center and right-most figures are the component functions for
computing the x-axis value, given a value for <i>t</i> (between 0 and 1 inclusive), and the y-axis value,
respectively.</p>
<p>If you move points in a curve sideways, you should only see the middle graph change; likely, moving
points vertically should only show a change in the right graph.</p>
<Graphic preset="simple" title="Quadratic Bézier curve components" setup={this.setupQuadratic} draw={this.draw}/>
<Graphic preset="simple" title="Cubic Bézier curve components" setup={this.setupCubic} draw={this.draw}/>
</section>
);
}
});
module.exports = Components;

View File

@ -18,22 +18,6 @@ var Control = React.createClass({
api.drawCurve(curve);
},
drawGraphBasics: function(api, dim, pad, fwh) {
api.drawLine({x:pad, y:pad}, {x:dim-pad, y:pad});
api.drawLine({x:pad, y:pad}, {x:pad, y:dim-pad});
api.setFill("black");
api.text("t →", {x:dim/2, y: 15});
api.text("0", {x:pad, y: 15});
api.text("1", {x:dim-pad, y: 15});
api.text("S", {x:5, y: dim/2-pad});
api.text("↓", {x:5, y: dim/2});
api.text("0%", {x:4, y: pad+5});
api.text("100%", {x:2, y: dim-pad+10});
},
drawFunction: function(api, label, where, generator) {
api.setRandomColor();
api.drawFunction(generator);
@ -64,7 +48,8 @@ var Control = React.createClass({
var dim = api.getPanelWidth(),
pad = 20,
fwh = dim - pad*2;
this.drawGraphBasics(api, dim, pad, fwh);
api.drawAxes(pad, "t",0,1, "S","0%","100%");
var p = api.hover;
if (p && p.x >= pad && p.x <= dim-pad) {
@ -101,7 +86,8 @@ var Control = React.createClass({
var dim = api.getPanelWidth(),
pad = 20,
fwh = dim - pad*2;
this.drawGraphBasics(api, dim, pad, fwh);
api.drawAxes(pad, "t",0,1, "S","0%","100%");
var p = api.hover;
if (p && p.x >= pad && p.x <= dim-pad) {
@ -145,7 +131,8 @@ var Control = React.createClass({
var dim = api.getPanelWidth(),
pad = 20,
fwh = dim - pad*2;
this.drawGraphBasics(api, dim, pad, fwh);
api.drawAxes(pad, "t",0,1, "S","0%","100%");
var factors = [1,15,105,455,1365,3003,5005,6435,6435,5005,3003,1365,455,105,15,1]
@ -246,7 +233,7 @@ var Control = React.createClass({
<pre>function Bezier(n,t,w[]):
sum = 0
for(k=0; k&lt;n; k++):
for(k=0; k<n; k++):
sum += w[k] * binomial(n,k) * (1-t)^(n-k) * t^(k)
return sum</pre>

View File

@ -78,7 +78,7 @@ var deCasteljau = React.createClass({
draw(points[0])
else:
newpoints=array(points.size-1)
for(i=0; i&lt;newpoints.length; i++):
for(i=0; i<newpoints.length; i++):
newpoints[i] = (1-t) * points[i] + t * points[i+1]
drawCurve(newpoints, t)</pre>
@ -91,7 +91,7 @@ var deCasteljau = React.createClass({
draw(points[0])
else:
newpoints=array(points.size-1)
for(i=0; i&lt;newpoints.length; i++):
for(i=0; i<newpoints.length; i++):
x = (1-t) * points[i].x + t * points[i+1].x
y = (1-t) * points[i].y + t * points[i+1].y
newpoints[i] = new point(x,y)

View File

@ -155,7 +155,7 @@ var Explanation = React.createClass({
<pre>function Bezier(n,t):
sum = 0
for(k=0; k&lt;n; k++):
for(k=0; k<n; k++):
sum += n!/(k!*(n-k)!) * (1-t)^(n-k) * t^(k)
return sum</pre>
@ -195,7 +195,7 @@ binomial(n,k):
<pre>function Bezier(n,t):
sum = 0
for(k=0; k&lt;n; k++):
for(k=0; k<n; k++):
sum += binomial(n,k) * (1-t)^(n-k) * t^(k)
return sum</pre>

View File

@ -0,0 +1,251 @@
var React = require("react");
var Graphic = require("../../Graphic.jsx");
var SectionHeader = require("../../SectionHeader.jsx");
var Extremities = React.createClass({
statics: {
title: "Component functions"
},
setupQuadratic: function(api) {
var curve = api.getDefaultQuadratic();
curve.points[2].x = 210;
api.setCurve(curve);
},
setupCubic: function(api) {
var curve = api.getDefaultCubic();
api.setCurve(curve);
},
draw: function(api, curve) {
api.setPanelCount(3);
api.reset();
api.drawSkeleton(curve);
api.drawCurve(curve);
var tf = curve.order + 1,
pad = 20,
pts = curve.points,
w = api.getPanelWidth(),
h = api.getPanelHeight(),
offset = { x: w, y: 0 },
extremities;
var x_pts = JSON.parse(JSON.stringify(pts)).map((p,t) => { return {x:w*t/tf, y:p.x}; });
api.setColor("black");
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
api.drawAxes(pad, "t",0,1, "x",0,w, offset);
offset.x += pad;
var xcurve = new api.Bezier(x_pts);
api.drawCurve(xcurve, offset);
api.setColor("red");
xcurve.inflections().y.forEach(t => {
var p = xcurve.get(t);
api.drawCircle(p, 3, offset);
});
offset.x += w-pad;
var y_pts = JSON.parse(JSON.stringify(pts)).map((p,t) => { return {x:w*t/tf, y:p.y}; });
api.setColor("black");
api.drawLine({x:0,y:0}, {x:0,y:h}, offset);
api.drawAxes(pad, "t",0,1, "y",0,w, offset);
offset.x += pad;
var ycurve = new api.Bezier(y_pts);
api.drawCurve(ycurve, offset);
api.setColor("red");
ycurve.inflections().y.forEach(t => {
var p = ycurve.get(t);
api.drawCircle(p, 3, offset);
});
},
render: function() {
return (
<section>
<SectionHeader {...this.props}>{ Extremities.title }</SectionHeader>
<p>Now that we understand (well, superficially anyway) the component functions, we can find the extremities of our
Bézier curve by finding maxima and minima on the component functions, by solving the equations B'(t) = 0 and B''(t) = 0.
Although, in the case of quadratic curves there is no B''(t), so we only need to compute B'(t) = 0. So, how do we compute the first and second derivatives? Fairly easily, actually, until our derivatives are 4th order or higher... then things get really hard. But let's start simple:</p>
<h3>Quadratic curves: linear derivatives.</h3>
<p>Finding the solution for "where is this line 0" should be trivial:</p>
<p>\[\begin{align}
l(x) = ax + b &= 0,\\
ax + b &= 0,\\
ax &= -b \\
x &= \frac{-b}{a}
\end{align}\]</p>
<p>Done. And quadratic curves have no meaningful second derivative, so we're <em>really</em> done.</p>
<h3>Cubic curves: the quadratic formula.</h3>
<p>The derivative of a cubic curve is a quadratic curve, and finding the roots for a quadratic Bézier curve means we can apply the <a href="https://en.wikipedia.org/wiki/Quadratic_formula">Quadratic formulat</a>. If you've seen it before, you'll remember it, and if you haven't, it looks like this:</p>
<p>\[
Given\ f(t) = at^2 + bt + c,\ f(t)=0\ when\ t = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\]</p>
<p>So, if we can express a Bézier component function as a plain polynomial, we're done: we just plug in the values into the quadratic formula, check if that square root is negative or not (if it is, there are no roots) and then just compute the two values that come out (because of that plus/minus sign we get two). Any value between 0 and 1 is a root that matters for Bézier curves, anything below or above that is irrelevant (because Bézier curves are only defined over the interval [0,1]). So, how do we convert?</p>
<p>First we turn our cubic Bézier function into a quadratic one, by following the rule mentioned at the end of the <a href="#derivatives">derivatives section</a>:</p>
<p>\[
B(t)\ uses\ \{ p_1,p_2,p_3,p_4 \} \\
B'(t)\ uses\ \{ v_1.v_2,v_3 \},\ where\ v_1 = 3(p_2-p_1),\ v_2 = 3(p_3-p_2),\ v_3 = 3(p_4-p_3)
\]</p>
<p>And then, using these <em>v</em> values, we can find out what our <em>a</em>, <em>b</em>, and <em>c</em> should be:</p>
<p>\[\begin{align}
B'(t) &= v_1(1-t)^2 + 2v_2(1-t)t + v_3t^2 \\
... &= v_1(t^2 - 2t + 1) + 2v_2(t-t^2) + v_3t^2 \\
... &= v_1t^2 - 2v_1t + v_1 + 2v_2t - 2v_2t^2 + v_3t^2 \\
... &= v_1t^2 - 2v_2t^2 + v_3t^2 - 2v_1t + v_1 + 2v_2t \\
... &= (v_1-2v_2+v_3)t^2 + 2(v_2-v_1)t + v_1
\end{align}\]</p>
<p>So we can find the roots by using:</p>
<p>\[\begin{align}
a &= v_1-2v_2+v_3 = 3(-p_1 + 3p_2 - 3p_3 + p_4) \\
b &= 2(v_2-v_1) = 6(p_1 - 2p_2 + p_3) \\
c &= v_1 = 3(p_2-p_1)
\end{align}\]</p>
<p>Easy peasy. We also note that the second derivative of a cubic curve means computing the first derivative of a quadratic curve, and we just saw how to do that in the section above.</p>
<h3>Quartic curves: Cardano's algorithm.</h3>
<p>Quarticfourth degreecurves have a cubic function as derivative. Now, cubic functions are a bit of a problem because they're really hard to solve. But, way back in the 16<sup>th</sup> century, <a href="https://en.wikipedia.org/wiki/Gerolamo_Cardano">Gerolamo Cardano</a> figured out that even if the general cubic function is really hard to solve, it can be rewritten to a form for which finding the roots is "easy", and then the only hard part is figuring out how to go from that form to the generic form. So:</p>
<p>\[
very\ hard:\ solve\ at^3 + bt^2 + ct + d = 0\\
easier:\ solve\ t^3 + pt + q = 0
\]</p>
<p>This is easier because for the "easier formula" we can use <a href="http://www.wolframalpha.com/input/?i=t^3+%2B+pt+%2B+q">regular calculus</a> to find the roots (as a cubic function, however, it can have up to three roots, but two of those can be complex. For the purpose of Bézier curve extremities, we can completely ignore those complex roots, since our <em>t</em> is a plain real number from 0 to 1).</p>
<p>So, the trick is to figure out how to turn the first formula into the second formula, and to then work out the maths that gives us the roots. This is explained in detail over at <a href="http://www.trans4mind.com/personal_development/mathematics/polynomials/cubicAlgebra.htm">Ken J. Ward's page</a> for solving the cubic equation, so instead of showing the maths, I'm simply going to show the programming code for solving the cubic equation, with the complex roots getting totally ignored.</p>
<div className="note"><pre>
// A helper function to filter for values in the [0,1] interval:
function accept(t) {
return 0<=t && t <=1;
}
// A special cuberoot function, which we can use because we don't care about complex roots:
function crt(v) {
if(v<0) return -Math.pow(-v,1/3);
return Math.pow(v,1/3);
}
// Now then: given cubic coordinates pa, pb, pc, pd, find all roots.
function getCubicRoots(pa, pb, pc, pd) {
var d = (-pa + 3*pb - 3*pc + pd),
a = (3*pa - 6*pb + 3*pc) / d,
b = (-3*pa + 3*pb) / d,
c = pa / d;
var p = (3*b - a*a)/3,
p3 = p/3,
q = (2*a*a*a - 9*a*b + 27*c)/27,
q2 = q/2,
discriminant = q2*q2 + p3*p3*p3;
// and some variables we're going to use later on:
var u1,v1,root1,root2,root3;
// three possible real roots:
if (discriminant < 0) {
var mp3 = -p/3,
mp33 = mp3*mp3*mp3,
r = sqrt( mp33 ),
t = -q / (2*r),
cosphi = t<-1 ? -1 : t>1 ? 1 : t,
phi = acos(cosphi),
crtr = cuberoot(r),
t1 = 2*crtr;
root1 = t1 * cos(phi/3) - a/3;
root2 = t1 * cos((phi+2*pi)/3) - a/3;
root3 = t1 * cos((phi+4*pi)/3) - a/3;
return [root1, root2, root3].filter(accept);
}
// three real roots, but two of them are equal:
else if(discriminant === 0) {
u1 = q2 < 0 ? cuberoot(-q2) : -cuberoot(q2);
root1 = 2*u1 - a/3;
root2 = -u1 - a/3;
return [root1, root2].filter(accept);
}
// one real root, two complex roots
else {
var sd = sqrt(discriminant);
u1 = cuberoot(sd - q2);
v1 = cuberoot(sd + q2);
root1 = u1 - v1 - a/3;
return [root1].filter(accept);
}
}</pre></div>
<p>And that's it. The maths is complicated, but the code is pretty much just "follow the maths, while caching as many values as we can to reduce recomputing things as much as possible" and now we have a way to find all roots for a cubic function and can just move on with using that to find extremities of our curves.</p>
<h3>Quintic and higher order curves: finding numerical solutions</h3>
<p>The problem with this is that as the order of the curve goes up, we can't actually solve those equations the normal
way. We can't take the function, and then work out what the solutions are. Not to mention that even solving a third
order derivative (for a fourth order curve) is already a royal pain in the backside. We need a better solution. We
need numerical approaches.</p>
<p>That's a fancy word for saying "rather than solve the function, treat the problem as a sequence of identical
operations, the performing of which gets us closer and closer to the real answer". As it turns out, there is a
really nice numerical root finding algorithm, called the <a href="http://en.wikipedia.org/wiki/Newton-Raphson">Newton-Raphson</a>
root finding method (yes, after <strong>that</strong> Newton), which we can make use of.</p>
<p>The Newton-Raphson approach consists of picking a value <i>t</i> (any will do), and getting the corresponding
value at that <i>t</i> value. For normal functions, we can treat that value as a height. If the height is zero,
we're done, we have found a root. If it's not, we take the tangent of the curve at that point, and extend
it until it passes the x-axis, which will be at some new point <i>t</i>. We then repeat the procedure with this
new value, and we keep doing this until we find our root.</p>
<p>Mathematically, this means that for some <i>t</i>, at step <i>n=1</i>, we perform the following calculation
until <i>f<sub>y</sub></i>(<i>t</i>) is zero, so that the next <i>t</i> is the same as the one we already have:</p>
<p>\[
t_{n+1} = t_n - \frac{f_y(t_n)}{f'_y(t_n)}
\]</p>
<p>(The wikipedia article has a decent animation for this process, so I'm not adding a sketch for that here)</p>
<p>Now, this works well only if we can pick good starting points, and our curve is continuously differentiable
and doesn't have oscillations. Glossing over the exact meaning of those terms, the curves we're dealing with
conform to those constraints, so as long as we pick good starting points, this will work. So the question is:
which starting points do we pick?</p>
<p>As it turns out, Newton-Raphson is so blindingly fast, so we could get away with just not picking:
we simply run the algorithm from <i>t=0</i> to <i>t=1</i> at small steps (say, 1/200<sup>th</sup>) and
the result will be all the roots we want. Of course, this may pose problems for high order Bézier
curves: 200 steps for a 200<sup>th</sup> order Bézier curve is going to go wrong, but that's okay:
there is no reason, ever, to use Bézier curves of crazy high orders. You might use a fifth order curve
to get the "nicest still remotely workable" approximation of a full circle with a single Bézier curve,
that's pretty much as high as you'll ever need to go.</p>
<h3>In conclusion:</h3>
<p>So now that we know how to do root finding, we can determine the first and second derivative roots for our Bézier curves, and show those roots overlaid on the previous graphics:</p>
<Graphic preset="simple" title="Quadratic Bézier curve extremities" setup={this.setupQuadratic} draw={this.draw}/>
<Graphic preset="simple" title="Cubic Bézier curve extremities" setup={this.setupCubic} draw={this.draw}/>
</section>
);
}
});
module.exports = Extremities;

View File

@ -77,7 +77,7 @@ var Flattening = React.createClass({
<pre>function flattenCurve(curve, segmentCount):
step = 1/segmentCount;
coordinates = [curve.getXValue(0), curve.getYValue(0)]
for(i=1; i &lt;= segmentCount; i++):
for(i=1; i <= segmentCount; i++):
t = i*step;
coordinates.push[curve.getXValue(t), curve.getYValue(t)]
return coordinates;</pre>
@ -87,7 +87,7 @@ var Flattening = React.createClass({
<pre>function drawFlattenedCurve(curve, segmentCount):
coordinates = flattenCurve(curve, segmentCount)
coord = coordinates[0], _coords;
for(i=1; i &lt; coordinates.length; i++):
for(i=1; i < coordinates.length; i++):
_coords = coordinates[i]
line(coords, _coords)
coords = _coords</pre>

View File

@ -16,14 +16,14 @@ module.exports = {
matrixsplit: require("./matrixsplit"),
reordering: require("./reordering"),
derivatives: require("./derivatives")
derivatives: require("./derivatives"),
pointvectors: require("./pointvectors"),
components: require("./components"),
extremities: require("./extremities")
};
/*
pointvectors: require("./pointvectors"),
components: require("./components"),
extremities: require("./extremities"),
boundingbox: require("./boundingbox"),
aligning: require("./aligning"),
tightbounds: require("./tightbounds"),

View File

@ -179,7 +179,7 @@ var MatrixSplit = React.createClass({
1 & t & t^2
\end{bmatrix}
\cdot
\underset{we\ turn\ this...}{\underbrace{Z \cdot M}}
\underset{we\ turn\ this...}{\underbrace{\kern 2.25em Z \cdot M \kern 2.25em}}
\cdot
\begin{bmatrix}
P_1 \\ P_2 \\ P_3
@ -192,7 +192,7 @@ var MatrixSplit = React.createClass({
1 & t & t^2
\end{bmatrix}
\cdot
\underset{...into\ this!}{\underbrace{ M \cdot M^{-1} \cdot Z \cdot M }}
\underset{...into\ this...}{\underbrace{ M \cdot M^{-1} \cdot Z \cdot M }}
\cdot
\begin{bmatrix}
P_1 \\ P_2 \\ P_3
@ -206,9 +206,7 @@ var MatrixSplit = React.createClass({
\end{bmatrix}
\cdot
M
\cdot
Q
\cdot
\underset{...to\ get\ \ this!}{\underbrace{ \kern 1.25em \cdot \kern 1.25em Q \kern 1.25em \cdot \kern 1.25em}}
\begin{bmatrix}
P_1 \\ P_2 \\ P_3
\end{bmatrix}

View File

@ -0,0 +1,145 @@
var React = require("react");
var Graphic = require("../../Graphic.jsx");
var SectionHeader = require("../../SectionHeader.jsx");
var PointVectors = React.createClass({
statics: {
title: "Tangents and normals"
},
setupQuadratic: function(api) {
var curve = api.getDefaultQuadratic();
api.setCurve(curve);
},
setupCubic: function(api) {
var curve = api.getDefaultCubic();
api.setCurve(curve);
},
draw: function(api, curve) {
api.reset();
api.drawSkeleton(curve);
api.drawCurve(curve);
var i,t,p,tg,n,td=0.25,nd=20;
for(i=0; i<=10; i++) {
t = i/10.0;
p = curve.get(t);
tg = curve.derivative(t);
n = curve.normal(t);
api.setColor("blue");
api.drawLine(p, {x:p.x+tg.x*td, y:p.y+tg.y*td});
api.setColor("red");
api.drawLine(p, {x:p.x+n.x*nd, y:p.y+n.y*nd});
api.setColor("black");
api.drawCircle(p,3);
}
},
render: function() {
return (
<section>
<SectionHeader {...this.props}>{ PointVectors.title }</SectionHeader>
<p>If you want to move objects along a curve, or "away from" a curve, the two vectors you're most interested
in are the tangent vector and normal vector for curve points. These are actually really easy to find. For
moving, and orienting, along a curve we use the tangent, which indicates the direction travel at specific
points, and is literally just the first derivative of our curve:</p>
<p>\[
\left \{ \begin{matrix}
tangent_x(t) = B'_x(t) \\
tangent_y(t) = B'_y(t)
\end{matrix} \right. \]</p>
<p>This gives us the directional vector we want. We can normalize it to give us uniform directional vectors
(having a length of 1.0) at each point, and then do whatever it is we want to do based on those directions:</p>
<p>\[
d = || tangent(t) || = \sqrt{B'_x(t)^2 + B'_y(t)^2}
\]</p>
<p>\[
\left \{ \begin{matrix}
\hat{x}(t) = || tangent_x(t) ||
=\frac{tangent_x(t)}{ || tangent(t) || }
= \frac{B'_x(t)}{d} \\
\hat{y}(t) = || tangent_y(t) ||
= \frac{tangent_y(t)}{ || tangent(t) || }
= \frac{B'_y(t)}{d}
\end{matrix} \right. \]</p>
<p>The tangent is very useful for moving along a line, but what if we want to move away from the curve instead,
perpendicular to the curve at some point <i>t</i>? In that case we want the "normal" vector. This vector runs
at a right angle to the direction of the curve, and is typically of length 1.0, so all we have to do is rotate
the normalized directional vector and we're done:</p>
<p>\[
\left \{ \begin{array}{l}
normal_x(t) = \hat{x}(t) \cdot \cos{\frac{\pi}{2}} - \hat{y}(t) \cdot \sin{\frac{\pi}{2}} = - \hat{y}(t) \\
normal_y(t) = \underset{quarter\ circle\ rotation} {\underbrace{ \hat{x}(t) \cdot \sin{\frac{\pi}{2}} + \hat{y}(t) \cdot \cos{\frac{\pi}{2}} }} = \hat{x}(t)
\end{array} \right. \]</p>
<div className="note">
<p>Rotating coordinates is actually very easy, if you know the rule for it. You might find
it explained as "applying a <a href="https://en.wikipedia.org/wiki/Rotation_matrix">rotation matrix</a>",
which is what we'll look at here, too. Essentially, the idea is to take the circles over
which we can rotate, and simply "sliding the coordinates" over those circles by the desired
angle. If we want a quarter circle turn, we take the coordinate, slide it along the cirle
by a quarter turn, and done.</p>
<p>To turn any point <i>(x,y)</i> into a rotated point <i>(x',y')</i> (over 0,0) by
some angle φ, we apply this nicely easy computation:</p>
<p>\[\begin{array}{l}
x' = x \cdot \cos(\phi) - y \cdot \sin(\phi) \\
y' = x \cdot \sin(\phi) + y \cdot \cos(\phi)
\end{array}\]</p>
<p>Which is the "long" version of the following matrix transformation:</p>
<p>\[
\begin{bmatrix}
x' \\ y'
\end{bmatrix}
=
\begin{bmatrix}
\cos(\phi) & -\sin(\phi) \\
\sin(\phi) & \cos(\phi)
\end{bmatrix}
\begin{bmatrix}
x \\ y
\end{bmatrix}
\]</p>
<p>And that's all we need to rotate any coordinate. Note that for quarter, half
and three quarter turns these functions become even easier, since <i>sin</i> and
<i>cos</i> for these angles are, respectively: 0 and 1, -1 and 0, and 0 and -1.</p>
<p>But <strong><em>why</em></strong> does this work? Why this matrix multiplication?
<a href="http://en.wikipedia.org/wiki/Rotation_matrix#Decomposition_into_shears">wikipedia</a>
(Technically, Thomas Herter and Klaus Lott) tells us that a rotation matrix can be
treated as a sequence of three (elementary) shear operations. When we combine this into
a single matrix operation (because all matrix multiplications can be collapsed), we get
the matrix that you see above.
<a href="http://datagenetics.com/blog/august32013/index.html">DataGenetics</a> have an
excellent article about this very thing: it's really quite cool, and I strongly recommend
taking a quick break from this primer to read that article.</p>
</div>
<p>The following two graphics show the tangent and normal along a quadratic and cubic curve, with
the direction vector coloured blue, and the normal vector coloured red.</p>
<div className="figure">
<Graphic preset="simple" title="Quadratic Bézier tangents and normals" inline={true} setup={this.setupQuadratic} draw={this.draw}/>
<Graphic preset="simple" title="Cubic Bézier tangents and normals" inline={true} setup={this.setupCubic} draw={this.draw}/>
</div>
</section>
);
}
});
module.exports = PointVectors;

View File

@ -124,7 +124,7 @@ function drawCurve(points[], t):
draw(points[0])
else:
newpoints=array(points.size-1)
for(i=0; i&lt;newpoints.length; i++):
for(i=0; i<newpoints.length; i++):
if(i==0):
left.add(points[i])
if(i==newpoints.length-1):

View File

@ -0,0 +1,73 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="21ex" height="14.167ex" style="vertical-align: -6.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 0ex; margin-top: 1px;" viewBox="0 -3288.2 9018.1 6076.3" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D459" d="M258 683l-144 -578c-5 -19 -6 -24 -6 -48c0 -14 0 -46 30 -46c40 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -12 -60 -30 -98c-17 -36 -42 -56 -75 -56c-47 0 -91 35 -91 92c0 16 2 23 5 34l126 500l3 20c0 8 -1 17 -49 17c-15 0 -25 0 -25 11 c0 19 11 20 19 21c26 2 99 10 122 10c13 0 13 -11 13 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(167,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,2474)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="303" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="697" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1274" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1945" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="3006" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="3540" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4339" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="5345" y="0"></use>
</g>
<g transform="translate(3006,1116)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="534" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="1333" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="2338" y="0"></use>
</g>
<g transform="translate(4668,-187)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="534" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="5202" y="-2068"></use>
</g>
<g transform="translate(5768,0)">
<g transform="translate(0,2474)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1338" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="1843" y="0"></use>
</g>
<g transform="translate(0,1116)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-30" x="1338" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="1843" y="0"></use>
</g>
<g transform="translate(0,-187)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1338" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="2121" y="0"></use>
</g>
<g transform="translate(0,-2068)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1060,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="1337" height="60" x="0" y="220"></rect>
<g transform="translate(60,676)">
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="783" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="401" y="-686"></use>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -1,4 +1,4 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="34ex" height="8.833ex" style="vertical-align: -3.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2163.9 14647.5 3827.9" xmlns="http://www.w3.org/2000/svg">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.167ex" height="8.833ex" style="vertical-align: -3.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2163.9 16875.4 3827.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-5B" d="M256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20Z"></path>
@ -10,7 +10,10 @@
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44D" d="M723 674c0 -6 -2 -11 -3 -15l-559 -625h171c170 0 218 72 262 208c7 21 8 25 17 25s13 -6 13 -11c0 -4 -3 -11 -4 -15l-71 -221c-6 -19 -7 -20 -31 -20h-435c-18 0 -25 0 -25 9c0 3 4 18 4 18l559 625h-163c-156 0 -208 -66 -246 -184c-2 -3 -4 -10 -13 -10 c-12 0 -12 11 -12 11s1 9 3 14l55 180c6 19 7 20 31 20h422c20 0 25 0 25 -9Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D440" d="M1044 672c0 -20 -9 -20 -32 -20c-75 0 -77 -10 -86 -46l-133 -533c-5 -18 -5 -20 -5 -24c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -19 -20c-41 0 -84 3 -125 3l-124 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l143 573h-1l-404 -633 c-5 -7 -11 -18 -22 -18c-12 0 -13 11 -15 23l-86 620h-1l-136 -545c-3 -11 -4 -16 -4 -23c0 -23 11 -43 68 -44c7 0 18 0 18 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-8 0 -14 3 -14 12c0 18 13 19 18 19c81 3 98 35 108 75l127 509 c3 12 4 15 4 19c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h137c26 0 28 0 31 -23l78 -566l365 570c12 19 13 19 39 19h132c17 0 27 0 27 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-23DF" d="M492 -116c-7 -75 -40 -142 -86 -142h-80c-32 0 -69 -37 -74 -90c0 -3 -3 -5 -6 -5s-6 2 -6 5c-5 53 -42 90 -74 90h-80c-46 0 -79 67 -86 142c0 4 3 7 6 7s6 -2 6 -5c5 -53 42 -90 74 -90h80c37 0 67 -45 80 -103c13 58 43 103 80 103h80c32 0 69 37 74 90c0 3 3 5 6 5 s6 -3 6 -7Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE4-23DF" d="M2498 -80c0 -2 0 -3 -1 -4c-33 -91 -189 -189 -362 -189h-532c-184 0 -345 -39 -345 -120c0 -5 -4 -9 -9 -9s-9 4 -9 9c0 81 -161 120 -345 120h-532c-173 0 -329 98 -362 189c-1 1 -1 2 -1 4c0 4 4 9 9 9c4 0 7 -3 8 -6c30 -82 191 -124 346 -124h532 c178 0 318 -74 354 -153c36 79 176 153 354 153h532c155 0 316 42 346 124c1 3 4 6 8 6c5 0 9 -5 9 -9Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E111" d="M1002 -294h-492c-254 0 -474 117 -509 214c-1 1 -1 3 -1 5c0 7 6 13 13 13c6 0 10 -4 12 -9c32 -88 256 -121 485 -121h492v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E114" d="M1001 -75c0 -2 0 -4 -1 -5c-35 -97 -255 -214 -509 -214h-491v102h491c229 0 453 33 485 121c2 5 6 9 12 9c7 0 13 -6 13 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E113" d="M2003 -192v-102h-505c-260 0 -484 -29 -484 -116c0 -8 -6 -13 -13 -13s-13 5 -13 13c0 87 -224 116 -484 116h-504v102h504c249 0 446 -89 497 -176c51 87 248 176 497 176h505Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E112" d="M994 -294h-989h-5v102h5h989v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D464" d="M691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
@ -47,13 +50,21 @@
</g>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5866" y="0"></use>
<g transform="translate(6371,0)">
<g transform="translate(1136,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D44D" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="950" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D440" x="1455" y="0"></use>
<use xlink:href="#E1-LATINMODERNSIZE4-23DF" x="-48" y="-129"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44D" x="2250" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3200" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D440" x="3705" y="0"></use>
<g transform="translate(0,-138)">
<use xlink:href="#E1-LATINMODERNSIZE7-E111" x="-5" y="0"></use>
<g transform="translate(994.4712161860049,0) scale(1.5057567627990163,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<g transform="translate(0,-1206)">
<use xlink:href="#E1-LATINMODERNSIZE7-E113" x="2498" y="0"></use>
<g transform="translate(4499.193438408228,0) scale(1.5057567627990163,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E114" x="5998" y="0"></use>
</g>
<g transform="translate(1113,-1236)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D464" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="721" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1661" y="0"></use>
@ -69,8 +80,8 @@
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="6472" y="0"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="11370" y="0"></use>
<g transform="translate(11875,0)">
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="13598" y="0"></use>
<g transform="translate(14103,0)">
<g transform="translate(0,2150)">
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
<g transform="translate(0,-2321.5686274509803) scale(1,0.8431372549019608)">

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -21,7 +21,6 @@
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-21" d="M192 665l-39 -456c-1 -17 -4 -22 -14 -22c-12 0 -13 8 -14 23l-39 455c0 33 27 51 53 51s53 -18 53 -51zM192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D443" d="M754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
@ -73,7 +72,7 @@
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E114" x="6084" y="0"></use>
</g>
<g transform="translate(1712,-1252)">
<g transform="translate(1512,-1236)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="283" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="566" y="0"></use>
@ -85,7 +84,9 @@
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-210E" x="3495" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="4076" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="4426" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-21" x="4900" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="4900" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="5183" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="5466" y="0"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="13684" y="0"></use>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,146 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="100ex" height="6.167ex" style="vertical-align: -4.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -773.9 43055.4 2687.3" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45D" d="M490 282c0 -147 -125 -293 -241 -293c-51 0 -79 35 -92 64c-7 -25 -49 -188 -49 -200c0 -9 0 -16 50 -16c14 0 24 0 24 -11c0 -20 -13 -20 -18 -20c-32 0 -66 3 -99 3c-28 0 -57 -3 -84 -3c-8 0 -13 4 -13 12c0 19 11 19 23 19c44 0 46 7 54 41l112 445c4 17 7 28 7 51 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c37 0 80 -21 90 -75c33 39 81 75 131 75c76 0 133 -66 133 -160zM418 326c0 59 -24 94 -64 94c-17 0 -46 -7 -81 -38c-18 -15 -45 -43 -52 -70 l-49 -196c-3 -12 -3 -16 -3 -16c0 -6 13 -89 79 -89c37 0 85 33 119 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7D" d="M425 250c0 -7 -5 -12 -12 -12c-75 0 -130 -55 -130 -113v-250c0 -73 -91 -125 -196 -125c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 49 130 101v250c0 58 48 104 115 125c-67 21 -115 67 -115 125v250c0 52 -55 101 -130 101c-7 0 -12 5 -12 12s5 12 12 12 c105 0 196 -52 196 -125v-250c0 -58 55 -113 130 -113c7 0 12 -5 12 -12Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D464" d="M691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45F" d="M436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(16129,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="764" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1158" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1524" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2250" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="2827" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="3301" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3772" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7B" x="4578" y="0"></use>
<g transform="translate(5083,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="6048" y="0"></use>
<g transform="translate(6497,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="7462" y="0"></use>
<g transform="translate(7912,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="8877" y="0"></use>
<g transform="translate(9327,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-7D" x="10292" y="0"></use>
</g>
<g transform="translate(3908,-1640)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="583"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1087" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1481" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1847" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D462" x="2573" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3150" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="3624" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="4095" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7B" x="4901" y="0"></use>
<g transform="translate(5406,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="6353" y="0"></use>
<g transform="translate(6803,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="7750" y="0"></use>
<g transform="translate(8199,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-7D" x="9147" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="9652" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D464" x="10433" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-210E" x="11154" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="11735" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="12206" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="12662" y="0"></use>
<g transform="translate(13465,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="14690" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="15751" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="16256" y="0"></use>
<g transform="translate(16650,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="17837" y="0"></use>
<g transform="translate(18842,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="19807" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="20201" y="0"></use>
<g transform="translate(20983,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="22208" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="23269" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="23774" y="0"></use>
<g transform="translate(24168,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="25355" y="0"></use>
<g transform="translate(26360,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="27325" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="27719" y="0"></use>
<g transform="translate(28501,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="29726" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="30787" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="31292" y="0"></use>
<g transform="translate(31686,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="32873" y="0"></use>
<g transform="translate(33878,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="34843" y="0"></use>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,67 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.167ex" height="4.5ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1205.9 16857.8 1907.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D454" d="M474 395c0 -7 -2 -12 -3 -18l-111 -444c-15 -60 -87 -138 -212 -138c-96 0 -133 20 -133 61c0 40 32 58 54 58c27 0 38 -19 38 -35c0 -17 -11 -43 -41 -52c28 -9 61 -10 80 -10c106 0 140 99 144 108l33 132l-1 1c-10 -11 -57 -58 -116 -58c-72 0 -133 59 -133 158 c0 144 124 284 238 284c40 0 75 -26 93 -63c4 36 31 43 41 43c17 0 29 -10 29 -27zM392 334c0 5 -14 86 -80 86c-42 0 -85 -40 -112 -89c-27 -51 -56 -169 -56 -217c0 -40 15 -92 65 -92c29 0 60 18 81 36c22 19 45 44 51 70l48 191c1 4 3 10 3 15Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE2-221A" d="M1020 1130c0 0 0 -5 -5 -20l-549 -1736c-8 -24 -9 -24 -42 -24l-230 802l-68 -80l-16 15l139 163l215 -750l513 1624c4 13 8 26 23 26c12 0 20 -9 20 -20Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="802" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="1863" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="2146" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2429" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2795" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="3329" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D454" x="3934" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="4416" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="4887" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="5492" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5858" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="6252" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="6618" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="7012" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="7295" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7856" y="0"></use>
<g transform="translate(8917,0)">
<use xlink:href="#E1-LATINMODERNSIZE2-221A" x="0" y="-28"></use>
<rect stroke="none" width="6935" height="60" x="1005" y="1072"></rect>
<g transform="translate(1005,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1080" y="-350"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1272" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1666" y="0"></use>
<g transform="translate(2032,0)">
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="557" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="3105" y="0"></use>
<g transform="translate(4110,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1080" y="-350"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="5324" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="5718" y="0"></use>
<g transform="translate(6084,0)">
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="557" y="583"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -0,0 +1,55 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="19.167ex" height="6.5ex" style="vertical-align: -2.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1593.4 8251.2 2783.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D453" d="M552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<g transform="translate(366,-150)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2B" x="605" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="1388" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2082" y="0"></use>
<g transform="translate(3143,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="4259" y="0"></use>
<g transform="translate(5042,0)">
<g transform="translate(342,0)">
<rect stroke="none" width="2746" height="60" x="0" y="220"></rect>
<g transform="translate(60,821)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="700" y="-213"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="945" y="0"></use>
<g transform="translate(1339,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2232" y="0"></use>
</g>
<g transform="translate(60,-778)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="814" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="700" y="-350"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="945" y="0"></use>
<g transform="translate(1339,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2232" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -0,0 +1,87 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="100ex" height="6.167ex" style="vertical-align: -4.167ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -904.8 43055.4 2659.2" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45F" d="M436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3A" d="M192 378c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D459" d="M258 683l-144 -578c-5 -19 -6 -24 -6 -48c0 -14 0 -46 30 -46c40 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -12 -60 -30 -98c-17 -36 -42 -56 -75 -56c-47 0 -91 35 -91 92c0 16 2 23 5 34l126 500l3 20c0 8 -1 17 -49 17c-15 0 -25 0 -25 11 c0 19 11 20 19 21c26 2 99 10 122 10c13 0 13 -11 13 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45D" d="M490 282c0 -147 -125 -293 -241 -293c-51 0 -79 35 -92 64c-7 -25 -49 -188 -49 -200c0 -9 0 -16 50 -16c14 0 24 0 24 -11c0 -20 -13 -20 -18 -20c-32 0 -66 3 -99 3c-28 0 -57 -3 -84 -3c-8 0 -13 4 -13 12c0 19 11 19 23 19c44 0 46 7 54 41l112 445c4 17 7 28 7 51 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c37 0 80 -21 90 -75c33 39 81 75 131 75c76 0 133 -66 133 -160zM418 326c0 59 -24 94 -64 94c-17 0 -46 -7 -81 -38c-18 -15 -45 -43 -52 -70 l-49 -196c-3 -12 -3 -16 -3 -16c0 -6 13 -89 79 -89c37 0 85 33 119 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45E" d="M452 431l-138 -556c-2 -9 -4 -15 -4 -22c0 -9 0 -16 48 -16c16 0 26 0 26 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-13 0 -13 11 -13 11c0 20 10 20 23 20c56 1 64 5 72 33l45 179c-36 -36 -75 -60 -118 -60c-73 0 -132 62 -132 160 c0 145 123 293 241 293c32 0 71 -16 93 -70c17 29 57 69 68 69c7 0 10 -6 10 -10zM360 332c0 7 -14 88 -79 88c-41 0 -93 -42 -124 -116c-17 -42 -46 -151 -46 -199c0 -17 4 -94 64 -94c56 0 112 64 127 92c3 4 58 223 58 229Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(12757,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="490" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="961" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1417" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-210E" x="2244" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2825" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="3359" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="3815" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3A" x="4617" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5510" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="5984" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="6474" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="6777" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="7267" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="8070" y="0"></use>
<g transform="translate(8604,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="9649" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="10655" y="0"></use>
<g transform="translate(11089,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="12134" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="13139" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="13577" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="14165" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D451" x="15171" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15973" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-30" x="17034" y="0"></use>
</g>
<g transform="translate(15058,-1537)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="471" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="1005" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="1479" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1829" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2300" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3A" x="3033" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D460" x="3926" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="4400" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="4890" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="5193" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="5683" y="0"></use>
<g transform="translate(6486,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="7531" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="8537" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="9045" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="9633" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45E" x="10638" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="11373" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-30" x="12434" y="0"></use>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,93 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="33.667ex" height="6.167ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1570.3 14475 2640.6" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-5B" d="M256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-5D" d="M164 -250h-122c-11 0 -20 9 -20 20s9 20 20 20h82v920h-82c-11 0 -20 9 -20 20s9 20 20 20h122v-1000Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5B" d="M509 -921c0 -16 -13 -29 -29 -29h-247v2400h247c16 0 29 -13 29 -29s-13 -29 -29 -29h-189v-2284h189c16 0 29 -13 29 -29Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE6-5D" d="M295 1450v-2400h-247c-16 0 -29 13 -29 29s13 29 29 29h189v2284h-189c-16 0 -29 13 -29 29s13 29 29 29h247Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-63" d="M415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6F" d="M471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-73" d="M360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D719" d="M573 262c0 -134 -145 -269 -306 -274l-38 -149c-3 -14 -9 -38 -11 -40c-3 -3 -5 -4 -10 -4s-12 1 -12 11c0 3 10 41 22 88l23 94c-122 7 -192 86 -192 181c0 136 147 269 306 274l58 231c4 17 5 20 15 20c12 0 12 -10 12 -10l-3 -14l-56 -227c139 -10 192 -102 192 -181z M349 421c-149 -13 -235 -153 -235 -273c0 -100 72 -135 132 -138zM508 283c0 88 -57 134 -133 138l-103 -411c150 12 236 155 236 273Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-69" d="M247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6E" d="M535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<use xlink:href="#E1-LATINMODERNSIZE6-5B"></use>
<g transform="translate(700,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,657)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="816" y="513"></use>
</g>
<g transform="translate(41,-842)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="700" y="513"></use>
</g>
</g>
</g>
<use xlink:href="#E1-LATINMODERNSIZE6-5D" x="1756" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2567" y="0"></use>
<g transform="translate(3628,0)">
<use xlink:href="#E1-LATINMODERNSIZE6-5B"></use>
<g transform="translate(700,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,708)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1353" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="1747" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2348" y="0"></use>
</g>
<g transform="translate(55,-750)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1243" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="1637" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2238" y="0"></use>
</g>
</g>
<g transform="translate(3731,0)">
<g transform="translate(0,708)">
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
<g transform="translate(949,0)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2192" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="2586" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="3187" y="0"></use>
</g>
<g transform="translate(419,-750)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1353" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="1747" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="2348" y="0"></use>
</g>
</g>
</g>
<use xlink:href="#E1-LATINMODERNSIZE6-5D" x="8180" y="0"></use>
</g>
<g transform="translate(12508,0)">
<use xlink:href="#E1-LATINMODERNSIZE6-5B"></use>
<g transform="translate(700,0)">
<g transform="translate(-11,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="657"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="41" y="-743"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNSIZE6-5D" x="1433" y="0"></use>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -1,4 +1,4 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="28.833ex" height="8.833ex" style="vertical-align: -3.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2163.9 12443.4 3827.9" xmlns="http://www.w3.org/2000/svg">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="39.333ex" height="9ex" style="vertical-align: -4ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2163.9 16943.4 3874.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-5B" d="M256 -230c0 -11 -9 -20 -20 -20h-122v1000h122c11 0 20 -9 20 -20s-9 -20 -20 -20h-82v-920h82c11 0 20 -9 20 -20Z"></path>
@ -9,6 +9,19 @@
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D440" d="M1044 672c0 -20 -9 -20 -32 -20c-75 0 -77 -10 -86 -46l-133 -533c-5 -18 -5 -20 -5 -24c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -19 -20c-41 0 -84 3 -125 3l-124 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l143 573h-1l-404 -633 c-5 -7 -11 -18 -22 -18c-12 0 -13 11 -15 23l-86 620h-1l-136 -545c-3 -11 -4 -16 -4 -23c0 -23 11 -43 68 -44c7 0 18 0 18 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-8 0 -14 3 -14 12c0 18 13 19 18 19c81 3 98 35 108 75l127 509 c3 12 4 15 4 19c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h137c26 0 28 0 31 -23l78 -566l365 570c12 19 13 19 39 19h132c17 0 27 0 27 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D444" d="M740 436c0 -193 -147 -371 -302 -430c10 -76 25 -103 71 -103c35 0 93 25 117 96c2 6 4 11 12 11c4 0 11 -3 11 -10c0 -11 -48 -194 -167 -194c-83 0 -83 78 -83 110c0 13 0 15 4 77c-39 -11 -73 -15 -98 -15c-144 0 -256 101 -256 267c0 233 220 460 436 460 c149 0 255 -108 255 -269zM652 468c0 134 -73 212 -173 212c-73 0 -167 -46 -240 -148c-76 -108 -102 -250 -102 -319c0 -90 34 -168 112 -199c0 0 -6 12 -6 32c0 52 49 102 102 102c73 0 83 -73 88 -108c168 94 219 328 219 428zM406 41c0 61 -19 85 -61 85 s-80 -40 -80 -80c0 -43 32 -43 46 -43c28 0 58 7 84 18c10 4 11 5 11 20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-23DF" d="M492 -116c-7 -75 -40 -142 -86 -142h-80c-32 0 -69 -37 -74 -90c0 -3 -3 -5 -6 -5s-6 2 -6 5c-5 53 -42 90 -74 90h-80c-46 0 -79 67 -86 142c0 4 3 7 6 7s6 -2 6 -5c5 -53 42 -90 74 -90h80c37 0 67 -45 80 -103c13 58 43 103 80 103h80c32 0 69 37 74 90c0 3 3 5 6 5 s6 -3 6 -7Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E111" d="M1002 -294h-492c-254 0 -474 117 -509 214c-1 1 -1 3 -1 5c0 7 6 13 13 13c6 0 10 -4 12 -9c32 -88 256 -121 485 -121h492v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E114" d="M1001 -75c0 -2 0 -4 -1 -5c-35 -97 -255 -214 -509 -214h-491v102h491c229 0 453 33 485 121c2 5 6 9 12 9c7 0 13 -6 13 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E113" d="M2003 -192v-102h-505c-260 0 -484 -29 -484 -116c0 -8 -6 -13 -13 -13s-13 5 -13 13c0 87 -224 116 -484 116h-504v102h504c249 0 446 -89 497 -176c51 87 248 176 497 176h505Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E112" d="M994 -294h-989h-5v102h5h989v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D454" d="M474 395c0 -7 -2 -12 -3 -18l-111 -444c-15 -60 -87 -138 -212 -138c-96 0 -133 20 -133 61c0 40 32 58 54 58c27 0 38 -19 38 -35c0 -17 -11 -43 -41 -52c28 -9 61 -10 80 -10c106 0 140 99 144 108l33 132l-1 1c-10 -11 -57 -58 -116 -58c-72 0 -133 59 -133 158 c0 144 124 284 238 284c40 0 75 -26 93 -63c4 36 31 43 41 43c17 0 29 -10 29 -27zM392 334c0 5 -14 86 -80 86c-42 0 -85 -40 -112 -89c-27 -51 -56 -169 -56 -217c0 -40 15 -92 65 -92c29 0 60 18 81 36c22 19 45 44 51 70l48 191c1 4 3 10 3 15Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D460" d="M420 356c0 -39 -24 -56 -46 -56s-31 15 -31 29c0 22 20 44 48 45c-15 39 -65 46 -90 46c-88 0 -112 -61 -112 -90c0 -45 40 -52 76 -60c44 -9 73 -14 100 -42c12 -12 31 -37 31 -73c0 -45 -39 -166 -201 -166c-86 0 -143 40 -143 97c0 45 30 66 56 66c21 0 37 -12 37 -35 c0 -28 -25 -58 -63 -53c23 -53 100 -53 114 -53c120 0 143 84 143 110c0 55 -52 66 -104 76c-29 6 -103 21 -103 99c0 44 37 146 169 146c76 0 119 -41 119 -86Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-21" d="M192 665l-39 -456c-1 -17 -4 -22 -14 -22c-12 0 -13 8 -14 23l-39 455c0 33 27 51 53 51s53 -18 53 -51zM192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D443" d="M754 532c0 -112 -139 -216 -281 -216h-170l-62 -250c-1 -6 -3 -11 -3 -17c0 -18 28 -18 65 -18c19 0 28 0 28 -11c0 -20 -13 -20 -20 -20c-21 0 -43 2 -65 2l-64 1l-127 -3c-3 0 -15 0 -15 12c0 19 11 19 28 19c79 0 81 8 91 47l134 537c3 12 4 15 4 19 c0 11 -6 14 -22 16c-12 1 -30 2 -43 2c-20 0 -29 0 -29 12c0 19 11 19 30 19h324c131 0 197 -74 197 -151zM661 556c0 69 -53 96 -136 96h-96c-43 0 -45 -3 -54 -38l-68 -272h141c44 0 104 8 154 53c39 36 59 122 59 161Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A1" d="M647 1470c0 -17 -13 -30 -30 -30h-236v-1440h-60v1500h296c17 0 30 -13 30 -30Z"></path>
@ -36,10 +49,38 @@
</g>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5866" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D440" x="6371" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7643" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D444" x="8148" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="9166" y="0"></use>
<g transform="translate(9671,0)">
<g transform="translate(7420,0)">
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="1250" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D444" x="2783" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="5051" y="0"></use>
<g transform="translate(0,-332)">
<use xlink:href="#E1-LATINMODERNSIZE7-E111" x="-5" y="0"></use>
<g transform="translate(995.5281131231835,0) scale(1.294377375363291,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E113" x="2288" y="0"></use>
<g transform="translate(4290.1392242342945,0) scale(1.294377375363291,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E114" x="5578" y="0"></use>
</g>
<g transform="translate(998,-1446)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="283" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2E" x="566" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="849" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="1215" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D454" x="2174" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2656" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3127" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4432" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-210E" x="4798" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="5379" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D460" x="5729" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-21" x="6203" y="0"></use>
</g>
</g>
<g transform="translate(14171,0)">
<g transform="translate(0,2150)">
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A1" x="0" y="-1510"></use>
<g transform="translate(0,-2321.5686274509803) scale(1,0.8431372549019608)">

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,128 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="46.333ex" height="8.833ex" style="vertical-align: -3.833ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -2150.9 19964.5 3801.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45D" d="M490 282c0 -147 -125 -293 -241 -293c-51 0 -79 35 -92 64c-7 -25 -49 -188 -49 -200c0 -9 0 -16 50 -16c14 0 24 0 24 -11c0 -20 -13 -20 -18 -20c-32 0 -66 3 -99 3c-28 0 -57 -3 -84 -3c-8 0 -13 4 -13 12c0 19 11 19 23 19c44 0 46 7 54 41l112 445c4 17 7 28 7 51 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c37 0 80 -21 90 -75c33 39 81 75 131 75c76 0 133 -66 133 -160zM418 326c0 59 -24 94 -64 94c-17 0 -46 -7 -81 -38c-18 -15 -45 -43 -52 -70 l-49 -196c-3 -12 -3 -16 -3 -16c0 -6 13 -89 79 -89c37 0 85 33 119 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-36" d="M457 204c0 -132 -95 -226 -206 -226c-93 0 -209 71 -209 338c0 221 135 350 263 350c83 0 127 -48 127 -108c0 -39 -30 -48 -46 -48c-22 0 -46 15 -46 46c0 45 40 45 55 45c-22 34 -64 40 -88 40c-51 0 -175 -36 -175 -289v-24c20 48 57 99 125 99 c111 0 200 -96 200 -223zM367 205c0 49 0 100 -18 137c-31 62 -77 62 -93 62c-90 0 -122 -100 -122 -178c0 -18 0 -98 18 -145c6 -15 36 -75 99 -75c23 0 69 5 99 65c17 36 17 86 17 134Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(167,0)">
<g transform="translate(-11,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="0" y="1337"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="100" y="-21"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="96" y="-1379"></use>
</g>
<g transform="translate(523,0)">
<g transform="translate(0,1337)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2507" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="3513" y="0"></use>
<g transform="translate(4018,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5187" y="0"></use>
<g transform="translate(6192,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="7417" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="8478" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8983" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="9377" y="0"></use>
<g transform="translate(10160,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="11347" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="12352" y="0"></use>
<g transform="translate(12857,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="14045" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="15050" y="0"></use>
<g transform="translate(15555,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="16742" y="0"></use>
<g transform="translate(17747,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-34" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="18712" y="0"></use>
</g>
<g transform="translate(0,-21)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="1338" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1843" y="0"></use>
<g transform="translate(2237,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3406" y="0"></use>
<g transform="translate(4412,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5359" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="6030" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-36" x="7091" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7596" y="0"></use>
<g transform="translate(7990,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="9178" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="10183" y="0"></use>
<g transform="translate(10688,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="11875" y="0"></use>
<g transform="translate(12880,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13845" y="0"></use>
</g>
<g transform="translate(0,-1379)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2563" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-33" x="3624" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4129" y="0"></use>
<g transform="translate(4523,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="5710" y="0"></use>
<g transform="translate(6715,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45D" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="718" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7680" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,195 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="45.833ex" height="10.5ex" style="vertical-align: -4.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 0ex; margin-top: 1px;" viewBox="0 -2520.3 19719.5 4540.7" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-302" d="M-82 607l-12 -20c-58 25 -115 54 -170 85c-55 -31 -112 -60 -170 -85l-12 20c56 49 117 91 182 127c65 -36 126 -78 182 -127Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7C" d="M159 -230c0 -11 -9 -20 -20 -20s-20 9 -20 20v960c0 11 9 20 20 20s20 -9 20 -20v-960Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D454" d="M474 395c0 -7 -2 -12 -3 -18l-111 -444c-15 -60 -87 -138 -212 -138c-96 0 -133 20 -133 61c0 40 32 58 54 58c27 0 38 -19 38 -35c0 -17 -11 -43 -41 -52c28 -9 61 -10 80 -10c106 0 140 99 144 108l33 132l-1 1c-10 -11 -57 -58 -116 -58c-72 0 -133 59 -133 158 c0 144 124 284 238 284c40 0 75 -26 93 -63c4 36 31 43 41 43c17 0 29 -10 29 -27zM392 334c0 5 -14 86 -80 86c-42 0 -85 -40 -112 -89c-27 -51 -56 -169 -56 -217c0 -40 15 -92 65 -92c29 0 60 18 81 36c22 19 45 44 51 70l48 191c1 4 3 10 3 15Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D451" d="M516 683l-144 -578c-4 -17 -6 -24 -6 -48c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293 c45 0 74 -27 92 -64l60 237l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 13 6 18 14 19c17 2 112 11 127 11c13 0 13 -11 13 -11zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37 l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(0,2506)">
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
<g transform="translate(0,-1535.6516871732185) scale(1,1.0760576347931643)">
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
</g>
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-3007"></use>
<g transform="translate(0,-3782.063950694369) scale(1,1.0760576347931643)">
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
</g>
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-4503"></use>
</g>
<g transform="translate(1074,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,1171)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="506" y="-18"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="577" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="971" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1337" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="2008" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3069" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3352" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3635" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="4001" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="4535" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D454" x="5140" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="5622" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="6093" y="0"></use>
<g transform="translate(6698,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7572" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="7966" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8332" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="8726" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="9009" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="9570" y="0"></use>
<g transform="translate(10353,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="4161" height="60" x="0" y="220"></rect>
<g transform="translate(259,626)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="366" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="900" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D454" x="1505" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1987" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2458" y="0"></use>
<g transform="translate(2165,0)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="450" y="-185"></use>
</g>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="3997" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4391" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="4757" y="0"></use>
</g>
<g transform="translate(60,-482)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="566" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="932" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="1466" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D454" x="2071" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2553" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="3024" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3629" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="3995" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4389" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="4755" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="5149" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="5432" y="0"></use>
</g>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15310" y="0"></use>
<g transform="translate(16093,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="1878" height="60" x="0" y="220"></rect>
<g transform="translate(60,631)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="941" y="467"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="941" y="-305"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="1332" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1726" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="2092" y="0"></use>
</g>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1065" y="-626"></use>
</g>
</g>
</g>
<g transform="translate(93,-1341)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="465" y="-18"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="495" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="889" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1255" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1926" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="2987" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="3270" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3553" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="3919" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="4453" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D454" x="5058" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="5540" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="6011" y="0"></use>
<g transform="translate(6616,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7432" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="7826" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8192" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="8586" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-7C" x="8869" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="9430" y="0"></use>
<g transform="translate(10213,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="4161" height="60" x="0" y="220"></rect>
<g transform="translate(282,674)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="366" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="900" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D454" x="1505" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1987" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2458" y="0"></use>
<g transform="translate(2165,0)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="450" y="-185"></use>
</g>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="3930" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4324" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="4690" y="0"></use>
</g>
<g transform="translate(60,-482)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="283" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="566" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="932" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="1466" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D454" x="2071" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2553" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="3024" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3629" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="3995" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4389" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="4755" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="5149" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-7C" x="5432" y="0"></use>
</g>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="15170" y="0"></use>
<g transform="translate(15953,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="1831" height="60" x="0" y="220"></rect>
<g transform="translate(60,742)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNMAIN-2032" x="941" y="467"></use>
<use transform="scale(0.574)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="941" y="-305"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-28" x="1265" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1659" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-29" x="2025" y="0"></use>
</g>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D451" x="1032" y="-626"></use>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,88 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="63.833ex" height="5.5ex" style="vertical-align: -1.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1639.6 27459.3 2369.9" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D43A" d="M760 695l-63 -255c-5 -18 -5 -20 -18 -20c-4 0 -15 0 -15 10s3 11 3 51c0 116 -59 193 -161 193c-99 0 -196 -61 -250 -129c-105 -130 -115 -295 -115 -326c0 -153 105 -210 201 -210c35 0 165 11 193 121c10 37 21 82 21 91c0 13 -5 16 -31 19c-23 2 -53 2 -53 2 c-22 0 -30 0 -30 11c0 20 12 20 21 20l140 -3c23 0 82 3 105 3c8 0 13 -4 13 -11c0 -19 -11 -20 -16 -20c-57 -1 -58 -3 -69 -48c-4 -17 -9 -34 -13 -51l-19 -77c-5 -21 -15 -59 -17 -61c0 0 -2 -4 -7 -4c-10 0 -36 37 -45 62c-18 -20 -37 -41 -87 -61 c-36 -15 -81 -24 -125 -24c-162 0 -273 115 -273 274c0 232 225 453 448 453c111 0 157 -75 166 -89l70 77c11 11 12 12 15 12c9 0 11 -7 11 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D453" d="M552 636c0 -38 -29 -60 -55 -60c-19 0 -37 12 -37 35c0 15 10 50 54 54c-19 18 -45 18 -49 18c-21 0 -38 -15 -47 -34c-6 -12 -20 -83 -24 -104c-11 -58 -10 -56 -21 -114h83c17 0 27 0 27 -11c0 -20 -10 -20 -30 -20h-86l-60 -317c-1 -7 -24 -128 -56 -191 c-18 -38 -58 -97 -113 -97c-41 0 -85 24 -85 69c0 38 29 60 55 60c19 0 37 -12 37 -35c0 -15 -9 -51 -55 -54c19 -18 44 -18 48 -18c52 0 69 91 87 188l75 395h-66c-19 0 -28 0 -28 12c0 19 11 19 30 19h69c24 126 27 136 33 157c30 99 93 117 127 117c41 0 87 -23 87 -69Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44F" d="M415 282c0 -144 -123 -293 -241 -293c-74 0 -127 62 -127 157c0 35 4 51 16 101l82 326c5 21 14 55 14 62c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-74 -301c30 31 71 60 117 60c80 0 133 -69 133 -160zM343 326 c0 64 -27 94 -63 94c-26 0 -71 -15 -120 -80c-9 -11 -9 -13 -15 -35l-22 -92c-16 -63 -16 -82 -16 -101c0 -74 33 -101 67 -101c39 0 85 36 118 103c18 38 51 153 51 212Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2C" d="M203 1c0 -117 -80 -194 -91 -194c-5 0 -10 4 -10 11c0 3 0 5 11 16c33 33 68 93 68 167c0 14 -2 15 -2 15s-2 -1 -5 -3c-10 -9 -23 -13 -35 -13c-33 0 -53 26 -53 53c0 28 20 53 53 53c39 0 64 -39 64 -105Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-30" d="M460 320c0 -79 -5 -157 -37 -226c-44 -95 -120 -116 -174 -116c-49 0 -122 20 -165 101c-41 76 -45 166 -45 241c0 80 5 158 37 227c41 93 114 119 174 119c42 0 124 -16 170 -112c35 -74 40 -154 40 -234zM377 332c0 63 0 139 -10 195c-19 99 -85 117 -118 117 c-25 0 -100 -9 -119 -128c-8 -54 -8 -120 -8 -184c0 -59 0 -151 11 -211c18 -96 77 -121 116 -121c45 0 102 30 117 125c11 64 11 132 11 207Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D464" d="M691 372c0 -48 -32 -182 -66 -260c-26 -60 -70 -123 -145 -123c-30 0 -99 6 -125 70c-40 -70 -87 -70 -104 -70c-75 0 -142 35 -142 126c0 38 12 84 56 202c7 17 18 45 18 70c0 32 -16 33 -25 33c-35 0 -74 -31 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c49 0 82 -37 82 -82c0 -20 -6 -34 -17 -64c-47 -123 -52 -162 -52 -194c0 -17 0 -91 80 -91c39 0 69 31 92 84c-1 5 -1 7 -1 18c0 18 2 36 9 66c7 26 54 217 57 224c7 20 25 28 37 28c15 0 29 -9 29 -27c0 -6 -10 -43 -15 -65l-42 -168 c-4 -14 -11 -45 -11 -73c0 -57 27 -87 74 -87c49 0 84 35 110 88c26 51 55 149 55 183c0 48 -25 74 -36 85c-9 8 -15 14 -15 27c0 22 25 48 50 48c17 0 44 -15 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-210E" d="M546 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 5 32 13 55c24 61 62 170 62 224c0 36 -11 70 -54 70s-74 -19 -96 -35c-34 -27 -65 -83 -68 -92c-1 -6 -9 -39 -11 -45c-5 -23 -11 -45 -17 -67l-22 -90l-19 -76c-5 -14 -21 -26 -37 -26c-9 0 -29 5 -29 28 c0 6 0 8 4 22l145 576l3 20c0 10 -2 17 -50 17c-15 0 -24 0 -24 12c0 18 11 19 19 20c26 2 99 10 122 10c13 0 13 -11 13 -11l-78 -318c37 46 85 77 148 77c75 0 115 -42 115 -107c0 -58 -45 -177 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-B1" d="M722 -64c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h293v274h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20s-9 -20 -20 -20h-293v-274h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-34" d="M471 165h-100v-87c0 -36 2 -47 76 -47h21v-31c-41 3 -94 3 -136 3s-94 0 -135 -3v31h21c74 0 76 11 76 47v87h-266v31l307 469c8 12 11 12 20 12c16 0 16 -6 16 -26v-455h100v-31zM300 196v373l-244 -373h244Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-221A" d="M853 20c0 -5 -1 -6 -6 -17l-456 -944c-7 -15 -9 -19 -25 -19c-11 0 -13 1 -19 15l-198 435l-52 -39c-9 -8 -11 -8 -14 -8c-6 0 -10 4 -10 11c0 4 1 5 12 14l99 75c9 8 11 8 14 8c7 0 9 -6 13 -14l178 -392l423 876c6 12 9 19 21 19s20 -9 20 -20Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D43A" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D456" x="791" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="1141" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1631" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2102" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="3039" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3596" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="3990" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4356" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5027" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="6088" y="0"></use>
<g transform="translate(6622,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="7667" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="8673" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="9107" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="9695" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="10700" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2C" x="11138" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D453" x="11920" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="12477" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="12871" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13237" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="13908" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-30" x="14969" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D464" x="15806" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-210E" x="16527" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="17108" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="17579" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="18516" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="19160" y="0"></use>
<g transform="translate(19943,0)">
<g transform="translate(397,0)">
<rect stroke="none" width="6997" height="60" x="0" y="220"></rect>
<g transform="translate(60,676)">
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="783" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-B1" x="1439" y="0"></use>
<g transform="translate(2444,0)">
<use xlink:href="#E1-LATINMODERNMAIN-221A" x="0" y="839"></use>
<rect stroke="none" width="3595" height="60" x="838" y="829"></rect>
<g transform="translate(838,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D44F" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="613" y="408"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="1113" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-34" x="2118" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2623" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D450" x="3157" y="0"></use>
</g>
</g>
</g>
<g transform="translate(2979,-696)">
<use xlink:href="#E1-LATINMODERNMAIN-32" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="505" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,73 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="23ex" height="6.167ex" style="vertical-align: -2.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1594.6 9934.1 2689.2" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D454" d="M474 395c0 -7 -2 -12 -3 -18l-111 -444c-15 -60 -87 -138 -212 -138c-96 0 -133 20 -133 61c0 40 32 58 54 58c27 0 38 -19 38 -35c0 -17 -11 -43 -41 -52c28 -9 61 -10 80 -10c106 0 140 99 144 108l33 132l-1 1c-10 -11 -57 -58 -116 -58c-72 0 -133 59 -133 158 c0 144 124 284 238 284c40 0 75 -26 93 -63c4 36 31 43 41 43c17 0 29 -10 29 -27zM392 334c0 5 -14 86 -80 86c-42 0 -85 -40 -112 -89c-27 -51 -56 -169 -56 -217c0 -40 15 -92 65 -92c29 0 60 18 81 36c22 19 45 44 51 70l48 191c1 4 3 10 3 15Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE6-7B" d="M648 -928c0 -12 -10 -22 -22 -22c-2 0 -4 0 -6 1c-155 48 -292 176 -292 299v600c0 110 -87 241 -210 279c-9 3 -16 11 -16 21s7 18 16 21c123 38 210 169 210 279v600c0 123 137 251 292 299c2 1 4 1 6 1c12 0 22 -10 22 -22c0 -10 -7 -18 -16 -21 c-122 -38 -210 -159 -210 -257v-600c0 -120 -107 -240 -237 -300c130 -60 237 -180 237 -300v-600c0 -98 88 -219 210 -257c9 -3 16 -11 16 -21Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<use xlink:href="#E1-LATINMODERNSIZE6-7B"></use>
<g transform="translate(922,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,780)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="366" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="900" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D454" x="1505" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1987" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2458" y="0"></use>
<g transform="translate(3063,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3937" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4331" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4697" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5368" y="0"></use>
<g transform="translate(6429,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="1080" y="-350"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7701" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="8095" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8461" y="0"></use>
</g>
<g transform="translate(57,-682)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="366" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="900" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D454" x="1505" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D452" x="1987" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="2458" y="0"></use>
<g transform="translate(3063,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="517" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3879" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4273" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4639" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5310" y="0"></use>
<g transform="translate(6371,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="1080" y="-350"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="7585" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="7979" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="8345" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,270 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="47.5ex" height="16ex" style="vertical-align: -7.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -3707.2 20439.6 6914.3" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D435" d="M756 545c0 -95 -105 -169 -209 -188c97 -11 155 -69 155 -141c0 -98 -118 -216 -276 -216h-357c-18 0 -27 0 -27 11c0 20 10 20 27 20c79 0 81 8 91 47l134 537c3 12 4 15 4 19c0 13 -9 14 -27 16c-17 2 -38 2 -38 2c-19 0 -28 0 -28 11c0 20 10 20 29 20h336 c120 0 186 -64 186 -138zM665 549c0 44 -21 103 -109 103h-129c-43 0 -45 -3 -54 -38l-62 -248h146c122 0 208 95 208 183zM609 227c0 43 -19 117 -115 117h-189l-69 -279c-5 -18 -5 -20 -5 -23c0 -8 3 -9 13 -10c6 -1 8 -1 22 -1h136c118 0 207 97 207 196Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D463" d="M468 372c0 -52 -57 -383 -225 -383c-46 0 -134 16 -134 124c0 43 13 89 57 205c7 18 17 45 17 70c0 32 -17 32 -25 32c-29 0 -72 -23 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -12 -50 c-31 -83 -58 -156 -58 -212c0 -52 23 -87 74 -87c117 0 178 229 178 271c0 36 -13 62 -34 82c-11 11 -16 17 -16 30c0 22 24 48 49 48c18 0 44 -16 44 -70Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-31" d="M419 0c-35 3 -122 3 -162 3s-127 0 -162 -3v31h32c90 0 93 12 93 48v518c-52 -26 -111 -26 -131 -26v31c32 0 120 0 182 64c23 0 23 -2 23 -26v-561c0 -37 3 -48 93 -48h32v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-33" d="M457 171c0 -102 -91 -193 -213 -193c-109 0 -202 66 -202 157c0 44 32 58 56 58c29 0 56 -20 56 -56c0 -38 -31 -60 -66 -55c35 -59 110 -76 153 -76c44 0 113 29 113 165c0 98 -37 166 -119 166h-44c-17 0 -24 0 -24 11c0 10 7 11 15 12c7 0 31 2 39 3c25 1 59 4 89 52 c26 44 28 102 28 114c0 90 -55 112 -96 112c-36 0 -102 -13 -133 -62c15 0 62 0 62 -50c0 -29 -20 -51 -51 -51c-29 0 -51 19 -51 52c0 76 76 136 177 136c96 0 184 -56 184 -138c0 -79 -58 -149 -140 -176c104 -21 167 -99 167 -181Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2E" d="M192 53c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(167,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,2744)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D435" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="1080" y="583"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1087" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="1481" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1847" y="0"></use>
</g>
<g transform="translate(1059,1295)">
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="899" y="0"></use>
</g>
<g transform="translate(1059,-154)">
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="899" y="0"></use>
</g>
<g transform="translate(1059,-1545)">
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="899" y="0"></use>
</g>
<g transform="translate(1059,-2936)">
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2E" x="899" y="0"></use>
</g>
</g>
<g transform="translate(2230,0)">
<g transform="translate(0,2744)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2285" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-31" x="2679" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3406" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4412" y="0"></use>
<g transform="translate(4778,0)">
<use xlink:href="#E1-LATINMODERNMAIN-29" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="557" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5851" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="6856" y="0"></use>
<g transform="translate(7361,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="8308" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-31" x="8702" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="9429" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="10435" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="10801" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="11195" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="11783" y="0"></use>
<g transform="translate(12788,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<g transform="translate(13735,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
</g>
<g transform="translate(0,1295)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="2285" y="0"></use>
<g transform="translate(2679,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3724" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="4730" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="5235" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5823" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-31" x="6828" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7333" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="7949" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="8955" y="0"></use>
<g transform="translate(9460,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10407" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="10801" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="11389" y="0"></use>
<g transform="translate(12394,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13217" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="13833" y="0"></use>
<g transform="translate(14839,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<g transform="translate(15786,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
</g>
<g transform="translate(0,-154)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<g transform="translate(2285,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3330" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="4336" y="0"></use>
<g transform="translate(4841,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="5788" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="6376" y="0"></use>
<g transform="translate(7381,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="8551" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="9556" y="0"></use>
<g transform="translate(10061,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="11008" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="11596" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="12601" y="0"></use>
<g transform="translate(13106,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<g transform="translate(14053,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="15099" y="0"></use>
<g transform="translate(16104,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<g transform="translate(17051,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
</g>
<g transform="translate(0,-1545)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<g transform="translate(1338,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<g transform="translate(2285,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="3330" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="4336" y="0"></use>
<g transform="translate(4841,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<g transform="translate(5788,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="6833" y="0"></use>
<g transform="translate(7838,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<g transform="translate(8785,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="9831" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="10836" y="0"></use>
<g transform="translate(11341,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="12288" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="12876" y="0"></use>
<g transform="translate(13881,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="15051" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="16056" y="0"></use>
<g transform="translate(16561,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="17508" y="0"></use>
</g>
<g transform="translate(0,-2936)">
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="277" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="1338" y="0"></use>
<g transform="translate(1732,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="2901" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="3907" y="0"></use>
<g transform="translate(4412,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="5581" y="0"></use>
<g transform="translate(6586,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-33" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7533" y="0"></use>
<g transform="translate(7927,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="517" y="583"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="8973" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-32" x="9978" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="10483" y="0"></use>
<g transform="translate(10877,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="12046" y="0"></use>
<g transform="translate(13051,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13998" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="14392" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="14981" y="0"></use>
<g transform="translate(15986,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D463" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-31" x="692" y="-213"></use>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,77 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="27.167ex" height="6.333ex" style="vertical-align: -2.667ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 1px; margin-top: 1px;" viewBox="0 -1620.8 11690.9 2741.6" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2032" d="M251 710c0 -7 -2 -14 -6 -19l-158 -261h-27l120 297c4 11 18 21 33 21c21 0 38 -17 38 -38Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-63" d="M415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6F" d="M471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-73" d="M360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D719" d="M573 262c0 -134 -145 -269 -306 -274l-38 -149c-3 -14 -9 -38 -11 -40c-3 -3 -5 -4 -10 -4s-12 1 -12 11c0 3 10 41 22 88l23 94c-122 7 -192 86 -192 181c0 136 147 269 306 274l58 231c4 17 5 20 15 20c12 0 12 -10 12 -10l-3 -14l-56 -227c139 -10 192 -102 192 -181z M349 421c-149 -13 -235 -153 -235 -273c0 -100 72 -135 132 -138zM508 283c0 88 -57 134 -133 138l-103 -411c150 12 236 155 236 273Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-69" d="M247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6E" d="M535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(167,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,708)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="816" y="513"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1178" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="2239" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="3038" y="0"></use>
<g transform="translate(3543,0)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4896" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="5290" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5891" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="6507" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="7512" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="8230" y="0"></use>
<g transform="translate(8735,0)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="9978" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="10372" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="10973" y="0"></use>
</g>
<g transform="translate(0,-849)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-2032" x="700" y="513"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="1096" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="2157" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="2956" y="0"></use>
<g transform="translate(3461,0)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="4704" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="5098" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="5699" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="6315" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="7320" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="8038" y="0"></use>
<g transform="translate(8543,0)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="9896" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D719" x="10290" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="10891" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -0,0 +1,222 @@
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="50.667ex" height="10.167ex" style="vertical-align: -4.5ex; margin-left: 0ex; margin-right: 0ex; margin-bottom: 0ex; margin-top: 1px;" viewBox="0 -2428.4 21797.5 4356.8" xmlns="http://www.w3.org/2000/svg">
<defs>
<path stroke-width="10" id="E1-LATINMODERNMAIN-7B" d="M425 -238c0 -7 -5 -12 -12 -12c-105 0 -196 52 -196 125v250c0 58 -55 113 -130 113c-7 0 -12 5 -12 12s5 12 12 12c75 0 130 55 130 113v250c0 73 91 125 196 125c7 0 12 -5 12 -12s-5 -12 -12 -12c-75 0 -130 -49 -130 -101v-250c0 -58 -48 -104 -115 -125 c67 -21 115 -67 115 -125v-250c0 -52 55 -101 130 -101c7 0 12 -5 12 -12Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45B" d="M571 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 11 1 23 10 46c16 43 65 171 65 233c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43 l58 231c13 52 16 63 16 84c0 33 -11 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 4 14 63 30 97c10 18 29 57 75 57s87 -31 92 -87c17 23 66 87 156 87c72 0 115 -40 115 -107c0 -57 -42 -167 -61 -220c-9 -22 -18 -46 -18 -71 c0 -23 7 -33 24 -33c49 0 82 56 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45C" d="M469 273c0 -146 -135 -284 -268 -284c-93 0 -160 70 -160 169c0 142 134 284 268 284c90 0 160 -65 160 -169zM396 312c0 60 -30 108 -88 108c-28 0 -85 -15 -135 -92c-32 -51 -58 -159 -58 -208c0 -78 44 -109 87 -109c46 0 101 34 136 92c38 65 58 170 58 209Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45F" d="M436 377c0 -36 -28 -59 -55 -59s-38 19 -38 35c0 26 22 50 52 55c0 0 -16 12 -42 12c-43 0 -72 -26 -80 -33c-24 -22 -52 -69 -56 -82l-32 -130c-4 -18 -38 -154 -40 -158c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84 c0 38 -14 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23c0 0 -12 0 -12 10c0 3 13 63 31 97c9 18 28 57 74 57c47 0 83 -32 91 -77c19 28 63 77 128 77c51 0 83 -30 83 -65Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45A" d="M848 143c0 -8 -37 -154 -131 -154c-47 0 -82 35 -82 82c0 20 4 31 13 55c20 53 62 167 62 224c0 36 -11 70 -54 70c-109 0 -162 -120 -165 -133l-60 -241c-8 -32 -14 -57 -45 -57c-15 0 -29 9 -29 27c0 5 9 39 13 59c9 33 10 39 20 76l28 116c8 30 15 58 15 83 c0 33 -9 70 -54 70c-95 0 -148 -91 -163 -122l-13 -50c-5 -23 -11 -45 -17 -67l-22 -90c-6 -25 -18 -72 -19 -74c-7 -20 -25 -28 -37 -28c-15 0 -29 9 -29 27c0 5 6 28 9 43l58 231c13 52 16 63 16 84c0 38 -15 46 -31 46c-36 0 -56 -48 -73 -119c-6 -22 -7 -23 -17 -23 c0 0 -12 0 -12 10c0 3 13 62 31 97c9 18 28 57 74 57c45 0 87 -30 92 -87c17 23 66 87 156 87c25 0 57 -5 82 -26c28 -24 31 -58 32 -71c37 53 88 97 163 97s115 -42 115 -107c0 -57 -42 -168 -61 -220c-9 -22 -18 -46 -18 -71c0 -23 7 -33 24 -33c55 0 87 71 102 124 c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D44E" d="M498 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-48 0 -83 33 -91 75c-60 -71 -110 -75 -130 -75c-78 0 -133 66 -133 160c0 146 124 293 241 293c45 0 74 -27 92 -64c3 22 18 44 42 44c17 0 29 -10 29 -27c0 -4 0 -6 -7 -34l-36 -140l-22 -90 c-11 -44 -13 -52 -13 -74c0 -20 3 -46 30 -46c41 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10zM361 332c0 6 -14 88 -79 88c-40 0 -85 -37 -116 -96c-23 -46 -55 -169 -55 -219c0 -39 14 -94 64 -94c28 0 69 16 113 71c15 17 15 19 20 37l50 196c1 5 3 11 3 17Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D459" d="M258 683l-144 -578c-5 -19 -6 -24 -6 -48c0 -14 0 -46 30 -46c40 0 59 59 76 124c3 14 4 18 14 18c3 0 12 0 12 -10c0 0 -12 -60 -30 -98c-17 -36 -42 -56 -75 -56c-47 0 -91 35 -91 92c0 16 2 23 5 34l126 500l3 20c0 8 -1 17 -49 17c-15 0 -25 0 -25 11 c0 19 11 20 19 21c26 2 99 10 122 10c13 0 13 -11 13 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D465" d="M527 376c0 -40 -32 -58 -54 -58c-27 0 -38 19 -38 35c0 24 20 49 48 54c-21 13 -45 13 -50 13c-70 0 -93 -92 -99 -118l-34 -137c-11 -44 -17 -66 -17 -88c0 -34 16 -66 55 -66c32 0 100 24 133 131c2 7 4 11 13 11c3 0 12 0 12 -10c0 -25 -57 -154 -160 -154 c-60 0 -96 39 -108 76c-3 -6 -39 -76 -105 -76c-44 0 -94 20 -94 66c0 32 25 58 55 58c15 0 37 -8 37 -35c0 -28 -22 -49 -47 -54c21 -13 44 -13 50 -13c44 0 79 42 95 104c37 140 54 207 54 238c0 58 -35 67 -54 67c-34 0 -100 -25 -134 -131c-2 -9 -5 -11 -13 -11 c0 0 -12 0 -12 10c0 25 57 154 161 154c29 0 83 -10 108 -76c12 23 47 76 105 76c34 0 93 -14 93 -66Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-28" d="M332 -238c0 -5 -5 -10 -10 -10c-2 0 -4 1 -6 2c-110 83 -215 283 -215 454v84c0 171 105 371 215 454c2 1 4 2 6 2c5 0 10 -5 10 -10c0 -3 -2 -6 -4 -8c-104 -78 -173 -278 -173 -438v-84c0 -160 69 -360 173 -438c2 -2 4 -5 4 -8Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D461" d="M330 420c0 -20 -10 -20 -30 -20h-94l-74 -295c-4 -17 -6 -24 -6 -48c0 -33 10 -46 31 -46c34 0 87 24 130 128c5 11 6 14 15 14c4 0 12 0 12 -10c0 -8 -57 -154 -159 -154c-54 0 -92 38 -92 92c0 18 4 35 76 319h-88c-20 0 -28 0 -28 12c0 19 10 19 30 19h94l39 159 c9 35 37 36 40 36c17 0 29 -10 29 -27c0 -6 -5 -26 -41 -168h88c18 0 28 0 28 -11Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-29" d="M288 208c0 -171 -105 -371 -215 -454c-2 -1 -4 -2 -6 -2c-5 0 -10 5 -10 10c0 3 2 6 4 8c104 78 173 278 173 438v84c0 160 -69 360 -173 438c-2 2 -4 5 -4 8c0 5 5 10 10 10c2 0 4 -1 6 -2c110 -83 215 -283 215 -454v-84Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-3D" d="M722 347c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20zM722 153c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-302" d="M-82 607l-12 -20c-58 25 -115 54 -170 85c-55 -31 -112 -60 -170 -85l-12 20c56 49 117 91 182 127c65 -36 126 -78 182 -127Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-22C5" d="M192 250c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-63" d="M415 119c0 -10 -32 -130 -166 -130c-116 0 -215 99 -215 227c0 124 92 232 217 232c77 0 153 -39 153 -107c0 -30 -20 -47 -46 -47c-28 0 -46 20 -46 46c0 13 6 43 47 46c-35 36 -98 37 -107 37c-53 0 -135 -42 -135 -205c0 -161 88 -204 141 -204c37 0 102 12 131 105 c2 6 4 10 13 10c3 0 13 0 13 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6F" d="M471 214c0 -127 -101 -225 -222 -225c-117 0 -221 96 -221 225c0 125 97 234 222 234c121 0 221 -106 221 -234zM388 222c0 38 0 96 -26 139s-69 65 -113 65c-40 0 -87 -21 -114 -67c-24 -44 -24 -98 -24 -137c0 -36 0 -97 25 -141c27 -46 71 -67 114 -67 c50 0 94 29 116 74c22 44 22 98 22 134Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-73" d="M360 128c0 -72 -46 -139 -161 -139c-21 0 -66 1 -110 43c-18 -19 -18 -21 -20 -23c-19 -19 -20 -20 -25 -20c-11 0 -11 7 -11 24v132c0 18 0 25 13 25c10 0 11 -4 14 -17c19 -85 55 -142 139 -142c78 0 113 40 113 91c0 72 -82 88 -104 92c-72 14 -100 20 -132 46 c-27 22 -43 50 -43 85c0 56 38 123 160 123c15 0 56 0 94 -28c4 3 14 12 17 16c13 12 15 12 20 12c11 0 11 -7 11 -24v-101c0 -19 0 -24 -13 -24c0 0 -11 0 -12 9c-2 31 -7 121 -117 121c-86 0 -112 -41 -112 -76c0 -58 67 -71 123 -82c42 -8 81 -16 114 -48 c12 -12 42 -42 42 -95Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D70B" d="M567 407c0 -34 -36 -34 -49 -34h-114c-11 -52 -18 -106 -18 -159c0 -28 0 -93 29 -165c6 -14 6 -16 6 -22c0 -20 -21 -38 -41 -38c-15 0 -26 6 -36 50c-8 34 -8 61 -8 76c0 67 9 110 42 258h-113l-56 -221c-13 -50 -13 -52 -27 -98c-12 -37 -20 -65 -50 -65 c-13 0 -29 8 -29 27c0 7 0 9 8 24c42 91 96 212 128 333h-57c-20 0 -78 0 -127 -77c-6 -8 -8 -12 -16 -12c-12 0 -12 10 -12 10c0 5 26 51 61 90c44 47 82 47 104 47h335c19 0 40 0 40 -24Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-32" d="M449 174l-28 -174h-371c0 24 0 26 11 37l192 214c55 62 105 141 105 221c0 82 -43 163 -134 163c-58 0 -112 -37 -135 -102c3 1 5 1 13 1c35 0 53 -26 53 -52c0 -41 -35 -53 -52 -53c-3 0 -53 0 -53 56c0 89 74 181 187 181c122 0 212 -80 212 -194 c0 -100 -60 -154 -216 -292l-106 -103h180c22 0 88 0 95 8c10 15 17 59 22 89h25Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2212" d="M722 250c0 -11 -9 -20 -20 -20h-626c-11 0 -20 9 -20 20s9 20 20 20h626c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D466" d="M490 404c0 -7 0 -9 -4 -23l-96 -382c-28 -113 -131 -204 -234 -204c-62 0 -106 37 -106 87c0 49 33 65 56 65c10 0 37 -4 37 -35c0 -19 -10 -32 -20 -41c-14 -12 -27 -12 -43 -12c17 -39 62 -42 76 -42c46 0 84 29 110 63c40 53 52 102 65 154c-28 -28 -62 -45 -101 -45 c-59 0 -122 30 -122 119c0 47 18 104 58 210c7 19 17 45 17 70c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -20 -4 -31 -20 -72c-34 -88 -51 -150 -51 -196c0 -37 11 -81 62 -81 c66 0 109 70 113 85l45 180l20 80c4 18 12 49 14 54c9 15 25 21 35 21c15 0 29 -9 29 -27Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-69" d="M247 0c-34 1 -69 3 -104 3l-110 -3v31c67 0 78 0 78 45v269c0 49 -9 55 -74 55v31l140 11v-367c0 -39 4 -44 70 -44v-31zM192 604c0 -25 -20 -53 -54 -53c-30 0 -53 26 -53 53c0 25 20 53 54 53c30 0 53 -26 53 -53Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-6E" d="M535 0l-112 3l-113 -3v31c67 0 78 0 78 45v233c0 57 -11 111 -74 111c-64 0 -135 -56 -135 -160v-184c0 -45 11 -45 78 -45v-31l-112 3l-113 -3v31c67 0 78 0 78 45v268c0 49 -8 56 -78 56v31l141 11v-105c28 62 75 105 148 105c58 0 91 -20 105 -37 c31 -36 31 -67 31 -153v-191c1 -30 26 -30 78 -30v-31Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-2B" d="M722 250c0 -11 -9 -20 -20 -20h-293v-293c0 -11 -9 -20 -20 -20s-20 9 -20 20v293h-293c-11 0 -20 9 -20 20s9 20 20 20h293v293c0 11 9 20 20 20s20 -9 20 -20v-293h293c11 0 20 -9 20 -20Z"></path>
<path stroke-width="10" id="E1-LATINMODERNMAIN-23DF" d="M492 -116c-7 -75 -40 -142 -86 -142h-80c-32 0 -69 -37 -74 -90c0 -3 -3 -5 -6 -5s-6 2 -6 5c-5 53 -42 90 -74 90h-80c-46 0 -79 67 -86 142c0 4 3 7 6 7s6 -2 6 -5c5 -53 42 -90 74 -90h80c37 0 67 -45 80 -103c13 58 43 103 80 103h80c32 0 69 37 74 90c0 3 3 5 6 5 s6 -3 6 -7Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E111" d="M1002 -294h-492c-254 0 -474 117 -509 214c-1 1 -1 3 -1 5c0 7 6 13 13 13c6 0 10 -4 12 -9c32 -88 256 -121 485 -121h492v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E114" d="M1001 -75c0 -2 0 -4 -1 -5c-35 -97 -255 -214 -509 -214h-491v102h491c229 0 453 33 485 121c2 5 6 9 12 9c7 0 13 -6 13 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E113" d="M2003 -192v-102h-505c-260 0 -484 -29 -484 -116c0 -8 -6 -13 -13 -13s-13 5 -13 13c0 87 -224 116 -484 116h-504v102h504c249 0 446 -89 497 -176c51 87 248 176 497 176h505Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E112" d="M994 -294h-989h-5v102h5h989v-102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D45E" d="M452 431l-138 -556c-2 -9 -4 -15 -4 -22c0 -9 0 -16 48 -16c16 0 26 0 26 -11c0 -20 -13 -20 -18 -20c-33 0 -69 3 -103 3c-33 0 -68 -3 -100 -3c-13 0 -13 11 -13 11c0 20 10 20 23 20c56 1 64 5 72 33l45 179c-36 -36 -75 -60 -118 -60c-73 0 -132 62 -132 160 c0 145 123 293 241 293c32 0 71 -16 93 -70c17 29 57 69 68 69c7 0 10 -6 10 -10zM360 332c0 7 -14 88 -79 88c-41 0 -93 -42 -124 -116c-17 -42 -46 -151 -46 -199c0 -17 4 -94 64 -94c56 0 112 64 127 92c3 4 58 223 58 229Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D462" d="M543 143c0 0 -13 -63 -30 -99c-16 -32 -39 -55 -74 -55c-43 0 -78 26 -89 67c-17 -22 -53 -67 -119 -67c-54 0 -123 25 -123 120c0 49 21 111 58 210c6 15 17 44 17 68c0 32 -16 33 -25 33c-38 0 -76 -37 -101 -124c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10 c0 9 37 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -17 -63c-26 -69 -54 -148 -54 -204c0 -37 10 -82 62 -82c73 0 113 80 114 84l75 301c8 34 34 35 39 35c15 0 29 -9 29 -27c0 -6 -10 -44 -15 -67c-4 -15 -14 -53 -17 -68l-28 -108c-8 -35 -20 -82 -20 -104 c0 -33 10 -46 31 -46c42 0 61 68 75 124c3 14 4 18 14 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D452" d="M430 107c0 -12 -84 -118 -227 -118c-98 0 -157 79 -157 181c0 175 151 272 262 272c69 0 107 -41 107 -85c0 -14 -5 -73 -75 -103c-50 -21 -124 -23 -153 -23h-53c-15 -61 -16 -92 -16 -104c0 -32 9 -116 87 -116c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13z M382 357c0 34 -27 63 -74 63c-26 0 -129 -15 -168 -167h41c41 0 201 0 201 104Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D450" d="M430 107c0 -12 -84 -118 -227 -118c-104 0 -162 79 -162 169c0 141 133 284 268 284c71 0 118 -37 118 -86c0 -40 -27 -64 -56 -64c-19 0 -37 11 -37 35c0 7 2 24 18 39c14 14 28 14 44 14c-14 27 -52 40 -86 40c-55 0 -110 -43 -141 -100c-34 -62 -54 -159 -54 -200 c0 -60 27 -109 90 -109c12 0 121 0 200 99c6 8 8 10 13 10c6 0 12 -7 12 -13Z"></path>
<path stroke-width="10" id="E1-LATINMODERNNORMAL-1D456" d="M284 625c0 -30 -30 -53 -53 -53c-24 0 -38 17 -38 36c0 27 27 53 54 53c23 0 37 -16 37 -36zM293 143c0 -9 -37 -154 -131 -154c-48 0 -82 35 -82 82c0 21 13 54 23 80c16 43 61 159 69 185c4 10 11 31 11 52c0 32 -17 32 -25 32c-34 0 -74 -30 -101 -124 c-5 -16 -6 -18 -16 -18c0 0 -12 0 -12 10c0 9 38 154 132 154c50 0 82 -37 82 -82c0 -19 -5 -33 -13 -53c-10 -27 -10 -29 -22 -58l-39 -105c-23 -61 -29 -75 -29 -100c0 -23 7 -33 24 -33c51 0 84 61 102 124c5 15 5 18 15 18c3 0 12 0 12 -10Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A7" d="M755 724c0 -11 -7 -21 -17 -24c-138 -51 -236 -202 -236 -325v-375h-102v375c0 151 151 312 320 373c3 1 6 2 9 2c14 0 26 -12 26 -26Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A9" d="M755 26c0 -14 -12 -26 -26 -26c-3 0 -6 1 -9 2c-169 61 -320 222 -320 373v375h102v-375c0 -123 98 -274 236 -325c10 -3 17 -13 17 -24Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSYMBOLS-23A8" d="M502 1500v-375c0 -147 -120 -300 -265 -375c145 -75 265 -228 265 -375v-375h-102v375c0 137 -97 300 -236 351c-10 3 -17 13 -17 24s7 21 17 24c139 51 236 214 236 351v375h102Z"></path>
<path stroke-width="10" id="E1-LATINMODERNSIZE7-E003" d="M502 0h-102v748h102v-748Z"></path>
</defs>
<g stroke="currentColor" fill="currentColor" stroke-width="0" transform="matrix(1 0 0 -1 0 0)">
<g transform="translate(0,2414)">
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A7" x="0" y="-760"></use>
<g transform="translate(0,-1444.9192767043223) scale(1,0.9563578848341981)">
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
</g>
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A8" x="0" y="-2915"></use>
<g transform="translate(0,-3599.4021322569865) scale(1,0.9563578848341981)">
<use xlink:href="#E1-LATINMODERNSIZE7-E003"></use>
</g>
<use xlink:href="#E1-LATINMODERNSYMBOLS-23A9" x="0" y="-4319"></use>
</g>
<g transform="translate(1074,0)">
<g transform="translate(-11,0)">
<g transform="translate(0,1614)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="605" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="1095" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="1551" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2434" y="0"></use>
<g transform="translate(2968,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D465" x="428" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3779" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4173" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4539" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5210" y="0"></use>
<g transform="translate(6271,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="506" y="-18"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6848" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="7242" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7608" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="8224" y="0"></use>
<g transform="translate(8730,0)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
</g>
<g transform="translate(10249,0)">
<g transform="translate(120,0)">
<rect stroke="none" width="526" height="60" x="0" y="220"></rect>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D70B" x="84" y="649"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="119" y="-598"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="11238" y="0"></use>
<g transform="translate(12243,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="465" y="-18"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="12738" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="13132" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="13498" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="14114" y="0"></use>
<g transform="translate(14620,0)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
</g>
<g transform="translate(16029,0)">
<g transform="translate(120,0)">
<rect stroke="none" width="526" height="60" x="0" y="220"></rect>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D70B" x="84" y="649"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="119" y="-598"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17074" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-2212" x="18134" y="0"></use>
<g transform="translate(18917,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="465" y="-18"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="19412" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="19806" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="20172" y="0"></use>
</g>
<g transform="translate(0,-16)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="605" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="1095" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D45A" x="1551" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="2434" y="0"></use>
<g transform="translate(2968,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D459" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D466" x="428" y="-213"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="3721" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="4115" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="4481" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="5152" y="0"></use>
<g transform="translate(6213,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="506" y="-18"></use>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="577" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="971" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="1337" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="1953" y="0"></use>
<g transform="translate(2458,0)">
<use xlink:href="#E1-LATINMODERNMAIN-73"></use>
<use xlink:href="#E1-LATINMODERNMAIN-69" x="399" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6E" x="682" y="0"></use>
</g>
<g transform="translate(3868,0)">
<g transform="translate(120,0)">
<rect stroke="none" width="526" height="60" x="0" y="220"></rect>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D70B" x="84" y="649"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="119" y="-598"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-2B" x="4856" y="0"></use>
<g transform="translate(5862,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D466" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="465" y="-18"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="6357" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="6751" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="7117" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-22C5" x="7733" y="0"></use>
<g transform="translate(8238,0)">
<use xlink:href="#E1-LATINMODERNMAIN-63"></use>
<use xlink:href="#E1-LATINMODERNMAIN-6F" x="449" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-73" x="954" y="0"></use>
</g>
<g transform="translate(9758,0)">
<g transform="translate(120,0)">
<rect stroke="none" width="526" height="60" x="0" y="220"></rect>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D70B" x="84" y="649"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNMAIN-32" x="119" y="-598"></use>
</g>
</g>
<g transform="translate(0,-558)">
<use xlink:href="#E1-LATINMODERNSIZE7-E111" x="-5" y="0"></use>
<g transform="translate(985.6171039611892,0) scale(3.2765792077621714,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E113" x="4258" y="0"></use>
<g transform="translate(6250.536836476787,0) scale(3.2765792077621714,1)">
<use xlink:href="#E1-LATINMODERNSIZE7-E112"></use>
</g>
<use xlink:href="#E1-LATINMODERNSIZE7-E114" x="9518" y="0"></use>
</g>
<g transform="translate(1596,-1656)">
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45E" x="0" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D462" x="456" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="1034" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="1568" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="2024" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="2390" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="2861" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="3786" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="4224" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="4574" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D450" x="5030" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D459" x="5468" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D452" x="5771" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45F" x="6712" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="7168" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="7658" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D44E" x="8024" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D461" x="8558" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D456" x="8924" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45C" x="9274" y="0"></use>
<use transform="scale(0.707)" xlink:href="#E1-LATINMODERNNORMAL-1D45B" x="9764" y="0"></use>
</g>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-3D" x="17016" y="0"></use>
<g transform="translate(18076,0)">
<use xlink:href="#E1-LATINMODERNNORMAL-1D465" x="0" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-302" x="506" y="-18"></use>
</g>
<use xlink:href="#E1-LATINMODERNMAIN-28" x="18653" y="0"></use>
<use xlink:href="#E1-LATINMODERNNORMAL-1D461" x="19047" y="0"></use>
<use xlink:href="#E1-LATINMODERNMAIN-29" x="19413" y="0"></use>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -20,9 +20,13 @@ function fixPreBlocks(source) {
// that's a problem...
throw new Error("improperly closed LaTeX encountered!");
}
pre = source.substring(curr, term + ed.length);
pre = pre.replace(/\n/g,"{'\\n'}");
newsource += pre;
pre = source.substring(curr+op.length, term);
pre = pre.replace(/&/g,'&amp;')
.replace(/</g,'&lt;')
.replace(/>/g,'&gt;')
.replace(/([{}])/g,"{'$1'}")
.replace(/\n/g,"{'\\n'}");
newsource += "<pre>" + pre + "</pre>";
}
return newsource + source.substring(from);
}

View File

@ -27,6 +27,10 @@ figure {
font-style: italic;
font-size: 90%;
}
&:not([class=inline]) + figure:not([class=inline]) {
margin-top: 2em;
}
}
div.figure {

View File

@ -21,7 +21,7 @@ function cleanUp(latex) {
API.config({
MathJax: {
SVG: {
font: "Latin-Modern"
font: "Latin-Modern" // STIX-Web is too fat for this article
},
TeX: {
extensions: [