This commit is contained in:
Boris Marinov 2021-10-31 02:21:39 +03:00
parent 947763f9ab
commit c73480483c
20 changed files with 4782 additions and 439 deletions

View File

@ -6,9 +6,9 @@ title: Sets
Sets
===
We will begin our inquiry by looking at the basic theory of sets. You will understand why shortly. For now, it suffices to say that sets are an example of a category.
Let's begin our inquiry by looking at the basic theory of sets. You will understand why shortly. For now, it suffices to say that sets are an example of a category.
Preface: What is an Abstract Theory
What is an Abstract Theory
===
> Instead of asking what can be defined and deduced from what is assumed to begin with, we ask instead what more general ideas and principles can be found, in terms of which what was our starting-point can be defined or deduced.
@ -75,38 +75,40 @@ We will encounter the empty set again.
Functions
===
A function is a relationship between two sets which matches each element of one set, called the *domain* of the function, with exactly one element from another set, called the converse domain, or the *codomain* of the function.
A function is a relationship between two sets which matches each element of one set, called the *input set* of the function, with exactly one element from another set, called the **output set** of the function.
Some alternative way to call these two sets: *domain* and *codomain*, *source* and *target*. In programming) *argument* and *return value*. In logic they correspond to *premises* and *conclusion*, but it is all the same thing.
> By function I mean the unity of the act of arranging various representations under one common representation.
> Immanuel Kant, from Critique of Pure Reason
Here is a function, **f** which maps each ball from the set **R** to the ball with the opposite colour in another set **G** ( in mathematics a function's name is often accompanied by the names of its domain and codomain, like this: **f: R → G**)
Here is a function, **f** which maps each ball from the set **R** to the ball with the opposite colour in another set **G** (in mathematics a function's name is often accompanied by the names of its input and output sets, like this: **f: R → G**)
![Opposite colors](function_one_one.svg)
This is probably one of the simpler types of functions there exists. That is because it encodes a *one-to-one relationship* between the sets - *one* element from the domain is connected to exactly *one* element from the codomain (and the other way around).
This is probably one of the simpler types of functions there exists. That is because it encodes a *one-to-one relationship* between the sets - *one* element from the input is connected to exactly *one* element from the output (and the other way around).
But functions can also express relationships of the type *many-to-one*, where *many* elements from the domain might be connected to *one* element from the codomain (but not the other way around).
But functions can also express relationships of the type *many-to-one*, where *many* elements from the input might be connected to *one* element from the output (but not the other way around).
For example, a function can express a relationship in which several elements from the domain relate to the same element of the codomain.
For example, a function can express a relationship in which several elements from the input set relate to the same element of the output set.
![Function from a bigger set to a smaller one](function_big_small.svg)
It can also express relationships in which some elements from the codomain do not play a part.
It can also express relationships in which some elements from the output set do not play a part.
![Function from a smaller set to a bigger one](function_small_big.svg)
One thing that you cannot have is a domain element which is not mapped to anything, or which is mapped to more than one codomain element. That would mean the relationship expressed by the function will be *many-to-many*, and, as we said in the beginning, functions only model many-to-one relationships. There is a reason for that "design decision", and we will arrive at it shortly.
One thing that you cannot have is a input element which is not mapped to anything, or which is mapped to more than one output element. That would mean the relationship expressed by the function will be *many-to-many*, and, as we said in the beginning, functions only model many-to-one relationships. There is a reason for that "design decision", and we will arrive at it shortly.
Sets and functions can express relationships between all kinds of objects, and even people. Every question that you ask can most probably be expressed as a function.
The question "How far are we from New York?" is a function with a domain the set of places in the world and a codomain, consisting of the set of all positive numbers
The question "How far are we from New York?" is a function with set of all places in the world as input set and an output set consisting of the set of all positive numbers.
**Question:** Some people might say that the codomain of this function is bigger than it should be. How would you refine it?
**Question:** Some people might say that the output of this function is bigger than it should be. How would you refine it?
The question "Who is my father?" is a function whose domain is the set of all people in the world.
The question "Who is my father?" is a function whose input is the set of all people in the world.
**Question:** What is the codomain of this function?
**Question:** What is the output of this function?
Note that the question "Who is my child?" is *NOT* a straightforward function, because a person can have no children, or can have multiple children. We will learn to represent such questions as functions later.
@ -140,7 +142,7 @@ There is a unique function from the empty set to any other set.
Note that this statement is also a result from the one saying that there is a function between a Subset and a Set, and the one that says that the empty set is a subset of any other set.
**Question:** What about the other way around. Are there functions with the empty set as a codomain as opposed to a domain?
**Question:** What about the other way around. Are there functions with the empty set as an output as opposed to its input?
Functions and Singleton Sets
---
@ -170,12 +172,12 @@ For example, squaring a number is a function from the set of real numbers to the
I will use the occasion to reiterate some of the more important characteristics of functions:
- All numbers from the codomain have (or should have) two arrows pointing at them (one for the positive square root and one for the negative one), and that is OK.
- All numbers from the output have (or should have) two arrows pointing at them (one for the positive square root and one for the negative one), and that is OK.
- Zero from the domain is connected to itself in the codomain, and that is OK.
- Some numbers aren't the square of any other number. That is also OK.
- Zero from the input set is connected to itself in the output set - that is permitted.
- Some numbers aren't the square of any other number - that is also permitted.
Overall everything is OK, as long as you can always provide exactly one result (also known as *The result™*) per value, and in mathematics almost always do. Actually, math is designed in a way so its operations are valid functions:
Overall everything is permitted, as long as you can always provide exactly one result (also known as *The result™*) per value, and in mathematics almost always do. Actually, math is designed in a way so its operations are valid functions:
> Every generalisation of number has first presented itself as needed for some simple problem: negative numbers were needed in order that subtraction might be always possible, since otherwise a b would be meaningless if a were less than b; fractions were needed in order that division might be always possible; and complex numbers are needed in order that extraction of roots and solution of equations may be always possible.
> Bertrand Russell, from Introduction to Mathematical Philosophy
@ -245,7 +247,7 @@ Hm, something is not quite right with this diagram as well - Because of the new
Functional Composition
===
Let's assume that we have two functions, **g: Y → P** and **f: P → G** and the codomain of the first one is the same set as the domain of the second.
Let's assume that we have two functions, **g: Y → P** and **f: P → G** and the output of the first one is the same set as the input set of the second one.
![Matching functions](functions_matching.svg)
@ -290,7 +292,7 @@ If we have a function **g: P → Y** from set **P** to set **Y**, then for every
![Functional composition connect](morphism_general.svg)
For example, if we again take the relationship between a person and his father as a function, with the set of all people in the world as a domain, and the set of all people that have children as its codomain, then each person whom my father is related to is automatically my relative - my father's father is my grandfather, my father's wife is my mother and so on.
For example, if we again take the relationship between a person and his father as a function, with the set of all people in the world as an input, and the set of all people that have children as its output, then each person whom my father is related to is automatically my relative - my father's father is my grandfather, my father's wife is my mother and so on.
Isomorphisms
===

View File

@ -220,7 +220,7 @@ Wait a minute - we said that all sets form a category, but at the same time any
This particular analogy (a set as a category with no morphisms) is, however, not very useful. Not because it's in any way incorrect, but because category theory is *all about the morphisms*. If in set theory arrows are nothing but a connection between a source and a destination, in category theory it's the *objects* that are nothing but a source and destination for the arrows that connect them to other objects. This is why, in the diagram above, the arrows, and not the objects, are coloured: the category of sets should really be called the category of set functions.
Speaking of which, note that objects in a category can be connected by multiple arrows and that arrows having the same domain and codomain does not in any way make them equivalent.
Speaking of which, note that objects in a category can be connected by multiple arrows and that arrows having the same input and output sets does not in any way make them equivalent (it does not actually mean that they would produce the same output value).
![Two objects connected with multiple arrows](arrows.svg)
@ -287,7 +287,7 @@ Ancient mathematicians invented the number zero that, although useless by itself
![The identity morphism (but can also be any other morphism)](identity.svg)
It's important to mark this morphism, because there can be (let's add the very important (and also very boring) reminder) many morphisms that go from one object to the same object, many of which actually do stuff. For example, mathematics deals with a multitude of functions that have the set of numbers as domain and codomain, such as **negate**, **square**, **add one**, and are not at all the identity morphism.
It's important to mark this morphism, because there can be (let's add the very important (and also very boring) reminder) many morphisms that go from one object to the same object, many of which actually do stuff. For example, mathematics deals with a multitude of functions that have the set of numbers as input and output, such as **negate**, **square**, **add one**, and are not at all the identity morphism.
**Question:** What is the identity morphism in the category of sets?

View File

@ -100,6 +100,7 @@ This touches a programming concept which is very popular in category-theory insp
In general, we use monoids and related structures as a way to model how a set of (associative) actions that are performed on a given object (or objects) alter it's state. We can do that, provided that the object's state is determined solely by the actions that are performed on it, this allows us to leave the object out of the equation and concentrate on how the actions are combined. And as per usual, the actions (and elements) can be anything, from mixing colors in paint, or adding a quantities to a given set of things etc.
<!--
TODO
Free Monoids
===
-->
@ -280,6 +281,11 @@ Those two operations and their composite results in a group called **Dih3** that
**Question:** Besides having two main actions, what is the defining factor that makes this and any other group non-abelian?
<!--
TODO: FSM as monoids
https://faculty.uml.edu/klevasseur/ads/s-monoid-of-fsm.html
-->
Monoids as Categories
===
@ -319,3 +325,15 @@ The intuition behind this representation is encompassed by the requirement of **
|Closure | | X | X |
When we view a monoid as a category, this law says that all morphisms in the category should be from one object to itself - a monoid, any monoid, can be seen as a category with one object.
<!--
TODO
Generators categorically
---
Cyclic groups/monoids
---
When we view cyclic groups as categories, we would see that they correspond to categories that not only have one object, but have *one morphism as well* - the generator
-->

View File

@ -197,14 +197,12 @@ In terms of arrows, the rule means that if you add an arrow to a point, the poin
This arrangement allows us to compare any two points by just seeing which one is above the other e.g. to spot the *join* of two elements, you just have to identify the ones they connect to and see which one is lowest.
Examples of partial orders
===
We all know many examples of total orders (any form of chart or ranking is a total order), but there are probably not so many obvious examples of partial orders that we can think of off the top of our head. So let's see some. In addition to providing a little context, this will help us understand joins and see why are they significant.
Color order
---
We all know many examples of total orders (any form of chart or ranking is a total order), but there are probably not so many obvious examples of partial orders that we can think of off the top of our head. So let's see some. In addition to providing a little context, this will help us understand joins and see why are they significant.
To stay true to our form, let's revisit our color-mixing monoid and create a color-mixing partial order in which all colors point to colors that contain them.
![A color mixing poset](color_mixing_poset.svg)
@ -314,6 +312,11 @@ The implications of the tendency to use trees to model everything as opposed to
> In simplicity of structure the tree is comparable to the compulsive desire for neatness and order that insists the candlesticks on a mantelpiece be perfectly straight and perfectly symmetrical about the center. The semilattice, by comparison, is the structure of a complex fabric; it is the structure of living things, of great paintings and symphonies.
<!--
Formal concept analysis
---
-->
Preorder
===
@ -342,18 +345,69 @@ And as a result of that, all "circle" relationships (e.g. where you have a weake
All of that structure arises naturally from the simple law of transitivity.
![Transitivity](transitivity.svg)
Maps as preorders
---
We use roadmaps all the time, and so most people do not realize that they are actually diagrams. More specifically, some of them are preorders - the objects represent intercections, the relations represent are the roads.
![A map as a preorder](preorder_map.svg)
Reflexivity reflects reflects the fact that if you have a route allowing you to get from point **A** to point **B** and one that allows you to go from **B** to **C**, then you can go from **A** to **C** as well. Two-way roads may be represented by two arrows that form an isomorphism between objects. Intercections such that you can get from one to the other form equivalence classes (ideally all intercections would be in one equivalence class).
![preorder](preorder_map_equivalence.svg)
However, maps that contain more than one road (and even more than one *route*) connecting two intercections, cannot be represented using preorders. For that we would need categories (don't worry, we are almost there.)
State machines as preorders
---
Let's now reformat the preorder that we used in the previous two examples, as Hasse diagram that goes from left to right. Now, it (hopefully) doesn't look so much like a hierarchy, nor like map, but like a description of a process (which if you think about it is also a map, just one that is temporal, rather than spatial.) This is actually a very good way to describe a computation model known as *finite state machine*.
![A state machine as a preorder](preorder_state_machine.svg)
A specification of a finite state machine consists of a set of states that the machine can have, which, as the name suggest must be finite (so they can be mapped to diagrams, like finite categories.) and a bunch of transition functions that specify which state do we transition to (often expressed as tables.)
But as we saw, a finite state machine is similar to a preorder with a greatest and least object, in which the relations between the objects are represented by functions.
Finite state machines are used in organization planning e.g. imagine a process where an item gets manifactured, gets checked by a quality control person, who, if they find some defficiencies, pass it to the necessary repairing departments and then they check it again and send it for shipping - this process can be modelled by the above diagram.
They are used in software too.
<!--
TODO: add the example of preorders as models for routes from/to a given set of destination.
Also the state machine example.
Or alternatively, a finite state machine is just a preorder with a greatest and least object, in which the relations between the objects are represented by functions.
https://www.cs.rochester.edu/u/nelson/courses/csc_173/fa/fa.html
Finite state machines are used in organization planning e.g. imagine a process where an item gets manifactured, gets checked by a quality control person, who, if they find some defficiencies, pass it to the necessary repairing departments and then they check it again and send it for shipping - this process can be modelled by the above diagram.
|Current State | Input | Next State |
|--- | --- | --- |
|| X | X | X |
|Identity| X | X | X |
|Invertability | | | X |
|Closure | | X | X |
Or imagine a computational alghorithm for parsing input which iterates a string of characters and converts them to some other objects until all of the input is parsed.
TODO
Turing machines
https://www.i2cell.science/how-a-turing-machine-works/
---
State machines are, however not Turing-complete, that is, they cannot encode any alghorithm.
|Current State | Input | Next State | Write | Move |
|--- | --- | --- |
-->
Orders as categories
===
Now let's look at transitivity law again, but from a different perspective. What it tells us that if we have two pairs of relationship **a ≤ b** and **b ≤ c**, then we automatically have a third one **a ≤ c**. In other words, it tells us that the **≤** relationship composes i.e. if we view the "bigger than" relationship as a morphism we would see that it fits the categorical definition of composition.
We saw that preorders are a powerful concept, so let's take a deeper look at the law that governs them - the transitivity law. What this law tells us that if we have two pairs of relationship **a ≤ b** and **b ≤ c**, then we automatically have a third one **a ≤ c**.
![Transitivity](transitivity.svg)
In other words, the transitivity law tells us that the **≤** relationship composes i.e. if we view the "bigger than" relationship as a morphism we would see that it fits the categorical definition of composition.
![Transitivity as functional composition](transitivity_composition.svg)
@ -363,11 +417,11 @@ What about that other law that was required in order to be a category - the iden
![Reflexivity](reflexivity.svg)
So it's official - preorders are categories (sounds kinda obvious, especially after we also saw that orders can be reduced to sets and functions (the inclusion order) and sets and functions form a category in their own right).
So it's official - preorders are categories (sounds kinda obvious, especially after we also saw that orders can be reduced to sets and functions using the inclusion order, and sets and functions form a category in their own right.)
And since partial orders and total orders are preorders too (as they obey those two laws), they are categories as well.
And since partial orders and total orders obey those two laws, they are preorders too. And also categories as well.
Starting to compare the categories of preorders, and partial and linear orders to other categories, like the (quintessential) category of sets, immediately sets them apart. In other categories there can be *many different morphisms (arrows)* between two objects and in orders can have *at most one morphism*. That is, for two objects **a** **b** we either have **a ≤ b** or we do not.
When we compare the categories of orders to other categories, like the quintessential category of sets we see one thing that immediately sets them apart: in other categories there can be *many different morphisms (arrows)* between two objects and in orders can have *at most one morphism*. That is, for two objects **a** **b** we either have **a ≤ b** or we do not.
![Orders compared to other categories](arrows_one_arrow.svg)
@ -375,12 +429,12 @@ That is in the contrast with the category of sets where there are potentially in
![Orders compared to other categories](order_category.svg)
Note that although two objects in an order might be directly connected by just one arrow, they might still be be indirectly connected by more than one arrow. So when we define an order in categorical way it's crucial to specify that *these ways are equivalent* i.e. that all diagrams that show orders commute.
Note that although two objects in an order might be directly connected by just one arrow, they might still be be *indirectly* connected by more than one arrow. So when we define an order in categorical way it's crucial to specify that *these ways are equivalent* i.e. that all diagrams that show orders commute.
Products and sums
---
While we are rehashing diagrams from the previous chapters, let's look at the diagram defining the *coproduct* of two objects in a category.
While we are rehashing diagrams from the previous chapters, let's look at the diagram defining the *coproduct* of two objects in a category, from chapter 2.
![Joins as coproduct](coproduct_join.svg)
@ -406,4 +460,3 @@ In the realm of orders, we say that **G** is the *join* of objects **Y** and **B
![Joins as coproduct](coproduct_join_morphisms.svg)
We can see that the two definitions and their diagrams are the same. So, speaking in category theoretic terms, we can say that the *categorical coproduct* in the category of orders is the *join* operation.

View File

@ -0,0 +1,264 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg3397"
sodipodi:docname="preorder_map.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata3403">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3401">
<linearGradient
gradientTransform="matrix(1.4607598,0,0,1.4607598,63.162102,-46.120583)"
inkscape:collect="always"
xlink:href="#linearGradient36416"
id="linearGradient36418"
x1="-128.34242"
y1="98.776787"
x2="-122.51214"
y2="98.776787"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
id="linearGradient36416">
<stop
style="stop-color:#bb5353;stop-opacity:1;"
offset="0"
id="stop36412" />
<stop
style="stop-color:#bb5353;stop-opacity:0;"
offset="1"
id="stop36414" />
</linearGradient>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="3.8916239"
inkscape:cx="250.09722"
inkscape:cy="89.123895"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-8"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="matrix(1.1915155,0,0,1.1915155,422.39644,-13.104354)"
style="stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1">
<g
id="g10312"
transform="translate(-2.8277277,0.56368876)"
style="stroke:#664141;stroke-opacity:1">
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0"
d="m -150.9577,51.179741 c -0.32491,-1.170989 -0.7209,-2.32588 -1.15669,-3.477631 1.23351,-0.07187 2.47847,-0.07932 3.73522,-0.02249 -0.90323,1.21988 -1.64902,2.139487 -2.57853,3.500126 z" />
<path
inkscape:connector-curvature="0"
id="path34554"
d="m -156.11112,43.627423 c -0.0131,4.928721 23.69469,13.807847 23.69469,14.216831 0,0.789818 -1.66303,-0.353227 -2.36947,0 -0.99905,0.499521 -1.86993,1.370411 -2.36946,2.369469 -0.30568,0.611357 9.00146,10.128237 10.07025,10.662612 0.70643,0.353226 1.66302,-0.353212 2.36947,0 1.71051,0.85526 3.02844,1.514224 4.73894,2.369484 1.89941,0.949698 4.62478,-1.413066 5.92367,1.184734 1.02677,2.053537 -1.02676,5.647244 0,7.700774 0.94079,1.88159 2.4064,7.03457 1.18474,9.47788 -0.70453,1.40905 -11.36287,8.643273 -13.03208,9.477893 -0.70645,0.35321 -1.7123,-0.43812 -2.36947,0 -0.36738,0.24491 -0.18244,1.02075 -0.59237,1.18474 -2.17269,0.86906 -4.7264,0.78144 -7.10842,2.36947 -2.83319,1.88877 -5.31265,7.14572 -3.5542,10.66261 0.77639,1.55279 11.78446,5.98658 10.66262,7.10841 -0.68526,0.68524 -7.45227,0.17192 -9.47789,1.18474 -3.4049,1.70245 -6.12802,5.43347 -9.47788,7.10842 -2.32656,1.16326 -4.84326,1.82925 -7.1084,2.96183 -0.9478,0.47389 -2.60644,-0.4739 -3.55421,0 -1.6596,0.82979 -3.41595,3.41596 -4.73895,4.73896"
style="fill:none;stroke:#664141;stroke-width:1.54756045;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34715"
d="m -103.68658,79.169492 c -0.59116,-1.666186 0.786,-4.351647 0,-5.923673 -0.77532,-1.550626 -0.28596,-2.349033 -0.59237,-2.961851 -0.24978,-0.499522 -0.87495,-0.720038 -1.18473,-1.184735 -0.1643,-0.24643 0,-0.592367 0,-0.888551 0,-1.435211 -0.62794,-4.667814 0,-5.923673 0.12489,-0.249761 0.46747,-0.342607 0.59236,-0.592368 0.0952,-0.190614 0.0952,-7.51016 0,-7.700775 -0.42763,-0.85526 -0.75711,-1.514224 -1.18473,-2.369469 -0.10328,-0.206552 -0.10328,-8.086606 0,-8.293158 0.57007,-1.140166 2.58227,-2.179687 3.5542,-2.665653 0.78982,-0.394901 2.17201,0.394917 2.961839,0 2.943504,-1.471744 2.394287,-5.936082 3.554204,-6.516039 1.184734,-0.59237 3.25802,0.592366 4.442755,0 0.883467,-0.441731 1.465843,-1.325292 2.369469,-1.777105 0.632202,-0.316096 0.552547,0.316099 1.184735,0 1.21208,-0.60604 2.327662,-1.163825 3.554204,-1.777103 0.631866,-0.315927 1.737632,0.315932 2.369498,0 2.518058,-1.259032 -1.333338,0.07429 1.184735,-1.184736 0.631851,-0.315928 1.737603,0.315931 2.369469,0 0.841325,-0.420666 1.993996,-1.184735 2.961837,-1.184735"
style="fill:none;stroke:#664141;stroke-width:3.86890101;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csssscscccccssssc"
inkscape:connector-curvature="0"
id="path34558"
d="m -62.813193,32.372442 c 1.575166,-0.78759 0.822072,-3.439346 2.961837,-2.369469 5.161916,2.580958 1.277376,14.85552 7.108408,17.771036 1.652338,0.826162 4.27132,0.358558 5.923658,1.184735 3.283365,1.641675 9.038496,7.414335 10.662612,10.662612 0.831158,1.662315 0.317832,4.189868 1.184749,5.923673 2.779666,5.55936 8.293143,3.241718 8.293143,10.662626 0,0.73076 0.310412,2.341014 0,2.961837 -0.499536,0.999055 -1.869948,1.370415 -2.369484,2.369465 -2.428645,4.85731 -1.4425,0.72125 -4.738924,2.36947 -0.499536,0.24976 -0.685213,0.93498 -1.184735,1.18474 -2.843369,1.42168 -7.819257,-1.42169 -10.662611,0 -2.473242,1.2366 0.103713,3.50232 -2.369484,4.73894 -3.093262,1.54664 -7.682779,-0.30518 -10.662612,1.18473 -2.949771,1.4749 -5.907299,1.18474 -9.477863,1.18474 -4.141269,0 -9.139142,7.57396 -14.809198,4.73895 -6.538697,-3.26934 -8.400085,-5.92369 -16.586314,-5.92369"
style="fill:none;stroke:#664141;stroke-width:1.54756045;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-6"
d="m -133.19716,68.530077 c -0.033,-1.214782 -0.13892,-2.43107 -0.28407,-3.653915 1.21444,0.22763 2.42446,0.5206 3.63044,0.878764 -1.17073,0.966117 -2.11622,1.678778 -3.34637,2.775166 z" />
<path
inkscape:transform-center-y="0.43770242"
inkscape:transform-center-x="4.6665544"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5"
d="m -136.6027,114.93632 c -1.13353,-0.43804 -2.24409,-0.94524 -3.34762,-1.49173 -0.19244,1.22051 -0.32168,2.45878 -0.38821,3.71502 1.30245,-0.77943 2.2907,-1.43153 3.73582,-2.22329 z" />
<path
inkscape:transform-center-y="3.9376395"
inkscape:transform-center-x="-4.707707"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:4.48187304;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8"
d="m -106.82793,55.78952 c 0.72566,1.285512 1.39166,2.628944 2.02898,4.009595 0.86898,-1.175006 1.69365,-2.414504 2.47458,-3.718393 -1.57259,-0.09685 -2.80077,-0.105175 -4.50355,-0.291188 z" />
<path
inkscape:transform-center-y="-5.1191539"
inkscape:transform-center-x="0.17270519"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:4.48708153;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-7"
d="m -94.043435,38.191147 c 0.608319,-1.206471 1.300938,-2.384515 2.041777,-3.552942 -1.499864,-0.270856 -3.025394,-0.474087 -4.576824,-0.610266 0.88915,1.45168 1.638929,2.556241 2.535047,4.163193 z" />
<path
inkscape:transform-center-y="1.4016876"
inkscape:transform-center-x="4.3938467"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9"
d="m -34.026437,58.951028 c -1.188211,-0.254786 -2.364605,-0.581471 -3.540195,-0.948048 0.0012,1.235598 0.06807,2.478792 0.199437,3.729933 1.16405,-0.974137 2.037746,-1.773202 3.340758,-2.781885 z" />
<path
inkscape:transform-center-y="-3.8103911"
inkscape:transform-center-x="-3.9356982"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6"
d="m -85.212791,98.483277 c 1.16237,-0.35455 2.349325,-0.64048 3.554963,-0.89118 -0.601497,-1.07931 -1.263703,-2.13357 -1.986356,-3.16332 -0.544206,1.41695 -0.919694,2.53983 -1.568593,4.0545 z" />
<path
inkscape:transform-center-y="0.94237197"
inkscape:transform-center-x="4.5406006"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-4"
d="m -52.049409,44.908071 c -1.166577,-0.340444 -2.316093,-0.751765 -3.461957,-1.202804 -0.08838,1.232428 -0.112186,2.477186 -0.07216,3.734564 1.231756,-0.886973 2.161208,-1.620421 3.534089,-2.53176 z" />
<path
inkscape:transform-center-y="-4.6544661"
inkscape:transform-center-x="-2.2812907"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-8"
d="m -64.771225,94.818397 c 0.862564,-0.85604 1.77887,-1.66286 2.728174,-2.44724 -1.035664,-0.67385 -2.11334,-1.29722 -3.233027,-1.87071 0.179936,1.50717 0.371895,2.6755 0.504853,4.31793 z" />
<path
d="m -118.40352,99.099721 c 0.18039,-1.201773 0.43331,-2.396173 0.72609,-3.592293 -1.23312,0.0783 -2.46979,0.22205 -3.71033,0.430981 1.04461,1.101259 1.89647,1.92353 2.98424,3.161312 z"
id="path1478-7-9-4-2-6-0-2"
inkscape:connector-curvature="0"
style="fill:url(#linearGradient36418);fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="1.8093751"
inkscape:transform-center-y="-4.5118005" />
</g>
<circle
cx="-166.51453"
cy="40.364254"
r="11.831276"
id="circle3383-85-6"
style="fill:#ffffff;stroke:#2f2f2f;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="-93.889313"
cy="97.933929"
r="11.831278"
id="circle3383-6-6"
style="fill:#ffffff;stroke:#2f2f2f;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
transform="rotate(7.6719707)" />
<circle
style="fill:#ffffff;stroke:#2f2f2f;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
id="circle3383-4-5-1"
r="11.831276"
cy="89.783501"
cx="-33.279785"
transform="rotate(1.403915)" />
<circle
cx="-159.80888"
cy="134.81886"
r="11.831276"
id="circle3383-85-2-8"
style="fill:#ffffff;stroke:#2f2f2f;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="-65.455849"
cy="37.915871"
r="11.831278"
id="circle3383-6-3-4"
style="fill:#ffffff;stroke:#2f2f2f;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
transform="rotate(7.6719707)" />
<g
aria-label="M"
transform="matrix(0.79119855,-0.00262742,0.00251413,0.75708086,-64.651462,3.2856454)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-15">
<path
inkscape:connector-curvature="0"
d="m -137.89372,38.839388 h 4.84735 l 3.36347,7.904156 3.38326,-7.904156 h 4.83746 v 14.769594 h -3.60089 V 42.806305 l -3.40304,7.963512 h -2.41379 l -3.40304,-7.963512 v 10.802677 h -3.61078 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7570" />
</g>
<g
aria-label="D"
transform="matrix(0.79119855,-0.00262742,0.00251413,0.75708086,-55.807739,27.713702)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-0-8">
<path
inkscape:connector-curvature="0"
d="m -135.51178,133.83532 v 9.01213 h 1.36517 q 2.33464,0 3.56132,-1.15743 1.23657,-1.15743 1.23657,-3.36347 0,-2.19615 -1.22668,-3.34369 -1.22667,-1.14754 -3.57121,-1.14754 z m -3.80864,-2.87873 h 4.01638 q 3.36347,0 5.00564,0.48473 1.65205,0.47485 2.82927,1.62238 1.03872,0.99915 1.54324,2.30497 0.50452,1.30582 0.50452,2.95788 0,1.67184 -0.50452,2.98755 -0.50452,1.30582 -1.54324,2.30497 -1.18711,1.14753 -2.84906,1.63227 -1.66195,0.47484 -4.98585,0.47484 h -4.01638 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7564" />
</g>
<g
aria-label="O"
transform="matrix(0.79075741,-0.02654604,0.02540133,0.75665877,-34.530531,-1.1719276)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-2-6-3">
<path
inkscape:connector-curvature="0"
d="m -46.060014,32.667759 q -1.74109,0 -2.700669,1.286033 -0.959578,1.286033 -0.959578,3.620677 0,2.324752 0.959578,3.610785 0.959579,1.286033 2.700669,1.286033 1.750984,0 2.710562,-1.286033 0.959579,-1.286033 0.959579,-3.610785 0,-2.334644 -0.959579,-3.620677 -0.959578,-1.286033 -2.710562,-1.286033 z m 0,-2.760025 q 3.561323,0 5.579405,2.037868 2.018083,2.037867 2.018083,5.628867 0,3.581107 -2.018083,5.618975 -2.018082,2.037868 -5.579405,2.037868 -3.551429,0 -5.579404,-2.037868 -2.018083,-2.037868 -2.018083,-5.618975 0,-3.591 2.018083,-5.628867 2.027975,-2.037868 5.579404,-2.037868 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7561" />
</g>
<g
aria-label="F"
transform="matrix(0.79119911,0.00244873,-0.00234313,0.7570814,-37.72473,21.751225)"
style="font-style:normal;font-weight:normal;font-size:20.25999451px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.50650066;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-1-2">
<path
inkscape:connector-curvature="0"
d="M -0.67049691,82.246758 H 9.607889 v 2.878739 H 3.1381446 v 2.750136 h 6.0839339 v 2.878739 H 3.1381446 v 6.262001 h -3.80864151 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.50650066"
id="path7558" />
</g>
<g
aria-label="G"
transform="matrix(0.79075741,-0.02654604,0.02540133,0.75665877,-42.132193,12.802013)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-2-9">
<path
inkscape:connector-curvature="0"
d="m -77.288247,97.913332 q -1.424529,0.692479 -2.957876,1.038719 -1.533347,0.346239 -3.16562,0.346239 -3.689925,0 -5.846504,-2.057653 -2.156578,-2.067545 -2.156578,-5.599189 0,-3.571215 2.196149,-5.618975 2.196148,-2.04776 6.014677,-2.04776 1.473992,0 2.81938,0.276991 1.355281,0.276992 2.552281,0.821083 v 3.056801 q -1.23657,-0.702372 -2.463248,-1.048611 -1.216785,-0.34624 -2.443463,-0.34624 -2.275289,0 -3.511859,1.276141 -1.226678,1.266247 -1.226678,3.63057 0,2.344537 1.187108,3.620677 1.187107,1.276141 3.373363,1.276141 0.593554,0 1.098075,-0.06925 0.514413,-0.07914 0.920008,-0.237422 v -2.868843 h -2.324752 V 90.81047 h 5.935537 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7567" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,286 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg3397"
sodipodi:docname="preorder_map_equivalence.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata3403">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3401">
<linearGradient
inkscape:collect="always"
id="linearGradient36416">
<stop
style="stop-color:#bb5353;stop-opacity:1;"
offset="0"
id="stop36412" />
<stop
style="stop-color:#bb5353;stop-opacity:0;"
offset="1"
id="stop36414" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1.4607598,0,0,1.4607598,63.162102,-46.120583)"
inkscape:collect="always"
xlink:href="#linearGradient36416"
id="linearGradient36418-4"
x1="-128.34242"
y1="98.776787"
x2="-122.51214"
y2="98.776787"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="2.7348804"
inkscape:cx="272.17877"
inkscape:cy="88.160949"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-8"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="matrix(1.1915155,0,0,1.1915155,422.39644,-13.104354)"
style="stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1">
<g
id="g10473"
transform="matrix(1.1367295,0,0,1.1367295,149.21829,86.498768)">
<circle
r="22.498072"
cy="-33.318771"
cx="-258.6138"
id="path36408-7"
style="opacity:1;fill:#e2e2e2;fill-opacity:1;stroke:none;stroke-width:0.6656056;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<circle
r="22.498072"
cy="32.132919"
cx="-254.30496"
id="path36408-7-0"
style="opacity:1;fill:#e2e2e2;fill-opacity:1;stroke:none;stroke-width:0.6656056;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<circle
r="39.658459"
cy="-12.83327"
cx="-192.83969"
id="path36408"
style="opacity:1;fill:#e2e2e2;fill-opacity:1;stroke:none;stroke-width:1.17329574;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g10312"
transform="matrix(0.79392894,0,0,0.79392894,-15.537409,18.20077)"
style="stroke:#664141;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1">
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-3"
d="m -150.9577,51.179741 c -0.32491,-1.170989 -0.7209,-2.32588 -1.15669,-3.477631 1.23351,-0.07187 2.47847,-0.07932 3.73522,-0.02249 -0.90323,1.21988 -1.64902,2.139487 -2.57853,3.500126 z" />
<path
inkscape:connector-curvature="0"
id="path34554-0"
d="m -156.11112,43.627423 c -0.0131,4.928721 23.69469,13.807847 23.69469,14.216831 0,0.789818 -1.66303,-0.353227 -2.36947,0 -0.99905,0.499521 -1.86993,1.370411 -2.36946,2.369469 -0.30568,0.611357 9.00146,10.128237 10.07025,10.662612 0.70643,0.353226 1.66302,-0.353212 2.36947,0 1.71051,0.85526 3.02844,1.514224 4.73894,2.369484 1.89941,0.949698 4.62478,-1.413066 5.92367,1.184734 1.02677,2.053537 -1.02676,5.647244 0,7.700774 0.94079,1.88159 2.4064,7.03457 1.18474,9.47788 -0.70453,1.40905 -11.36287,8.643273 -13.03208,9.477893 -0.70645,0.35321 -1.7123,-0.43812 -2.36947,0 -0.36738,0.24491 -0.18244,1.02075 -0.59237,1.18474 -2.17269,0.86906 -4.7264,0.78144 -7.10842,2.36947 -2.83319,1.88877 -5.31265,7.14572 -3.5542,10.66261 0.77639,1.55279 11.78446,5.98658 10.66262,7.10841 -0.68526,0.68524 -7.45227,0.17192 -9.47789,1.18474 -3.4049,1.70245 -6.12802,5.43347 -9.47788,7.10842 -2.32656,1.16326 -4.84326,1.82925 -7.1084,2.96183 -0.9478,0.47389 -2.60644,-0.4739 -3.55421,0 -1.6596,0.82979 -3.41595,3.41596 -4.73895,4.73896"
style="fill:none;stroke:#664141;stroke-width:1.54756045;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34715-9"
d="m -103.68658,79.169492 c -0.59116,-1.666186 0.786,-4.351647 0,-5.923673 -0.77532,-1.550626 -0.28596,-2.349033 -0.59237,-2.961851 -0.24978,-0.499522 -0.87495,-0.720038 -1.18473,-1.184735 -0.1643,-0.24643 0,-0.592367 0,-0.888551 0,-1.435211 -0.62794,-4.667814 0,-5.923673 0.12489,-0.249761 0.46747,-0.342607 0.59236,-0.592368 0.0952,-0.190614 0.0952,-7.51016 0,-7.700775 -0.42763,-0.85526 -0.75711,-1.514224 -1.18473,-2.369469 -0.10328,-0.206552 -0.10328,-8.086606 0,-8.293158 0.57007,-1.140166 2.58227,-2.179687 3.5542,-2.665653 0.78982,-0.394901 2.17201,0.394917 2.961839,0 2.943504,-1.471744 2.394287,-5.936082 3.554204,-6.516039 1.184734,-0.59237 3.25802,0.592366 4.442755,0 0.883467,-0.441731 1.465843,-1.325292 2.369469,-1.777105 0.632202,-0.316096 0.552547,0.316099 1.184735,0 1.21208,-0.60604 2.327662,-1.163825 3.554204,-1.777103 0.631866,-0.315927 1.737632,0.315932 2.369498,0 2.518058,-1.259032 -1.333338,0.07429 1.184735,-1.184736 0.631851,-0.315928 1.737603,0.315931 2.369469,0 0.841325,-0.420666 1.993996,-1.184735 2.961837,-1.184735"
style="fill:none;stroke:#664141;stroke-width:3.86890101;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csssscscccccssssc"
inkscape:connector-curvature="0"
id="path34558-2"
d="m -62.813193,32.372442 c 1.575166,-0.78759 0.822072,-3.439346 2.961837,-2.369469 5.161916,2.580958 1.277376,14.85552 7.108408,17.771036 1.652338,0.826162 4.27132,0.358558 5.923658,1.184735 3.283365,1.641675 9.038496,7.414335 10.662612,10.662612 0.831158,1.662315 0.317832,4.189868 1.184749,5.923673 2.779666,5.55936 8.293143,3.241718 8.293143,10.662626 0,0.73076 0.310412,2.341014 0,2.961837 -0.499536,0.999055 -1.869948,1.370415 -2.369484,2.369465 -2.428645,4.85731 -1.4425,0.72125 -4.738924,2.36947 -0.499536,0.24976 -0.685213,0.93498 -1.184735,1.18474 -2.843369,1.42168 -7.819257,-1.42169 -10.662611,0 -2.473242,1.2366 0.103713,3.50232 -2.369484,4.73894 -3.093262,1.54664 -7.682779,-0.30518 -10.662612,1.18473 -2.949771,1.4749 -5.907299,1.18474 -9.477863,1.18474 -4.141269,0 -9.139142,7.57396 -14.809198,4.73895 -6.538697,-3.26934 -8.400085,-5.92369 -16.586314,-5.92369"
style="fill:none;stroke:#664141;stroke-width:1.54756045;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-6-5"
d="m -133.19716,68.530077 c -0.033,-1.214782 -0.13892,-2.43107 -0.28407,-3.653915 1.21444,0.22763 2.42446,0.5206 3.63044,0.878764 -1.17073,0.966117 -2.11622,1.678778 -3.34637,2.775166 z" />
<path
inkscape:transform-center-y="0.43770242"
inkscape:transform-center-x="4.6665544"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-4"
d="m -136.6027,114.93632 c -1.13353,-0.43804 -2.24409,-0.94524 -3.34762,-1.49173 -0.19244,1.22051 -0.32168,2.45878 -0.38821,3.71502 1.30245,-0.77943 2.2907,-1.43153 3.73582,-2.22329 z" />
<path
inkscape:transform-center-y="3.9376395"
inkscape:transform-center-x="-4.707707"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:4.48187304;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-0"
d="m -106.82793,55.78952 c 0.72566,1.285512 1.39166,2.628944 2.02898,4.009595 0.86898,-1.175006 1.69365,-2.414504 2.47458,-3.718393 -1.57259,-0.09685 -2.80077,-0.105175 -4.50355,-0.291188 z" />
<path
inkscape:transform-center-y="-5.1191539"
inkscape:transform-center-x="0.17270519"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:4.48708153;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-7-5"
d="m -94.043435,38.191147 c 0.608319,-1.206471 1.300938,-2.384515 2.041777,-3.552942 -1.499864,-0.270856 -3.025394,-0.474087 -4.576824,-0.610266 0.88915,1.45168 1.638929,2.556241 2.535047,4.163193 z" />
<path
inkscape:transform-center-y="1.4016876"
inkscape:transform-center-x="4.3938467"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-9"
d="m -34.026437,58.951028 c -1.188211,-0.254786 -2.364605,-0.581471 -3.540195,-0.948048 0.0012,1.235598 0.06807,2.478792 0.199437,3.729933 1.16405,-0.974137 2.037746,-1.773202 3.340758,-2.781885 z" />
<path
inkscape:transform-center-y="-3.8103911"
inkscape:transform-center-x="-3.9356982"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-4"
d="m -85.212791,98.483277 c 1.16237,-0.35455 2.349325,-0.64048 3.554963,-0.89118 -0.601497,-1.07931 -1.263703,-2.13357 -1.986356,-3.16332 -0.544206,1.41695 -0.919694,2.53983 -1.568593,4.0545 z" />
<path
inkscape:transform-center-y="0.94237197"
inkscape:transform-center-x="4.5406006"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-4-6"
d="m -52.049409,44.908071 c -1.166577,-0.340444 -2.316093,-0.751765 -3.461957,-1.202804 -0.08838,1.232428 -0.112186,2.477186 -0.07216,3.734564 1.231756,-0.886973 2.161208,-1.620421 3.534089,-2.53176 z" />
<path
inkscape:transform-center-y="-4.6544661"
inkscape:transform-center-x="-2.2812907"
style="fill:#4d4d4d;fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-8-9"
d="m -64.771225,94.818397 c 0.862564,-0.85604 1.77887,-1.66286 2.728174,-2.44724 -1.035664,-0.67385 -2.11334,-1.29722 -3.233027,-1.87071 0.179936,1.50717 0.371895,2.6755 0.504853,4.31793 z" />
<path
d="m -118.40352,99.099721 c 0.18039,-1.201773 0.43331,-2.396173 0.72609,-3.592293 -1.23312,0.0783 -2.46979,0.22205 -3.71033,0.430981 1.04461,1.101259 1.89647,1.92353 2.98424,3.161312 z"
id="path1478-7-9-4-2-6-0-2-2"
inkscape:connector-curvature="0"
style="fill:url(#linearGradient36418-4);fill-opacity:1;stroke:#664141;stroke-width:2.90167594;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="1.8093751"
inkscape:transform-center-y="-4.5118005" />
</g>
<circle
cx="-145.3517"
cy="49.90456"
r="9.3931913"
id="circle3383-85-6-2"
style="fill:#ffffff;fill-opacity:1;stroke:#2f2f2f;stroke-width:2.30372453;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="-85.344749"
cy="97.12146"
r="9.3931942"
id="circle3383-6-6-4"
style="fill:#ffffff;fill-opacity:1;stroke:#2f2f2f;stroke-width:2.30372453;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(7.6719707)" />
<circle
style="fill:#ffffff;fill-opacity:1;stroke:#2f2f2f;stroke-width:2.30372453;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-4-5-1-7"
r="9.3931913"
cy="89.355309"
cx="-39.275223"
transform="rotate(1.403915)" />
<circle
cx="-140.02791"
cy="124.89481"
r="9.3931913"
id="circle3383-85-2-8-7"
style="fill:#ffffff;fill-opacity:1;stroke:#2f2f2f;stroke-width:2.30372453;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="-62.770607"
cy="49.471382"
r="9.3931942"
id="circle3383-6-3-4-5"
style="fill:#ffffff;fill-opacity:1;stroke:#2f2f2f;stroke-width:2.30372453;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(7.6719707)" />
<g
aria-label="M"
transform="matrix(0.62815542,-0.00208598,0.00199604,0.6010684,-64.621057,20.361809)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-15-4">
<path
inkscape:connector-curvature="0"
d="m -137.89372,38.839388 h 4.84735 l 3.36347,7.904156 3.38326,-7.904156 h 4.83746 v 14.769594 h -3.60089 V 42.806305 l -3.40304,7.963512 h -2.41379 l -3.40304,-7.963512 v 10.802677 h -3.61078 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7570-8" />
</g>
<g
aria-label="D"
transform="matrix(0.62815542,-0.00208598,0.00199604,0.6010684,-57.599772,39.75595)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-0-8-1">
<path
inkscape:connector-curvature="0"
d="m -135.51178,133.83532 v 9.01213 h 1.36517 q 2.33464,0 3.56132,-1.15743 1.23657,-1.15743 1.23657,-3.36347 0,-2.19615 -1.22668,-3.34369 -1.22667,-1.14754 -3.57121,-1.14754 z m -3.80864,-2.87873 h 4.01638 q 3.36347,0 5.00564,0.48473 1.65205,0.47485 2.82927,1.62238 1.03872,0.99915 1.54324,2.30497 0.50452,1.30582 0.50452,2.95788 0,1.67184 -0.50452,2.98755 -0.50452,1.30582 -1.54324,2.30497 -1.18711,1.14753 -2.84906,1.63227 -1.66195,0.47484 -4.98585,0.47484 h -4.01638 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7564-2" />
</g>
<g
aria-label="O"
transform="matrix(0.62780519,-0.02107567,0.02016685,0.60073329,-40.707179,16.822814)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-2-6-3-8">
<path
inkscape:connector-curvature="0"
d="m -46.060014,32.667759 q -1.74109,0 -2.700669,1.286033 -0.959578,1.286033 -0.959578,3.620677 0,2.324752 0.959578,3.610785 0.959579,1.286033 2.700669,1.286033 1.750984,0 2.710562,-1.286033 0.959579,-1.286033 0.959579,-3.610785 0,-2.334644 -0.959579,-3.620677 -0.959578,-1.286033 -2.710562,-1.286033 z m 0,-2.760025 q 3.561323,0 5.579405,2.037868 2.018083,2.037867 2.018083,5.628867 0,3.581107 -2.018083,5.618975 -2.018082,2.037868 -5.579405,2.037868 -3.551429,0 -5.579404,-2.037868 -2.018083,-2.037868 -2.018083,-5.618975 0,-3.591 2.018083,-5.628867 2.027975,-2.037868 5.579404,-2.037868 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7561-9" />
</g>
<g
aria-label="F"
transform="matrix(0.62815587,0.00194412,-0.00186028,0.60106883,-43.243147,35.022167)"
style="font-style:normal;font-weight:normal;font-size:20.25999451px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.50650066;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-1-2-3">
<path
inkscape:connector-curvature="0"
d="M -0.67049691,82.246758 H 9.607889 v 2.878739 H 3.1381446 v 2.750136 h 6.0839339 v 2.878739 H 3.1381446 v 6.262001 h -3.80864151 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.50650066"
id="path7558-6" />
</g>
<g
aria-label="G"
transform="matrix(0.62780519,-0.02107567,0.02016685,0.60073329,-46.742357,27.917129)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="text2753-2-9-8">
<path
inkscape:connector-curvature="0"
d="m -77.288247,97.913332 q -1.424529,0.692479 -2.957876,1.038719 -1.533347,0.346239 -3.16562,0.346239 -3.689925,0 -5.846504,-2.057653 -2.156578,-2.067545 -2.156578,-5.599189 0,-3.571215 2.196149,-5.618975 2.196148,-2.04776 6.014677,-2.04776 1.473992,0 2.81938,0.276991 1.355281,0.276992 2.552281,0.821083 v 3.056801 q -1.23657,-0.702372 -2.463248,-1.048611 -1.216785,-0.34624 -2.443463,-0.34624 -2.275289,0 -3.511859,1.276141 -1.226678,1.266247 -1.226678,3.63057 0,2.344537 1.187108,3.620677 1.187107,1.276141 3.373363,1.276141 0.593554,0 1.098075,-0.06925 0.514413,-0.07914 0.920008,-0.237422 v -2.868843 h -2.324752 V 90.81047 h 5.935537 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7567-0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -11,7 +11,7 @@
version="1.1"
id="svg3397"
sodipodi:docname="preorder_sports.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata3403">
<rdf:RDF>
@ -20,7 +20,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -39,352 +39,311 @@
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="2"
inkscape:cx="350.91475"
inkscape:cy="3.7406242"
inkscape:zoom="2.7965438"
inkscape:cx="290.73609"
inkscape:cy="93.670367"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-0"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917" />
id="guide3917"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="translate(392.18394,2.4928396)">
<g
id="g2760-0"
transform="matrix(0.58065273,0.58065273,-0.58065273,0.58065273,42.036768,-23.943945)">
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1"
transform="matrix(-0.2579681,-6.3437123e-4,0.02501629,0.35962768,11.547996,125.53029)"
inkscape:transform-center-x="1.7679659"
inkscape:transform-center-y="-1.2312622">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
id="g2760-3"
transform="matrix(0.86438585,0,0,0.86438585,-138.7233,135.24909)">
<g
id="g2749-2"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-0"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-36.677025"
y="109.08755"
id="text2753-15"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-54"
x="-36.677025"
y="109.08755"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">M</tspan></text>
</g>
<g
id="g2760-9-8-7"
transform="matrix(0.86438585,0,0,0.86438585,-152.6611,89.58358)">
<g
id="g2749-4-6"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,183.17645,-58.627543)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="1.9837745"
y="227.02519"
id="text2753-2-9"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-3"
x="1.9837745"
y="227.02519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">G</tspan></text>
</g>
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.62600464,-0.59605461,0.59605461,0.62600464,-23.306073,105.23298)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:24.6722px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.616806"
x="-53.931595"
y="144.3268"
id="text2753-1-2"
transform="matrix(0.72509778,-0.72062332,0.68954896,0.69383047,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-1-5"
x="-53.931595"
y="144.3268"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.616806">F</tspan></text>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3"
transform="matrix(0.02251826,0.26397465,0.35566367,-0.08076976,-106.65355,113.95483)"
inkscape:transform-center-x="0.46573386"
inkscape:transform-center-y="-6.0434744">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-3"
transform="matrix(-0.2579681,-6.3437123e-4,0.02501629,0.35962768,83.52588,45.086029)"
inkscape:transform-center-x="1.767968"
inkscape:transform-center-y="-1.2312642">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-3"
transform="matrix(0.02343329,-0.263895,0.35538151,0.08200231,-101.95031,299.97025)"
inkscape:transform-center-x="6.0425828"
inkscape:transform-center-y="-0.4932205">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-6"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
id="g2760-0-7"
transform="matrix(0.86438585,0,0,0.86438585,-62.726244,215.55029)">
<g
id="g2749-6-8"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-44.545114,52.727379,84.306425)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-34.827446"
y="108.17011"
id="text2753-0-8"
transform="matrix(0.72045954,-0.72526052,0.69398619,0.68939224,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-6-4"
x="-34.827446"
y="108.17011"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">D</tspan></text>
</g>
<g
id="g2760-9-8-4-4"
transform="matrix(0.86438585,0,0,0.86438585,-106.135,-75.427698)">
<g
id="g2749-4-5-7"
style="fill:#cccccc;stroke:#666666"
transform="rotate(-37.328029,296.07441,96.778899)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-0-4"
style="opacity:0.13;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
fill="#d71920"
stroke="#be1e2d"
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-3-4"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:28.543px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.713577"
x="-117.18314"
y="243.94861"
id="text2753-2-6-3"
transform="matrix(0.69820387,-0.7467102,0.71451093,0.66809626,0,0)"><tspan
sodipodi:role="line"
id="tspan2751-5-1-0"
x="-117.18314"
y="243.94861"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.713577">O</tspan></text>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1-1"
transform="matrix(0.1771383,-0.18753657,-0.27917935,-0.22807186,51.669768,262.62408)"
inkscape:transform-center-x="-2.0853419"
inkscape:transform-center-y="-0.017197504">
<path
style="stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-0-8"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6-7"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 105.59176,90.127831 C 148.45275,75.072118 289.11541,75.577254 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-25-1-3-7"
transform="matrix(0.26397465,0.02251826,-0.08076976,0.35566367,-35.381263,51.823659)"
inkscape:transform-center-x="-0.46573369"
inkscape:transform-center-y="-6.0434746">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-8-5-1-3"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-9-5-4-6"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-3-1"
transform="matrix(-6.3437229e-4,-0.2579681,0.35962768,0.02501629,-89.780252,225.94413)"
inkscape:transform-center-x="-1.7679678"
inkscape:transform-center-y="-1.231264">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-2"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="stroke:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-7-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.389;stroke-miterlimit:10"
id="g1482-7-0-7-0-1-1-3"
transform="matrix(-0.18753657,0.1771383,-0.22807186,-0.27917935,114.23475,187.05736)"
inkscape:transform-center-x="2.0853422"
inkscape:transform-center-y="-0.017197504">
<path
style="stroke:#b3b3b3;stroke-width:35.526"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-0-8-1"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#b3b3b3;stroke-width:10.649;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-3-4-6-7-9"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
d="M 105.59176,90.127831 C 148.45275,75.072118 289.11541,75.577254 317.498,86.173"
sodipodi:nodetypes="cc" />
</g>
inkscape:transform-center-y="-1.2312622"
inkscape:transform-center-x="1.7679659"
transform="matrix(-0.14942153,-0.15015823,-0.19429302,0.22334457,-23.432194,58.695738)"
id="g1482-7-0-7-0-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="g2749-2"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.70978273,0.00563527,-0.00563527,0.70978273,-169.13055,-14.274468)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-0"
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
aria-label="M"
transform="matrix(1.0222785,-0.00339481,0.00324841,0.97819627,0,0)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-15">
<path
d="m -137.89372,38.839388 h 4.84735 l 3.36347,7.904156 3.38326,-7.904156 h 4.83746 v 14.769594 h -3.60089 V 42.806305 l -3.40304,7.963512 h -2.41379 l -3.40304,-7.963512 v 10.802677 h -3.61078 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7570" />
</g>
<g
inkscape:transform-center-y="-6.0434744"
inkscape:transform-center-x="0.46573386"
transform="matrix(-0.14020231,0.16635289,0.25341626,0.1596179,-85.344922,-16.659635)"
id="g1482-7-0-25-1-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-1.2312642"
inkscape:transform-center-x="1.767968"
transform="matrix(-0.14942153,-0.15015823,-0.19429302,0.22334457,65.07214,53.779713)"
id="g1482-7-0-7-0-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-0.4932205"
inkscape:transform-center-x="6.0425828"
transform="matrix(0.16683796,-0.13962475,0.15873838,0.25396811,-190.62433,94.081676)"
id="g1482-7-0-25-1-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="g2749-6-8"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.70978273,0.00563527,-0.00563527,0.70978273,-171.62976,76.480542)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-33-3-6"
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-85-2-8"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
aria-label="D"
transform="matrix(1.0222785,-0.00339481,0.00324841,0.97819627,0,0)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-0-8">
<path
d="m -135.51178,133.83532 v 9.01213 h 1.36517 q 2.33464,0 3.56132,-1.15743 1.23657,-1.15743 1.23657,-3.36347 0,-2.19615 -1.22668,-3.34369 -1.22667,-1.14754 -3.57121,-1.14754 z m -3.80864,-2.87873 h 4.01638 q 3.36347,0 5.00564,0.48473 1.65205,0.47485 2.82927,1.62238 1.03872,0.99915 1.54324,2.30497 0.50452,1.30582 0.50452,2.95788 0,1.67184 -0.50452,2.98755 -0.50452,1.30582 -1.54324,2.30497 -1.18711,1.14753 -2.84906,1.63227 -1.66195,0.47484 -4.98585,0.47484 h -4.01638 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7564" />
</g>
<g
id="g2749-4-5-7"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.70345137,0.09475996,-0.09475996,0.70345137,-74.153516,-25.28305)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-0-4"
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-3-4"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
aria-label="O"
transform="matrix(1.0217085,-0.03429916,0.03282012,0.97765092,0,0)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-6-3">
<path
d="m -46.060014,32.667759 q -1.74109,0 -2.700669,1.286033 -0.959578,1.286033 -0.959578,3.620677 0,2.324752 0.959578,3.610785 0.959579,1.286033 2.700669,1.286033 1.750984,0 2.710562,-1.286033 0.959579,-1.286033 0.959579,-3.610785 0,-2.334644 -0.959579,-3.620677 -0.959578,-1.286033 -2.710562,-1.286033 z m 0,-2.760025 q 3.561323,0 5.579405,2.037868 2.018083,2.037867 2.018083,5.628867 0,3.581107 -2.018083,5.618975 -2.018082,2.037868 -5.579405,2.037868 -3.551429,0 -5.579404,-2.037868 -2.018083,-2.037868 -2.018083,-5.618975 0,-3.591 2.018083,-5.628867 2.027975,-2.037868 5.579404,-2.037868 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7561" />
</g>
<g
inkscape:transform-center-y="-0.017197504"
inkscape:transform-center-x="-2.0853419"
transform="matrix(0.21174946,-0.00603778,-0.0296757,-0.2945368,-79.739261,161.59644)"
id="g1482-7-0-7-0-1-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
sodipodi:nodetypes="cc"
d="m 110.14355,227.96076 c 38.3923,-12.30594 164.38947,-11.89306 189.81289,-3.23252"
id="path1480-1-3-3-4-6-7"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:9.11184883;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.0434746"
inkscape:transform-center-x="-0.46573369"
transform="matrix(0.14020231,0.16635289,-0.25341626,0.1596179,-7.88384,-11.351821)"
id="g1482-7-0-25-1-3-7"
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-3"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-6"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-0.017197504"
inkscape:transform-center-x="2.0853422"
transform="matrix(-0.21174946,-0.00603778,0.0296757,-0.2945368,0.4672887,154.04694)"
id="g1482-7-0-7-0-1-1-3"
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-8-1"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:35.52600098" />
<path
sodipodi:nodetypes="cc"
d="m 107.17811,227.00379 c 38.3923,-12.30593 164.38947,-11.89306 189.81289,-3.23252"
id="path1480-1-3-3-4-6-7-9"
inkscape:connector-curvature="0"
style="fill:none;stroke:#b3b3b3;stroke-width:9.11184883;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.70959204,0.01739057,-0.01739057,0.70959204,-31.884616,26.671939)"
style="fill:#cccccc;stroke:#666666"
id="g2749-7-7">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-7-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-4-5"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
<g
aria-label="F"
transform="matrix(1.0222792,0.00316392,-0.00302748,0.97819698,0,0)"
style="font-style:normal;font-weight:normal;font-size:20.25999451px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.50650066"
id="text2753-1-2">
<path
d="M -0.67049691,82.246758 H 9.607889 v 2.878739 H 3.1381446 v 2.750136 h 6.0839339 v 2.878739 H 3.1381446 v 6.262001 h -3.80864151 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.50650066"
id="path7558" />
</g>
<g
inkscape:transform-center-y="6.0362126"
inkscape:transform-center-x="-0.64836623"
transform="matrix(0.13633054,-0.16954042,-0.2570282,-0.15373412,-36.987771,149.76496)"
id="g1482-7-0-25-1-3-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-4"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
id="g2749-4-6"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.70345137,0.09475996,-0.09475996,0.70345137,-110.95601,28.870648)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-5-5"
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-6-6"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
<g
aria-label="G"
transform="matrix(1.0217085,-0.03429916,0.03282012,0.97765092,0,0)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-9">
<path
d="m -77.288247,97.913332 q -1.424529,0.692479 -2.957876,1.038719 -1.533347,0.346239 -3.16562,0.346239 -3.689925,0 -5.846504,-2.057653 -2.156578,-2.067545 -2.156578,-5.599189 0,-3.571215 2.196149,-5.618975 2.196148,-2.04776 6.014677,-2.04776 1.473992,0 2.81938,0.276991 1.355281,0.276992 2.552281,0.821083 v 3.056801 q -1.23657,-0.702372 -2.463248,-1.048611 -1.216785,-0.34624 -2.443463,-0.34624 -2.275289,0 -3.511859,1.276141 -1.226678,1.266247 -1.226678,3.63057 0,2.344537 1.187108,3.620677 1.187107,1.276141 3.373363,1.276141 0.593554,0 1.098075,-0.06925 0.514413,-0.07914 0.920008,-0.237422 v -2.868843 h -2.324752 v -2.552281 h 5.935537 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7567" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,371 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg3397"
sodipodi:docname="preorder_state_machine.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata3403">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3401" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="4.6422351"
inkscape:cx="351.1336"
inkscape:cy="95.155472"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="g2760-8"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="matrix(1.1915155,0,0,1.1915155,422.39644,-13.104354)"
style="stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1">
<g
inkscape:transform-center-y="0.49149457"
inkscape:transform-center-x="-2.0651961"
transform="matrix(0.1773733,0.01211596,-0.03469622,0.24601198,-127.91881,4.6805871)"
id="g1482-7-0-7-0-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.55132065,0.22566204,-0.22566204,0.55132065,-70.537695,3.9947272)"
id="g2760-3">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-2">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-0"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-6"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="2.3831131"
inkscape:transform-center-x="-5.5274026"
transform="matrix(-0.07526745,-0.16635085,-0.21254728,0.13417887,-29.869915,101.31853)"
id="g1482-7-0-25-1-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-0.45478669"
inkscape:transform-center-x="-2.1021329"
transform="matrix(0.17777588,-0.00195446,-0.01512486,0.24798581,-160.62367,48.202481)"
id="g1482-7-0-7-0-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-0.25109761"
inkscape:transform-center-x="36.275205"
transform="matrix(0.18258607,3.5008037e-4,-0.03510679,0.2488932,-186.18902,7.5096201)"
id="g1482-7-0-25-1-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.49445064,0.33225952,-0.33225952,0.49445064,-171.09994,4.5943828)"
id="g2760-0-7"
inkscape:transform-center-x="-3.1142478"
inkscape:transform-center-y="1.8730961">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-6-8">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-3-6"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-2-8"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="4.2619248"
inkscape:transform-center-x="-4.061621"
transform="matrix(-0.1817866,-0.01707114,0.05775464,-0.24463179,-81.3506,171.52052)"
id="g1482-7-0-25-1-3-7"
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-3"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-6"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-2.2543418"
inkscape:transform-center-x="5.6126517"
transform="matrix(0.07908191,0.1645717,0.20939792,-0.13904253,-174.84401,74.848155)"
id="g1482-7-0-25-1-3-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-4"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.59046713,0.07890748,-0.07890748,0.59046713,-125.33356,-37.325752)"
id="g2760-9-8-4-4">
<g
transform="rotate(-37.328029,296.07441,96.778899)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-5-7">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-0-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-3-4"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="1.9216037"
inkscape:transform-center-x="1.2226319"
transform="matrix(-0.10676675,0.14215817,0.20886409,0.13454187,-152.75672,15.305394)"
id="g1482-7-0-7-0-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7-5"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.59215452,0.06504492,-0.06504492,0.59215452,-206.41739,-27.079857)"
id="g2760-9-8-7">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="6.0345048"
inkscape:transform-center-x="-0.68228341"
transform="matrix(0.11380716,-0.14277858,-0.2162661,-0.12809872,-110.90637,156.52141)"
id="g1482-7-0-25-1-3-7-6"
style="display:inline;fill:#dddddd;stroke:#b3b3b3;stroke-width:6.38899994;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-3-1"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-6-1"
inkscape:connector-curvature="0"
style="stroke:#b3b3b3;stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.52489043,0.44660627,-0.44660627,0.52489043,-118.59453,16.200606)"
id="g35805">
<g
id="g2749-7-7"
style="fill:#cccccc;stroke:#666666"
transform="matrix(0.62600464,-0.59605461,0.59605461,0.62600464,-23.306073,105.23298)">
<circle
cx="55.440796"
cy="90.58149"
r="24.6"
id="circle3369-7-4"
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
<circle
cx="51.507595"
cy="84.367409"
r="24.6"
id="circle3383-4-5"
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10" />
</g>
</g>
<path
inkscape:connector-curvature="0"
d="m -182.1089,57.412287 4.15886,-0.01381 2.90728,6.479477 2.88117,-6.4987 4.15037,-0.01378 0.0403,12.125366 -3.08943,0.01026 -0.0294,-8.868654 -2.89798,6.547486 -2.07095,0.0069 -2.9414,-6.528094 0.0294,8.868653 -3.09792,0.01029 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.42508939"
id="path7570" />
<g
aria-label="D"
transform="matrix(0.85796492,-0.00284915,0.00272628,0.82096815,-4.4270719,-51.159658)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-0-8">
<path
inkscape:connector-curvature="0"
d="m -135.51178,133.83532 v 9.01213 h 1.36517 q 2.33464,0 3.56132,-1.15743 1.23657,-1.15743 1.23657,-3.36347 0,-2.19615 -1.22668,-3.34369 -1.22667,-1.14754 -3.57121,-1.14754 z m -3.80864,-2.87873 h 4.01638 q 3.36347,0 5.00564,0.48473 1.65205,0.47485 2.82927,1.62238 1.03872,0.99915 1.54324,2.30497 0.50452,1.30582 0.50452,2.95788 0,1.67184 -0.50452,2.98755 -0.50452,1.30582 -1.54324,2.30497 -1.18711,1.14753 -2.84906,1.63227 -1.66195,0.47484 -4.98585,0.47484 h -4.01638 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7564" />
</g>
<g
aria-label="O"
transform="matrix(0.85748654,-0.02878616,0.02754485,0.82051045,-49.986023,77.381668)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-6-3">
<path
inkscape:connector-curvature="0"
d="m -46.060014,32.667759 q -1.74109,0 -2.700669,1.286033 -0.959578,1.286033 -0.959578,3.620677 0,2.324752 0.959578,3.610785 0.959579,1.286033 2.700669,1.286033 1.750984,0 2.710562,-1.286033 0.959579,-1.286033 0.959579,-3.610785 0,-2.334644 -0.959579,-3.620677 -0.959578,-1.286033 -2.710562,-1.286033 z m 0,-2.760025 q 3.561323,0 5.579405,2.037868 2.018083,2.037867 2.018083,5.628867 0,3.581107 -2.018083,5.618975 -2.018082,2.037868 -5.579405,2.037868 -3.551429,0 -5.579404,-2.037868 -2.018083,-2.037868 -2.018083,-5.618975 0,-3.591 2.018083,-5.628867 2.027975,-2.037868 5.579404,-2.037868 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7561" />
</g>
<g
aria-label="F"
transform="matrix(0.85796551,0.00265537,-0.00254086,0.82096874,-148.3355,37.246402)"
style="font-style:normal;font-weight:normal;font-size:20.25999451px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.50650066"
id="text2753-1-2">
<path
inkscape:connector-curvature="0"
d="M -0.67049691,82.246758 H 9.607889 v 2.878739 H 3.1381446 v 2.750136 h 6.0839339 v 2.878739 H 3.1381446 v 6.262001 h -3.80864151 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.50650066"
id="path7558" />
</g>
<g
aria-label="G"
transform="matrix(0.85748654,-0.02878616,0.02754485,0.82051045,7.5050343,-15.00176)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-9">
<path
inkscape:connector-curvature="0"
d="m -77.288247,97.913332 q -1.424529,0.692479 -2.957876,1.038719 -1.533347,0.346239 -3.16562,0.346239 -3.689925,0 -5.846504,-2.057653 -2.156578,-2.067545 -2.156578,-5.599189 0,-3.571215 2.196149,-5.618975 2.196148,-2.04776 6.014677,-2.04776 1.473992,0 2.81938,0.276991 1.355281,0.276992 2.552281,0.821083 v 3.056801 q -1.23657,-0.702372 -2.463248,-1.048611 -1.216785,-0.34624 -2.443463,-0.34624 -2.275289,0 -3.511859,1.276141 -1.226678,1.266247 -1.226678,3.63057 0,2.344537 1.187108,3.620677 1.187107,1.276141 3.373363,1.276141 0.593554,0 1.098075,-0.06925 0.514413,-0.07914 0.920008,-0.237422 v -2.868843 h -2.324752 V 90.81047 h 5.935537 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7567" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -6,17 +6,19 @@ title: Functors
Functors
===
This chapter we will change the tactic a bit (as I am sure you are a bit tired of jumping through different subjects) and we will examine some purely categorical concepts, using the structures that we saw so far as context. We will also generalize some of the concepts that we saw in these structures so they are valid for all categories.
From this chapter on, we will change the tactic a bit (as I am sure you are a bit tired of jumping through different subjects) and, we will dive at full throtle into the world of categories, using the structures that we examined so far as context. This will allow us to generalize some of the concepts that we saw in these structures so they are valid for all categories.
Categories we saw so far
===
So far we saw many different categories and category types:
So far, we saw many different categories and category types. Let's review them before we dive in to functors.
Set
The category of sets
---
We saw the mother of all categories - *the category of sets* and we learned that there are many other categories that are based on it, such as the category of types in a programming languages.
We began (in chapters 1 and 2) by reviewing the mother of all categories - *the category of sets* which is not only the prototype of a category, but it contains many other categories, such as the category of types in a programming languages.
![The category of sets](category_sets.svg)
Category types
---
@ -28,25 +30,39 @@ We learned that they are special types of categories, like categories that have
Other categories
---
We also defined a lot of *categories based on different things*, like the ones based on logics/programming languages, but also less "serious ones", as for example the color-mixing one.
We also defined a lot of *categories based on different things*, like the ones based on logics/programming languages, but also less "serious ones", as for example the color-mixing one.
![Category of colors](category_color_mixing.svg)
Finite categories
---
And most importantly, we saw some categories that are *completely made up and have no value whatsoever*, such as my made-up soccer hierarchy. We call those *finite categories*.
Although few finite categories are useful by themselves, *the concept of finite categories* is very important - we can draw any combination of points and arrows and call it a category, in the same way that we can construct a set out of everything.
And most importantly, we saw some categories that are *completely made up and have no value whatsoever*, such as my made-up soccer hierarchy. We call those *finite categories*. Although few the finite categories are useful by themselves, the idea of finite categories is important - we can draw any combination of points and arrows and call it a category, in the same way that we can construct a set out of every combination of objects.
![Finite categories](finite_categories.svg)
For future reference, let's see some basic finite categories.
For future reference, let's see some basic finite categories. The simplest category is **0** (enjoy the minimalism of this diagram.)
![The finite category 0](finite_zero.svg)
The next simplest category is **1** - it is comprised of one object no morphism besides its identity morphism (as usual, we don't take note of the identity morphisms unless they are rellevant.)
![the finite category 1](finite_one.svg)
If we increment the number of objects to two, we see a couple of more interesting categories, like for example the category **2** containing two objects and one morphism.
![the finite category 2](finite_two.svg)
**Task:** There are just two more categories that have 2 objects and at most one morphism between two objects, draw them.
And finally the category **3** has 3 objects and also 3 morphisms (one of which is the composition of the other two.)
![the finite category 3](finite_three.svg)
Categorical Isomorphisms
===
Many of the categories we saw have similarities between one another, as for example both the color-mixing order and categories that represent logic have greatest and least objects. To pinpoint such similarities and understand what they mean, we specify formal ways to connect categories to one another. In chapter 1 we talked about set isomorphisms, which establish an equivalence between two sets. If you remember a set isomorphism is a *two-way function* between two sets or, alternatively, two "twin" functions each of which equals identity when composed with the other.
Many of the categories we saw have similarities between one another, as for example both the color-mixing order and categories that represent logic have greatest and least objects. To pinpoint such similarities and understand what they mean, we specify formal ways to connect categories to one another. In chapter 1 we talked about set isomorphisms, which establish an equivalence between sets. If you remember, a set isomorphism is a *two-way function* between two sets or, alternatively it can be seen as two "twin" functions each of which equals identity when composed with the other.
![Set isomorphism](set_isomorphism.svg)
@ -54,13 +70,15 @@ Then, in chapter 4, we mentioned order isomorphisms and saw that they are the sa
![Order isomorphism](order_isomorphism.svg)
We can extend this definition to work for categories as well. However, unlike orders, categories can have more than one morphism between two objects, so the definition is a little more complex. It is the following: given two categories, an isomorphism between them is an invertible function between the underlying sets of objects, *and* an invertible function between the morphisms that connect them, which maps each morphism to a morphism with the same signature. If you haven't seen the word, the "signature" of a function is just its input and output, so two functions have the same signature if they have the same input and output.
We can extend this definition to work for categories as well. However, unlike orders, categories can have more than one morphism between two objects, so the definition is a little more complex.
It is the following: given two categories, an isomorphism between them is an invertible function between the underlying sets of objects, *and* an invertible function between the morphisms that connect them, which maps each morphism to a morphism with the same signature (the "signature" of a function is just its input and output, so two functions have the same signature if they have the same input and output sets).
![Category isomorphism](category_isomorphism.svg)
Although a little more complex, this definition is the same as the one we have for orders - it is just that with categories we can have more than one morphism between two objects and so we need to explicitly specify which one corresponds to which, while in order theory we only need to verify that the corresponding morphism actually exist (for orders is done by the *order-preserving* condition.)
Although a little more complex, this definition is the same as the one we have for orders - it is just that when dealing with categories, we have to account for the fact that we can have more than one morphism between two objects and so we need to explicitly specify which one corresponds to which, while in order theory we only need to verify that the corresponding morphism actually exist (for orders is done by the *order-preserving* condition.) So those are categorical isomorphisms.
So those are categorical isomorphisms. But isomorphisms are actually very rare. The only one that comes to mind is the Curry-Howard-Lambek isomorphism from the last chapter. If two categories are isomorphic they basically contain the same data and it would be more accurate to refer to them as different representations of the same category, then as separate categories.
However, categorical isomorphisms are actually pretty rare - the only one that comes to mind is the Curry-Howard-Lambek isomorphism from the last chapter. If two categories are isomorphic, they basically contain the same data and it would be more accurate to refer to them as different *representations* of the same category than as separate categories.
<!--
comics:
@ -72,11 +90,11 @@ Pretty much.
What are functors
===
Much more abundant than isomorphisms, which are two-way connections between categories, are one-way connections between categories, which we will examine next. As you might have guessed, those are called functors.
Much more abundant than isomorphisms, which are two-way connections between categories, are one-way connections between categories, which we will examine next. As you might have guessed, those are called functors (and also maps).
They are more abundant than isomorphisms because each isomorphism is also a functor (actually two functors).
Functors are much more abundant than isomorphisms because each isomorphism is also a functor (actually two functors), but not the other way around.
*Functors* work like this - a functor between two categories (let's call them **A** and **B**) consists of a mapping that maps each *object* in **A** to an object in **B** and a mapping that maps each *morphism* between objects in **A** to a function of **B** in a way that preserves the structure of the category.
A functor between two categories (let's call them **A** and **B**) consists of a mapping that maps each *object* in **A** to an object in **B** and a mapping that maps each *morphism* between objects in **A** to a morphism in **B** in a way that preserves the structure of the category.
![Functor](functor.svg)
@ -109,7 +127,7 @@ Note how the concepts of "homomorphism set" and of "underlying set" allowed us t
Functor laws
---
So these are the two components that form a functor. But aside from defining them we should verify that they preserve the structure of the source category into the target. What is the structure of a category? As stated in the category definition in chapter 2:
So these are the two components that form a functor. But aside from defining them we should verify that they preserve the structure of the input category into the output. What is the structure of a category? As stated in the category definition in chapter 2:
> A category is a collection of **objects** (we can think of them as points) and **morphisms** (arrows) that go from one object to another, where:
> 1. Each object has to have the identity morphism.
@ -121,7 +139,7 @@ So this requirement translates to the following two laws, which are called the *
![Functor](functor_laws_identity.svg)
2 They should also *preserve composition* i.e. for any two morphisms **f** and **g**, the morphism that corresponds to their composition **F(g f)** in the source category should be the same as the morphism that corresponds to the composition of their counterparts in the target directory, so **F(g) F(f)**.
2 They should also *preserve composition* i.e. for any two morphisms **f** and **g**, the morphism that corresponds to their composition **F(g f)** in the input category should be the same as the morphism that corresponds to the composition of their counterparts in the target directory, so **F(g f) = F(g) F(f)**.
![Functor](functor_laws_composition.svg)
@ -130,34 +148,34 @@ And this is all there is to it about functors - a simple but, as we will see sho
Diagrams as functors
===
Let's start with one that is very meta. Consider a diagram, any diagram from this book. By definition diagrams are, or aim to be, some kind of description of reality, so in order to understand them we have to relate them to some structure, be it a real-world situation or a mathematical structure - we have to associate each object from the diagram with an object from the external world, and also each morphism from the diagram with some kind of relationship that our objects have. But diagrams are just finite categories. So when we are perceiving a diagram, we are actually creating a functor in our heads, we might even say that the functor is perception itself.
Let's start with one that is very meta. Consider a diagram, any diagram from this book. By definition diagrams are, or aim to be, some kind of description of reality, so in order to understand them we have to relate them to some structure, be it a real-world or mathematical. For this, we have to associate each object from the diagram with an object from the external world, and also each morphism from the diagram with some kind of relationship between the corresponding real-world objects. But diagrams are just finite categories. So when we are perceiving a diagram, we are actually creating a functor in our heads. We might even say that the functor is perception itself.
For example, if we consider the preorder representing different cities and the roads in a given region.
For example, if we consider the preorder representing different cities and the roads in a given region, then a diagram that represents that order is actually just a map of the region where the cities are located.
![Preorder of city pathways](city_preorder.svg)
A diagram that represents that order is actually just a map of the region where the cities are located.
![A map and a preorder of city pathways](city_preorder_functor.svg)
![A map and a preorder of city pathways](preorder_map_functor.svg)
Knowing that the lines on the map represent the roads that connect different points in the city allows you to find your way around, even if there are no labels.
Object mapping
---
We already have a pretty good intuition for the functor between a diagram and a set of real-world object, but let's try to describe it in detail. The first component of this functor is the mapping from the objects in the diagram to real-world objects. In the case of maps, this is done by the author of the map, but also by the person who uses it, who, when seeing a given place in the map and the corresponding place in real-life, makes a mental connection between the two, based on the map labels.
We already have a pretty good intuition for the functor between a diagram and a set of real-world object, but let's try to describe it in detail. The first component of this functor is the mapping from the objects in the diagram to real-world objects. In the case of maps, this is done once by the people who create the map, but also by the person who uses it, who, when seeing a given place in the map and the corresponding place in real-life, makes a mental connection between the two, based on the map labels.
Morphism mapping
---
The real value of most diagrams lies in the morphisms, so all morphisms in it have to correspond to real-life morphisms between the objects it represents. Notice that in order to be a functor, the map should not represent *all* relations that these objects have, as for example a map does not have to list all roads that exist in real life - the only requirement is that *the roads listed be actual* - this is valid for all other functors as well.
The real value of most diagrams lies in the morphisms, so all their morphisms have to correspond to morphisms between the objects they represent. Notice that in order to be a functor, the map does not have to represent *all* relations that these objects have, as for example a map does not have to list all roads that exist in real life, the only requirement is that *the roads that it lists should be actual*. This is a characteristic shared by all many-to-one relationships (functions.)
Functor laws
---
In diagrams, identities and morphisms that are a result of composition are usually not displayed, but their existence is implied. Furthermore if the diagram commutes, then there is only *one morphism* between any two objects that are connected (even if they are connected in more than one way). Because of this, functor laws in functors between diagrams and other categories are always followed i.e. the morphisms in the map and the morphisms between the actual objects compose in the same way.
Morphisms that are a result of composition are not displayed, but we use them all the time they are called routes.
In a map, this means that all roads that come from and to a given place are connected with one another
![A map and a preorder of city pathways](preorder_map_route.svg)
The law of preserving composition tells us that the route we create on a map corresponds to a real-world route.
In diagrams, identities are not displayed.
Functors in programming
===
@ -187,9 +205,9 @@ The first component of a functor is a mapping that converts one type (let's call
Function mapping
---
So the type mapping of a functor can correspond to a generic type in a programming language (we can also have functors between two generic types, but we will review those later.) However the nontrivial part of the functor is the *function mapping* - that is a mapping that convert any function of simple types, like `String -> Number` to a function between their more complex counterparts e.g. `Array<String> -> Array<Number>`.
So the type mapping of a functor can correspond to a generic type in a programming language (we can also have functors between two generic types, but we will review those later.) However the nontrivial part of the functor is the *function mapping* - that is a mapping that convert any function of simple types, like `String ➞ Number` to a function between their more complex counterparts e.g. `Array<String> ➞ Array<Number>`.
In programming languages, this mapping is represented by a higher-order function called `map` with a signature `(a -> b) -> (Fa -> Fb)` (where `F` represents the composite type.)
In programming languages, this mapping is represented by a higher-order function called `map` with a signature `(a ➞ b) ➞ (Fa ➞ Fb)` (where `F` represents the composite type.)
Any function with that type signature gives rise to a functor, but not all such functors are useful. In practice, usually, there is only one of them that makes sense for a given generic type. For example, in the case of arrays and similar structures, `map` is a function that applies the original function (the one that converts simple types) to all elements of the structure.
@ -197,7 +215,7 @@ Because only one `map` function per generic type works (and for simple convenien
```
class Array<A> {
map (f: A -> B): Array<B> {
map (f: A B): Array<B> {
let result = [];
for (obj of this) {
result.push(f(obj));
@ -217,23 +235,157 @@ Functor laws
Aside from facilitating code reuse by bringing in all standard functions of simple types in a more complex context, `map` allows us to work in a way that is predictable, courtesy of the functor laws, which in programming context look like this.
```
a.map((a => a) == a
a.map((a => a) == a)
const compose = (f, g) => f(g)
a.map(f).map(g) == a.map(compose(g, f))
```
Free and forgetful functors
**Task:** Use examples to verify that the laws are followed.
Functors in monoids
===
The category of categories
In group theory, there is this cool thing called *group homomorphism* (or *monoid homomorphism* when we are talking about monoids) - it is a function between the groups's underlying sets which preserves the group operation.
Like, imagine if we have the function which shows you what would be the time after n hours
![Group homomorphism as a function](group_homomorphism_function.svg)
Perhaps somewhat surprisingly, this function preserves the operation of addition. That is, if the time after 13 hours it will be 1 o'clock and the time after 14 hours will be 2 o'clock, then the time after (13 + 14) hours will be (1 + 2) o'clock. Or to put it formally, if we call the function that computes the time after some hours **mod11**, then we have **mod11(a + b) = mod11(a) + mod11(b)**. And because of this equation, this function is a group homomorphism between the group of integers under addition and the group of modulo arithmetic with base 11, again under addition.
![Group homomorphism](group_homomorphism.svg)
And the groups don't have to be the same composition operator. Take for example the function that maps any number n to 2 (or any other number) to the n-th **power** so **n ➞ 2ⁿ**. This function gives a rise to a group homomorphism between the group of integets under addition and the integers under multiplication.
![Group homomorphism between different groups](group_homomorphism_addition_multiplication.svg)
Wait, what were we talking about? Oh yes - group homomorphisms are functors. To see why, we switch to the category-theoretic representation of groups (to make the diagram simpler I am using the group **mod3** as the output group instead of mod11**.)
![Group homomorphism as a functor](group_homomorphism_functor.svg)
Object mapping
---
By definition Groups/monoids are categories that have just one object, so there is only one possible object mapping between any couple of groups/monoids - one that maps the object of the input group to the object of the output group.
Morphism mapping
---
Because of the above, the morphism mapping is the only rellevant component of the group homomorphism. In the category-theoretic perspective group objects are morphisms and so the morphism mapping is just mapping between the group's objects, as we can see in the diagram.
Functor laws
---
Not every function between group objects is a homomorphism, but as we said the above example is one due to the equation **mod11(a + b) = mod11(a) + mod11(b)**. But wait, this looks very familiar - it is enough to change some letters and symbols and we will see that it is just a restatement of the functor law for preserving composition - **F(g•f) = F(g)•F(f)**.
**Task:** Figure out how the functor law looks for the other group homorphism that we reviewed.
<!--
**gᵃ gᵇ= gᵃ⁺ᵇ**
-->
The other functor law trivial, it just says that the one and only identity object of the input group (which corresponds to the identity morphism of its one and only object) should be mapped to the one and only identity object of the output group.
<!-- TODO show isomorphism theorems -->
Functors in orders
===
I got you this time, didn't I? You probably thought that I won't introduce another category in this chapter, but this is exactly what I am going to do. And another surprise is that the new category won't be the category of functors (don't worry, we will introduce that in the next chapter.)
And now let's talk about one concept that is completely unrelated to functors, nudge-nudge (I know you are tired of this, but hey, bad jokes are better than no jokes at all.) In the theory of orders we have functions between orders which is unsurprising, as orders, like monoids/groups, are based on sets. And one very interesting type of order function which has applications in calculus and analysis is a *monotonic function* (also called *monotone map*). This is a function between two orders that preserves the order of the elements. So a function **F** is monotonic when for every **a** and **b** in the input order, if **a ≤ b** then **F(a) ≤ F(b)**.
Instead, we will examine the category of small categories (we say *small* because otherwise the category will include itself and it's going to be Russell's paradox all over again.) This category has all the categories that we saw so far as objects and functors are its morphisms.
For example, the function that maps the current time to the distance travelled by some object is monotonoc because the distance travelled increases (or stays the same) as time increases.
**Task:** go through the functor definition and see how you can make functors compose.
![A monotonic function](monotonic_function.svg)
If we plot this or any other monotonic function on a line graph, we see that it goes just one direction.
![A monotonic function, represented as a line-graph](monotonic_function_line_graph.svg)
Now we are about to prove that monotonic functions are functors too, ready?
Object mapping
---
The object mapping component of functors between monoids is trivial. Here it is the reverse - the object mapping is the central component of the functor.
Morphism mapping
---
In orders, there can be just one morphism between given two objects, and so morphism-mapping component of functors between them is trivial. Given two objects from the input order, if there is a morphism between them we map that morphism to the morphism between their corresponding objects in the output order. The fact that the monotonic function respects the order of the elements, ensures that the latter morphism exists.
Functor laws
---
It is not hard to prove that monotone maps obey the functor laws - monotone maps match all identity morphisms with one another because in orders identities are the only morphisms that go between a given object and itself. And they preserve composition for the same reason.
Here is the full proof: One thing we know about monotonic maps is that they preserve the order of the elements, which means (in category-theoretic terms) that if a morphism with a signature **a ➞ b** in the input order exists, then the morphism **F(a) ➞ F(b)** in the output order would exist too. Let's denote these two morphisms **f** and **F(f)**.
Suppose that there exist another morphism **b ➞ c** in the input. Then by the same logic **F(b) ➞ F(c)** would exist as well. Let's denote these morphisms **g** and **F(g)**.
If we compose the two morphisms in the output order, we get a morphism **F(g)•F(f) :: F(a) ➞ F(c)**.
And if we compose the two morphisms in the input order, we get a morphism **g•f :: a ➞ c**. And from it, we can get the corresponding morphism in the output category - **F(g•f) :: F(a) ➞ F(c)**.
But both morphisms **F(g•f)** and **F(g)•F(f)** have the same signature - **F(a) ➞ F(c)** and for orders we know that there can exist only one morphism with a given signature. So **F(g•f) = F(g)•F(f)**.
In this case the compositions
But this means that the composition of these two pairs of morphisms should exist as well, so
**F(g•f) = F(g)•F(f)**.
<!--
Functors in logic
===
-->
Free and Forgetful Functors
---
Some other functors
===
Before we continue, we will review the functor-related concepts that we saw so far, as well as some that we will see later on.
Diagram
---
As we saw, a diagram, can be represented as functor from a finite category, called an *index* category (or a *map* as we dubbed it earlier) to some other category.
Homomorphism functor
---
For any category, we can generate the set of all morphisms that have a specific type signature
![Homomorphism set](homomorphism_set.svg)
Between those two categories, there is a functor, calle the homomorphism functor, between the objects and the morphism sets, where the the morphisms play the role of objects. Again, the morphisms are objects.
This category will have morphisms for object and morphism composition. For example, if we take the color-mixing category, the functor **Hom(B,_)** (the Black ball) would look like this.
![Homomorphism functor](homomorphism_functor.svg)
Endofunctor
---
When programming, we are working in just one category - the category of types in the language that we are working with, so all functors that
Identity functor
---
There is one particular endofuctor that will probably look familiar to you - it is the identity functor - one which maps each object and morphism to itself.
The category of small categories
===
Ha, I got you this time (or at least I hope I did). You probably thought that I won't introduce another category in this chapter, but this is exactly what I am going to do. And another surprise is that the new category won't be the category of functors (don't worry, we will introduce that in the next chapter.) Instead, we will examine the category of (small) categories.
This category has all the categories that we saw so far as objects and functors are its morphisms.
**Task:** Go through the functor definition and see how you can make functors compose.
**Question:** What are the initial and terminal object of the category of small categories.
@ -241,42 +393,26 @@ There isn't much to say about this category, it is just a good exercise to try t
[The category of categories](category_of_categories)
Recursiveness of Cat
The ghost of Russell's paradox
---
But how can one and the same object appear in so many places in different roles?
We say *small* because otherwise the category will include itself and it's going to be Russell's paradox all over again.
Interlude: objects are overrated
Categories all the way down
---
>The world is the collection of facts, not of things.
Ludwig Wittgenstein
The recursive nature of category theory might leave some of you confused: we started by saying that categories are composed of objects and morphisms, but now we are saying that there are morphisms between categories as well. Does that mean that categories are an example of categories?
Objects are all around us, both in mathematics and in real life - virtually everything that we see or imagine can be viewed as an object. Because of this, we might be inclined to think that the key to understanding the world is to understand what objects are. And this indeed is an idea shared between many people, you might even say that this is what set theory does.
Yes. Sounds a bit weird on intuitive level (as for example biscuits don't contain other biscuits and houses don't use houses as building material) but it is perfectly legitimate.
However there is another way to look at things. Because what is an object, when viewed by itself? Can we study just one object in isolation? And is there anything left to study about it, once it is detached from its environment? When we think hard about everyday objects we realize that each of them has a specific *function* or functions without which, it would be just a piece of junk, and in many ways it won't be an object at all. And this is even more so for mathematical objects which you cannot even recycle when they are no longer useful - functions, or relations are key.
So instead of thinking about objects which just happen to have some morphisms between them, we might take the opposite view and say that objects are only interesting as domains and codomains of morphisms.
This view is best expressed by category theory and specifically by the notion of universal properties (limits) - as we said in the previous chapter universal properties define an object *up to a unique isomorphism*. This means that if there are two or more objects that are isomorphic to one another and have exactly the same morphisms to all other objects in the category, then these objects are for all intends and purposes equivalent.
category theory does *categorize* (see what I did there) everything as categories, so it is categories all the way down, like for example, every monoid is a category with one just object.
Equivalent categories
---
But at the same time, monoids can be seen as belonging to one category - the category of monoids - with monoid homomorphisms acting as objects.
In the beginning of the chapter, we were wondering what does it mean for two categories to be equal. And this question is even more interesting in the context of the category of categories. We said that categorical isomorphism is somewhat too rigid to accurately capture the concept. The paragraph above can serve as a good summary as to why this is the case: in isomorphic categories, isomorphic *objects* aren't considered equal (in the way that they are considered equal in universal properties.) for example the following two categories are not isomorphic.
At the same time we have the category of groups, for example, which contains the category of monoids as a subcategory, as all monoids are groups.
![Simple non-isomorphic categories](simple_non_isomorphic_categories.svg)
There may be many more levels of categories within categories.
Being isomorphic means that two structures are completely the same. A map is isomorphic to an area only it represents the area completely, like if there is a arrow for each route and a point for each intersection.
![Isomorphic categories](isomorphic_categories.svg)
Suppose, though that there are two intersections that are positioned in such a way that for every road that goes to and from one of them, there is an identical road to the other one (maybe the one of these intercection was meant to replace the other one but it wasn't closed.) Then suppose that you have a map which displays these two intercections as one and the same intercection.
![Non-isomorphic categories](non_isomorphic_categories.svg)
Would say that the map is complete? The answer comes down to what would you want to use the map for: if you want the map to accurately represents all the places that exist in the area, then it is not accurate. But if you want the map for practical purposes, if you only need it to make a route, then there is no reason to show two roads that are the same.
Two categories are isomorphic if there exist an *invertable* functor between them. But they are equivalent if they are connected by two functors that are isomorphic.
Everything is clear except the definition of functor isomorphism which we will look at in the next chapter.
However that does not mean that we have to cover all of them and think about them at all. It is like the concept of a derivative in calculus - the first derivative of a position of the object gives its *speed*, which is useful, the derivative of speed is also useful - it is **velocity**, but the derivative of velocity and those after it leave us indifferent. We can use the same tactict with our little journey in category theory - stick on the level that make sense for us and not be obsessed with forming picture of the whole thing Because there is no *whole thing* - category theory is an *abstract* theory. That is, it does not seek to represent an actual state of affairs, but to provide a language that you can use to express many different ideas, actual or purely imaginary. So view the category of categories not as a structure, but as a space, where all these concepts live.

View File

@ -0,0 +1,948 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="category_sets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="1.3653944"
inkscape:cx="323.99033"
inkscape:cy="77.533221"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
<circle
stroke-miterlimit="10"
cx="31.813608"
cy="173.15752"
r="26.157486"
id="circle7768-2-2"
style="opacity:0.13999999;stroke:#000000;stroke-width:3.0731411;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(-17.22192)" />
<circle
stroke-miterlimit="10"
cx="31.318398"
cy="169.86552"
r="26.157486"
id="circle7770-0-0"
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:3.0731411;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(-17.22192)" />
<circle
stroke-miterlimit="10"
cx="235.1595"
cy="0.26399156"
r="15.930658"
id="circle7768-6"
style="opacity:0.13999999;stroke:#000000;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="233.60962"
cy="-0.72690713"
r="15.930658"
id="circle7770-4"
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="230.23685"
cy="75.786324"
r="15.193833"
id="circle7776-5"
style="opacity:0.13999999;stroke:#000000;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="228.73778"
cy="74.820831"
r="15.193833"
id="circle7778-5"
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="221.29332"
cy="80.080231"
r="2.4391439"
id="circle7780-4"
style="fill:#d71920;stroke:#be1e2d;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="237.90999"
cy="81.503067"
r="2.4391439"
id="circle7782-2"
style="fill:#f58235;stroke:#e76524;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="226.90842"
cy="74.770012"
r="2.4391439"
id="circle7784-4"
style="fill:#8967ac;stroke:#651c5f;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="234.6832"
cy="67.300133"
r="2.4391439"
id="circle7786-8"
style="fill:#54b948;stroke:#00873a;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="232.77116"
cy="-5.5797887"
r="2.6932213"
id="circle7808-8"
style="fill:#8967ac;stroke:#651c5f;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="249.11699"
cy="-50.907951"
r="2.6932213"
id="circle7810-9"
style="fill:#f58235;stroke:#e76524;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="284.98428"
cy="82.221855"
r="16.92156"
id="circle7764-0-7"
style="opacity:0.13999999;stroke:#000000;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="283.30737"
cy="81.154732"
r="16.92156"
id="circle7766-2-4"
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="279.19131"
cy="91.165382"
r="2.6932213"
id="circle7800-8-1"
style="fill:#fce600;stroke:#ffdd00;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="280.10599"
cy="71.118668"
r="2.6932213"
id="circle7802-8-3"
style="fill:#39bced;stroke:#008dd2;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="290.5994"
cy="74.269226"
r="2.6932213"
id="circle7804-1-9"
style="fill:#54b948;stroke:#00873a;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<circle
stroke-miterlimit="10"
cx="275.86288"
cy="83.085716"
r="2.6932213"
id="circle7806-3-9"
style="fill:#d71920;stroke:#be1e2d;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<g
id="g853-0-5"
transform="matrix(0.01417996,0.07103521,-0.07103521,0.01417996,109.25443,164.1206)"
style="stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none">
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7768-2-6"
r="102.95082"
cy="220.89168"
cx="-303.9408"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7770-0-9"
r="102.95082"
cy="214.48805"
cx="-313.95679"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7776-8-8"
r="119.6"
cy="478.30444"
cx="-382.37473"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7778-7-7"
r="119.6"
cy="470.70447"
cx="-394.17471"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1eb9;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7780-3-2"
r="9.6000004"
cy="515.32428"
cx="-381.8353"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-8"
r="9.6000004"
cy="457.58743"
cx="-336.04929"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784-1-2"
r="9.6000004"
cy="401.66644"
cx="-375.67169"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9-9"
r="9.6000004"
cy="437.23779"
cx="-438.64673"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7764-0-8-9"
r="123.29848"
cy="320.19632"
cx="-62.813675"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7766-2-3-6"
r="123.29848"
cy="312.42078"
cx="-75.032455"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e77724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-9-02"
r="9.6000004"
cy="485.76727"
cx="-428.31195"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3-76"
r="9.6000004"
cy="425.69943"
cx="-400.93411"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780-3-8-1"
r="9.6000004"
cy="540.93164"
cx="-414.82733"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1eb9;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7780-3-4-3"
r="9.6000004"
cy="341.82513"
cx="-135.53607"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-7-2"
r="9.6000004"
cy="311.87476"
cx="1.7818699"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784-1-0-1"
r="9.6000004"
cy="255.95378"
cx="-37.840538"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9-0-5"
r="9.6000004"
cy="261.2869"
cx="-118.38643"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e77724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-9-0-99"
r="9.6000004"
cy="357.21683"
cx="-32.047462"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3-7-1"
r="9.6000004"
cy="288.56787"
cx="-75.361702"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780-3-8-7-4"
r="9.6000004"
cy="360.07727"
cx="-83.125549"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-7-8-9"
r="9.6000004"
cy="240.62045"
cx="-247.9787"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9-0-9-1"
r="9.6000004"
cy="190.03259"
cx="-368.147"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3-7-4-0"
r="9.6000004"
cy="217.31355"
cx="-325.12228"
stroke-miterlimit="10" />
</g>
<g
inkscape:transform-center-y="-10.879708"
inkscape:transform-center-x="6.9635237"
transform="matrix(0.17319477,-0.01735009,0.02873977,0.23669983,170.91136,-28.591365)"
id="g1482-7-0-1-0-3-5-5"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -8.7482512,223.39609 C 70.475795,201.89953 249.49586,203.09448 310.28721,225.35514"
id="path1480-1-3-1-5-7-4-8"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-9.4998079"
inkscape:transform-center-x="8.4995412"
transform="matrix(0.16806312,-0.0453017,0.06687333,0.22886839,325.93127,92.819593)"
id="g1482-7-0-1-0-3-5-5-5"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m -421.64166,174.56618 c 259.68523,-20.43328 531.66738,-0.10185 731.92887,50.78896"
id="path1480-1-3-1-5-7-4-8-2"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.795767"
inkscape:transform-center-x="-3.0896881"
transform="matrix(0.12566758,0.12043718,-0.1613325,0.17556938,405.42742,26.606335)"
id="g1482-7-0-1-0-3-5-5-5-9"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5-0"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m 139.99607,218.98369 c 44.40325,-9.87054 134.62913,-5.15058 170.29114,6.37145"
id="path1480-1-3-1-5-7-4-8-2-2"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-6.7928616"
inkscape:transform-center-x="10.369867"
transform="matrix(0.15201078,-0.08479493,0.12049982,0.20574882,407.40944,86.002813)"
id="g1482-7-0-1-0-3-5-5-5-9-8"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5-0-3"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m 139.99607,218.98369 c 44.40325,-9.87054 134.62913,-5.15058 170.29114,6.37145"
id="path1480-1-3-1-5-7-4-8-2-2-8"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="6.1897738"
inkscape:transform-center-x="-10.577281"
transform="matrix(0.00425539,-0.17400962,-0.23819217,-0.01082938,546.95585,115.7956)"
id="g1482-7-0-1-0-3-5-5-5-9-8-0"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5-0-3-4"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m 139.99607,218.98369 c 44.40325,-9.87054 134.62913,-5.15058 170.29114,6.37145"
id="path1480-1-3-1-5-7-4-8-2-2-8-0"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
id="g853-5"
transform="matrix(-0.12052589,0.22367138,-0.22367138,-0.12052589,549.39157,217.81707)"
style="stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none">
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7768-8"
r="62.700001"
cy="111.2855"
cx="-297.02246"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7770-2"
r="62.700001"
cy="107.38551"
cx="-303.1225"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7776-2"
r="59.799999"
cy="408.52682"
cx="-316.39709"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7778-3"
r="59.799999"
cy="404.72684"
cx="-322.29709"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780-37"
r="9.6000004"
cy="425.42682"
cx="-351.59708"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7782-6"
r="9.6000004"
cy="431.02682"
cx="-286.19708"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784-0"
r="9.6000004"
cy="404.52682"
cx="-329.4971"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-5"
r="9.6000004"
cy="375.12683"
cx="-298.89709"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7808-0"
r="10.6"
cy="88.285507"
cx="-306.42249"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7810-7"
r="10.6"
cy="127.68551"
cx="-282.42249"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7764-0-3"
r="66.599998"
cy="318.40854"
cx="-65.623062"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7766-2-7"
r="66.599998"
cy="314.20856"
cx="-72.223068"
stroke-miterlimit="10" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7800-8-7"
r="10.6"
cy="353.60855"
cx="-88.42308"
stroke-miterlimit="10" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7802-8-5"
r="10.6"
cy="274.70856"
cx="-84.823074"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7804-1-2"
r="10.6"
cy="287.10855"
cx="-43.523056"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7806-3-6"
r="10.6"
cy="321.80853"
cx="-101.52309"
stroke-miterlimit="10" />
</g>
<g
inkscape:transform-center-y="5.968604"
inkscape:transform-center-x="10.605487"
transform="matrix(-6.134599e-4,-0.17406056,0.23836661,-0.00584304,23.543626,111.53978)"
id="g1482-7-0-1-0-3-5-5-5-9-9"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5-0-1"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m -100.02658,224.51103 c 137.569699,-27.6769 299.68338,-33.60485 410.31379,0.84411"
id="path1480-1-3-1-5-7-4-8-2-2-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
id="g853-0"
transform="matrix(0.04973737,0.24916172,-0.24916172,0.04973737,509.42521,134.44796)"
style="stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none">
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7768-2"
r="102.95082"
cy="-12.501837"
cx="-409.07077"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7770-0"
r="102.95082"
cy="-18.905462"
cx="-419.08676"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7776-8"
r="119.6"
cy="478.30444"
cx="-382.37473"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7778-7"
r="119.6"
cy="470.70447"
cx="-394.17471"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1eb9;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7780-3"
r="9.6000004"
cy="515.32428"
cx="-381.8353"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3"
r="9.6000004"
cy="457.58743"
cx="-336.04929"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784-1"
r="9.6000004"
cy="401.66644"
cx="-375.67169"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9"
r="9.6000004"
cy="437.23779"
cx="-438.64673"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7764-0-8"
r="123.29848"
cy="320.19632"
cx="-62.813675"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7766-2-3"
r="123.29848"
cy="312.42078"
cx="-75.032455"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e77724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-9"
r="9.6000004"
cy="485.76727"
cx="-428.31195"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3"
r="9.6000004"
cy="425.69943"
cx="-400.93411"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780-3-8"
r="9.6000004"
cy="540.93164"
cx="-414.82733"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1eb9;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7780-3-4"
r="9.6000004"
cy="341.82513"
cx="-135.53607"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-7"
r="9.6000004"
cy="311.87476"
cx="1.7818699"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784-1-0"
r="9.6000004"
cy="255.95378"
cx="-37.840538"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9-0"
r="9.6000004"
cy="261.2869"
cx="-118.38643"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e77724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-9-0"
r="9.6000004"
cy="357.21683"
cx="-32.047462"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3-7"
r="9.6000004"
cy="288.56787"
cx="-75.361702"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780-3-8-7"
r="9.6000004"
cy="360.07727"
cx="-83.125549"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#77e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-7-8"
r="9.6000004"
cy="7.2269316"
cx="-353.10867"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786-9-0-9"
r="9.6000004"
cy="-43.360928"
cx="-473.27698"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#c9e724;stroke-width:12.09529114;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle7782-3-3-7-4"
r="9.6000004"
cy="-16.079954"
cx="-430.25226"
stroke-miterlimit="10" />
</g>
<circle
stroke-miterlimit="10"
cx="237.30298"
cy="5.1329093"
r="2.6932213"
id="circle7810-9-2"
style="fill:#f58235;stroke:#e76524;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<g
inkscape:transform-center-y="10.879708"
inkscape:transform-center-x="-6.9635252"
transform="matrix(-0.17319477,0.01735009,-0.02873977,-0.23669983,239.18102,78.897771)"
id="g1482-7-0-1-0-3-5-5-4"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -8.7482512,223.39609 C 70.475795,201.89953 249.49586,203.09448 310.28721,225.35514"
id="path1480-1-3-1-5-7-4-8-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-11.992504"
inkscape:transform-center-x="0.85429585"
transform="matrix(0.15715008,0.07484189,-0.09798269,0.21737566,155.9509,55.909599)"
id="g1482-7-0-1-0-3-5-5-4-3"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-9-6"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -8.7482512,223.39609 C 70.475795,201.89953 249.49586,203.09448 310.28721,225.35514"
id="path1480-1-3-1-5-7-4-8-9-0"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
id="g853"
transform="matrix(0.04973737,0.24916172,-0.24916172,0.04973737,201.43204,99.749565)"
style="stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none">
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7768"
r="62.700001"
cy="111.2855"
cx="-297.02246"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7770"
r="62.700001"
cy="107.38551"
cx="-303.1225"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7776"
r="59.799999"
cy="408.52682"
cx="-316.39709"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7778"
r="59.799999"
cy="404.72684"
cx="-322.29709"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7780"
r="9.6000004"
cy="425.42682"
cx="-351.59708"
stroke-miterlimit="10" />
<circle
style="fill:#f58235;stroke:#e76524;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7782"
r="9.6000004"
cy="431.02682"
cx="-286.19708"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7784"
r="9.6000004"
cy="404.52682"
cx="-329.4971"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7786"
r="9.6000004"
cy="375.12683"
cx="-298.89709"
stroke-miterlimit="10" />
<circle
style="fill:#8967ac;stroke:#651c5f;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7808"
r="10.6"
cy="101.3615"
cx="-299.88449"
stroke-miterlimit="10" />
<circle
style="opacity:0.13999999;stroke:#000000;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7764-0"
r="66.599998"
cy="318.40854"
cx="-65.623062"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7766-2"
r="66.599998"
cy="314.20856"
cx="-72.223068"
stroke-miterlimit="10" />
<circle
style="fill:#fce600;stroke:#ffdd00;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7800-8"
r="10.6"
cy="353.60855"
cx="-88.42308"
stroke-miterlimit="10" />
<circle
style="fill:#39bced;stroke:#008dd2;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7802-8"
r="10.6"
cy="274.70856"
cx="-84.823074"
stroke-miterlimit="10" />
<circle
style="fill:#54b948;stroke:#00873a;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7804-1"
r="10.6"
cy="287.10855"
cx="-43.523056"
stroke-miterlimit="10" />
<circle
style="fill:#d71920;stroke:#be1e2d;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7806-3"
r="10.6"
cy="321.80853"
cx="-101.52309"
stroke-miterlimit="10" />
<circle
style="fill:#e2e6d7;fill-opacity:1;stroke:#808285;stroke-width:12.35526657;stroke-miterlimit:10;stroke-dasharray:none"
id="circle7770-6"
r="62.700001"
cy="-251.19006"
cx="-268.73895"
stroke-miterlimit="10" />
</g>
<circle
stroke-miterlimit="10"
cx="247.65404"
cy="-50.775661"
r="2.6932213"
id="circle7810-9-2-0"
style="fill:#f58235;stroke:#e76524;stroke-width:3.13919497;stroke-miterlimit:10;stroke-dasharray:none"
transform="rotate(16.309313)" />
<g
inkscape:transform-center-y="-11.411434"
inkscape:transform-center-x="3.2311506"
transform="matrix(0.16908163,0.04133833,-0.05175505,0.23275351,357.11434,49.61662)"
id="g1482-7-0-1-0-3-5-5-5-2"
style="display:inline;fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-0-19-0-0-9-5-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:14.09474087;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="m -634.36123,187.17333 c 303.51251,-40.3026 757.88346,-18.82771 944.64844,38.18181"
id="path1480-1-3-1-5-7-4-8-2-4"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:0;stroke:#7c7c7c;stroke-width:6.38683414;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,348 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="finite_categories.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="1.5764472"
inkscape:cx="327.32432"
inkscape:cy="64.664838"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,445.12654,-59.055915)"
id="g2760-3">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-2">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-0"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-6"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,474.22522,-94.800944)"
id="g2760-9-8-7">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,444.37427,70.072481)"
id="g2760-0-7-9">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-6-8-8">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-3-6-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-2-8-8"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="-1.6178754"
inkscape:transform-center-x="2.3401319"
transform="matrix(-0.19777848,-0.19730741,-0.25717162,0.29347402,638.0539,119.98007)"
id="g1482-7-0-7-0-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.93923569,0.02285115,-0.02301864,0.93240161,509.71923,84.360521)"
style="fill:#cccccc;stroke:#666666"
id="g2749-7-7">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-7-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-4-5"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
<g
inkscape:transform-center-y="-0.64809202"
inkscape:transform-center-x="7.9981321"
transform="matrix(0.22083135,-0.18346645,0.21011052,0.33371325,351.50345,104.41009)"
id="g1482-7-0-25-1-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-6"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-7"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="1.7323615"
inkscape:transform-center-x="2.5100164"
transform="matrix(-0.26822605,0.07811098,0.13307467,0.36681791,211.85901,-55.137393)"
id="g1482-7-0-7-0-1-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6-3"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.89812475,-0.26394344,0.25737757,0.90002833,58.601165,0.44778656)"
id="g2760-3-0">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-2-4">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-0-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-6-4"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
transform="matrix(0.89812475,-0.26394344,0.25737757,0.90002833,30.537068,-42.424509)"
id="g2760-9-8-7-4">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6-7">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5-6"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6-3"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="39.172168"
inkscape:transform-center-x="43.952745"
transform="matrix(-0.27853399,-0.0215722,0.05519843,-0.38628665,266.2531,261.1275)"
id="g1482-7-0-7-0-1-17"
style="display:inline;fill:none;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-5"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:35.52600098" />
<path
d="M 4.1253325,105.31435 C 88.747531,78.834382 249.12601,66.47288 317.498,86.173"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6-9"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:10.64900017;paint-order:markers fill stroke"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,186.1988,70.036532)"
id="g2760-0-7-9-8">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-6-8-8-5">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-3-6-4-7"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-2-8-8-4"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="-1.6178754"
inkscape:transform-center-x="2.3401319"
transform="matrix(-0.19777848,-0.19730741,-0.25717162,0.29347402,379.87843,119.94411)"
id="g1482-7-0-7-0-3-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7-5"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.93923569,0.02285115,-0.02301864,0.93240161,251.54376,84.324572)"
style="fill:#cccccc;stroke:#666666"
id="g2749-7-7-9">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-7-4-7"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-4-5-5"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
<g
inkscape:transform-center-y="-7.9315754"
inkscape:transform-center-x="-1.0876317"
transform="matrix(-0.22004468,0.18440923,0.29069553,0.26647153,187.77981,20.507563)"
id="g1482-7-0-25-1-3-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-6-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 176.24968,93.604679 C 215.48668,83.880679 286.339,79.662 317.498,86.173"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-7-8"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,212.04975,-92.836895)"
id="g2760-9-8-7-6">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6-2">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5-1"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6-7"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="finite_one.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="0.96547963"
inkscape:cx="229.47772"
inkscape:cy="76.082918"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
<g
transform="matrix(0.66433938,0.65950542,-0.66433938,0.65950542,322.73408,4.396877)"
id="g2760-0-7">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-6-8">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-3-6"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-2-8"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -0,0 +1,169 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="finite_three.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="1.2870213"
inkscape:cx="278.47121"
inkscape:cy="64.664838"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
<g
inkscape:transform-center-y="-3.7866525"
inkscape:transform-center-x="57.783587"
transform="matrix(-0.18470797,-0.20959368,0.3088058,-0.23854396,257.60386,214.07837)"
id="g1482-7-0-7-0-1-17"
style="display:inline;fill:none;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-5"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:35.52600098" />
<path
d="M 4.1253325,105.31435 C 88.747531,78.834382 249.12601,66.47288 317.498,86.173"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6-9"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:10.64900017;paint-order:markers fill stroke"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.01677078,0.93595564,-0.93605315,0.00993522,333.37574,17.249242)"
id="g2760-0-7-9-8">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-6-8-8-5">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-3-6-4-7"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-2-8-8-4"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
inkscape:transform-center-y="-2.7618577"
inkscape:transform-center-x="-0.18303836"
transform="matrix(-0.00431811,-0.27933474,-0.38895949,0.03122117,437.48454,182.02372)"
id="g1482-7-0-7-0-3-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-6-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-7-5"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.65761991,0.67098577,-0.66634288,0.65260232,370.27798,67.03756)"
style="fill:#cccccc;stroke:#666666"
id="g2749-7-7-9">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-7-4-7"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-4-5-5"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
<g
inkscape:transform-center-y="-6.3154327"
inkscape:transform-center-x="-5.5610772"
transform="matrix(-0.28647709,0.01890244,0.0772692,0.38670459,357.86742,-26.260747)"
id="g1482-7-0-25-1-3-3-3"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-8-5-1-6-8"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="M 176.24968,93.604679 C 215.48668,83.880679 286.339,79.662 317.498,86.173"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-9-5-4-7-8"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.01677078,0.93595564,-0.93605315,0.00993522,465.42837,-85.534001)"
id="g2760-9-8-7-6">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6-2">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5-1"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6-7"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="finite_two.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="1.5764472"
inkscape:cx="261.31295"
inkscape:cy="78.64449"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
<g
inkscape:transform-center-y="0.2163013"
inkscape:transform-center-x="2.7462848"
transform="matrix(-0.27913563,0.01139465,0.0410668,0.38804351,353.89684,9.6736628)"
id="g1482-7-0-7-0-1-1"
style="display:inline;fill:#dddddd;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10">
<path
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
id="path1478-7-9-4-2-0-0"
inkscape:connector-curvature="0"
style="stroke-width:35.52600098" />
<path
d="m 197.036,89.49 c 39.237,-9.724 89.303,-9.828 120.462,-3.317"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)"
id="path1480-1-3-3-4-6-3"
inkscape:connector-curvature="0"
style="stroke-width:10.64900017;paint-order:markers fill stroke" />
</g>
<g
transform="matrix(0.93523018,-0.04048111,0.03365023,0.93550087,191.77421,26.818029)"
id="g2760-3-0">
<g
transform="rotate(-44.545114,52.727379,84.306425)"
style="fill:#cccccc;stroke:#666666"
id="g2749-2-4">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-33-0-4"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-85-6-4"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
<g
transform="matrix(0.93523018,-0.04048111,0.03365023,0.93550087,174.82994,-21.540207)"
id="g2760-9-8-7-4">
<g
transform="rotate(-37.328029,183.17645,-58.627543)"
style="fill:#cccccc;stroke:#666666"
id="g2749-4-6-7">
<circle
style="opacity:0.12999998;fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3369-5-5-6"
r="24.6"
cy="90.58149"
cx="55.440796" />
<circle
style="fill:#cccccc;stroke:#666666;stroke-width:6;stroke-miterlimit:10"
id="circle3383-6-6-3"
r="24.6"
cy="84.367409"
cx="51.507595" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="595.3"
height="200"
version="1.1"
id="svg9949"
sodipodi:docname="finite_zero.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata9955">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs9953" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1016"
id="namedview9951"
showgrid="false"
inkscape:zoom="1.6724448"
inkscape:cx="275.52669"
inkscape:cy="76.082918"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg9949"
inkscape:document-rotation="0" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,475 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 177"
version="1.1"
id="svg3397"
sodipodi:docname="preorder_map_functor.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata3403">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs3401" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview3399"
showgrid="false"
inkscape:zoom="2.7517937"
inkscape:cx="250.861"
inkscape:cy="89.123895"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3397"
inkscape:document-rotation="0"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="578.41487,-35.590171"
orientation="1,0"
id="guide3917"
inkscape:locked="false" />
</sodipodi:namedview>
<g
id="g2760-8"
transform="matrix(1.1915155,0,0,1.1915155,422.39644,-13.104354)"
style="stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1">
<rect
style="opacity:1;fill:#e2e2e2;fill-opacity:1;stroke:none;stroke-width:1.58133423;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:9;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3235"
width="128.09546"
height="99.832413"
x="-276.42633"
y="27.488058" />
<path
d="m -45.784035,54.102223 c -0.33592,-1.210669 -0.74533,-2.404693 -1.19588,-3.595469 1.2753,-0.07433 2.56245,-0.08201 3.86178,-0.02325 -0.93384,1.261215 -1.7049,2.211973 -2.6659,3.618722 z"
id="path1478-7-9-4-2-6-0-5"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#686868;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m 0.9395556,101.88424 c 1.62854,-0.81428 0.84994,-3.555888 3.0622,-2.449759 5.33683,2.668419 1.32066,15.358899 7.3492804,18.373209 1.70834,0.85416 4.41606,0.37071 6.1244,1.22488 3.39462,1.69731 9.34476,7.66558 11.02392,11.02392 0.85932,1.71865 0.32859,4.33184 1.22488,6.1244 2.87386,5.74773 8.574165,3.35156 8.574165,11.02392 0,0.75553 0.32093,2.42035 0,3.06221 -0.51646,1.03291 -1.93331,1.41685 -2.449765,2.44976 -2.51095,5.0219 -1.4914,0.74569 -4.89952,2.44976 -0.51646,0.25822 -0.70843,0.96665 -1.22488,1.22488 -2.93971,1.46986 -8.08421,-1.46986 -11.02392,0 -2.55703,1.27852 0.10728,3.621 -2.44976,4.89952 -3.19808,1.59904 -7.9431204,-0.31552 -11.0239204,1.22488 -3.04974,1.52487 -6.10748,1.22488 -9.79904,1.22488 -4.28158,0 -9.4488196,7.83062 -15.3110096,4.89953 -6.76024,-3.38012 -8.68471,-6.12441 -17.14833,-6.12441"
id="path34558-4-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssscscccccssssc" />
<path
style="fill:none;stroke:#686868;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m -51.112085,46.293993 c -0.0135,5.095724 24.497596,14.275717 24.497596,14.698565 0,0.816587 -1.719376,-0.365188 -2.449756,0 -1.03291,0.516455 -1.9333,1.416851 -2.44976,2.449761 -0.31603,0.632074 9.306486,10.471428 10.411486,11.023923 0.73037,0.36519 1.71938,-0.365189 2.44976,0 1.76847,0.884235 3.13105,1.565527 4.89952,2.449762 1.96377,0.981886 4.7814902,-1.460944 6.1244002,1.224879 1.06156,2.123127 -1.06156,5.838598 0,7.961723 0.97267,1.945344 2.48794,7.27293 1.22488,9.799043 -0.7284,1.456797 -11.7479102,8.936161 -13.4736802,9.799051 -0.73038,0.36519 -1.77032,-0.45297 -2.44976,0 -0.37982,0.25321 -0.18861,1.05534 -0.61244,1.22488 -2.2463,0.89852 -4.886546,0.80793 -7.349286,2.44975 -2.92919,1.95279 -5.49267,7.38786 -3.67464,11.02392 0.80271,1.60541 12.183776,6.18944 11.023926,7.34928 -0.70847,0.70847 -7.704786,0.17776 -9.799046,1.22488 -3.52027,1.76014 -6.33566,5.61759 -9.79904,7.34929 -2.4054,1.2027 -5.00737,1.89124 -7.34928,3.0622 -0.97991,0.48995 -2.69474,-0.48995 -3.67464,0 -1.71583,0.85791 -3.5317,3.53171 -4.89953,4.89952"
id="path34554-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#5e5e5e;stroke-width:3.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m 3.0888712,83.040405 c -0.61118,-1.722635 0.81265,-4.499104 0,-6.124401 -0.80158,-1.603164 -0.29565,-2.428622 -0.61244,-3.062201 -0.25823,-0.516456 -0.90459,-0.744444 -1.22488,-1.224881 -0.16986,-0.25479 0,-0.612441 0,-0.918661 0,-1.483855 -0.64920999,-4.825988 0,-6.124402 0.12911,-0.258226 0.48332,-0.354213 0.61244,-0.612439 0.0985,-0.197074 0.0985,-7.764649 0,-7.961724 -0.44212,-0.884235 -0.78276,-1.565524 -1.22487999,-2.44976 -0.10678,-0.21355 -0.10678,-8.360613 0,-8.574163 0.58939999,-1.178801 2.66977999,-2.253553 3.67463999,-2.755981 0.81659,-0.408292 2.24561,0.408295 3.0622,0 3.0432498,-1.521622 2.47542,-6.137231 3.6746398,-6.736842 1.22488,-0.612439 3.36841,0.61244 4.5933,0 0.9134,-0.456697 1.51552,-1.370197 2.44976,-1.83732 0.65362,-0.326809 0.57127,0.326809 1.22488,0 1.25315,-0.626576 2.40653,-1.203264 3.67464,-1.83732 0.65327,-0.326636 1.7965,0.326634 2.44977,0 2.60339,-1.301695 -1.37851,0.07681 1.22488,-1.224882 0.65327,-0.326634 1.79649,0.326636 2.44976,0 0.86984,-0.43492 2.06156,-1.22488 3.0622,-1.22488"
id="path34715-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#686868;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m 45.34725,34.65763 c 1.62854,-0.814279 0.84994,-3.55589 3.0622,-2.449761 5.33683,2.668417 1.32066,15.358898 7.34928,18.373205 1.70834,0.854169 4.41606,0.370711 6.1244,1.224881 3.39462,1.69731 9.34476,7.665583 11.02392,11.023924 0.85932,1.718647 0.32859,4.331837 1.22488,6.124402 2.87386,5.747731 8.57416,3.351559 8.57416,11.023922 0,0.755522 0.32093,2.420343 0,3.062201 -0.51646,1.032911 -1.93331,1.416851 -2.44976,2.449761 -2.51095,5.021899 -1.4914,0.745698 -4.89952,2.449762 -0.51646,0.258226 -0.70843,0.966653 -1.22488,1.224879 -2.93971,1.469858 -8.08421,-1.469856 -11.02392,0 -2.55703,1.278518 0.10728,3.621003 -2.44976,4.899523 -3.19808,1.599042 -7.94312,-0.315522 -11.02392,1.224879 -3.04974,1.524869 -6.107479,1.224881 -9.799039,1.224881 -4.28158,0 -9.44882,7.830621 -15.31101,4.899531 -6.76024,-3.380124 -8.68471,-6.124412 -17.1483298,-6.124412"
id="path34558-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csssscscccccssssc" />
<path
style="fill:none;stroke:#686868;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m -68.89823,-59.607604 c 0.0135,5.09572 -24.4976,14.27572 -24.4976,14.69857 0,0.81658 1.71938,-0.36519 2.44976,0 1.03291,0.51645 1.9333,1.41685 2.44976,2.44976 0.31603,0.63207 -9.30649,10.47142 -10.41149,11.02392 -0.73037,0.36519 -1.71938,-0.36519 -2.44976,0 -1.76847,0.88423 -3.13105,1.56553 -4.89952,2.44976 -1.96377,0.98189 -4.78149,-1.46094 -6.1244,1.22488 -1.06156,2.12313 1.06156,5.8386 0,7.96172 -0.97267,1.94535 -2.48794,7.27293 -1.22488,9.79904 0.7284,1.4568 11.74791,8.9361597 13.47368,9.79904994 0.73038,0.36519 1.77032,-0.4529702 2.44976,0 0.37982,0.25321 0.18861,1.05535 0.61244,1.22488996 2.2463,0.89852 4.88655,0.80793 7.34929,2.44975 2.92919,1.95279 5.49267,7.3878601 3.67464,11.0239201 -0.80271,1.60541 -12.18378,6.18944 -11.02393,7.34928 0.70847,0.70847 7.70479,0.17776 9.79905,1.22488 3.52027,1.76014 6.33566,5.61759 9.79904,7.3493 2.4054,1.20268 5.00737,1.89123 7.34928,3.0622 0.97991,0.48994 2.69474,-0.48997 3.674643,0 1.71583,0.8579 3.5317,3.53169 4.89953,4.89951"
id="path34554-9-9-6"
inkscape:connector-curvature="0" />
<circle
cx="-60.074825"
cy="42.476357"
r="12.232183"
id="circle3383-85-6-8"
style="fill:#cccccc;stroke:#686868;stroke-width:2.99999976;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="12.38948"
cy="87.706345"
r="12.232184"
id="circle3383-6-6-1"
style="fill:#cccccc;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(7.6719707)" />
<circle
style="fill:#cccccc;stroke:#686868;stroke-width:2.99999976;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-4-5-1-0"
r="12.232183"
cy="91.311584"
cx="75.877419"
transform="rotate(1.403915)" />
<path
style="fill:none;stroke:#686868;stroke-width:1.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
d="m -64.256169,139.40459 c -0.0135,5.09572 24.4976,14.27572 24.4976,14.69857 0,0.81658 -1.71938,-0.36519 -2.44976,0 -1.03291,0.51645 -1.9333,1.41685 -2.44976,2.44976 -0.31603,0.63207 9.30649,10.47142 10.41149,11.02392 0.73037,0.36519 1.71938,-0.36519 2.44976,0 1.76847,0.88423 3.13105,1.56553 4.89952,2.44976 1.96377,0.98189 4.78149,-1.46094 6.1244,1.22488 1.06156,2.12313 -1.06156,5.8386 0,7.96172 0.97267,1.94535 2.48794,7.27293 1.22488,9.79904 -0.7284,1.4568 -11.74791,8.93616 -13.47368,9.79905 -0.73038,0.36519 -1.77032,-0.45297 -2.44976,0 -0.37982,0.25321 -0.18861,1.05535 -0.61244,1.22489 -2.2463,0.89852 -4.88655,0.80793 -7.34929,2.44975 -2.92919,1.95279 -5.49267,7.38786 -3.67464,11.02392 0.80271,1.60541 12.18378,6.18944 11.02393,7.34928 -0.70847,0.70847 -7.70479,0.17776 -9.79905,1.22488 -3.52027,1.76014 -6.33566,5.61759 -9.79904,7.34929 -2.4054,1.20269 -5.00737,1.89123 -7.34928,3.0622 -0.97991,0.48994 -2.69474,-0.48996 -3.674641,0 -1.71583,0.8579 -3.5317,3.5317 -4.89953,4.89951"
id="path34554-9-9"
inkscape:connector-curvature="0" />
<circle
cx="-54.929211"
cy="139.69984"
r="12.232183"
id="circle3383-85-2-8-3"
style="fill:#cccccc;stroke:#686868;stroke-width:2.99999976;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(0.4548865)" />
<circle
cx="41.786423"
cy="25.654556"
r="12.232184"
id="circle3383-6-3-4-0"
style="fill:#cccccc;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
transform="rotate(7.6719707)" />
<path
d="m -12.848519,104.64995 c 0.18651,-1.24249 0.44799,-2.47737 0.75069,-3.71402 -1.2749,0.0809 -2.55346,0.22958 -3.83605,0.44559 1.08,1.13855 1.96074,1.98871 3.08536,3.26843 z"
id="path1478-7-9-4-2-6-0-2-4"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="1.8706801"
inkscape:transform-center-y="-4.6646826" />
<path
d="m -27.421675,72.040479 c -0.0341,-1.255945 -0.14355,-2.513456 -0.2937,-3.777732 1.255596,0.23535 2.506626,0.53824 3.753456,0.908548 -1.21039,0.998849 -2.18793,1.735647 -3.459756,2.869188 z"
id="path1478-7-9-4-2-6-0-6-4"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m -30.942615,120.0192 c -1.17194,-0.45289 -2.32013,-0.97728 -3.46105,-1.54228 -0.19897,1.26188 -0.33258,2.54209 -0.40137,3.84091 1.34659,-0.80585 2.36832,-1.48004 3.86241,-2.29863 z"
id="path1478-7-9-4-2-6-0-2-5-4"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="4.8246852"
inkscape:transform-center-y="0.45254243" />
<path
d="m -0.15891879,58.868202 c 0.75025,1.329072 1.43881999,2.718026 2.09773999,4.145453 0.89842,-1.214807 1.75103,-2.496307 2.55843,-3.844381 -1.62589,-0.10017 -2.89568,-0.10867 -4.65615999,-0.301066 z"
id="path1478-7-9-4-2-6-0-2-5-8-4"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#5e5e5e;stroke-width:4.63374281;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="-4.86723"
inkscape:transform-center-y="4.0710672" />
<path
d="m 13.058781,40.673505 c 0.62894,-1.247354 1.34502,-2.46532 2.11096,-3.673335 -1.55069,-0.280035 -3.1279,-0.490152 -4.73191,-0.630946 0.91928,1.50087 1.69447,2.642856 2.62095,4.304269 z"
id="path1478-7-9-4-2-6-0-2-5-8-7-7"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#5e5e5e;stroke-width:4.63912773;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="0.1785648"
inkscape:transform-center-y="-5.2926185" />
<path
d="m 75.10946,62.136828 c -1.22848,-0.263405 -2.44472,-0.601161 -3.66015,-0.980162 0.002,1.277461 0.0703,2.562786 0.2062,3.856315 1.20348,-1.007142 2.10678,-1.833277 3.45394,-2.87615 z"
id="path1478-7-9-4-2-6-0-2-5-8-9-63"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="4.5427331"
inkscape:transform-center-y="1.4491841" />
<path
d="m 22.188661,103.00865 c 1.20175,-0.36656 2.4289,-0.66219 3.67541,-0.92139 -0.62188,-1.11586 -1.30653,-2.205854 -2.05365,-3.270504 -0.56266,1.464974 -0.95087,2.625894 -1.62176,4.191884 z"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-1"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="-4.0690649"
inkscape:transform-center-y="-3.9395058" />
<path
d="m 56.47577,47.618031 c -1.2061,-0.351986 -2.39458,-0.777232 -3.57926,-1.243559 -0.0914,1.274191 -0.11605,2.561126 -0.0746,3.861107 1.27349,-0.917022 2.23444,-1.675331 3.65383,-2.617547 z"
id="path1478-7-9-4-2-6-0-2-5-8-9-4-7"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="4.694468"
inkscape:transform-center-y="0.97430473" />
<path
d="m 43.322891,99.219576 c 0.891779,-0.88504 1.839149,-1.719195 2.820609,-2.530163 -1.07076,-0.696678 -2.18496,-1.341172 -3.342589,-1.934093 0.18605,1.558229 0.38449,2.766146 0.52198,4.464246 z"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-8-5"
inkscape:connector-curvature="0"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:3;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="-2.3585907"
inkscape:transform-center-y="-4.8121861" />
<g
inkscape:transform-center-y="-7.3382528"
inkscape:transform-center-x="7.3746698"
transform="matrix(0.12750402,-0.01031901,0.02341291,0.17727831,-120.42162,4.8219561)"
id="g1482-7-0-1-0-3-9-30"
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-30"
inkscape:connector-curvature="0"
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-92"
inkscape:connector-curvature="0"
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-9.4967399"
inkscape:transform-center-x="8.5781695"
transform="matrix(0.14802083,-0.01373847,0.02762472,0.23113485,-28.459321,-19.144522)"
id="g1482-7-0-1-0-3-9-30-1"
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-30-7"
inkscape:connector-curvature="0"
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-92-8"
inkscape:connector-curvature="0"
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.809244"
inkscape:transform-center-x="7.6868942"
transform="matrix(0.14864558,0.00184471,0.00325758,0.23275703,-60.677659,34.831459)"
id="g1482-7-0-1-0-3-9-30-1-5"
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-30-7-7"
inkscape:connector-curvature="0"
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-92-8-4"
inkscape:connector-curvature="0"
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-15.268065"
inkscape:transform-center-x="8.1567788"
transform="matrix(0.15773201,0.00219881,0.00345671,0.27743633,9.3848168,28.436309)"
id="g1482-7-0-1-0-3-9-30-1-5-1"
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-30-7-7-8"
inkscape:connector-curvature="0"
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-92-8-4-5"
inkscape:connector-curvature="0"
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
inkscape:transform-center-y="-12.050575"
inkscape:transform-center-x="5.8943743"
transform="matrix(0.12860857,0.01269544,-0.01714755,0.26093817,-105.70158,73.233281)"
id="g1482-7-0-1-0-3-9-30-1-5-1-9"
style="display:inline;opacity:0.76999996;fill:#dddddd;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.84692,219.75174 c 4.50048,-1.11094 9.19951,-2.10794 14.02668,-3.04881 -4.04495,-1.70563 -8.31549,-3.34171 -12.81219,-4.90893 -0.40756,2.77943 -0.49113,4.95944 -1.21449,7.95774 z"
id="path1478-7-9-0-19-0-7-30-7-7-8-7"
inkscape:connector-curvature="0"
style="stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1116.0146,210.41161 C -697.33657,154.97511 -34.287636,168.429 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-92-8-4-5-5"
inkscape:connector-curvature="0"
style="fill:none;stroke:#797979;stroke-width:3.88686943;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
id="g4634">
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0"
d="m -245.66532,60.582812 c -0.20623,-0.743297 -0.45759,-1.476376 -0.73421,-2.20746 0.78298,-0.04563 1.57322,-0.05035 2.37096,-0.01435 -0.57333,0.774331 -1.04673,1.358054 -1.63675,2.221737 z" />
<path
inkscape:connector-curvature="0"
id="path34554"
d="m -248.93651,55.788901 c -0.009,3.128551 15.04046,8.764666 15.04046,9.024277 0,0.501348 -1.05562,-0.22421 -1.50405,0 -0.63416,0.317081 -1.18696,0.869884 -1.50403,1.504045 -0.19404,0.388067 5.71378,6.428999 6.39219,6.768208 0.44841,0.22421 1.05563,-0.22421 1.50405,0 1.08576,0.542882 1.92233,0.961165 3.00809,1.504046 1.20567,0.602836 2.93562,-0.896955 3.76011,0.752022 0.65175,1.303507 -0.65175,3.584644 0,4.88815 0.59718,1.194356 1.52748,4.465263 0.75202,6.016185 -0.4472,0.894409 -7.2127,5.486408 -8.27225,6.016185 -0.44841,0.22421 -1.0869,-0.278098 -1.50405,0 -0.23318,0.15546 -0.11583,0.647933 -0.37601,0.752023 -1.37912,0.551651 -3.00011,0.496034 -4.51213,1.504046 -1.79841,1.198928 -3.37227,4.53582 -2.25607,6.768202 0.49282,0.98565 7.4803,3.80004 6.7682,4.51214 -0.43496,0.43496 -4.7304,0.10911 -6.01618,0.75202 -2.16129,1.08064 -3.88983,3.44895 -6.01618,4.51215 -1.47681,0.73839 -3.07431,1.16113 -4.51214,1.88005 -0.60162,0.30081 -1.65446,-0.30082 -2.25608,0 -1.05343,0.52671 -2.1683,2.16831 -3.00809,3.00809"
style="fill:none;stroke:#686868;stroke-width:0.98233014;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path34715"
d="m -215.65949,78.349592 c -0.37523,-1.057623 0.49894,-2.762254 0,-3.760115 -0.49213,-0.984273 -0.18151,-1.491068 -0.37601,-1.880058 -0.15854,-0.317081 -0.55537,-0.457056 -0.75202,-0.752023 -0.10433,-0.15643 0,-0.376012 0,-0.564016 0,-0.911024 -0.39858,-2.962947 0,-3.760116 0.0792,-0.15854 0.29675,-0.217471 0.37601,-0.376012 0.0605,-0.120993 0.0605,-4.767154 0,-4.88815 -0.27143,-0.542882 -0.48058,-0.961163 -0.75202,-1.504045 -0.0656,-0.131112 -0.0656,-5.133051 0,-5.264161 0.36187,-0.723733 1.63913,-1.383585 2.25607,-1.692053 0.50135,-0.250674 1.3787,0.250676 1.88006,0 1.86842,-0.93421 1.5198,-3.767991 2.25607,-4.136126 0.75203,-0.376012 2.06806,0.376011 2.82008,0 0.56079,-0.280393 0.93046,-0.841241 1.50405,-1.128035 0.40129,-0.200646 0.35073,0.200647 0.75203,0 0.76937,-0.38469 1.4775,-0.738751 2.25606,-1.128035 0.40107,-0.200538 1.10297,0.200541 1.50404,0 1.59838,-0.799183 -0.84633,0.04716 0.75203,-0.752022 0.40108,-0.200539 1.10297,0.200538 1.50405,0 0.53404,-0.267022 1.26571,-0.752023 1.88006,-0.752023"
style="fill:none;stroke:#5e5e5e;stroke-width:2.45582509;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csssscscccccssssc"
inkscape:connector-curvature="0"
id="path34558"
d="m -189.71468,48.644682 c 0.99985,-0.499931 0.52182,-2.183161 1.88006,-1.504047 3.27657,1.638292 0.81082,9.429693 4.51213,11.280346 1.04885,0.524423 2.71127,0.227601 3.76011,0.752024 2.08415,1.042074 5.73727,4.706334 6.76822,6.768208 0.52758,1.055174 0.20173,2.659558 0.75202,3.760115 1.76442,3.528855 5.26415,2.05771 5.26415,6.768206 0,0.463858 0.19705,1.485984 0,1.880058 -0.31709,0.634161 -1.18697,0.869884 -1.50404,1.504045 -1.54161,3.083228 -0.91566,0.457827 -3.0081,1.504047 -0.31708,0.158541 -0.43493,0.593483 -0.75201,0.752023 -1.80486,0.902428 -4.96335,-0.902428 -6.76822,0 -1.5699,0.784955 0.0659,2.223138 -1.50403,3.008093 -1.96349,0.981741 -4.87674,-0.193716 -6.76822,0.752022 -1.87241,0.936203 -3.74972,0.752023 -6.01618,0.752023 -2.62871,0 -5.80116,4.807655 -9.40029,3.008094 -4.15049,-2.075247 -5.33202,-3.760117 -10.52832,-3.760117"
style="fill:none;stroke:#686868;stroke-width:0.98233014;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<circle
transform="rotate(0.45488626)"
style="fill:#cccccc;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-85-6"
r="7.5100269"
cy="55.171391"
cx="-254.21507" />
<circle
transform="rotate(7.671971)"
style="fill:#cccccc;stroke:#686868;stroke-width:1.84186876;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-6-6"
r="7.5100265"
cy="110.01332"
cx="-204.34842" />
<circle
transform="rotate(1.4039147)"
cx="-170.23466"
cy="88.749741"
r="7.5100265"
id="circle3383-4-5-1"
style="fill:#cccccc;stroke:#686868;stroke-width:1.84186876;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1" />
<circle
transform="rotate(0.45488626)"
style="fill:#cccccc;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-85-2-8"
r="7.5100269"
cy="114.86238"
cx="-251.05589" />
<circle
transform="rotate(7.671971)"
style="fill:#cccccc;stroke:#686868;stroke-width:1.84186876;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-6-3-4"
r="7.5100265"
cy="71.916229"
cx="-186.29997" />
<path
inkscape:transform-center-y="-1.9160934"
inkscape:transform-center-x="0.76841608"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2"
d="m -225.44434,91.616904 c 0.1145,-0.762834 0.27504,-1.520997 0.46088,-2.280246 -0.78272,0.04967 -1.5677,0.140947 -2.35517,0.273574 0.66308,0.699025 1.20382,1.22098 1.89429,2.006672 z" />
<path
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-6"
d="m -234.39162,71.596119 c -0.0209,-0.771097 -0.0882,-1.543152 -0.18033,-2.319363 0.77088,0.144489 1.53896,0.330456 2.30447,0.557808 -0.74313,0.613251 -1.3433,1.065612 -2.12414,1.761555 z" />
<path
inkscape:transform-center-y="0.18588919"
inkscape:transform-center-x="1.9818214"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5"
d="m -236.55334,101.05295 c -0.71951,-0.27805 -1.42445,-0.6 -2.12493,-0.94689 -0.12211,0.77474 -0.20418,1.56074 -0.24642,2.35815 0.82675,-0.49475 1.45405,-0.90868 2.37135,-1.41126 z" />
<path
inkscape:transform-center-y="1.672256"
inkscape:transform-center-x="-1.9992934"
style="fill:#4d4d4d;fill-opacity:1;stroke:#5e5e5e;stroke-width:2.84491563;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8"
d="m -217.65349,63.508915 c 0.46063,0.815993 0.88338,1.66875 1.28793,2.545128 0.55159,-0.745839 1.07505,-1.532625 1.57077,-2.360283 -0.99823,-0.06151 -1.77783,-0.06672 -2.85868,-0.184841 z" />
<path
inkscape:transform-center-y="-2.1740279"
inkscape:transform-center-x="0.07334762"
style="fill:#4d4d4d;fill-opacity:1;stroke:#5e5e5e;stroke-width:2.84822178;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-7"
d="m -209.5384,52.338167 c 0.38615,-0.765822 0.82579,-1.513599 1.29604,-2.255267 -0.95206,-0.17193 -1.92039,-0.300932 -2.90518,-0.387375 0.56439,0.92147 1.04033,1.622599 1.60914,2.642634 z" />
<path
inkscape:transform-center-y="0.59527576"
inkscape:transform-center-x="1.8660021"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9"
d="m -171.44199,65.515709 c -0.75424,-0.161719 -1.50095,-0.369087 -2.24718,-0.601776 6.1e-4,0.784305 0.0432,1.573438 0.1266,2.367609 0.73889,-0.618342 1.29348,-1.125552 2.12058,-1.765833 z" />
<path
inkscape:transform-center-y="-1.6182153"
inkscape:transform-center-x="-1.6714377"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6"
d="m -203.93304,90.609224 c 0.73781,-0.225058 1.49124,-0.406556 2.25654,-0.565693 -0.38182,-0.685096 -0.80216,-1.354302 -1.26086,-2.007949 -0.34544,0.899426 -0.58378,1.612181 -0.99568,2.573636 z" />
<path
inkscape:transform-center-y="0.4002108"
inkscape:transform-center-x="1.9283489"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-4"
d="m -182.88225,56.601802 c -0.7405,-0.216104 -1.47018,-0.477187 -2.19751,-0.763491 -0.0562,0.782299 -0.0713,1.57242 -0.0459,2.37055 0.78187,-0.56301 1.37186,-1.028578 2.24329,-1.607057 z" />
<path
inkscape:transform-center-y="-1.976682"
inkscape:transform-center-x="-0.96882999"
style="fill:#4d4d4d;fill-opacity:1;stroke:#686868;stroke-width:1.84186888;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-4-2-6-0-2-5-8-9-6-8"
d="m -190.95755,88.282896 c 0.54751,-0.543379 1.12916,-1.055511 1.73173,-1.553408 -0.6574,-0.427731 -1.34148,-0.823423 -2.0522,-1.18745 0.11419,0.956684 0.23605,1.698294 0.32047,2.740849 z" />
</g>
<circle
style="fill:#cccccc;stroke:#686868;stroke-width:2.99999976;stroke-miterlimit:9;stroke-dasharray:none;stroke-opacity:1"
id="circle3383-4-5-1-0-8"
r="12.232183"
cy="128.423"
cx="27.142624"
transform="rotate(1.403915)" />
<g
aria-label="M"
transform="matrix(0.46498174,-0.00154413,0.00147753,0.44493101,-194.21655,31.749049)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-15">
<path
inkscape:connector-curvature="0"
d="m -137.89372,38.839388 h 4.84735 l 3.36347,7.904156 3.38326,-7.904156 h 4.83746 v 14.769594 h -3.60089 V 42.806305 l -3.40304,7.963512 h -2.41379 l -3.40304,-7.963512 v 10.802677 h -3.61078 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7570" />
</g>
<g
aria-label="D"
transform="matrix(0.46498174,-0.00154413,0.00147753,0.44493101,-191.03523,50.425158)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-0-8">
<path
inkscape:connector-curvature="0"
d="m -135.51178,133.83532 v 9.01213 h 1.36517 q 2.33464,0 3.56132,-1.15743 1.23657,-1.15743 1.23657,-3.36347 0,-2.19615 -1.22668,-3.34369 -1.22667,-1.14754 -3.57121,-1.14754 z m -3.80864,-2.87873 h 4.01638 q 3.36347,0 5.00564,0.48473 1.65205,0.47485 2.82927,1.62238 1.03872,0.99915 1.54324,2.30497 0.50452,1.30582 0.50452,2.95788 0,1.67184 -0.50452,2.98755 -0.50452,1.30582 -1.54324,2.30497 -1.18711,1.14753 -2.84906,1.63227 -1.66195,0.47484 -4.98585,0.47484 h -4.01638 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7564" />
</g>
<g
aria-label="O"
transform="matrix(0.46472248,-0.01560092,0.01492817,0.44468296,-173.52442,29.088693)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-6-3">
<path
inkscape:connector-curvature="0"
d="m -46.060014,32.667759 q -1.74109,0 -2.700669,1.286033 -0.959578,1.286033 -0.959578,3.620677 0,2.324752 0.959578,3.610785 0.959579,1.286033 2.700669,1.286033 1.750984,0 2.710562,-1.286033 0.959579,-1.286033 0.959579,-3.610785 0,-2.334644 -0.959579,-3.620677 -0.959578,-1.286033 -2.710562,-1.286033 z m 0,-2.760025 q 3.561323,0 5.579405,2.037868 2.018083,2.037867 2.018083,5.628867 0,3.581107 -2.018083,5.618975 -2.018082,2.037868 -5.579405,2.037868 -3.551429,0 -5.579404,-2.037868 -2.018083,-2.037868 -2.018083,-5.618975 0,-3.591 2.018083,-5.628867 2.027975,-2.037868 5.579404,-2.037868 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7561" />
</g>
<g
aria-label="F"
transform="matrix(0.46498206,0.0014391,-0.00137704,0.44493133,-174.30754,44.855861)"
style="font-style:normal;font-weight:normal;font-size:20.25999451px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.50650066"
id="text2753-1-2">
<path
inkscape:connector-curvature="0"
d="M -0.67049691,82.246758 H 9.607889 v 2.878739 H 3.1381446 v 2.750136 h 6.0839339 v 2.878739 H 3.1381446 v 6.262001 h -3.80864151 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.50650066"
id="path7558" />
</g>
<g
aria-label="G"
transform="matrix(0.46472248,-0.01560092,0.01492817,0.44468296,-179.0805,39.304917)"
style="font-style:normal;font-weight:normal;font-size:20.2599659px;line-height:1.25;font-family:sans-serif;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.5065006"
id="text2753-2-9">
<path
inkscape:connector-curvature="0"
d="m -77.288247,97.913332 q -1.424529,0.692479 -2.957876,1.038719 -1.533347,0.346239 -3.16562,0.346239 -3.689925,0 -5.846504,-2.057653 -2.156578,-2.067545 -2.156578,-5.599189 0,-3.571215 2.196149,-5.618975 2.196148,-2.04776 6.014677,-2.04776 1.473992,0 2.81938,0.276991 1.355281,0.276992 2.552281,0.821083 v 3.056801 q -1.23657,-0.702372 -2.463248,-1.048611 -1.216785,-0.34624 -2.443463,-0.34624 -2.275289,0 -3.511859,1.276141 -1.226678,1.266247 -1.226678,3.63057 0,2.344537 1.187108,3.620677 1.187107,1.276141 3.373363,1.276141 0.593554,0 1.098075,-0.06925 0.514413,-0.07914 0.920008,-0.237422 v -2.868843 h -2.324752 V 90.81047 h 5.935537 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#4d4d4d;stroke-width:0.5065006"
id="path7567" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,12 +1,92 @@
Natural transformations and advanced concepts
===
We will now continue
In this chapter, we will introduce the central concept of category theory. It is the concept of a morphism between functors or of *natural transformation*. Understanding natural transformations will enable us to define category equality and some other advanced concepts.
What are natural transformations
Natural transformations are really is the heart of category theory - As a matter of fact, category theory was invented with the purpose of studying natural transformations. The importance of natural transformations is not obvious at first, and so before introducing them I like to talk about the body of knowledge that this heart maintains (I am good with methaphors... in principle.)
Objects are overrated
===
Functors don't form a category, but they actually do.
>The world is the collection of facts, not of things.
Ludwig Wittgenstein
Objects are all around us, both in mathematics and in real life - virtually everything that we see or imagine can be viewed as an object. Because of this, we might be inclined to think that the key to understanding the world is to understand what objects are. And this indeed is an idea shared between many people, you might even say that this is what set theory does.
However there is another way to look at things. Because what is an object, when viewed by itself? Can we study just one object in isolation? And is there anything left to study about it, once it is detached from its environment? When we think hard about everyday objects we realize that each of them has a specific *function* or functions without which, it would be just a piece of junk, and in many ways it won't be an object at all. And this is even more so for mathematical objects which you cannot even recycle when they are no longer useful - functions, or relations are key.
So instead of thinking about objects which just happen to have some morphisms between them, we might take the opposite view and say that objects are only interesting as domains and codomains of morphisms.
This view is best expressed by category theory and specifically by the notion of universal properties (limits) - as we said in the previous chapter universal properties define an object *up to a unique isomorphism*. This means that if there are two or more objects that are isomorphic to one another and have exactly the same morphisms to all other objects in the category, then these objects are for all intends and purposes equivalent.
Equivalence of categories
===
Are you ready to hear about natural transformations? Actually it is my opinion that you are not, so I would like to continue with something else. Let's ask ourselves the same question that we were poundering at the beginning of the previous chapter - what does it mean for two categories to be equal.
This question is even more interesting in the context of the category of categories. We said that categorical isomorphism is somewhat too rigid to accurately capture the concept of equality. And the paragraph above can serve as a good summary as to why this is the case: in isomorphic categories, isomorphic *objects* aren't considered equal, for example the following two categories are not isomorphic.
![Simple non-isomorphic categories](simple_non_isomorphic_categories.svg)
Being isomorphic means that two structures are completely the same. A map is isomorphic to an area only it represents the area completely, like if there is a arrow for each route and a point for each intersection.
![Isomorphic categories](isomorphic_categories.svg)
But that won't always be what we want. In category theory we specify most concepts by treating isomorphis objects as equal - this is valid for all definitions that are based on universal properties. Or to extend the map example, suppose, that there are two intersections that are positioned in such a way that for every road that goes to and from one of them, there is an identical road to the other one (maybe the one of these intercection was meant to replace the other one but it wasn't closed.) Then suppose that you have a map which displays these two intercections as one and the same intercection.
![Non-isomorphic categories](non_isomorphic_categories.svg)
Would say that the map is complete? The answer comes down to what would you want to use the map for: if you want the map to accurately represents all the *places* that exist in the area, then it is not accurate. But if you want the map for practical purposes, if you only need it to represents the *routes* in the area, then there is no reason to show two roads that are the same in terms of their input and output. So in other words, when we focus on objects, we would define two categories as equal if there exists an isomorphism between them. But when we focus on morphisms, then it is more apt to define equality with a concept that would only require for the objects to be equal *up to a unique isomorphism*. This concept is called **natural equivalence**.
Consider these two non-isomorphic, but equivalent categories.
![Equivalent categories](equivalent_categories.svg)
There exist only one functor that connects the left one to the right one.
![Equivalent categories, functor F](equivalent_categories_f.svg)
There are two functors that connect the right one to the left one, which are equivalent, let's choose one of them.
![Equivalent categories, functor G](equivalent_categories_g.svg)
And then if we compose them in one direction we get the same object that we started with, same as if the categories were isomorphic.
![Equivalent categories, functor G F](equivalent_categories_g_f.svg)
And if we compose it in the other direction, we don't get the same object (which means that the categories are not isomorphic) but we do get an object that that is isomorphic to the one we started with. This makes the categories equivalent.
![Equivalent categories, functor G F](equivalent_categories_g_f.svg)
The definition betwen the two concepts is small but crucial: categories are isomorphic if there exist an *invertable* functor between them. They are equivalent if they are connected by two *isomorphic functors.
**Task:** Verify that the categories in the previous example are also equivalent.
We already understand when to categories are equivalent, but to have a proper formal definition of the concept we have to know about functor natural isomorphism, which is a kind of a natural transformation.
Natural transformations
===
The progression that we made so far (morphisms -> functors -> natural transformations) might lure you into thinking that natural transformations are similar to morphisms and functors, they are actually not similar i.e. they are not "recursive". This is due to the fact that both normal morphisms and functors are morphisms between objects (or *1-morphisms*), while natural transformations are morphisms between morphisms (known as *2-morphisms*.)
But enough talking, let's draw some diagrams. We know that natural transformations are morphisms between functors, so let's draw two functors (I am omitting the arrows between objects for brevity.)
![Two functors](natural_functors_objects.svg)
Note that the functors are similar have the same signature - both their input and output categories are the same - this is a necessary (but not sufficient) condition for them to be connected by a natural transformation.
A functor is comprised of two components - object-morphism and function-morphism. So any kind of morphism of functors would have to take those two components into account.
Let's first compose a morphism between the morphisms between objects. Because input of the object morphisms of the two functors is the same, we only need to specify a morphism in the output category.
![Two functors](natural_transformation.svg)
![Two functors](natural_functors.svg)
Interlude: Naturality explained
---
@ -15,7 +95,6 @@ Isomorphism is not hard to construct - given two sets, containing three objects
But most of these isomorphisms, are just random. In our studies we are only interested in structures that *make sense*. In category theory the abstract notion of making sense is captured by the naturality condition.
Limits and colimits
====
@ -44,7 +123,6 @@ A Hom-functor can always be converted to any set-valued functor (Yoneda lemma).
So a functor is representable when we can convert its values to values of the Hom functor
Yoneda Lemma
===

View File

@ -0,0 +1,297 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="natural_functors.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="1.8505343"
inkscape:cx="192.83213"
inkscape:cy="107.6897"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-197.932,-16.661939)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="105.86644"
cx="154.74379"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,118.70837,-36.288284)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="124.43816"
cx="417.07675"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
inkscape:transform-center-y="-10.036943"
inkscape:transform-center-x="6.7535973"
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,363.47185,5.5667318)"
id="g1482-7-0-1-0-3-9-5"
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z"
id="path1478-7-9-0-19-0-7-4"
inkscape:connector-curvature="0"
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1232.2555,291.62723 C -962.25551,98.088749 -120.39956,54.028486 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05"
inkscape:connector-curvature="0"
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-8"
transform="matrix(0.17071844,-0.00307217,0.02371191,0.24262732,383.02711,5.8353788)"
inkscape:transform-center-x="6.4482757"
inkscape:transform-center-y="-10.411233">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-50"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-96"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#445500;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-5-7-2-1-4"
transform="matrix(0.17286333,-0.01124732,0.03606305,0.23769178,379.46153,64.563011)"
inkscape:transform-center-x="6.7949115"
inkscape:transform-center-y="-10.589917">
<path
style="stroke:#445500;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-4"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g16122"
transform="translate(-77.934021,65.192757)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="22.396215"
height="22.763296"
x="463.26157"
y="78.332275" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="22.396215"
height="22.763296"
x="459.48129"
y="71.800171" />
</g>
<g
id="g16118"
transform="translate(-52.332684,9.7868769)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="22.396215"
height="22.763296"
x="439.1593"
y="73.547592" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="22.396215"
height="22.763296"
x="435.14658"
y="69.540932" />
</g>
<g
id="g16130"
transform="translate(-63.031749,-36.448374)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="22.396215"
height="22.763296"
x="504.07468"
y="125.23235" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="22.396215"
height="22.763296"
x="500.11612"
y="120.98653" />
</g>
<g
id="g16134"
transform="translate(-21.991414,-13.556902)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="22.396215"
height="22.763296"
x="460.30893"
y="155.98396" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="22.396215"
height="22.763296"
x="457.04639"
y="151.73814" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3"
transform="matrix(0.20316841,-0.0122248,-0.02062295,0.23998804,119.29319,40.530061)"
inkscape:transform-center-x="5.5658533"
inkscape:transform-center-y="-10.420102">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<ellipse
cx="162.57948"
cy="130.56163"
id="circle15605-2"
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
rx="12.175604"
ry="11.748343" />
<g
id="g16153"
transform="translate(0.38210951,0.38210951)">
<ellipse
cx="179.0439"
cy="125.67704"
id="circle15601-9-4-6-2"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.98724272,-0.15922253,0.16239023,0.98672662,0,0)"
rx="12.399649"
ry="11.964526" />
<ellipse
ry="11.748343"
rx="12.175604"
transform="matrix(-0.07418163,-0.99724475,0.99700153,-0.07738188,0,0)"
style="fill:#fce600;fill-opacity:1;stroke:#ffcc00;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
cy="186.48853"
cx="-106.90229" />
</g>
<g
id="g16126"
transform="rotate(-4.8858794,498.88678,555.47609)"
inkscape:transform-center-x="-0.55451459"
inkscape:transform-center-y="2.8463494">
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
cy="76.348717"
cx="173.35909" />
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
cy="73.518608"
cx="172.10857" />
</g>
<g
inkscape:transform-center-y="10.036938"
inkscape:transform-center-x="6.7535973"
transform="matrix(0.17360723,0.01209243,0.02906643,-0.23495793,365.00029,164.47407)"
id="g1482-7-0-1-0-3-9-5-8"
style="display:inline;opacity:0.95400002;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z"
id="path1478-7-9-0-19-0-7-4-5"
inkscape:connector-curvature="0"
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="cc"
d="M -1198.2179,259.22696 C -928.21785,65.688474 -120.39956,54.028486 303.99415,216.71262"
id="path1480-1-3-1-5-7-5-05-0"
inkscape:connector-curvature="0"
style="fill:none;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,332 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="natural_functors_objects.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="5.2341015"
inkscape:cx="297.33908"
inkscape:cy="112.27502"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-197.932,-16.661939)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="105.86644"
cx="154.74379"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,118.70837,-36.288284)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="124.43816"
cx="417.07675"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g16319">
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,334.83147,-5.2409574)"
id="g16254"
style="fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1179.189,294.35837 C -917.46382,100.39401 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,391.54258,-4.5884323)"
style="display:inline;opacity:0.91011604;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g16254-4">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-6"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-2"
d="M -1176.1744,302.64497 C -914.44921,108.68061 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-8"
transform="matrix(0.17071844,-0.00307217,0.02371191,0.24262732,383.02711,5.8353788)"
inkscape:transform-center-x="6.4482757"
inkscape:transform-center-y="-10.411233">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-50"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-96"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#445500;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-5-7-2-1-4"
transform="matrix(0.17286333,-0.01124732,0.03606305,0.23769178,379.46153,64.563011)"
inkscape:transform-center-x="6.7949115"
inkscape:transform-center-y="-10.589917">
<path
style="stroke:#445500;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-4"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g16122"
transform="translate(-77.934021,65.192757)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="22.396215"
height="22.763296"
x="463.26157"
y="78.332275" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="22.396215"
height="22.763296"
x="459.48129"
y="71.800171" />
</g>
<g
id="g16118"
transform="translate(-52.332684,9.7868769)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="22.396215"
height="22.763296"
x="439.1593"
y="73.547592" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="22.396215"
height="22.763296"
x="435.14658"
y="69.540932" />
</g>
<g
id="g16130"
transform="translate(-63.031749,-36.448374)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="22.396215"
height="22.763296"
x="504.07468"
y="125.23235" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="22.396215"
height="22.763296"
x="500.11612"
y="120.98653" />
</g>
<g
id="g16134"
transform="translate(-21.991414,-13.556902)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="22.396215"
height="22.763296"
x="460.30893"
y="155.98396" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="22.396215"
height="22.763296"
x="457.04639"
y="151.73814" />
</g>
<ellipse
cx="162.57948"
cy="130.56163"
id="circle15605-2"
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
rx="12.175604"
ry="11.748343" />
<g
transform="matrix(1,0,0,-1,-1.4637866,172.23262)"
id="g16319-7">
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,338.65257,-3.3304098)"
id="g16254-2"
style="fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-4"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-0"
d="M -1179.189,294.35837 C -917.46382,100.39401 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,391.54258,-4.5884323)"
style="display:inline;opacity:0.91011604;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g16254-4-6">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-6-2"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-2-9"
d="M -1176.1744,302.64497 C -914.44921,108.68061 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3"
transform="matrix(0.20316841,-0.0122248,-0.02062295,0.23998804,124.45167,34.798418)"
inkscape:transform-center-x="5.5658533"
inkscape:transform-center-y="-10.420102">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g16153"
transform="translate(5.540588,-5.3495332)">
<ellipse
cx="179.0439"
cy="125.67704"
id="circle15601-9-4-6-2"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.98724272,-0.15922253,0.16239023,0.98672662,0,0)"
rx="12.399649"
ry="11.964526" />
<ellipse
ry="11.748343"
rx="12.175604"
transform="matrix(-0.07418163,-0.99724475,0.99700153,-0.07738188,0,0)"
style="fill:#fce600;fill-opacity:1;stroke:#ffcc00;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
cy="186.48853"
cx="-106.90229" />
</g>
<g
id="g16126"
transform="rotate(-4.8858794,434.29287,492.15443)"
inkscape:transform-center-x="-0.55451459"
inkscape:transform-center-y="2.8463494">
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
cy="76.348717"
cx="173.35909" />
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
cy="73.518608"
cx="172.10857" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,372 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 595.3 189.5"
version="1.1"
id="svg15613"
sodipodi:docname="natural_transformation.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata15619">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs15617" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="2560"
inkscape:window-height="1376"
id="namedview15615"
showgrid="false"
inkscape:zoom="3.1026363"
inkscape:cx="287.20657"
inkscape:cy="112.27502"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg15613" />
<g
id="g42748"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,-197.932,-16.661939)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4"
cy="105.22964"
cx="163.52002"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g42748-8"
transform="matrix(1.3397762,-0.10017139,0.10080481,1.2924446,118.70837,-36.288284)" />
<ellipse
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.26216698;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-4-1"
cy="124.43816"
cx="417.07675"
transform="matrix(0.99721659,-0.07455915,0.07775931,0.99697216,0,0)"
rx="94.738716"
ry="91.414192" />
<g
id="g16319">
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,334.83147,-5.2409574)"
id="g16254"
style="fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05"
d="M -1179.189,294.35837 C -917.46382,100.39401 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,391.54258,-4.5884323)"
style="display:inline;opacity:0.91011604;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g16254-4">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-6"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-2"
d="M -1176.1744,302.64497 C -914.44921,108.68061 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-8"
transform="matrix(0.17071844,-0.00307217,0.02371191,0.24262732,383.02711,5.8353788)"
inkscape:transform-center-x="6.4482757"
inkscape:transform-center-y="-10.411233">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-50"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-96"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
style="display:inline;fill:#dddddd;stroke:#445500;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3-5-7-2-1-4"
transform="matrix(0.17286333,-0.01124732,0.03606305,0.23769178,379.46153,64.563011)"
inkscape:transform-center-x="6.7949115"
inkscape:transform-center-y="-10.589917">
<path
style="stroke:#445500;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-0-2-2-0-4"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#445500;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-4-7-6-6-4"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g16122"
transform="translate(-77.934021,65.192757)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7"
width="22.396215"
height="22.763296"
x="463.26157"
y="78.332275" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#4d4d4d;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8"
width="22.396215"
height="22.763296"
x="459.48129"
y="71.800171" />
</g>
<g
id="g16118"
transform="translate(-52.332684,9.7868769)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-5"
width="22.396215"
height="22.763296"
x="439.1593"
y="73.547592" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#e6e7e8;fill-opacity:1;stroke:#bbbcbe;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-7"
width="22.396215"
height="22.763296"
x="435.14658"
y="69.540932" />
</g>
<g
id="g16130"
transform="translate(-63.031749,-36.448374)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4"
width="22.396215"
height="22.763296"
x="504.07468"
y="125.23235" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#fce600;fill-opacity:1;stroke:#ffdd00;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1"
width="22.396215"
height="22.763296"
x="500.11612"
y="120.98653" />
</g>
<g
id="g16134"
transform="translate(-21.991414,-13.556902)">
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.23000004;fill:#3a3a3a;fill-opacity:1;stroke:#cccccc;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-1-7-4-8"
width="22.396215"
height="22.763296"
x="460.30893"
y="155.98396" />
<rect
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:1;fill:#39bced;fill-opacity:1;stroke:#008dd2;stroke-width:1.81155717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect24164-8-1-5"
width="22.396215"
height="22.763296"
x="457.04639"
y="151.73814" />
</g>
<ellipse
cx="162.57948"
cy="130.56163"
id="circle15605-2"
style="opacity:0.28400005;fill:#dedede;fill-opacity:1;stroke:none;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
rx="12.175604"
ry="11.748343" />
<g
transform="matrix(1,0,0,-1,-1.4637866,172.23262)"
id="g16319-7">
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,338.65257,-3.3304098)"
id="g16254-2"
style="fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-4"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-0"
d="M -1179.189,294.35837 C -917.46382,100.39401 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
<g
transform="matrix(0.17360723,-0.01209243,0.02906643,0.23495793,391.54258,-4.5884323)"
style="display:inline;opacity:0.91011604;fill:#dddddd;stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="g16254-4-6">
<path
style="stroke:#626262;stroke-width:11.10534096;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0-7-4-6-2"
d="m 298.19814,219.10584 c 4.66998,-0.36993 9.49727,-0.59529 14.4313,-0.74453 -3.38888,-2.33752 -7.01599,-4.64281 -10.88167,-6.91665 -1.22376,2.67854 -1.95604,4.81755 -3.54963,7.66118 z" />
<path
style="fill:none;stroke:#626262;stroke-width:10.90854645;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7-5-05-2-9"
d="M -1176.1744,302.64497 C -914.44921,108.68061 -104.67048,54.838004 303.99415,216.71262"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
style="display:inline;fill:#dddddd;stroke:#483737;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-1-0-3"
transform="matrix(0.20316841,-0.0122248,-0.02062295,0.23998804,124.45167,34.798418)"
inkscape:transform-center-x="5.5658533"
inkscape:transform-center-y="-10.420102">
<path
style="stroke:#483737;stroke-width:35.52600098"
inkscape:connector-curvature="0"
id="path1478-7-9-0-19-0"
transform="matrix(0.4768,-0.02932,0.03214,0.42867,147.58,197.367)"
d="m 315.1,101.79 c 10.682,-4.135 21.77,-7.738 33.127,-11.074 -8.518,-8.139 -17.577,-16.01 -27.178,-23.616 -2.04,12.119 -3.103,21.663 -5.949,34.69 z" />
<path
style="fill:none;stroke:#483737;stroke-width:10.64900017;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-1-5-7"
d="M 127.38575,78.377847 C 176.95734,66.301724 277.68509,72.076365 317.498,86.173"
sodipodi:nodetypes="cc"
transform="matrix(0.89574,0,0,0.81736,18.384,154.236)" />
</g>
<g
id="g16153"
transform="translate(5.540588,-5.3495332)">
<ellipse
cx="179.0439"
cy="125.67704"
id="circle15601-9-4-6-2"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.98724272,-0.15922253,0.16239023,0.98672662,0,0)"
rx="12.399649"
ry="11.964526" />
<ellipse
ry="11.748343"
rx="12.175604"
transform="matrix(-0.07418163,-0.99724475,0.99700153,-0.07738188,0,0)"
style="fill:#fce600;fill-opacity:1;stroke:#ffcc00;stroke-width:1.67664468;stroke-miterlimit:10;stroke-opacity:1"
id="circle15605"
cy="186.48853"
cx="-106.90229" />
</g>
<g
id="g16126"
transform="rotate(-4.8858794,434.29287,492.15443)"
inkscape:transform-center-x="-0.55451459"
inkscape:transform-center-y="2.8463494">
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="opacity:0.203;fill:#030303;fill-opacity:1;stroke:none;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4-6"
cy="76.348717"
cx="173.35909" />
<ellipse
ry="11.964526"
rx="12.399649"
transform="matrix(0.99721659,-0.07455915,0.0777593,0.99697216,0,0)"
style="fill:#e6e7e8;stroke:#bbbcbe;stroke-width:2.21405125;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="circle15601-9-4"
cy="73.518608"
cx="172.10857" />
</g>
<g
style="display:inline;fill:#ff8080;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-4"
transform="matrix(5.1353759e-4,0.11248981,-0.15700975,0.00866299,446.34841,56.083512)">
<path
style="fill:#ff8080;stroke-width:36.89830017"
inkscape:connector-curvature="0"
id="path1478-7-9-9"
d="m 300.11147,308.89056 c 11.45734,-5.05862 23.31627,-9.60141 35.44547,-13.89029 -8.57402,-7.71646 -17.73121,-15.11655 -27.47244,-22.20324 -2.74504,12.60642 -4.33418,22.49306 -7.97303,36.09353 z" />
<path
style="fill:#ff8080;stroke-width:14.27690029;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7"
d="m 130.20492,307.63343 c 55.06889,-12.45337 125.33622,-12.58656 169.06769,-4.24803" />
<path
style="display:inline;fill:#ff8080;stroke:#838383;stroke-width:14.27690029;stroke-miterlimit:10;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-9"
d="M 130.14688,279.92717 C 185.21577,267.47379 255.4831,267.3406 299.21457,275.67914" />
</g>
<g
style="display:inline;fill:#ff8080;stroke:#838383;stroke-width:6.38899994;stroke-miterlimit:10"
id="g1482-7-0-4-9"
transform="matrix(5.1353759e-4,0.11248981,-0.15700975,0.00866299,504.87511,57.063937)">
<path
style="fill:#ff8080;stroke-width:36.89830017"
inkscape:connector-curvature="0"
id="path1478-7-9-9-0"
d="m 300.11147,308.89056 c 11.45734,-5.05862 23.31627,-9.60141 35.44547,-13.89029 -8.57402,-7.71646 -17.73121,-15.11655 -27.47244,-22.20324 -2.74504,12.60642 -4.33418,22.49306 -7.97303,36.09353 z" />
<path
style="fill:#ff8080;stroke-width:14.27690029;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-8"
d="m 130.20492,307.63343 c 55.06889,-12.45337 125.33622,-12.58656 169.06769,-4.24803" />
<path
style="display:inline;fill:#ff8080;stroke:#838383;stroke-width:14.27690029;stroke-miterlimit:10;paint-order:markers fill stroke"
inkscape:connector-curvature="0"
id="path1480-1-3-7-9-1"
d="M 130.14688,279.92717 C 185.21577,267.47379 255.4831,267.3406 299.21457,275.67914" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB