Redirect page.

This commit is contained in:
Dan Funk 2024-04-01 15:48:17 -04:00
parent de7498f878
commit 95bd20e57f
289 changed files with 43647 additions and 1 deletions

View File

@ -15,11 +15,19 @@ Sign up below to get access to our demo site. There you can view diagrams and r
### Sign Up
Please fill out the required fields to continue.
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
region: "na1",
portalId: "42562038",
formId: "782e9936-9679-4511-a915-be6ce4170323"
formId: "782e9936-9679-4511-a915-be6ce4170323",
inlineMessage: 'Your submit message here',
onFormSubmit: function($form){
setTimeout( function() {
var formData = $form.serialize();
window.location = "/pages/enterprise_thankyou?" + formData;
}, 250 ); // Redirects to url with query string data from form fields after 250 milliseconds.
}
});
</script>

View File

@ -0,0 +1,16 @@
---
title: "Thank you"
subtitle: "Redirecting to our Demo Site ..."
date: 2023-01-02T10:05:00-05:00
draft: false
no_comments: true
---
Thank you for your interest {{< url_param firstname />}} {{< url_param lastname />}}!
Our demo site is hosted on SpiffDemo.org. You will be redirected to the site in 10 seconds where
you can create a new account through popular single sign on systems such as Google, Linked In or GitHub.
We will keep you posted on updates and changes to our Demo site via email to {{< url_param email />}}.
{{< redirect "https://spiffdemo.org" 10000 />}}

View File

@ -0,0 +1,14 @@
<span id="{{ index .Params 0 }}_param" />
{{ if strings.ContainsNonSpace .Inner }}
Inner is not empty
{{ end }}
<script>
(function () {
window.setTimeout(function(){
// Move to a new location or you can do something else
window.location.href = "{{ index .Params 0 }}";
}, {{ index .Params 1 }});
})()
</script>

View File

@ -0,0 +1,18 @@
<span id="{{ index .Params 0 }}_param" />
{{ if strings.ContainsNonSpace .Inner }}
Inner is not empty
{{ end }}
<script>
(function () {
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const param_name = {{ index .Params 0 }}
const value = urlParams.get(param_name)
const element = document.getElementById(param_name + "_param");
const node = document.createTextNode(value);
element.appendChild(node);
console.log(queryString, urlParams, param_name, value, element)
})()
</script>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,398 @@
@media (max-width: 767px) {
.title.is-1 {
font-size: 2.5rem;
}
.title.is-2 {
font-size: 2rem;
}
.hero-foot img.partner-logo {
height: 40px;
}
}
.content img {
display: block;
margin: auto;
}
.content img.inline {
display: inline;
margin: 0;
}
.content p, .content ol, .content ul {
font-size: 1.3em;
}
.content figure figcaption {
font-size: .875em;
font-style: normal;
color: #6c757d;
}
.item {
display: flex;
margin-bottom: 40px;
}
.brief {
color: #6c757d;
margin: 0.5rem 0;
overflow: hidden;
text-overflow: ellipsis;
max-height: 200px;
display: -webkit-box;
max-width: 600px;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.item-thumbnail {
min-width: 150px;
padding-right: 30px;
}
.meta {
font-size: .875rem;
color: #adb5bd;
}
div.admonition {
margin: 20px 0px;
padding: 10px 20px;
background-color: #e5f7fb;
border-left: 5px solid #6c757d;;
}
div.admonition tt.xref, div.admonition a tt {
border-bottom: 1px solid #fafafa;
}
dd div.admonition {
margin-left: -60px;
padding-left: 60px;
}
div.admonition p.admonition-title {
font-weight: 500;
font-size: 1.2em;
margin: 0 0 10px 0;
padding: 0;
line-height: 1;
}
div.admonition p.last {
margin-bottom: 0;
}
.section-support {
background-repeat: no-repeat;
background-position: 0% 0%;
background-size: 100%;
background-repeat: no-repeat;
background-image: linear-gradient(
to top,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
), url("/images/features/photos/support.jpg");
}
.section-support.enterprise {
background-image: linear-gradient(
to top,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.8)
), url("/images/features/photos/enterprise.jpg");
}
.section-support .content {
max-width: 800px;
background-color: #ffffff;
border: 1px solid black;
border-radius: 8px;
padding: 15px;
}
.section-features {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-image: linear-gradient(
to top,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
), url("/images/features/photos/coffee.jpg");
}
.section-features .title, .section-features .subtitle, .section-support .title, .section-support .subtitle,
.section-features p, .section-features h2, .section-support p, .section-support h2 {
color: #fff;
text-shadow: 0 1px 0 black;
}
section.section-support .content p {
color: #4a4a4a;
text-shadow: none;
}
.section-features .subtitle.is-muted, .section-support .subtitle.is-muted {
color: #ddd;
}
.tiles {
display:flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-content: flex-start;
align-items: stretch;
}
.tiles div.feature-card {
margin-bottom: 25px;
height: 250px;
width: 360px;
border-radius: 8px;
}
.tiles div.feature-card.highlighted {
box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
}
.tiles.compare div.feature-card {
width: 500px;
min-height: 400px;
height: auto;
}
.tiles .feature-card .card-action {
margin-top: 10px;
position: absolute;
bottom: 10px;
right: 10px;
}
.tiles .feature-card .card-icon img {
height: 75px;
}
.feature-icon {
color: #F26419;
}
.feature-icon:hover, .tiles .highlighted .feature-icon {
color: #126D82;
}
.tiles .feature-card .card-text {
padding: 0 20px;
}
#section2 figure .image img {
max-width: 200px;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
.tooltip .tooltiptext {
visibility: hidden;
max-width: 360px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
top: 150%;
left: 50%;
margin-left: -160px;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent black transparent;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}
.cookie_settings a {
display: block;
padding-top: 20px;
color: #98a9c3;
}
.cookie_settings a:hover {
color: #fff;
}
.comparison-table {
table-layout: fixed;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
font-size: 0.75rem;
background-color: #ddd;
}
.comparison-table th,
.comparison-table td {
padding: 0.5rem;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.comparison-table th:first-child {
border: 0;
}
.comparison-table th:nth-child(2n) {
box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.15);
width: 30%;
}
.pricing-table th:nth-child(3n) {
background: #fff;
width: 30%;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
}
.comparison-table.pricing-table th:nth-child(2n) {
box-shadow: none;
width: 30%;
}
.comparison-table th:nth-child(3n) {
width: 30%;
}
.comparison-table th:nth-child(2n),
.comparison-table td:nth-child(2n) {
position: relative;
background: #fff;
}
.pricing-table th:first-child,
.pricing-table td:nth-child(1n) {
background: #fff;
}
.pricing-table th:nth-child(3n), .pricing-table th:nth-child(3n) h4,
.pricing-table td:nth-child(3n) {
position: relative;
background: #F26419;
color: #fff;
text-shadow: 0 1px 0 black;
}
.pricing-table th:nth-child(2n), .pricing-table th:nth-child(2n) h4,
.pricing-table td:nth-child(2n) {
color: #4a4a4a;
}
.pricing-table td.x .feature-icon {
color: darkred;
}
.pricing-table td.check .feature-icon {
color: white;
}
.pricing-table td svg {
max-height: 40px;
}
.pricing-table td:nth-child(2n) svg {
color: #4a4a4a;
}
.pricing-table td:nth-child(3n) svg {
color: white;
}
.comparison-table td:not(:first-child), .comparison-table th:not(:first-child) {
text-align: center;
}
.pricing-table td.check .feature-icon {
color: white;
animation: check 5s ease alternate infinite;
}
@keyframes check {
10% {
transform: scale(1.0);
}
100% {
transform: scale(1.1);
}
}
.comparison-table th a {
font-size:2vw;
}
.support_table table {
display: block;
max-width: -moz-fit-content;
max-width: fit-content;
margin: 0 auto;
overflow-x: auto;
white-space: nowrap;
}
@media (min-width: 48rem) {
.comparison-table {
font-size: 0.875rem;
}
.comparison-table th,
.comparison-table td {
padding: 1rem;
}
}
@media (min-width: 60rem) {
.comparison-table th:nth-child(2n), .comparison-table th:nth-child(3n) {
width: 20%;
}
.comparison-table {
font-size: 1rem;
}
.comparison-table th,
.comparison-table td {
padding: 1.5rem 2rem;
}
.pricing-table td svg {
max-height: 40px;
}
}

1
public/css/icons.css Normal file

File diff suppressed because one or more lines are too long

6
public/css/owl.carousel.min.css vendored Normal file
View File

@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

6
public/css/owl.theme.default.min.css vendored Normal file
View File

@ -0,0 +1,6 @@
/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

7233
public/css/style.css Normal file

File diff suppressed because it is too large Load Diff

139
public/css/style.css.map Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,175 @@
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td>
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td width="150" style="vertical-align: middle;"><span style="margin-right: 20px; display: block;" class="template3__ImageContainer-sc-vj949k-0 jeScQV"><img
src="https://www.spiffworkflow.org/email_signature/alex_circle.jpeg" role="presentation"
style="max-width: 130px;" width="130" class="image__StyledImage-sc-hupvqm-0 gYgOut"></span>
</td>
<td style="vertical-align: middle;"><h2 color="#000000"
style="margin: 0px; font-size: 16px; color: rgb(0, 0, 0); font-weight: 600;"
class="name__NameContainer-sc-1m457h3-0 jxbGUj">
<span>Alex</span><span>&nbsp;</span><span>Herron</span></h2>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>Chief Product Officer</span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://www.sartography.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>Sartography.com</span>
</a>
</p>
<p></p>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>BPMN Architect</span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://SpiffWorkflow.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>SpiffWorkflow.org</span>
</a>
</td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td color="#126d82" direction="vertical" width="1" height="auto"
style="width: 1px; border-bottom: medium; border-left: 1px solid rgb(18, 109, 130);"
class="color-divider__Divider-sc-1h38qjv-0 llIisW"></td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png"
color="#126d82" alt="mobilePhone" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px; color: rgb(0, 0, 0);"><a href="tel:540-271-2904"
color="#000000"
style="text-decoration: none; color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>540-271-2904</span></a>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png"
color="#126d82" alt="emailAddress" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><a href="mailto:Alex@Sartography.com" color="#000000"
style="text-decoration: none; color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>Alex@Sartography.com</span></a>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/address-icon-2x.png"
color="#126d82" alt="address" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><span color="#000000"
style="font-size: 12px; color: rgb(0, 0, 0);"
class="contact-info__Address-sc-mmkjr6-3 jxDmGK"><span>Staunton, Va USA</span></span>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
</td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="text-align: center; vertical-align: top;">
<table cellpadding="0" cellspacing="0"
style="display: inline-block; font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="text-align: right;">
<td><a href="https://twitter.com/SpiffWorkflow" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/twitter-icon-2x.png"
alt="twitter" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
<td><a href="https://www.linkedin.com/in/alex-herron-b715783/" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/linkedin-icon-2x.png"
alt="linkedin" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,152 @@
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td>
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td width="150" style="vertical-align: middle;"><span style="margin-right: 20px; display: block;"
class="template3__ImageContainer-sc-vj949k-0 jeScQV"><img
src="https://www.spiffworkflow.org/email_signature/spiffworkflow.png" role="presentation"
style="max-width: 130px;" width="130" class="image__StyledImage-sc-hupvqm-0 gYgOut"></span>
</td>
<td style="vertical-align: middle;"><h2 color="#000000"
style="margin: 0px; font-size: 16px; color: rgb(0, 0, 0); font-weight: 600;"
class="name__NameContainer-sc-1m457h3-0 jxbGUj">
<span>Your Name</span></h2>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>Excellency of Whatever</span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://www.sartography.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>Sartography.com</span>
</a>
</p>
<p></p>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>Core Contributor</span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://SpiffWorkflow.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>SpiffWorkflow.org</span>
</a>
</td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td color="#126d82" direction="vertical" width="1" height="auto"
style="width: 1px; border-bottom: medium; border-left: 1px solid rgb(18, 109, 130);"
class="color-divider__Divider-sc-1h38qjv-0 llIisW"></td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png"
color="#126d82" alt="emailAddress" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><a href="mailto:NAME@Sartography.com" color="#000000"
style="text-decoration: none; color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>NAME@Sartography.com</span></a>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/address-icon-2x.png"
color="#126d82" alt="address" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><span color="#000000"
style="font-size: 12px; color: rgb(0, 0, 0);"
class="contact-info__Address-sc-mmkjr6-3 jxDmGK"><span>Staunton, Va USA</span></span>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
</td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="text-align: center; vertical-align: top;">
<table cellpadding="0" cellspacing="0"
style="display: inline-block; font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="text-align: right;">
<td><a href="https://twitter.com/SpiffWorkflow" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/twitter-icon-2x.png"
alt="twitter" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
<td><a href="https://www.linkedin.com/in/funkdan/" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/linkedin-icon-2x.png"
alt="linkedin" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,209 @@
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td>
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td width="150" style="vertical-align: middle;"><span style="margin-right: 20px; display: block;"
class="template3__ImageContainer-sc-vj949k-0 jeScQV"><img
src="https://www.spiffworkflow.org/images/dan_circle.jpeg" role="presentation"
style="max-width: 130px;" width="130" class="image__StyledImage-sc-hupvqm-0 gYgOut"></span>
</td>
<td style="vertical-align: middle;"><h2 color="#000000"
style="margin: 0px; font-size: 16px; color: rgb(0, 0, 0); font-weight: 600;"
class="name__NameContainer-sc-1m457h3-0 jxbGUj">
<span>Dan</span><span>&nbsp;</span><span>Funk</span></h2>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>Founder </span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://www.sartography.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>Sartography.com</span>
</a>
</p>
<p></p>
<p color="#000000" font-size="small"
style="margin: 0px; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="job-title__Container-sc-1hmtp73-0 ifJNJc"><span>Core Contributor</span></p>
<p color="#000000" font-size="small"
style="margin: 0px; font-weight: 700; color: rgb(0, 0, 0); font-size: 12px; line-height: 20px;"
class="company-details__CompanyContainer-sc-j5pyy8-0 VnOLK">
<a href="https://SpiffWorkflow.org"
color="#000000"
style="color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>SpiffWorkflow.org</span>
</a>
</td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td color="#126d82" direction="vertical" width="1" height="auto"
style="width: 1px; border-bottom: medium; border-left: 1px solid rgb(18, 109, 130);"
class="color-divider__Divider-sc-1h38qjv-0 llIisW"></td>
<td width="30">
<div style="width: 30px;"></div>
</td>
<td style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/phone-icon-2x.png"
color="#126d82" alt="mobilePhone" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px; color: rgb(0, 0, 0);"><a href="tel:540-457-0024"
color="#000000"
style="text-decoration: none; color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>540-457-0024</span></a>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/email-icon-2x.png"
color="#126d82" alt="emailAddress" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><a href="mailto:Dan@Sartography.com" color="#000000"
style="text-decoration: none; color: rgb(0, 0, 0); font-size: 12px;"
class="contact-info__ExternalLink-sc-mmkjr6-2 ibLXSU"><span>Dan@Sartography.com</span></a>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;">
<table cellpadding="0" cellspacing="0" style="font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: bottom;"><span color="#126d82" width="11"
style="display: inline-block; background-color: rgb(18, 109, 130);"
class="contact-info__IconWrapper-sc-mmkjr6-1 bglVXe"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/address-icon-2x.png"
color="#126d82" alt="address" width="13"
style="display: block; background-color: rgb(18, 109, 130);"
class="contact-info__ContactLabelIcon-sc-mmkjr6-0 cnkwri"></span>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0px;"><span color="#000000"
style="font-size: 12px; color: rgb(0, 0, 0);"
class="contact-info__Address-sc-mmkjr6-3 jxDmGK"><span>Staunton, Va USA</span></span>
</td>
</tr>
<tr style="vertical-align: middle;" height="25">
<td width="30" style="vertical-align: middle;" colspan="2">
<img
src="https://www.spiffworkflow.org/email_signature/spiffworkflow2.png" role="presentation"
style="max-width: 150px;" width="150">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" style="width: 100%; font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td height="10"></td>
</tr>
<tr>
<td color="#126d82" direction="horizontal" width="auto" height="1"
style="width: 100%; border-bottom: 1px solid rgb(18, 109, 130); border-left: medium; display: block;"
class="color-divider__Divider-sc-1h38qjv-0 llIisW"></td>
</tr>
<tr>
<td height="10"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<table cellpadding="0" cellspacing="0" style="width: 100%; font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr>
<td style="vertical-align: top;"></td>
<td style="text-align: right; vertical-align: top;">
<table cellpadding="0" cellspacing="0"
style="display: inline-block; font-size: small; font-family: Arial;"
class="table__StyledTable-sc-1avdl6r-0 kAbRZI">
<tbody>
<tr style="text-align: right;">
<td><a href="https://twitter.com/SpiffWorkflow" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/twitter-icon-2x.png"
alt="twitter" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
<td><a href="https://www.linkedin.com/in/funkdan/" color="#f26419"
style="display: inline-block; padding: 0px; background-color: rgb(242, 100, 25);"
class="social-links__LinkAnchor-sc-py8uhj-2 hBVWAh"><img
src="https://cdn2.hubspot.net/hubfs/53/tools/email-signature-generator/icons/linkedin-icon-2x.png"
alt="linkedin" color="#f26419" width="24"
style="background-color: rgb(242, 100, 25); max-width: 135px; display: block;"
class="social-links__LinkImage-sc-py8uhj-1 hSTSwA"></a></td>
<td width="5">
<div></div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

BIN
public/fonts/fontello.woff Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
public/images/danfunk.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

BIN
public/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
public/images/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 31 2 C 15.007813 2 2 15.007813 2 31 C 2 46.992188 15.007813 60 31 60 C 46.992188 60 60 46.992188 60 31 C 60 15.007813 46.992188 2 31 2 Z M 31 4 C 45.886719 4 58 16.113281 58 31 C 58 45.886719 45.886719 58 31 58 C 16.113281 58 4 45.886719 4 31 C 4 16.113281 16.113281 4 31 4 Z M 30.5625 8.007813 C 24.667969 8.125 18.964844 10.511719 14.738281 14.734375 C 10.394531 19.082031 8 24.855469 8 31 C 8 37.144531 10.390625 42.917969 14.734375 47.265625 C 14.929688 47.457031 15.1875 47.558594 15.441406 47.558594 C 15.699219 47.558594 15.957031 47.457031 16.152344 47.265625 C 16.542969 46.871094 16.542969 46.242188 16.152344 45.847656 C 15.691406 45.390625 15.265625 44.914063 14.855469 44.421875 C 14.867188 44.402344 14.890625 44.386719 14.902344 44.363281 C 17.144531 39.75 21.109375 36.570313 25.667969 35.535156 C 27.160156 37.019531 28.996094 38 31 38 C 33.003906 38 34.84375 37.019531 36.332031 35.535156 C 40.894531 36.566406 44.859375 39.75 47.101563 44.363281 C 47.113281 44.386719 47.128906 44.40625 47.140625 44.425781 C 46.730469 44.914063 46.304688 45.394531 45.847656 45.847656 C 45.457031 46.242188 45.457031 46.871094 45.847656 47.265625 C 46.042969 47.457031 46.300781 47.558594 46.558594 47.558594 C 46.8125 47.558594 47.070313 47.457031 47.265625 47.265625 C 51.609375 42.917969 54 37.144531 54 31 C 54 24.855469 51.609375 19.082031 47.265625 14.734375 C 46.601563 14.074219 45.898438 13.449219 45.171875 12.878906 C 44.734375 12.539063 44.105469 12.617188 43.765625 13.050781 C 43.425781 13.484375 43.5 14.113281 43.9375 14.453125 C 44.601563 14.976563 45.246094 15.546875 45.847656 16.152344 C 49.816406 20.117188 52 25.390625 52 31 C 52 35.214844 50.765625 39.238281 48.46875 42.660156 C 46.066406 38.253906 42.207031 35.121094 37.75 33.828125 C 39.144531 31.785156 40 29.285156 40 27 L 40 25 C 40 20.039063 35.960938 16 31 16 C 26.039063 16 22 20.039063 22 25 L 22 27 C 22 29.285156 22.851563 31.785156 24.25 33.828125 C 19.792969 35.121094 15.929688 38.253906 13.53125 42.660156 C 11.234375 39.238281 10 35.214844 10 31 C 10 25.390625 12.183594 20.117188 16.152344 16.152344 C 20.898438 11.402344 27.695313 9.203125 34.339844 10.265625 C 34.890625 10.355469 35.398438 9.980469 35.484375 9.4375 C 35.570313 8.890625 35.199219 8.375 34.65625 8.289063 C 33.289063 8.070313 31.921875 7.976563 30.5625 8.007813 Z M 38.660156 9.386719 C 38.269531 9.402344 37.910156 9.648438 37.765625 10.035156 C 37.570313 10.550781 37.832031 11.128906 38.351563 11.324219 C 39.0625 11.589844 39.769531 11.898438 40.449219 12.238281 C 40.59375 12.3125 40.75 12.347656 40.902344 12.347656 C 41.265625 12.347656 41.617188 12.148438 41.796875 11.796875 C 42.042969 11.304688 41.84375 10.703125 41.351563 10.453125 C 40.605469 10.078125 39.832031 9.742188 39.050781 9.449219 C 38.925781 9.402344 38.789063 9.382813 38.660156 9.386719 Z M 31 18 C 34.859375 18 38 21.140625 38 25 L 38 27 C 38 30.96875 34.703125 36 31 36 C 27.296875 36 24 30.96875 24 27 L 24 25 C 24 21.140625 27.140625 18 31 18 Z M 21.375 47.394531 C 20.984375 47.347656 20.589844 47.527344 20.386719 47.886719 L 19.386719 49.621094 C 19.109375 50.097656 19.273438 50.707031 19.75 50.984375 C 19.90625 51.074219 20.078125 51.121094 20.25 51.121094 C 20.59375 51.121094 20.929688 50.941406 21.113281 50.621094 L 22.113281 48.886719 C 22.390625 48.410156 22.230469 47.796875 21.75 47.519531 C 21.628906 47.453125 21.503906 47.410156 21.375 47.394531 Z M 40.625 47.394531 C 40.496094 47.410156 40.371094 47.453125 40.25 47.519531 C 39.769531 47.796875 39.609375 48.410156 39.886719 48.890625 L 40.886719 50.621094 C 41.070313 50.941406 41.40625 51.121094 41.75 51.121094 C 41.921875 51.121094 42.09375 51.078125 42.25 50.984375 C 42.730469 50.710938 42.890625 50.097656 42.613281 49.621094 L 41.613281 47.890625 C 41.40625 47.53125 41.011719 47.347656 40.625 47.394531 Z M 25.8125 49.34375 C 25.429688 49.398438 25.09375 49.675781 24.984375 50.078125 L 24.46875 52.011719 C 24.324219 52.542969 24.644531 53.089844 25.175781 53.234375 C 25.261719 53.257813 25.351563 53.269531 25.4375 53.269531 C 25.878906 53.269531 26.28125 52.972656 26.402344 52.527344 L 26.917969 50.59375 C 27.0625 50.0625 26.746094 49.511719 26.214844 49.371094 C 26.078125 49.332031 25.941406 49.324219 25.8125 49.34375 Z M 36.1875 49.34375 C 36.058594 49.324219 35.921875 49.332031 35.785156 49.371094 C 35.253906 49.511719 34.9375 50.0625 35.078125 50.59375 L 35.597656 52.527344 C 35.71875 52.972656 36.121094 53.269531 36.5625 53.269531 C 36.648438 53.269531 36.734375 53.257813 36.824219 53.234375 C 37.355469 53.089844 37.671875 52.542969 37.53125 52.011719 L 37.015625 50.078125 C 36.90625 49.675781 36.570313 49.398438 36.1875 49.34375 Z M 31 50 C 30.449219 50 30 50.449219 30 51 L 30 53 C 30 53.550781 30.449219 54 31 54 C 31.550781 54 32 53.550781 32 53 L 32 51 C 32 50.449219 31.550781 50 31 50 Z"/></svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 35 0 C 34.605469 0 34.25 0.230469 34.089844 0.585938 L 24.578125 21.515625 C 23.667969 20.585938 22.402344 20 21 20 L 4 20 C 2.898438 20 2 20.898438 2 22 L 2 58 C 2 59.101563 2.898438 60 4 60 L 21 60 C 22.898438 60 24.53125 58.925781 25.378906 57.363281 C 25.410156 57.375 25.433594 57.398438 25.464844 57.40625 C 26.5625 57.703125 28.375 57.859375 29.78125 57.859375 C 30.101563 57.859375 30.40625 57.851563 30.675781 57.835938 L 56.679688 56.210938 C 59.101563 56.058594 61 54.039063 61 51.609375 C 61 50.378906 60.519531 49.21875 59.648438 48.347656 C 59.5625 48.265625 59.480469 48.183594 59.390625 48.109375 C 60.960938 47.25 62 45.582031 62 43.71875 L 62 43 C 62 41.570313 61.394531 40.273438 60.425781 39.363281 C 62.542969 38.628906 64 36.640625 64 34.328125 C 64 32.441406 63.011719 30.78125 61.53125 29.832031 C 63.03125 28.882813 64 27.210938 64 25.332031 L 64 25 C 64 22.242188 61.757813 20 59 20 L 39.28125 20 L 42.105469 8.695313 C 42.632813 6.59375 42.167969 4.402344 40.832031 2.691406 C 39.496094 0.980469 37.484375 0 35.3125 0 Z M 35.640625 2.007813 C 37.066406 2.101563 38.371094 2.785156 39.257813 3.921875 C 40.210938 5.144531 40.542969 6.707031 40.167969 8.210938 L 37.21875 20 L 35 20 C 34.445313 20 34 20.445313 34 21 C 34 21.554688 34.445313 22 35 22 L 59 22 C 60.652344 22 62 23.347656 62 25 L 62 25.332031 C 62 26.96875 60.828125 28.347656 59.21875 28.613281 L 56.835938 29.015625 C 56.324219 29.101563 55.960938 29.5625 56.003906 30.082031 C 56.046875 30.601563 56.480469 31 57 31 L 58.671875 31 C 60.507813 31 62 32.496094 62 34.332031 C 62 35.96875 60.828125 37.347656 59.21875 37.613281 L 56.835938 38.015625 C 56.324219 38.101563 55.960938 38.5625 56.003906 39.082031 C 56.046875 39.601563 56.480469 40 57 40 C 58.652344 40 60 41.347656 60 43 L 60 43.71875 C 60 45.148438 58.984375 46.382813 57.589844 46.660156 L 55.804688 47.019531 C 55.300781 47.121094 54.953125 47.585938 55.003906 48.097656 C 55.058594 48.609375 55.484375 49 56 49 L 56.390625 49 C 57.085938 49 57.742188 49.269531 58.234375 49.765625 C 58.730469 50.257813 59 50.914063 59 51.609375 C 59 52.984375 57.925781 54.128906 56.554688 54.214844 L 30.550781 55.839844 C 29.3125 55.917969 27.097656 55.777344 25.988281 55.476563 C 25.976563 55.472656 25.964844 55.476563 25.953125 55.472656 C 25.96875 55.316406 26 55.164063 26 55 L 26 25 C 26 24.515625 25.910156 24.058594 25.78125 23.613281 C 25.832031 23.554688 25.875 23.488281 25.910156 23.414063 Z M 4 22 L 21 22 C 22.652344 22 24 23.347656 24 25 L 24 55 C 24 56.652344 22.652344 58 21 58 L 4 58 Z M 7 24 C 6.445313 24 6 24.445313 6 25 C 6 25.554688 6.445313 26 7 26 L 9 26 C 9.554688 26 10 25.554688 10 25 C 10 24.445313 9.554688 24 9 24 Z M 7 29 C 6.445313 29 6 29.445313 6 30 C 6 30.554688 6.445313 31 7 31 L 9 31 C 9.554688 31 10 30.554688 10 30 C 10 29.445313 9.554688 29 9 29 Z M 7 34 C 6.445313 34 6 34.445313 6 35 C 6 35.554688 6.445313 36 7 36 L 9 36 C 9.554688 36 10 35.554688 10 35 C 10 34.445313 9.554688 34 9 34 Z M 7 39 C 6.445313 39 6 39.445313 6 40 C 6 40.554688 6.445313 41 7 41 L 9 41 C 9.554688 41 10 40.554688 10 40 C 10 39.445313 9.554688 39 9 39 Z M 7 44 C 6.445313 44 6 44.445313 6 45 C 6 45.554688 6.445313 46 7 46 L 9 46 C 9.554688 46 10 45.554688 10 45 C 10 44.445313 9.554688 44 9 44 Z M 17 48 C 15.347656 48 14 49.347656 14 51 C 14 52.652344 15.347656 54 17 54 C 18.652344 54 20 52.652344 20 51 C 20 49.347656 18.652344 48 17 48 Z M 7 49 C 6.445313 49 6 49.445313 6 50 C 6 50.554688 6.445313 51 7 51 L 9 51 C 9.554688 51 10 50.554688 10 50 C 10 49.445313 9.554688 49 9 49 Z M 17 49.667969 C 17.734375 49.667969 18.332031 50.265625 18.332031 51 C 18.332031 51.734375 17.734375 52.332031 17 52.332031 C 16.265625 52.332031 15.667969 51.734375 15.667969 51 C 15.667969 50.265625 16.265625 49.667969 17 49.667969 Z M 7 54 C 6.445313 54 6 54.445313 6 55 C 6 55.554688 6.445313 56 7 56 L 9 56 C 9.554688 56 10 55.554688 10 55 C 10 54.445313 9.554688 54 9 54 Z"/></svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"> <path fill="currentColor" d="M 13 0 C 9.141 0 6 3.141 6 7 L 6 57 C 6 60.859 9.141 64 13 64 L 35 64 C 38.859 64 42 60.859 42 57 L 42 7 C 42 3.141 38.859 0 35 0 L 13 0 z M 13 2 L 35 2 C 37.757 2 40 4.243 40 7 L 40 8 L 8 8 L 8 7 C 8 4.243 10.243 2 13 2 z M 19 4 C 18.447 4 18 4.447 18 5 C 18 5.553 18.447 6 19 6 L 21 6 C 21.553 6 22 5.553 22 5 C 22 4.447 21.553 4 21 4 L 19 4 z M 25 4 C 24.447 4 24 4.447 24 5 C 24 5.553 24.447 6 25 6 L 29 6 C 29.553 6 30 5.553 30 5 C 30 4.447 29.553 4 29 4 L 25 4 z M 8 10 L 40 10 L 40 52 L 8 52 L 8 10 z M 51.876953 12.283203 C 51.621453 12.269953 51.359297 12.354062 51.154297 12.539062 C 50.744297 12.908062 50.710078 13.540172 51.080078 13.951172 C 55.542078 18.912172 58 25.322 58 32 C 58 38.68 55.542078 45.089781 51.080078 50.050781 C 50.710078 50.461781 50.744297 51.093891 51.154297 51.462891 C 51.345297 51.634891 51.584266 51.720703 51.822266 51.720703 C 52.095266 51.720703 52.369406 51.608672 52.566406 51.388672 C 57.360406 46.059672 60 39.175 60 32 C 60 24.827 57.359406 17.942281 52.566406 12.613281 C 52.381406 12.407281 52.132453 12.296453 51.876953 12.283203 z M 48.589844 17.623047 C 48.336219 17.589422 48.071063 17.651813 47.851562 17.820312 C 47.413562 18.156312 47.330969 18.784656 47.667969 19.222656 C 50.502969 22.914656 52 27.332 52 32 C 52 36.669 50.501062 41.087297 47.664062 44.779297 C 47.327062 45.217297 47.409656 45.844641 47.847656 46.181641 C 48.029656 46.321641 48.243078 46.388672 48.455078 46.388672 C 48.756078 46.388672 49.053 46.254047 49.25 45.998047 C 52.357 41.954047 54 37.113 54 32 C 54 26.888 52.358906 22.047906 49.253906 18.003906 C 49.085906 17.785906 48.843469 17.656672 48.589844 17.623047 z M 44.839844 23.167969 C 44.710828 23.182578 44.583391 23.223016 44.462891 23.291016 C 43.981891 23.562016 43.809078 24.171344 44.080078 24.652344 C 45.335078 26.884344 46 29.424 46 32 C 46 34.498 45.373453 36.969437 44.189453 39.148438 C 43.925453 39.633437 44.106797 40.242859 44.591797 40.505859 C 44.743797 40.587859 44.906359 40.626953 45.068359 40.626953 C 45.422359 40.626953 45.765266 40.436516 45.947266 40.103516 C 47.289266 37.632516 48 34.83 48 32 C 48 29.081 47.246266 26.200875 45.822266 23.671875 C 45.619016 23.311125 45.226891 23.124141 44.839844 23.167969 z M 12 30.056641 C 11.447 30.056641 11 30.503641 11 31.056641 L 11 33.056641 C 11 33.608641 11.447 34.056641 12 34.056641 C 12.553 34.056641 13 33.609641 13 33.056641 L 13 31.056641 C 13 30.503641 12.553 30.056641 12 30.056641 z M 17 30.056641 C 16.447 30.056641 16 30.503641 16 31.056641 L 16 33.056641 C 16 33.608641 16.447 34.056641 17 34.056641 C 17.553 34.056641 18 33.609641 18 33.056641 L 18 31.056641 C 18 30.503641 17.553 30.056641 17 30.056641 z M 22 30.056641 C 21.447 30.056641 21 30.503641 21 31.056641 L 21 33.056641 C 21 33.608641 21.447 34.056641 22 34.056641 C 22.553 34.056641 23 33.609641 23 33.056641 L 23 31.056641 C 23 30.503641 22.553 30.056641 22 30.056641 z M 27 30.056641 C 26.447 30.056641 26 30.503641 26 31.056641 L 26 33.056641 C 26 33.608641 26.447 34.056641 27 34.056641 C 27.553 34.056641 28 33.609641 28 33.056641 L 28 31.056641 C 28 30.503641 27.553 30.056641 27 30.056641 z M 32 30.056641 C 31.447 30.056641 31 30.503641 31 31.056641 L 31 33.056641 C 31 33.608641 31.447 34.056641 32 34.056641 C 32.553 34.056641 33 33.609641 33 33.056641 L 33 31.056641 C 33 30.503641 32.553 30.056641 32 30.056641 z M 37 30.056641 C 36.447 30.056641 36 30.503641 36 31.056641 L 36 33.056641 C 36 33.608641 36.447 34.056641 37 34.056641 C 37.553 34.056641 38 33.609641 38 33.056641 L 38 31.056641 C 38 30.503641 37.553 30.056641 37 30.056641 z M 8 54 L 40 54 L 40 57 C 40 59.757 37.757 62 35 62 L 13 62 C 10.243 62 8 59.757 8 57 L 8 54 z M 24 56 A 2 2 0 0 0 22 58 A 2 2 0 0 0 24 60 A 2 2 0 0 0 26 58 A 2 2 0 0 0 24 56 z"/></svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 31 2 C 15.007813 2 2 15.011719 2 31 C 2 46.988281 15.007813 60 31 60 C 46.992188 60 60 46.988281 60 31 C 60 15.011719 46.992188 2 31 2 Z M 31 4 C 45.886719 4 58 16.113281 58 31 C 58 45.886719 45.886719 58 31 58 C 16.113281 58 4 45.886719 4 31 C 4 16.113281 16.113281 4 31 4 Z M 30.5625 8.007813 C 24.671875 8.125 18.964844 10.507813 14.738281 14.734375 C 5.769531 23.703125 5.769531 38.292969 14.738281 47.261719 C 14.933594 47.457031 15.1875 47.554688 15.445313 47.554688 C 15.703125 47.554688 15.957031 47.457031 16.152344 47.261719 C 16.542969 46.871094 16.542969 46.238281 16.152344 45.847656 C 7.964844 37.660156 7.960938 24.339844 16.152344 16.152344 C 20.898438 11.402344 27.699219 9.203125 34.339844 10.265625 C 34.882813 10.355469 35.394531 9.980469 35.484375 9.4375 C 35.570313 8.890625 35.199219 8.375 34.65625 8.289063 C 33.289063 8.070313 31.921875 7.976563 30.5625 8.007813 Z M 38.65625 9.382813 C 38.269531 9.402344 37.910156 9.648438 37.765625 10.035156 C 37.570313 10.554688 37.832031 11.128906 38.351563 11.324219 C 39.0625 11.585938 39.765625 11.894531 40.449219 12.238281 C 40.59375 12.3125 40.75 12.347656 40.902344 12.347656 C 41.265625 12.347656 41.617188 12.148438 41.796875 11.796875 C 42.042969 11.308594 41.84375 10.703125 41.351563 10.453125 C 40.601563 10.078125 39.828125 9.738281 39.050781 9.445313 C 38.921875 9.398438 38.789063 9.378906 38.65625 9.382813 Z M 44.433594 12.675781 C 44.179688 12.707031 43.9375 12.835938 43.765625 13.050781 C 43.425781 13.488281 43.5 14.113281 43.9375 14.453125 C 44.601563 14.976563 45.246094 15.546875 45.847656 16.152344 C 54.039063 24.339844 54.039063 37.660156 45.847656 45.847656 C 45.457031 46.242188 45.457031 46.871094 45.847656 47.265625 C 46.042969 47.457031 46.300781 47.558594 46.558594 47.558594 C 46.8125 47.558594 47.070313 47.457031 47.265625 47.265625 C 56.230469 38.296875 56.230469 23.703125 47.265625 14.734375 C 46.605469 14.078125 45.898438 13.449219 45.171875 12.878906 C 44.953125 12.710938 44.6875 12.644531 44.433594 12.675781 Z M 31 18 C 30.449219 18 30 18.445313 30 19 L 30 30 L 19 30 C 18.449219 30 18 30.445313 18 31 C 18 31.554688 18.449219 32 19 32 L 30 32 L 30 43 C 30 43.554688 30.449219 44 31 44 C 31.550781 44 32 43.554688 32 43 L 32 32 L 43 32 C 43.550781 32 44 31.554688 44 31 C 44 30.445313 43.550781 30 43 30 L 32 30 L 32 19 C 32 18.445313 31.550781 18 31 18 Z M 21.375 47.394531 C 20.984375 47.347656 20.589844 47.527344 20.386719 47.886719 L 19.386719 49.617188 C 19.109375 50.097656 19.269531 50.707031 19.75 50.984375 C 19.90625 51.074219 20.078125 51.117188 20.25 51.117188 C 20.59375 51.117188 20.929688 50.9375 21.113281 50.617188 L 22.113281 48.886719 C 22.390625 48.410156 22.230469 47.796875 21.75 47.519531 C 21.628906 47.453125 21.5 47.410156 21.375 47.394531 Z M 40.625 47.394531 C 40.5 47.410156 40.371094 47.453125 40.25 47.519531 C 39.769531 47.796875 39.609375 48.410156 39.886719 48.890625 L 40.886719 50.621094 C 41.070313 50.941406 41.40625 51.121094 41.75 51.121094 C 41.921875 51.121094 42.09375 51.074219 42.25 50.984375 C 42.730469 50.707031 42.890625 50.097656 42.613281 49.621094 L 41.613281 47.890625 C 41.410156 47.53125 41.015625 47.347656 40.625 47.394531 Z M 36.1875 49.34375 C 36.058594 49.324219 35.921875 49.332031 35.785156 49.371094 C 35.253906 49.511719 34.9375 50.0625 35.078125 50.59375 L 35.597656 52.527344 C 35.71875 52.972656 36.121094 53.265625 36.5625 53.265625 C 36.648438 53.265625 36.734375 53.257813 36.824219 53.234375 C 37.355469 53.089844 37.671875 52.542969 37.53125 52.011719 L 37.015625 50.078125 C 36.90625 49.675781 36.570313 49.398438 36.1875 49.34375 Z M 25.8125 49.34375 C 25.429688 49.398438 25.09375 49.675781 24.984375 50.078125 L 24.46875 52.011719 C 24.324219 52.542969 24.640625 53.089844 25.175781 53.234375 C 25.261719 53.257813 25.351563 53.265625 25.4375 53.265625 C 25.875 53.265625 26.28125 52.972656 26.402344 52.527344 L 26.917969 50.59375 C 27.0625 50.0625 26.746094 49.511719 26.214844 49.371094 C 26.078125 49.332031 25.941406 49.328125 25.8125 49.34375 Z M 31 50 C 30.449219 50 30 50.445313 30 51 L 30 53 C 30 53.554688 30.449219 54 31 54 C 31.550781 54 32 53.554688 32 53 L 32 51 C 32 50.445313 31.550781 50 31 50 Z"/></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 7 6 C 5.347656 6 4 7.347656 4 9 L 4 55 C 4 56.652344 5.347656 58 7 58 L 57 58 C 58.652344 58 60 56.652344 60 55 L 60 9 C 60 7.347656 58.652344 6 57 6 Z M 7 8 L 57 8 C 57.550781 8 58 8.449219 58 9 L 58 55 C 58 55.550781 57.550781 56 57 56 L 7 56 C 6.449219 56 6 55.550781 6 55 L 6 9 C 6 8.449219 6.449219 8 7 8 Z M 26 14 C 24.898438 14 24 14.898438 24 16 L 24 18 C 24 19.101563 24.898438 20 26 20 L 48 20 C 49.101563 20 50 19.101563 50 18 L 50 16 C 50 14.898438 49.101563 14 48 14 Z M 13 16 C 12.445313 16 12 16.445313 12 17 C 12 17.554688 12.445313 18 13 18 L 19 18 C 19.554688 18 20 17.554688 20 17 C 20 16.445313 19.554688 16 19 16 Z M 26 16 L 48 16 L 48 18 L 26 18 Z M 26 24 C 24.898438 24 24 24.898438 24 26 L 24 32 C 24 33.101563 24.898438 34 26 34 L 48 34 C 49.101563 34 50 33.101563 50 32 L 50 26 C 50 24.898438 49.101563 24 48 24 Z M 13 26 C 12.445313 26 12 26.445313 12 27 C 12 27.554688 12.445313 28 13 28 L 19 28 C 19.554688 28 20 27.554688 20 27 C 20 26.445313 19.554688 26 19 26 Z M 26 26 L 48 26 L 48 32 L 26 32 Z M 26 38 C 24.347656 38 23 39.347656 23 41 C 23 42.652344 24.347656 44 26 44 C 27.652344 44 29 42.652344 29 41 C 29 39.347656 27.652344 38 26 38 Z M 32 38 C 31.445313 38 31 38.445313 31 39 C 31 39.554688 31.445313 40 32 40 L 49 40 C 49.554688 40 50 39.554688 50 39 C 50 38.445313 49.554688 38 49 38 Z M 26 40 C 26.550781 40 27 40.449219 27 41 C 27 41.550781 26.550781 42 26 42 C 25.449219 42 25 41.550781 25 41 C 25 40.449219 25.449219 40 26 40 Z M 32 42 C 31.445313 42 31 42.445313 31 43 C 31 43.554688 31.445313 44 32 44 L 45 44 C 45.554688 44 46 43.554688 46 43 C 46 42.445313 45.554688 42 45 42 Z M 9 50 C 8.445313 50 8 50.445313 8 51 L 8 53 C 8 53.554688 8.445313 54 9 54 C 9.554688 54 10 53.554688 10 53 L 10 51 C 10 50.445313 9.554688 50 9 50 Z M 14 50 C 13.445313 50 13 50.445313 13 51 L 13 53 C 13 53.554688 13.445313 54 14 54 C 14.554688 54 15 53.554688 15 53 L 15 51 C 15 50.445313 14.554688 50 14 50 Z M 19 50 C 18.445313 50 18 50.445313 18 51 L 18 53 C 18 53.554688 18.445313 54 19 54 C 19.554688 54 20 53.554688 20 53 L 20 51 C 20 50.445313 19.554688 50 19 50 Z M 24 50 C 23.445313 50 23 50.445313 23 51 L 23 53 C 23 53.554688 23.445313 54 24 54 C 24.554688 54 25 53.554688 25 53 L 25 51 C 25 50.445313 24.554688 50 24 50 Z M 29 50 C 28.445313 50 28 50.445313 28 51 L 28 53 C 28 53.554688 28.445313 54 29 54 C 29.554688 54 30 53.554688 30 53 L 30 51 C 30 50.445313 29.554688 50 29 50 Z M 34 50 C 33.445313 50 33 50.445313 33 51 L 33 53 C 33 53.554688 33.445313 54 34 54 C 34.554688 54 35 53.554688 35 53 L 35 51 C 35 50.445313 34.554688 50 34 50 Z M 39 50 C 38.445313 50 38 50.445313 38 51 L 38 53 C 38 53.554688 38.445313 54 39 54 C 39.554688 54 40 53.554688 40 53 L 40 51 C 40 50.445313 39.554688 50 39 50 Z M 44 50 C 43.445313 50 43 50.445313 43 51 L 43 53 C 43 53.554688 43.445313 54 44 54 C 44.554688 54 45 53.554688 45 53 L 45 51 C 45 50.445313 44.554688 50 44 50 Z M 49 50 C 48.445313 50 48 50.445313 48 51 L 48 53 C 48 53.554688 48.445313 54 49 54 C 49.554688 54 50 53.554688 50 53 L 50 51 C 50 50.445313 49.554688 50 49 50 Z M 54 50 C 53.445313 50 53 50.445313 53 51 L 53 53 C 53 53.554688 53.445313 54 54 54 C 54.554688 54 55 53.554688 55 53 L 55 51 C 55 50.445313 54.554688 50 54 50 Z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"> <path fill="currentColor" d="M 37 4 C 35.897 4 35 4.897 35 6 L 35 9 L 30 9 C 28.897 9 28 9.897 28 11 L 28 31 L 14 31 L 14 26 C 14 24.897 13.103 24 12 24 L 6 24 C 4.897 24 4 24.897 4 26 L 4 38 C 4 39.103 4.897 40 6 40 L 12 40 C 13.103 40 14 39.103 14 38 L 14 33 L 28 33 L 28 53 C 28 54.103 28.897 55 30 55 L 35 55 L 35 58 C 35 59.103 35.897 60 37 60 L 45 60 C 46.103 60 47 59.103 47 58 L 47 50 C 47 48.897 46.103 48 45 48 L 37 48 C 35.897 48 35 48.897 35 50 L 35 53 L 30 53 L 30 33 L 48 33 L 48 36 C 48 37.103 48.897 38 50 38 L 58 38 C 59.103 38 60 37.103 60 36 L 60 28 C 60 26.897 59.103 26 58 26 L 50 26 C 48.897 26 48 26.897 48 28 L 48 31 L 30 31 L 30 11 L 35 11 L 35 14 C 35 15.103 35.897 16 37 16 L 45 16 C 46.103 16 47 15.103 47 14 L 47 6 C 47 4.897 46.103 4 45 4 L 37 4 z M 36.998047 6 L 45 6 L 45 14 L 37 14 L 37 9 L 36.998047 9 L 36.998047 6 z M 23 12 C 22.447 12 22 12.448 22 13 C 22 13.552 22.447 14 23 14 L 25 14 C 25.553 14 26 13.552 26 13 C 26 12.448 25.553 12 25 12 L 23 12 z M 23 17 C 22.447 17 22 17.448 22 18 C 22 18.552 22.447 19 23 19 L 25 19 C 25.553 19 26 18.552 26 18 C 26 17.448 25.553 17 25 17 L 23 17 z M 23 22 C 22.447 22 22 22.448 22 23 C 22 23.552 22.447 24 23 24 L 25 24 C 25.553 24 26 23.552 26 23 C 26 22.448 25.553 22 25 22 L 23 22 z M 5.9980469 26 L 12 26 L 12 38 L 6 38 L 5.9980469 26 z M 23 27 C 22.447 27 22 27.448 22 28 C 22 28.552 22.447 29 23 29 L 25 29 C 25.553 29 26 28.552 26 28 C 26 27.448 25.553 27 25 27 L 23 27 z M 49.998047 28 L 58 28 L 58 36 L 50 36 L 49.998047 31.003906 C 49.998047 31.002906 50 31.001 50 31 C 50 30.999 49.998047 30.997094 49.998047 30.996094 L 49.998047 28 z M 23 35 C 22.447 35 22 35.447 22 36 C 22 36.553 22.447 37 23 37 L 25 37 C 25.553 37 26 36.553 26 36 C 26 35.447 25.553 35 25 35 L 23 35 z M 23 40 C 22.447 40 22 40.447 22 41 C 22 41.553 22.447 42 23 42 L 25 42 C 25.553 42 26 41.553 26 41 C 26 40.447 25.553 40 25 40 L 23 40 z M 23 45 C 22.447 45 22 45.447 22 46 C 22 46.553 22.447 47 23 47 L 25 47 C 25.553 47 26 46.553 26 46 C 26 45.447 25.553 45 25 45 L 23 45 z M 23 50 C 22.447 50 22 50.447 22 51 C 22 51.553 22.447 52 23 52 L 25 52 C 25.553 52 26 51.553 26 51 C 26 50.447 25.553 50 25 50 L 23 50 z M 37 50 L 45 50 L 45 58 L 36.998047 58 L 36.998047 55 L 37 55 L 37 50 z"/></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 17 4 C 15.347656 4 14 5.347656 14 7 L 14 8 L 13 8 C 11.347656 8 10 9.347656 10 11 L 10 57 C 10 58.652344 11.347656 60 13 60 L 49 60 C 50.652344 60 52 58.652344 52 57 L 52 56 L 53 56 C 54.652344 56 56 54.652344 56 53 L 56 17.65625 C 56 16.320313 55.480469 15.066406 54.535156 14.121094 L 45.878906 5.464844 C 44.933594 4.519531 43.679688 4 42.34375 4 Z M 17 6 L 42 6 L 42 15 C 42 16.652344 43.347656 18 45 18 L 54 18 L 54 53 C 54 53.550781 53.550781 54 53 54 L 17 54 C 16.449219 54 16 53.550781 16 53 L 16 7 C 16 6.449219 16.449219 6 17 6 Z M 44 6.5 C 44.164063 6.613281 44.324219 6.738281 44.464844 6.878906 L 53.121094 15.535156 C 53.265625 15.679688 53.390625 15.835938 53.5 16 L 45 16 C 44.449219 16 44 15.550781 44 15 Z M 13 10 L 14 10 L 14 53 C 14 54.652344 15.347656 56 17 56 L 50 56 L 50 57 C 50 57.550781 49.550781 58 49 58 L 13 58 C 12.449219 58 12 57.550781 12 57 L 12 11 C 12 10.449219 12.449219 10 13 10 Z M 39 24 C 38.449219 24 38 24.449219 38 25 C 38 25.550781 38.449219 26 39 26 L 44.585938 26 L 36 34.585938 L 31.707031 30.292969 C 31.316406 29.902344 30.683594 29.902344 30.292969 30.292969 L 22.292969 38.292969 C 21.902344 38.683594 21.902344 39.316406 22.292969 39.707031 C 22.488281 39.902344 22.742188 40 23 40 C 23.257813 40 23.511719 39.902344 23.707031 39.707031 L 31 32.414063 L 35.292969 36.707031 C 35.683594 37.097656 36.316406 37.097656 36.707031 36.707031 L 46 27.414063 L 46 33 C 46 33.550781 46.449219 34 47 34 C 47.550781 34 48 33.550781 48 33 L 48 25 C 48 24.871094 47.972656 24.738281 47.921875 24.617188 C 47.824219 24.375 47.628906 24.179688 47.382813 24.078125 C 47.261719 24.027344 47.128906 24 47 24 Z M 20 46 C 19.449219 46 19 46.449219 19 47 L 19 49 C 19 49.550781 19.449219 50 20 50 C 20.550781 50 21 49.550781 21 49 L 21 47 C 21 46.449219 20.550781 46 20 46 Z M 25 46 C 24.449219 46 24 46.449219 24 47 L 24 49 C 24 49.550781 24.449219 50 25 50 C 25.550781 50 26 49.550781 26 49 L 26 47 C 26 46.449219 25.550781 46 25 46 Z M 30 46 C 29.449219 46 29 46.449219 29 47 L 29 49 C 29 49.550781 29.449219 50 30 50 C 30.550781 50 31 49.550781 31 49 L 31 47 C 31 46.449219 30.550781 46 30 46 Z M 35 46 C 34.449219 46 34 46.449219 34 47 L 34 49 C 34 49.550781 34.449219 50 35 50 C 35.550781 50 36 49.550781 36 49 L 36 47 C 36 46.449219 35.550781 46 35 46 Z M 40 46 C 39.449219 46 39 46.449219 39 47 L 39 49 C 39 49.550781 39.449219 50 40 50 C 40.550781 50 41 49.550781 41 49 L 41 47 C 41 46.449219 40.550781 46 40 46 Z M 45 46 C 44.449219 46 44 46.449219 44 47 L 44 49 C 44 49.550781 44.449219 50 45 50 C 45.550781 50 46 49.550781 46 49 L 46 47 C 46 46.449219 45.550781 46 45 46 Z M 50 46 C 49.449219 46 49 46.449219 49 47 L 49 49 C 49 49.550781 49.449219 50 50 50 C 50.550781 50 51 49.550781 51 49 L 51 47 C 51 46.449219 50.550781 46 50 46 Z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"> <path fill="currentColor" d="M 8 5 C 7.448 5 7 5.447 7 6 L 7 54 C 7 54.553 7.448 55 8 55 L 56 55 C 56.552 55 57 54.553 57 54 L 57 6 C 57 5.447 56.552 5 56 5 L 8 5 z M 9 7 L 19 7 L 19 17 L 9 17 L 9 7 z M 21 7 L 31 7 L 31 17 L 21 17 L 21 7 z M 33 7 L 43 7 L 43 17 L 33 17 L 33 7 z M 45 7 L 55 7 L 55 17 L 45 17 L 45 7 z M 14 10 A 2 2 0 0 0 12 12 A 2 2 0 0 0 14 14 A 2 2 0 0 0 16 12 A 2 2 0 0 0 14 10 z M 26 10 A 2 2 0 0 0 24 12 A 2 2 0 0 0 26 14 A 2 2 0 0 0 28 12 A 2 2 0 0 0 26 10 z M 38 10 A 2 2 0 0 0 36 12 A 2 2 0 0 0 38 14 A 2 2 0 0 0 40 12 A 2 2 0 0 0 38 10 z M 50 10 A 2 2 0 0 0 48 12 A 2 2 0 0 0 50 14 A 2 2 0 0 0 52 12 A 2 2 0 0 0 50 10 z M 9 19 L 19 19 L 19 29 L 9 29 L 9 19 z M 21 19 L 31 19 L 31 29 L 21 29 L 21 19 z M 33 19 L 43 19 L 43 29 L 33 29 L 33 19 z M 45 19 L 55 19 L 55 29 L 45 29 L 45 19 z M 14 22 A 2 2 0 0 0 12 24 A 2 2 0 0 0 14 26 A 2 2 0 0 0 16 24 A 2 2 0 0 0 14 22 z M 9 31 L 19 31 L 19 41 L 9 41 L 9 31 z M 21 31 L 31 31 L 31 41 L 21 41 L 21 31 z M 33 31 L 43 31 L 43 41 L 33 41 L 33 31 z M 45 31 L 55 31 L 55 41 L 45 41 L 45 31 z M 14 34 A 2 2 0 0 0 12 36 A 2 2 0 0 0 14 38 A 2 2 0 0 0 16 36 A 2 2 0 0 0 14 34 z M 9 43 L 19 43 L 19 53 L 9 53 L 9 43 z M 21 43 L 31 43 L 31 53 L 21 53 L 21 43 z M 33 43 L 43 43 L 43 53 L 33 53 L 33 43 z M 45 43 L 55 43 L 55 53 L 45 53 L 45 43 z M 14 46 A 2 2 0 0 0 12 48 A 2 2 0 0 0 14 50 A 2 2 0 0 0 16 48 A 2 2 0 0 0 14 46 z M 9 57 C 8.448 57 8 57.447 8 58 L 8 60 C 8 60.553 8.448 61 9 61 C 9.552 61 10 60.553 10 60 L 10 58 C 10 57.447 9.552 57 9 57 z M 14 57 C 13.448 57 13 57.447 13 58 L 13 60 C 13 60.553 13.448 61 14 61 C 14.552 61 15 60.553 15 60 L 15 58 C 15 57.447 14.552 57 14 57 z M 19 57 C 18.448 57 18 57.447 18 58 L 18 60 C 18 60.553 18.448 61 19 61 C 19.552 61 20 60.553 20 60 L 20 58 C 20 57.447 19.552 57 19 57 z M 24 57 C 23.448 57 23 57.447 23 58 L 23 60 C 23 60.553 23.448 61 24 61 C 24.552 61 25 60.553 25 60 L 25 58 C 25 57.447 24.552 57 24 57 z M 29 57 C 28.448 57 28 57.447 28 58 L 28 60 C 28 60.553 28.448 61 29 61 C 29.552 61 30 60.553 30 60 L 30 58 C 30 57.447 29.552 57 29 57 z M 34 57 C 33.448 57 33 57.447 33 58 L 33 60 C 33 60.553 33.448 61 34 61 C 34.552 61 35 60.553 35 60 L 35 58 C 35 57.447 34.552 57 34 57 z M 39 57 C 38.448 57 38 57.447 38 58 L 38 60 C 38 60.553 38.448 61 39 61 C 39.552 61 40 60.553 40 60 L 40 58 C 40 57.447 39.552 57 39 57 z M 44 57 C 43.448 57 43 57.447 43 58 L 43 60 C 43 60.553 43.448 61 44 61 C 44.552 61 45 60.553 45 60 L 45 58 C 45 57.447 44.552 57 44 57 z M 49 57 C 48.448 57 48 57.447 48 58 L 48 60 C 48 60.553 48.448 61 49 61 C 49.552 61 50 60.553 50 60 L 50 58 C 50 57.447 49.552 57 49 57 z M 54 57 C 53.448 57 53 57.447 53 58 L 53 60 C 53 60.553 53.448 61 54 61 C 54.552 61 55 60.553 55 60 L 55 58 C 55 57.447 54.552 57 54 57 z"/></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 23.65625 4 C 22.320313 4 21.0625 4.519531 20.121094 5.464844 L 11.464844 14.121094 C 10.519531 15.066406 10 16.320313 10 17.65625 L 10 57 C 10 58.652344 11.347656 60 13 60 L 53 60 C 54.652344 60 56 58.652344 56 57 L 56 7 C 56 5.347656 54.652344 4 53 4 Z M 24 6 L 53 6 C 53.550781 6 54 6.449219 54 7 L 54 57 C 54 57.550781 53.550781 58 53 58 L 13 58 C 12.449219 58 12 57.550781 12 57 L 12 18 L 21 18 C 22.652344 18 24 16.652344 24 15 Z M 22 6.5 L 22 15 C 22 15.550781 21.550781 16 21 16 L 12.5 16 C 12.609375 15.835938 12.734375 15.679688 12.878906 15.535156 L 21.535156 6.878906 C 21.679688 6.734375 21.835938 6.609375 22 6.5 Z M 29.402344 22 C 28.960938 22 28.570313 22.289063 28.441406 22.714844 L 23.042969 40.714844 C 22.882813 41.242188 23.183594 41.796875 23.714844 41.957031 C 24.238281 42.113281 24.800781 41.816406 24.957031 41.285156 L 26.546875 36 L 32.253906 36 L 33.84375 41.285156 C 33.972656 41.722656 34.367188 42 34.796875 42 C 34.894531 42 34.992188 41.984375 35.089844 41.957031 C 35.617188 41.796875 35.917969 41.242188 35.757813 40.714844 L 30.359375 22.714844 C 30.230469 22.289063 29.839844 22 29.402344 22 Z M 29.402344 26.480469 L 31.65625 34 L 27.144531 34 Z M 41 28 C 40.449219 28 40 28.445313 40 29 L 40 32 L 37 32 C 36.449219 32 36 32.445313 36 33 C 36 33.554688 36.449219 34 37 34 L 40 34 L 40 37 C 40 37.554688 40.449219 38 41 38 C 41.550781 38 42 37.554688 42 37 L 42 34 L 45 34 C 45.550781 34 46 33.554688 46 33 C 46 32.445313 45.550781 32 45 32 L 42 32 L 42 29 C 42 28.445313 41.550781 28 41 28 Z M 15 50 C 14.449219 50 14 50.445313 14 51 L 14 53 C 14 53.554688 14.449219 54 15 54 C 15.550781 54 16 53.554688 16 53 L 16 51 C 16 50.445313 15.550781 50 15 50 Z M 20 50 C 19.449219 50 19 50.445313 19 51 L 19 53 C 19 53.554688 19.449219 54 20 54 C 20.550781 54 21 53.554688 21 53 L 21 51 C 21 50.445313 20.550781 50 20 50 Z M 25 50 C 24.449219 50 24 50.445313 24 51 L 24 53 C 24 53.554688 24.449219 54 25 54 C 25.550781 54 26 53.554688 26 53 L 26 51 C 26 50.445313 25.550781 50 25 50 Z M 30 50 C 29.449219 50 29 50.445313 29 51 L 29 53 C 29 53.554688 29.449219 54 30 54 C 30.550781 54 31 53.554688 31 53 L 31 51 C 31 50.445313 30.550781 50 30 50 Z M 35 50 C 34.449219 50 34 50.445313 34 51 L 34 53 C 34 53.554688 34.449219 54 35 54 C 35.550781 54 36 53.554688 36 53 L 36 51 C 36 50.445313 35.550781 50 35 50 Z M 40 50 C 39.449219 50 39 50.445313 39 51 L 39 53 C 39 53.554688 39.449219 54 40 54 C 40.550781 54 41 53.554688 41 53 L 41 51 C 41 50.445313 40.550781 50 40 50 Z M 45 50 C 44.449219 50 44 50.445313 44 51 L 44 53 C 44 53.554688 44.449219 54 45 54 C 45.550781 54 46 53.554688 46 53 L 46 51 C 46 50.445313 45.550781 50 45 50 Z M 50 50 C 49.449219 50 49 50.445313 49 51 L 49 53 C 49 53.554688 49.449219 54 50 54 C 50.550781 54 51 53.554688 51 53 L 51 51 C 51 50.445313 50.550781 50 50 50 Z"/></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 31 2 C 15.007813 2 2 15.011719 2 31 C 2 46.988281 15.007813 60 31 60 C 46.992188 60 60 46.988281 60 31 C 60 15.011719 46.992188 2 31 2 Z M 31 4 C 45.886719 4 58 16.113281 58 31 C 58 45.886719 45.886719 58 31 58 C 16.113281 58 4 45.886719 4 31 C 4 16.113281 16.113281 4 31 4 Z M 31 11 C 19.972656 11 11 19.972656 11 31 C 11 42.027344 19.972656 51 31 51 C 36.5 51 41.820313 48.699219 45.585938 44.6875 C 45.964844 44.285156 45.941406 43.652344 45.542969 43.269531 C 45.136719 42.894531 44.507813 42.914063 44.125 43.316406 C 40.6875 46.980469 36.023438 49 31 49 C 21.074219 49 13 40.925781 13 31 C 13 21.074219 21.074219 13 31 13 C 36.988281 13 42.636719 16.046875 45.960938 21 L 41 21 C 40.449219 21 40 21.445313 40 22 C 40 22.554688 40.449219 23 41 23 L 48 23 C 48.550781 23 49 22.554688 49 22 L 49 14.917969 C 49 14.363281 48.550781 13.917969 48 13.917969 C 47.449219 13.917969 47 14.363281 47 14.917969 L 47 19.015625 C 43.25 14.03125 37.296875 11 31 11 Z M 31 16 C 30.449219 16 30 16.445313 30 17 L 30 29.277344 C 29.40625 29.625 29 30.261719 29 31 C 29 31.179688 29.03125 31.347656 29.074219 31.511719 L 24.792969 35.792969 C 24.402344 36.183594 24.402344 36.816406 24.792969 37.207031 C 24.988281 37.402344 25.242188 37.5 25.5 37.5 C 25.757813 37.5 26.011719 37.402344 26.207031 37.207031 L 30.488281 32.925781 C 30.652344 32.96875 30.820313 33 31 33 C 32.101563 33 33 32.101563 33 31 C 33 30.261719 32.59375 29.625 32 29.277344 L 32 17 C 32 16.445313 31.550781 16 31 16 Z M 25.285156 17.207031 C 25.15625 17.210938 25.027344 17.242188 24.902344 17.296875 C 24.394531 17.523438 24.167969 18.109375 24.390625 18.613281 L 25.203125 20.441406 C 25.371094 20.816406 25.734375 21.035156 26.121094 21.035156 C 26.253906 21.035156 26.394531 21.007813 26.527344 20.949219 C 27.03125 20.722656 27.257813 20.136719 27.03125 19.628906 L 26.21875 17.804688 C 26.050781 17.425781 25.675781 17.203125 25.285156 17.207031 Z M 20.910156 20.273438 C 20.65625 20.277344 20.402344 20.378906 20.210938 20.578125 C 19.828125 20.972656 19.835938 21.609375 20.234375 21.992188 L 21.671875 23.382813 C 21.867188 23.570313 22.117188 23.660156 22.367188 23.660156 C 22.628906 23.660156 22.890625 23.558594 23.089844 23.359375 C 23.472656 22.960938 23.460938 22.328125 23.0625 21.941406 L 21.625 20.554688 C 21.425781 20.363281 21.167969 20.269531 20.910156 20.273438 Z M 18.003906 24.753906 C 17.613281 24.761719 17.25 25 17.09375 25.382813 C 16.886719 25.894531 17.132813 26.476563 17.644531 26.683594 L 19.5 27.433594 C 19.621094 27.480469 19.75 27.503906 19.875 27.503906 C 20.269531 27.503906 20.644531 27.269531 20.800781 26.878906 C 21.007813 26.367188 20.761719 25.785156 20.25 25.578125 L 18.394531 24.828125 C 18.265625 24.777344 18.132813 24.753906 18.003906 24.753906 Z M 17 30 C 16.449219 30 16 30.445313 16 31 C 16 31.554688 16.449219 32 17 32 L 19 32 C 19.550781 32 20 31.554688 20 31 C 20 30.445313 19.550781 30 19 30 Z M 43 30 C 42.449219 30 42 30.445313 42 31 C 42 31.554688 42.449219 32 43 32 L 45 32 C 45.550781 32 46 31.554688 46 31 C 46 30.445313 45.550781 30 45 30 Z M 19.890625 34.496094 C 19.761719 34.492188 19.625 34.515625 19.5 34.566406 L 17.644531 35.316406 C 17.132813 35.523438 16.886719 36.105469 17.09375 36.617188 C 17.25 37.007813 17.625 37.246094 18.019531 37.246094 C 18.144531 37.246094 18.273438 37.222656 18.394531 37.171875 L 20.25 36.421875 C 20.761719 36.214844 21.007813 35.632813 20.800781 35.121094 C 20.644531 34.738281 20.28125 34.5 19.890625 34.496094 Z M 48.5 37.40625 C 48.113281 37.40625 47.742188 37.636719 47.578125 38.015625 C 47.277344 38.734375 46.925781 39.4375 46.53125 40.109375 C 46.25 40.585938 46.410156 41.199219 46.886719 41.480469 C 47.042969 41.574219 47.21875 41.613281 47.390625 41.613281 C 47.734375 41.613281 48.066406 41.4375 48.253906 41.125 C 48.691406 40.375 49.085938 39.59375 49.421875 38.796875 C 49.636719 38.289063 49.402344 37.703125 48.890625 37.484375 C 48.765625 37.433594 48.632813 37.410156 48.5 37.40625 Z M 22.386719 38.339844 C 22.128906 38.332031 21.871094 38.425781 21.671875 38.617188 L 20.234375 40.007813 C 19.835938 40.390625 19.828125 41.027344 20.210938 41.421875 C 20.40625 41.625 20.667969 41.726563 20.929688 41.726563 C 21.179688 41.726563 21.429688 41.632813 21.625 41.445313 L 23.0625 40.058594 C 23.460938 39.671875 23.472656 39.039063 23.089844 38.640625 C 22.894531 38.445313 22.640625 38.34375 22.386719 38.339844 Z M 31 42 C 30.449219 42 30 42.445313 30 43 L 30 45 C 30 45.554688 30.449219 46 31 46 C 31.550781 46 32 45.554688 32 45 L 32 43 C 32 42.445313 31.550781 42 31 42 Z"/></svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64px" height="64px"><path fill="currentColor" d="M 31 2 C 15.011719 2 2 15.007813 2 31 C 2 46.992188 15.011719 60 31 60 C 46.988281 60 60 46.992188 60 31 C 60 15.007813 46.988281 2 31 2 Z M 31 4 C 45.886719 4 58 16.113281 58 31 C 58 45.886719 45.886719 58 31 58 C 16.113281 58 4 45.886719 4 31 C 4 16.113281 16.113281 4 31 4 Z M 30.5625 8.007813 C 24.671875 8.125 18.960938 10.511719 14.734375 14.734375 C 5.769531 23.703125 5.769531 38.292969 14.734375 47.261719 C 14.929688 47.457031 15.1875 47.554688 15.441406 47.554688 C 15.699219 47.554688 15.957031 47.457031 16.152344 47.261719 C 16.542969 46.871094 16.542969 46.238281 16.152344 45.847656 C 7.960938 37.660156 7.964844 24.339844 16.152344 16.152344 C 20.898438 11.402344 27.699219 9.203125 34.339844 10.265625 C 34.882813 10.355469 35.398438 9.980469 35.484375 9.4375 C 35.574219 8.890625 35.199219 8.375 34.65625 8.289063 C 33.292969 8.070313 31.925781 7.976563 30.5625 8.007813 Z M 38.65625 9.386719 C 38.269531 9.402344 37.910156 9.648438 37.765625 10.035156 C 37.570313 10.554688 37.832031 11.128906 38.351563 11.324219 C 39.066406 11.589844 39.769531 11.898438 40.453125 12.238281 C 40.597656 12.3125 40.75 12.347656 40.902344 12.347656 C 41.265625 12.347656 41.617188 12.148438 41.796875 11.796875 C 42.042969 11.304688 41.84375 10.703125 41.351563 10.453125 C 40.609375 10.078125 39.832031 9.742188 39.050781 9.449219 C 38.921875 9.402344 38.789063 9.382813 38.65625 9.386719 Z M 44.433594 12.675781 C 44.179688 12.707031 43.9375 12.832031 43.765625 13.050781 C 43.425781 13.484375 43.5 14.113281 43.9375 14.453125 C 44.605469 14.976563 45.246094 15.546875 45.847656 16.152344 C 54.039063 24.339844 54.039063 37.660156 45.847656 45.847656 C 45.457031 46.242188 45.457031 46.871094 45.847656 47.265625 C 46.042969 47.457031 46.300781 47.558594 46.558594 47.558594 C 46.8125 47.558594 47.070313 47.457031 47.265625 47.265625 C 56.230469 38.296875 56.230469 23.703125 47.265625 14.734375 C 46.605469 14.078125 45.902344 13.453125 45.171875 12.878906 C 44.953125 12.710938 44.683594 12.644531 44.433594 12.675781 Z M 22.515625 21.515625 C 22.261719 21.515625 22.003906 21.613281 21.808594 21.808594 C 21.417969 22.199219 21.417969 22.832031 21.808594 23.222656 L 29.585938 31 L 21.808594 38.777344 C 21.417969 39.167969 21.417969 39.800781 21.808594 40.191406 C 22.003906 40.386719 22.257813 40.484375 22.515625 40.484375 C 22.773438 40.484375 23.027344 40.386719 23.222656 40.191406 L 31 32.414063 L 38.777344 40.191406 C 38.972656 40.386719 39.226563 40.484375 39.484375 40.484375 C 39.742188 40.484375 39.996094 40.386719 40.191406 40.191406 C 40.582031 39.800781 40.582031 39.167969 40.191406 38.777344 L 32.414063 31 L 40.191406 23.222656 C 40.582031 22.832031 40.582031 22.199219 40.191406 21.808594 C 39.800781 21.417969 39.167969 21.417969 38.777344 21.808594 L 31 29.585938 L 23.222656 21.808594 C 23.027344 21.613281 22.769531 21.515625 22.515625 21.515625 Z M 21.375 47.394531 C 20.984375 47.347656 20.589844 47.527344 20.386719 47.886719 L 19.386719 49.621094 C 19.109375 50.097656 19.273438 50.707031 19.75 50.984375 C 19.90625 51.074219 20.078125 51.121094 20.25 51.121094 C 20.59375 51.121094 20.929688 50.941406 21.113281 50.621094 L 22.113281 48.886719 C 22.390625 48.410156 22.230469 47.796875 21.75 47.519531 C 21.628906 47.453125 21.5 47.410156 21.375 47.394531 Z M 40.625 47.394531 C 40.496094 47.410156 40.367188 47.453125 40.25 47.519531 C 39.769531 47.796875 39.609375 48.410156 39.886719 48.890625 L 40.886719 50.621094 C 41.070313 50.941406 41.40625 51.121094 41.75 51.121094 C 41.921875 51.121094 42.09375 51.078125 42.25 50.984375 C 42.730469 50.710938 42.890625 50.097656 42.613281 49.621094 L 41.613281 47.890625 C 41.40625 47.53125 41.011719 47.347656 40.625 47.394531 Z M 25.816406 49.34375 C 25.429688 49.398438 25.09375 49.675781 24.984375 50.078125 L 24.46875 52.011719 C 24.324219 52.542969 24.644531 53.089844 25.175781 53.234375 C 25.261719 53.257813 25.347656 53.269531 25.4375 53.269531 C 25.875 53.269531 26.28125 52.972656 26.402344 52.527344 L 26.921875 50.59375 C 27.0625 50.0625 26.746094 49.511719 26.214844 49.371094 C 26.078125 49.332031 25.945313 49.324219 25.816406 49.34375 Z M 36.1875 49.34375 C 36.058594 49.324219 35.921875 49.332031 35.785156 49.371094 C 35.253906 49.511719 34.9375 50.0625 35.078125 50.59375 L 35.597656 52.527344 C 35.71875 52.972656 36.121094 53.269531 36.5625 53.269531 C 36.652344 53.269531 36.738281 53.257813 36.824219 53.234375 C 37.355469 53.089844 37.675781 52.542969 37.53125 52.011719 L 37.015625 50.078125 C 36.90625 49.675781 36.570313 49.398438 36.1875 49.34375 Z M 31 50 C 30.445313 50 30 50.449219 30 51 L 30 53 C 30 53.550781 30.445313 54 31 54 C 31.554688 54 32 53.550781 32 53 L 32 51 C 32 50.449219 31.554688 50 31 50 Z"/></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 499 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 901 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

BIN
public/images/ieee.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

@ -0,0 +1,784 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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"
version="1.1"
id="svg169210"
xml:space="preserve"
width="1841.0872"
height="1663.0801"
viewBox="0 0 1841.0871 1663.08"
sodipodi:docname="flow.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"><metadata
id="metadata971"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs169214"><marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow2Send"
style="overflow:visible;"
inkscape:isstock="true"><path
id="path1555"
style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#126d82;stroke-opacity:1;fill:#126d82;fill-opacity:1"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="scale(0.3) rotate(180) translate(-2.3,0)" /></marker><marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0.0"
refX="0.0"
id="Arrow1Send"
style="overflow:visible;"
inkscape:isstock="true"><path
id="path1537"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
transform="scale(0.2) rotate(180) translate(6,0)" /></marker><marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0"
refX="0"
id="Arrow2Send-6"
style="overflow:visible"
inkscape:isstock="true"><path
inkscape:connector-curvature="0"
id="path1555-7"
style="fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-0.3,0,0,-0.3,0.69,0)" /></marker><marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0"
refX="0"
id="Arrow2Send-6-3"
style="overflow:visible"
inkscape:isstock="true"><path
inkscape:connector-curvature="0"
id="path1555-7-5"
style="fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-0.3,0,0,-0.3,0.69,0)" /></marker></defs><sodipodi:namedview
id="namedview169212"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.67274998"
inkscape:cx="-935.06601"
inkscape:cy="1123.0848"
inkscape:window-width="1916"
inkscape:window-height="1022"
inkscape:window-x="0"
inkscape:window-y="56"
inkscape:window-maximized="0"
inkscape:current-layer="g169216"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"><sodipodi:guide
position="-1082.6012,1303.3257"
orientation="0,1"
id="guide2202"
inkscape:locked="false" /></sodipodi:namedview><g
id="g169216"
inkscape:groupmode="layer"
inkscape:label="TapScanner 12-09-2022-1255"
transform="matrix(1.3333333,0,0,-1.3333333,-34.204088,2210.0248)"><text
xml:space="preserve"
style="color:#000000;font-weight:300;font-size:9px;line-height:130%;font-family:'Open Sans';-inkscape-font-specification:'Open Sans Light';text-align:end;writing-mode:lr-tb;text-anchor:end;overflow:visible;fill:#ffffff;fill-opacity:0.725959;fill-rule:evenodd;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
x="122.78874"
y="-1028.2922"
id="text195045"
transform="scale(1,-1)"><tspan
sodipodi:role="line"
id="tspan195043"
style="stroke-width:6"
x="122.78874"
y="-1028.2922" /></text>
<g
id="g38419"
transform="translate(-19.393778,20.547182)"><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 671.91235,519.49049 c -45.80118,-6.09264 -40.49585,33.983 -46.09706,12.65457 0.0654,-4.0532 -7.7065,15.61552 -16.41594,10.88288 -1.23742,-0.67241 -6.6904,-2.55074 11.84823,-28.69079 2.87588,-3.61671 -1.18646,0.73913 3.26368,-5.13044 35.61882,-40.71499 117.54219,-13.43028 120.20279,-12.36925 69.01926,27.52454 108.48402,70.85446 145.97577,126.81052 8.11357,12.4375 6.63659,34.80993 0.88426,45.77498 -44.63321,85.18074 -53.10115,137.87405 -131.57273,140.87557 -5.96201,0.22805 -39.38844,3.37262 -41.25086,14.84502"
id="path200226"
sodipodi:nodetypes="ccsccsccsc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 580.90331,1043.2646 c -6.07357,-54.11128 -0.28716,-110.50228 48.15425,-145.06678 49.52715,-23.98976 96.53328,-1.5836 120.74879,33.3627 21.14235,27.7808 27.89467,52.7011 35.11626,84.76708"
id="path200208"
sodipodi:nodetypes="cccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><g
id="g170644"
style="stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"
transform="matrix(0.8564312,0,0,0.8564312,115.38524,130.00371)"><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1027.2144,1124.2635 c -7.3231,0.9409 -12.2032,-7.0402 -10.2351,-13.4508 1.9681,-6.4106 13.2277,-10.4284 16.6763,-3.602 3.5167,5.5861 3.9112,15.3825 -4.0876,16.5592 -0.5887,0.219 -1.773,0.2543 -2.3536,0.4936 z"
id="path169743"
sodipodi:nodetypes="czccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1025.6322,1103.7508 0.678,-21.6507 c -2.6789,-1.8794 -6.3145,-3.0982 -7.5721,-6.3989 -0.2475,-0.5613 -4.9883,-5.9759 -5.1645,-6.0284"
id="path169745"
sodipodi:nodetypes="cccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1026.3102,1082.1001 c 1.0646,-1.877 2.2472,-3.6968 2.5908,-5.8787 0.5563,-2.3635 1.0241,-4.7715 2.0026,-7.0052"
id="path169747"
sodipodi:nodetypes="ccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1015.9414,1096.5644 c 2.3207,-2.0361 5.7331,-2.4071 7.8663,-4.6509 0.9812,-1.5041 2.4041,-2.9092 3.6896,-0.9367 2.2058,1.9855 4.3537,4.0424 6.7921,5.7466 l 0.2827,0.2655"
id="path169749" /></g><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 978.96096,1109.0924 c 50.61254,6.2387 102.42624,-3.8152 152.86374,4.1197 37.2157,5.8547 83.6514,8.2251 82.1251,-42.23 -4.6883,-38.4946 10.4504,-86.08458 -1.6272,-123.37678 -17.1632,-43.5132 -68.6213,-27.3826 -104.544,-33.288 -43.2281,-3.1848 -86.9778,-7.5956 -130.08713,-0.6946 -42.41115,26.1617 -25.03082,82.5685 -28.31294,124.40268 -0.23808,26.5153 -1.43521,67.2437 29.58243,71.067 z"
id="path171173"
sodipodi:nodetypes="sscccccs"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 973.37506,990.89542 c 3.13548,9.36398 -4.39377,24.77148 0.62117,32.57178 18.10966,3.0749 19.57973,-19.7921 0.57612,-16.2079"
id="path173068"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1012.8226,1006.1338 c -8.1218,0.7462 -16.92057,-2.0732 -15.09278,-14.53518 5.69918,-2.4206 9.54748,2.4268 15.87928,6.9477"
id="path173070"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1000.0886,1014.7399 c 15.8283,8.6213 13.5205,-16.19358 14.2535,-22.26758"
id="path173072"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1023.9338,1016.1808 c -0.9477,-7.7455 0.5088,-16.52698 -0.1151,-24.26118"
id="path173074"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1023.9338,1016.1808 c -0.352,-9.6831 3.2885,2.3529 11.3541,-1.7792"
id="path173076"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1040.9057,1023.2983 c -0.8723,-10.593 -0.9185,-28.29098 1.7153,-29.56458 2.7654,-1.1816 5.7948,-1.3181 5.7948,-1.3181"
id="path173078"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1034.5919,1016.3418 c 5.1247,-2.1626 10.6236,0.8181 15.8839,-0.2133"
id="path173080"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1056.8564,1015.1748 c 0.6856,-7.3308 1.4631,-15.99988 -0.1378,-23.23148"
id="path173082"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1057.215,1025.2735 c 2.8741,-2.1404 -0.448,-0.1327 -0.625,-3.0689"
id="path173084"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1081.8935,1014.5667 c -15.4901,3.7436 -24.8051,-26.32998 -0.084,-21.18268"
id="path173086"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1089.7325,1015.1133 c -1.6897,-6.8665 0.8329,-16.07198 -0.5316,-22.99118"
id="path173088"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1089.0203,1024.4472 c 0.389,-1.0448 1.4561,-1.5992 2.396,-2.0398"
id="path173090"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1099.2517,1015.6934 c 3.123,-10.3695 -0.754,-27.46568 0.079,-34.69078"
id="path173092"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1100.1836,1010.992 c 7.2426,4.5336 18.6309,9.136 18.1059,-5.4783 -0.4123,-11.47878 -7.6924,-19.71088 -18.4466,-6.00648"
id="path173094"
sodipodi:nodetypes="csc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1127.6231,1015.0123 c 11.2705,4.8448 16.0018,-2.9852 14.6991,-15.64308 -0.1309,-2.4198 -0.019,-4.9048 0.8105,-7.2069"
id="path173096"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1142.7082,1003.6616 c -11.3154,6.894 -23.3736,-7.42728 -13.1005,-11.27758 4.219,0.2515 9.1291,1.9987 11.3718,5.525"
id="path173098"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1151.3929,1021.566 c 0.224,-9.6764 -1.9033,-17.5768 0.5065,-26.94958 0.782,-2.7897 6.6306,-2.6714 7.9804,-1.713"
id="path173100"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1146.1365,1014.8248 c 4.3366,0.3752 10.923,1.6775 15.2787,0.7461"
id="path173102"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1166.2286,1004.7189 c 5.157,-0.5236 13.9981,-1.989 17.0174,0.041 2.3876,1.6052 0.3148,6.1626 -4.381,9.7514 -15.0321,8.8463 -18.7633,-23.90248 -1.868,-22.43248 1.4025,1.5169 5.3841,-0.2809 6.1053,1.8838"
id="path173104"
sodipodi:nodetypes="csccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 568.20834,1518.4652 c -12.76166,-18.5699 -13.50578,-87.7338 -3.33945,-131.2044 4.85143,-20.7775 12.00901,-46.9823 32.0763,-54.6441 49.90217,-7.997 120.1156,-9.3267 171.22953,-2.1301 23.672,3.3872 44.76737,-12.7134 58.96651,17.2914 14.19914,30.0047 6.39166,87.9803 -1.54344,130.2165 -4.45278,24.5522 0.46048,41.6635 -23.9787,50.0783 -19.85256,7.1157 -64.23557,0.2464 -84.88959,2.936 -62.29548,1.8415 -135.75951,6.0263 -148.52116,-12.5436 z"
id="path177859"
sodipodi:nodetypes="zccczcccz"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 581.33417,1487.7583 c -0.20856,-4.2565 0.50345,-8.8352 3.26721,-12.3988 -1.83794,-0.5201 -2.37193,-2.0895 -3.28789,-3.6214 1.42355,-2.1527 4.51303,-2.3176 6.60363,-3.6714 7.92954,-5.8177 6.53973,0.042 9.95205,1.3876 1.38921,-0.6842 0.22102,0.1377 1.62065,-0.599 7.17088,-1.8668 10.94473,3.0331 11.58888,0.539 1.03976,-2.4891 3.72084,-3.6166 5.54542,-1.3156 2.45372,1.5111 5.3384,2.734 6.71847,5.4227 2.40511,2.3772 -3.95905,2.8108 -3.09982,5.4453 4.62008,3.9372 3.84104,8.0333 5.24465,10.838 1.86698,0.9613 5.66466,1.331 3.36733,4.1032 -0.9756,2.3867 -2.15948,4.8198 -2.82521,7.189 -2.05308,-0.5976 -4.96226,-2.6897 -6.30607,-1.1801 -2.34177,2.6306 -5.27386,4.336 -8.00326,5.715 -1.57675,0.7965 -0.37848,3.2727 0.12775,4.2633 0.22979,2.6095 -3.62086,1.7708 -5.23929,3.0085 -1.83081,0.1545 -4.79679,1.5487 -5.91944,0.3208 -1.18587,-1.963 -1.29178,-4.027 -3.50921,-4.9288 -6.56214,0.8568 -10.67104,-7.0931 -11.34593,-6.7999 -1.88498,-0.1388 -4.33374,1.6824 -5.64348,1.4341 -0.58269,-3.7148 -2.6236,-7.1672 -2.70762,-10.9579 1.28303,-1.5598 3.04476,-2.2428 3.85114,-4.1936 z"
id="path178670"
sodipodi:nodetypes="cccccccccccccsscccccccsc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 596.18719,1495.0384 c -0.82562,-2.5488 -0.0431,-4.2335 0.72246,-6.174 0.88884,-1.3302 2.55172,-2.2913 4.17264,-2.0212 1.32478,0.4123 3.9426,1.7164 4.36285,2.8259 0.51231,1.8242 1.4283,4.8496 -0.6631,6.5966 -3.34462,1.8032 -6.69723,2.9732 -8.59485,-1.2273 z"
id="path178672"
sodipodi:nodetypes="cccccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 633.51381,1440.5349 c -15.96948,8.9857 -28.05663,-17.2993 -15.70395,-27.3186 3.06355,-3.691 12.13417,-2.6708 16.69457,-0.6639"
id="path191330"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 638.10102,1420.9393 c -1.41155,-17.5242 24.10773,-13.6652 17.79097,7.0875 -3.93826,10.1907 -19.01729,4.4666 -17.79097,-7.0875 z"
id="path191332"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 665.77245,1433.3404 c 0.54092,-5.5853 0.67476,-14.5802 0.46287,-21.8513"
id="path191334"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 666.31337,1427.7551 c 15.24004,16.9271 19.43003,-8.0824 17.41009,-17.5718"
id="path191336"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 693.56171,1434.1369 c 0.46486,-6.6396 -0.54563,-12.1751 0.3226,-23.9602"
id="path191338"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 694.02657,1427.4973 c 16.32694,16.9846 19.1284,-6.7155 15.8706,-17.2262"
id="path191340"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 720.66034,1422.8748 c 3.89572,-2.5092 12.76544,-0.975 15.19258,-0.5037 4.85405,0.9426 0.90637,9.8299 -7.82836,11.7131 -14.96113,-3.2094 -9.22334,-29.5092 8.67152,-22.5951"
id="path191342"
sodipodi:nodetypes="cscc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 760.55043,1432.3181 c -12.20917,7.2557 -24.26248,-14.7554 -11.94675,-21.3867 3.45045,-1.6056 7.61397,-1.4192 11.02334,0.196"
id="path191344"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 768.33282,1439.9765 c -0.76623,-9.3858 -4.47307,-32.6227 8.62828,-29.4769 l 0.50318,0.2174"
id="path191346"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 763.44008,1433.2251 c 3.02262,0.4642 9.72066,0.05 12.7671,0.051"
id="path191348"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 153.36305,1062.6635 c 1.32594,-109.19388 -5.59347,-145.22768 117.56643,-138.05468 141.15752,-2.8831 153.66229,8.907 142.52968,124.31748 2.30158,99.3236 -36.55338,81.8238 -168.94957,82.0238 -74.15988,4.9134 -88.58452,-20.9882 -91.14654,-68.2866 z"
id="path196022"
sodipodi:nodetypes="ccccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 261.21218,967.33972 c 16.21439,-2.875 33.30882,-2.3557 50.12592,-0.8667"
id="path196024"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 264.89169,955.47582 c 14.73496,0.017 29.47638,-0.2881 44.20535,0.2943"
id="path196026"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 261.69112,945.47572 c 14.99571,-5.2632 31.15581,-4.3122 46.68961,-2.9296"
id="path196028"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><g
id="g199959"
transform="matrix(0.8564312,0,0,0.8564312,128.98156,82.881071)"
style="stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 124.78863,1124.3209 c -6.08724,0.014 -14.55444,2.5016 -18.94222,-0.066 0.84512,-6.4014 2.82192,-26.7452 0.0338,-33.2567 8.93966,-3.1765 6.54811,-0.7069 18.36047,-1.6319"
id="path198719"
sodipodi:nodetypes="cccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 107.14746,1107.6106 c 4.82716,3.4604 11.51092,-1.2611 16.53816,1.0828"
id="path198721"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 129.33945,1116.9953 c 5.19708,-7.2944 5.73303,-23.5635 11.6739,-28.6349 3.27249,11.425 6.1211,17.7748 10.77291,27.7768"
id="path198723"
sodipodi:nodetypes="ccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 165.93192,1115.371 c -13.45375,-3.239 -12.33199,-27.2908 1.75895,-28.4542 9.44008,-0.6035 15.49516,11.3142 13.36278,19.0567 -0.99377,4.9381 -9.46675,14.0658 -15.12173,9.3975 z"
id="path198725"
sodipodi:nodetypes="cccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 191.65543,1128.0658 c -2.04369,-12.3592 -0.99024,-27.1701 -0.48953,-39.6471"
id="path198727"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 198.70002,1115.7175 c 4.53983,-6.9183 4.77328,-23.9172 10.80386,-25.7572 5.03516,7.5738 5.21316,18.9261 11.91253,25.589"
id="path198729"
sodipodi:nodetypes="ccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 225.77084,1102.7435 c 6.80927,0.8809 19.21104,-3.0951 20.31288,6.4145 1.19856,8.9312 -12.03758,10.267 -15.55743,4.0334 -7.31215,-7.9411 -5.44906,-21.8467 5.78791,-24.1001 2.27367,-0.1206 8.97869,-0.1121 10.10673,1.7279"
id="path198731"
sodipodi:nodetypes="ccccc" /></g><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 670.58746,657.14394 c -31.5356,-10.88634 -16.97899,-45.4 3.95336,-53.20457 14.43778,-5.38308 32.52068,8.16433 38.11588,25.62407 1.67038,20.4682 -22.86008,32.54768 -42.06924,27.5805 z"
id="path200206"
sodipodi:nodetypes="cscc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 707.17702,1163.6463 C 597.4486,1170.0454 595.42305,1079.4819 568.23525,1015.7337 542.65529,973.73332 509.34223,854.25288 465.07268,847.44847 c 61.39184,48.47865 54.0867,184.30783 66.48824,255.75703 24.30531,117.7778 144.82651,183.4953 252.49785,147.7163 37.52126,-11.3289 49.41961,-51.5116 64.06029,-83.3401 29.35151,-68.726 30.21145,-144.9349 20.06012,-217.09408 -10.15133,-72.15919 -65.85813,-112.01148 -117.7366,-120.35751 -53.69682,-13.54875 -109.71095,-4.4071 -161.45286,12.51711 -11.53742,4.04627 -52.72208,11.34076 -54.18543,13.48372 -0.43669,0.63951 2.66397,0.82025 11.14549,0.31899 61.02761,-3.30967 164.64521,-34.20517 213.96118,10.17308 32.32286,34.83551 29.24383,97.93341 26.34165,142.73919 -6.05555,49.0437 -30.30474,95.6549 -66.59659,128.3249 -19.77422,22.9543 -23.18485,66.452 6.2548,84.111"
id="path200210"
sodipodi:nodetypes="cccccccccsccccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 631.17517,1107.4584 c 12.11624,-0.9175 24.27542,-1.2651 36.42435,-1.0485"
id="path200216"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 712.75152,1105.1879 c 13.30662,0.1139 21.27183,-0.703 34.57959,-0.4885"
id="path200218"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 682.44314,1067.3979 c 6.64284,-13.9728 -22.03328,-55.8787 11.80053,-44.9262"
id="path200220"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 647.58223,965.89792 c 18.94072,-14.8161 52.93768,-21.711 68.48166,1.617"
id="path200222"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 646.38279,891.02771 C 647.84335,878.62268 640.27884,847.77 640.27884,847.77 m -4.54257,-18.06367 c -6.59185,-12.34311 -15.99922,-14.4019 -29.41943,-12.10202 -29.68742,1.18457 -51.86828,-24.34734 -73.77488,-45.0365 -24.41257,-23.05587 -42.48105,-50.69858 -72.25623,-81.45106 -51.42455,-41.98169 -7.67359,-75.44769 36.76251,-105.60679 48.66539,-31.89752 88.98767,-86.99154 149.71287,-99.86277 19.46431,-5.54186 54.13926,-5.4573 69.61899,5.03978 m -90.56481,41.45809 c -51.55012,44.67967 -99.23848,92.2729 -106.03815,123.48385 2.76004,14.1179 21.22896,38.44517 34.5042,50.5102 6.11938,5.41649 8.31204,7.72904 9.75076,-0.16741 5.15498,-28.48395 3.43328,-80.78111 1.25913,-101.61579"
id="path200224"
sodipodi:nodetypes="ccccsccccccccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 700.4751,518.44136 c -25.47105,-17.84886 -32.38613,-8.86651 -32.64636,-5.33562 -0.36419,4.94138 37.29789,28.36986 60.61256,21.79337 8.2584,-2.32948 20.29908,4.69188 23.49957,6.06213 36.40624,24.79343 72.69425,54.76534 88.38551,89.52642 4.08852,7.81048 1.74646,9.25179 -1.45343,16.32607 -17.91342,39.63363 -21.72378,58.74292 -55.17126,77.42046 -6.59916,3.89409 -6.519,3.55347 -8.54832,-3.52252 -5.75987,-20.39002 1.73057,-59.70529 5.38337,-98.72059 1.98502,-17.49108 1.16763,-36.16548 4.46451,-53.4665"
id="path200228"
sodipodi:nodetypes="cssccccccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 711.23786,895.92222 c 0.78662,-13.32532 -4.15752,-33.73402 -0.51935,-49.37185"
id="path202517"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><g
id="g210603"
transform="matrix(0.8564312,0,0,0.8564312,145.06291,350.57602)"
style="stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 573.75837,282.93124 c -11.01677,4.29547 -25.95014,-1.52502 -25.50853,-14.88686 -2.10132,-14.04291 12.15765,-23.02039 24.84798,-18.80249"
id="path210460" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 582.89358,275.63655 c -0.86847,-9.14639 -0.67357,-19.08063 -0.062,-28.27826"
id="path210462"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 582.81671,267.05838 c 1.56444,4.81506 9.02332,9.83482 14.11865,8.24018"
id="path210464"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 602.90761,262.27136 c 7.07337,-0.92607 27.48789,2.28448 14.0412,12.29082 -12.64623,6.29473 -19.59796,-15.25039 -12.14642,-23.44185 4.85654,-3.67562 14.1488,-5.52452 17.85669,-1.54896"
id="path210466"
sodipodi:nodetypes="cccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 634.35106,273.62261 c 18.67072,8.10258 17.17959,-11.82417 15.78259,-21.33519 0.0766,-1.80214 0.10898,-3.60615 0.0978,-5.40988"
id="path210468"
sodipodi:nodetypes="ccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 649.6435,261.26561 c -15.80769,9.44346 -28.39768,-16.20539 -6.94779,-12.69724 3.35503,0.49449 7.36092,1.98061 8.46309,5.57764"
id="path210470"
sodipodi:nodetypes="ccc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 657.55135,274.47424 c 4.73291,1.54352 9.71421,-0.60506 14.48935,0.58005"
id="path210472" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 662.74301,282.25579 c 2.78943,-9.37803 -7.94556,-42.9955 9.75144,-31.53713"
id="path210474"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 679.91398,262.23019 c 13.12123,-4.75308 27.94436,6.10341 9.40832,13.91771 -12.81853,1.66218 -16.8484,-18.8926 -8.5838,-26.16433 4.96672,-4.75133 14.31726,-3.98895 18.6091,0.52988"
id="path210476"
sodipodi:nodetypes="cccc" /></g><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 895.70161,686.50885 c 60.34042,33.57947 73.18522,62.63534 109.17279,105.67212 33.7188,34.89072 32.1651,83.74798 60.1909,114.12065"
id="path212633"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1028.5664,871.12837 c 13.8726,5.81563 31.3849,41.99265 36.4989,35.17325 -3.6127,-11.2115 -7.6776,-35.39364 -8.9056,-47.33848"
id="path212635"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1105.145,1197.3898 c -16.3509,-53.11 36.9797,-86.5947 65.8999,-51.7061 7.7886,15.3102 19.771,35.6603 12.0052,61.1306"
id="path213405"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1100.3113,1229.3583 c -2.9657,-13.009 0.1627,-30.3227 3.9035,-31.7192 11.2416,-4.1967 75.6034,22.3535 76.6872,50.1898 -3.9961,6.7393 -17.0721,18.3727 -27.2122,12.9544 -14.0024,-17.0949 -40.5166,-15.7132 -53.3785,-31.425 z"
id="path213411"
sodipodi:nodetypes="csccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1106.1207,1234.7259 c 2.996,22.4786 29.2349,31.9281 47.5691,26.0574"
id="path213413"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1177.1459,1236.0442 c 32.7967,-21.7936 0.9608,-41.5776 -25.7164,-25.45"
id="path213415"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1119.7911,1186.4839 c 6.1892,-1.8669 10.576,-2.4948 16.9938,0.3637"
id="path213417"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1150.7918,1187.1963 c 4.0827,-2.8319 13.3643,-2.2234 17.6774,-0.8926"
id="path213419"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1140.8426,1173.1657 c -3.7477,-3.1137 -6.0183,-17.769 2.9268,-11.6051"
id="path213421"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1115.5662,1147.306 c 2.7869,3.074 2.2029,8.0271 5.8184,9.9558 9.2124,4.9147 15.7509,-3.3259 33.6152,2.6254 7.2677,2.4212 10.7417,-10.4184 16.0451,-14.2035"
id="path213423"
sodipodi:nodetypes="cssc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1130.6643,1148.4626 c 4.3136,-8.5121 17.9084,-7.0371 21.763,0.9073"
id="path213425"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002"
sodipodi:nodetypes="cc" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1262.0562,1173.7395 c -34.7294,-14.0102 -35.0464,-58.8416 -28.5262,-89.8205 6.0585,-29.1727 52.9989,-46.4892 69.3287,-17.5138 10.1678,23.9862 19.1409,49.391 12.2717,75.6837 -2.2134,25.4983 -29.6651,40.561 -53.0742,31.6506 z"
id="path213427"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1254.9821,1121.9154 c 1.8812,0.024 9.3979,0.2305 11.275,0.3093"
id="path213429"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1279.4463,1122.7736 c 5.8112,0.1829 11.7721,2.078 17.4897,0.064"
id="path213431"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1269.6663,1105.1929 c -0.3989,-5.28 1.7487,-17.0741 9.6426,-12.9464"
id="path213433"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1266.3168,1079.6153 c 9.2095,-3.4786 23.4032,-3.604 27.6681,7.3017"
id="path213435"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:0.642323px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="m 1245.1226,1079.9554 c 0.5944,-0.112 2.4998,-0.4713 2.8581,-0.5389"
id="path213439"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1112.0035,1198.0142 c 5.6658,-4.1111 58.0306,2.6488 59.3103,6.4461"
id="path216400"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 300.75162,906.14792 c 17.90604,-87.39633 76.54827,-133.35653 155.11764,-189.3724"
id="path216737"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.52098,1392.8386 C 460.89809,1368.8308 331.45256,1261.7002 303.78415,1139.7113"
id="path216741"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 291.01911,1174.9663 c 5.15676,-13.9737 7.84227,-23.9778 13.54332,-33.8288 8.05,7.6892 6.55265,14.1363 23.27866,24.7262"
id="path216743"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:none;fill-rule:evenodd;stroke:#126d82;stroke-width:5.13859;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1079.9136,1113.8752 c -29.0814,111.6881 -125.80867,190.653 -212.52175,257.0248 l -15.8603,8.1143"
id="path216745"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 863.10255,1348.193 c 0,0 -13.87585,25.142 -21.64682,32.7678 10.07582,-1.9465 21.3594,-2.4105 37.09382,-7.3738"
id="path216747"
sodipodi:nodetypes="ccc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 885.52453,1513.5178 c -2.90979,6.4276 -10.23338,11.1837 -17.31858,8.6719 -10.65234,-3.6521 -18.93288,-13.929 -20.44103,-25.0619 -1.16107,-7.078 5.14252,-12.8949 11.89308,-13.211 1.4304,-0.2022 2.87564,-0.2877 4.31966,-0.2946"
id="path220496"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 858.26625,1485.1865 c -7.03374,-6.0772 -8.55728,-16.77 -4.25565,-24.8632 7.09704,-13.8281 21.64987,-23.3723 36.91522,-25.536 9.75598,-1.4474 20.31459,2.6467 25.01321,11.6711"
id="path220498"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 883.86657,1469.3692 c 1.83301,-13.2712 15.55406,-21.201 28.08595,-21.1834 12.40397,-0.6149 26.56876,6.028 29.69231,18.9427 l 0.2901,1.2785 0.22564,1.3201"
id="path220500"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 938.58653,1457.0302 c 12.23584,-5.0119 28.13623,-3.9901 37.15382,6.6185 8.32648,9.444 10.06358,22.8342 8.79238,34.9498"
id="path220502"
sodipodi:nodetypes="cc"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /><path
style="fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#126d82;stroke-width:6.42323;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 970.45388,1489.6947 c 8.6591,3.6612 18.4225,10.6761 18.10622,21.1459 -0.87022,11.8811 -11.01465,20.4751 -20.66239,26.0302 -11.64502,6.3349 -26.81385,10.3602 -39.13644,3.5714 -6.30899,-3.6221 -9.96155,-10.5227 -11.18616,-17.5118"
id="path220504"
inkscape:export-filename="/home/dan/code/spiffworkflow_org/static/images/illustrations/flow.png"
inkscape:export-xdpi="42.900002"
inkscape:export-ydpi="42.900002" /></g><rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:14.17322826;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1516"
width="157.09094"
height="113.36459"
x="-620.78778"
y="-1514.5675"
transform="scale(1,-1)"
ry="7.3865285" /><circle
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:11.54805756;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1518"
cx="-883.25897"
cy="-1386.9147"
r="28.903154"
transform="scale(1,-1)" /><path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:14.17322826;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send)"
d="m -854.0919,1387.7029 h 67.79399"
id="path1520"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /><rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:14.17322922;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2204"
width="47.298115"
height="47.298115"
x="-1524.5227"
y="-485.28372"
transform="matrix(0.70710678,-0.70710678,-0.70710678,-0.70710678,0,0)"
ry="0" /><path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:14.17322731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send-6)"
d="m -737.42195,1459.9117 h 89.86644"
id="path1520-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#126d82;stroke-width:14.17322826;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -734.85295,1421.1477 -0.79532,45.8838"
id="path3007"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /><path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:14.17322731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send-6-3)"
d="m -737.5253,1307.7584 h 89.86644"
id="path1520-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /><path
style="fill:none;stroke:#126d82;stroke-width:14.17322731;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -734.9563,1352.5224 -0.79532,-51.4579"
id="path3007-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /><rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:14.17322731;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1516-9"
width="157.09094"
height="113.36459"
x="-619.68152"
y="-1365.2029"
ry="7.3865285"
transform="scale(1,-1)" /></g></svg>

After

Width:  |  Height:  |  Size: 62 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 63 KiB

View File

@ -0,0 +1,162 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 100 100.00001"
xml:space="preserve"
sodipodi:docname="bots.svg"
width="100"
height="100"
inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs86967"><clipPath
id="_clipPath_qWdgEYOhPdxn7LEE7kcrbvZICeenHuQX"><rect
width="200"
height="200"
id="rect88336"
x="0"
y="0" /></clipPath></defs><sodipodi:namedview
id="namedview86965"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.2388156"
inkscape:cx="230.05845"
inkscape:cy="31.885294"
inkscape:window-width="1916"
inkscape:window-height="934"
inkscape:window-x="0"
inkscape:window-y="144"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g86934"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86936"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86938"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86940"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86942"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86944"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86946"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86948"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86950"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86952"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86954"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86956"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86958"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86960"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g86962"
transform="translate(-83.477242,-118.00189)">
</g>
<g
id="g110543"
transform="matrix(0.37581123,0,0,0.37581123,-6.44036,0.94670735)"><rect
x="147.01482"
y="54.500347"
width="6.3358431"
height="38.01326"
fill="#dd8f32"
id="rect88341"
style="isolation:isolate;fill:#126d82;fill-opacity:1;stroke-width:0.898956" /><path
d="m 150.18275,86.177765 v 0 c 8.74145,0 15.83871,7.097259 15.83871,15.838705 v 6.33585 c 0,8.74145 -7.09726,15.83871 -15.83871,15.83871 v 0 c -8.74145,0 -15.83871,-7.09726 -15.83871,-15.83871 v -6.33585 c 0,-8.741446 7.09726,-15.838705 15.83871,-15.838705 z"
style="isolation:isolate;fill:#f26319;fill-opacity:0.978851;stroke:none;stroke-width:0.898956;stroke-miterlimit:10"
id="path88343" /><path
d="m 210.36966,187.54586 v -34.84534 c 0,-33.21823 -26.96868,-60.186911 -60.18691,-60.186911 v 0 c -33.21823,0 -60.186922,26.968681 -60.186922,60.186911 v 34.84534 z"
fill="#c13e5b"
id="path88345"
style="isolation:isolate;fill:#126d82;fill-opacity:1;stroke-width:0.898956" /><rect
x="89.995827"
y="181.21002"
width="120.37473"
height="31.677418"
fill="#b02f4f"
id="rect88347"
style="isolation:isolate;fill:#758d4f;fill-opacity:0.737255;stroke-width:0.898956" /><rect
x="83.659981"
y="187.54585"
width="133.04552"
height="31.677418"
fill="#b73e5c"
id="rect88349"
style="isolation:isolate;fill:#126d82;fill-opacity:1;stroke-width:0.898956" /><path
d="m 140.67988,51.332426 c 0,-5.24451 4.25746,-9.502866 9.50287,-9.502866 5.24541,0 9.50286,4.258356 9.50286,9.502866 0,5.245409 -4.25745,9.503765 -9.50286,9.503765 -5.24541,0 -9.50287,-4.258356 -9.50287,-9.503765 z"
fill="#dc4067"
id="path88351"
style="isolation:isolate;fill:#126d82;fill-opacity:1;stroke-width:0.898956" /><path
d="m 109.00157,146.36468 c 0,-8.74145 7.09725,-15.83871 15.8396,-15.83871 8.74145,0 15.83871,7.09726 15.83871,15.83871 0,8.74235 -7.09726,15.83871 -15.83871,15.83871 -8.74235,0 -15.8396,-7.09636 -15.8396,-15.83871 z"
fill="#ebebeb"
id="path88353"
style="isolation:isolate;stroke-width:0.898956" /><path
d="m 159.68561,146.36468 c 0,-8.74145 7.09726,-15.83871 15.83871,-15.83871 8.74235,0 15.83961,7.09726 15.83961,15.83871 0,8.74235 -7.09726,15.83871 -15.83961,15.83871 -8.74145,0 -15.83871,-7.09636 -15.83871,-15.83871 z"
fill="#ebebeb"
id="path88355"
style="isolation:isolate;stroke-width:0.898956" /><path
d="m 172.3573,146.36468 c 0,-1.74757 1.41945,-3.16702 3.16702,-3.16702 1.74847,0 3.16792,1.41945 3.16792,3.16702 0,1.74847 -1.41945,3.16792 -3.16792,3.16792 -1.74757,0 -3.16702,-1.41945 -3.16702,-3.16792 z"
fill="#dd8f32"
id="path88357"
style="isolation:isolate;fill:#f26319;fill-opacity:0.847059;stroke-width:0.898956" /><path
d="m 121.67325,146.36468 c 0,-1.74757 1.41945,-3.16702 3.16792,-3.16702 1.74757,0 3.16703,1.41945 3.16703,3.16702 0,1.74847 -1.41946,3.16792 -3.16703,3.16792 -1.74847,0 -3.16792,-1.41945 -3.16792,-3.16792 z"
fill="#dd8f32"
id="path88359"
style="isolation:isolate;fill:#f26319;fill-opacity:0.847059;stroke-width:0.898956" /></g></svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,168 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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="163.1358mm"
height="97.685028mm"
viewBox="0 0 163.1358 97.685028"
version="1.1"
id="svg3463"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="bpmn.svg">
<defs
id="defs3457">
<marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0"
refX="0"
id="Arrow2Send-6-3"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path1555-7-5"
style="fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0"
refX="0"
id="Arrow2Send-6"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path1555-7"
style="fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
</marker>
<marker
inkscape:stockid="Arrow2Send"
orient="auto"
refY="0"
refX="0"
id="Arrow2Send"
style="overflow:visible"
inkscape:isstock="true">
<path
inkscape:connector-curvature="0"
id="path1555"
style="fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:#126d82;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-0.3,0,0,-0.3,0.69,0)" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="288.28815"
inkscape:cy="76.030215"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1916"
inkscape:window-height="1004"
inkscape:window-x="0"
inkscape:window-y="74"
inkscape:window-maximized="0" />
<metadata
id="metadata3460">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(103.49053,-71.264633)">
<rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:4.99999952;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1516"
width="55.418194"
height="39.992508"
x="1.3368165"
y="73.764633"
ry="2.605803" />
<circle
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:4.07389784;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path1518"
cx="-91.257187"
cy="118.79771"
r="10.19639" />
<path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:4.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send)"
d="m -80.967689,118.51964 h 23.916214"
id="path1520"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2204"
width="16.685724"
height="16.685724"
x="47.954712"
y="102.97163"
transform="rotate(45)"
ry="0" />
<path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:4.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send-6)"
d="M -39.809125,93.045984 H -8.1062416"
id="path1520-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#126d82;stroke-width:4.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -38.902839,106.72106 -0.28057,-16.186783"
id="path3007"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:#126d82;fill-opacity:1;stroke:#126d82;stroke-width:4.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Send-6-3)"
d="M -39.845584,146.72228 H -8.1427006"
id="path1520-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#126d82;stroke-width:4.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -38.939299,130.93054 -0.280569,18.1532"
id="path3007-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:4.99999952;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1516-9"
width="55.418194"
height="39.992508"
x="1.7270906"
y="126.45715"
ry="2.605803" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,220 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 100.00001 100.00001"
xml:space="preserve"
sodipodi:docname="clock.svg"
width="100"
height="100"
inkscape:version="1.1.2 (1:1.1+202202050950+0a00cf5339)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><defs
id="defs86967"><clipPath
id="_clipPath_qWdgEYOhPdxn7LEE7kcrbvZICeenHuQX"><rect
width="200"
height="200"
id="rect88336"
x="0"
y="0" /></clipPath><filter
id="filter3811"
x="-0.092436545"
y="-0.091610961"
width="1.1848731"
height="1.1832219"><feGaussianBlur
id="feGaussianBlur3813"
stdDeviation="6.1652538" /></filter><filter
id="filter3890"
x="-3.1769152e-06"
y="-3.0630907e-06"
width="1.0000064"
height="1.0000061"><feGaussianBlur
id="feGaussianBlur3892"
stdDeviation="0.00034763528" /></filter><filter
id="filter3931"
y="-0.10175875"
width="1.062814"
x="-0.031406976"
height="1.2035176"><feGaussianBlur
id="feGaussianBlur3933"
stdDeviation="3.9259375" /></filter><filter
id="filter4047"
y="-0.024636298"
width="15.20396"
x="-7.10198"
height="1.0492726"><feGaussianBlur
id="feGaussianBlur4049"
stdDeviation="1.1718344" /></filter><filter
id="filter4121"
y="-0.10795665"
width="1.0608213"
x="-0.03041065"
height="1.2159133"><feGaussianBlur
id="feGaussianBlur4123"
stdDeviation="2.8525318e-06" /></filter><filter
id="filter4247"
y="-0.24569213"
width="1.637438"
x="-0.31871898"
height="1.4913843"><feGaussianBlur
id="feGaussianBlur4249"
stdDeviation="1.9546344" /></filter><filter
id="filter4363"
y="-0.00032658544"
width="8.2724132"
x="-3.6362066"
height="1.0006532"><feGaussianBlur
id="feGaussianBlur4365"
stdDeviation="2.8525318e-06" /></filter></defs><sodipodi:namedview
id="namedview86965"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.7519498"
inkscape:cx="47.375787"
inkscape:cy="131.5677"
inkscape:window-width="1916"
inkscape:window-height="934"
inkscape:window-x="0"
inkscape:window-y="144"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g86934"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86936"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86938"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86940"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86942"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86944"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86946"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86948"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86950"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86952"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86954"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86956"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86958"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86960"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g86962"
transform="translate(-76.785918,-133.66041)">
</g>
<g
id="g37728"
transform="matrix(0.49855624,0,0,0.49975579,13.895796,13.689505)"><path
id="path3905"
fill="#ff5555"
d="m 43.490481,22.632045 c -11.720339,0 -21.217759,9.49742 -21.217759,21.217757 0,3.510529 0.851998,6.819935 2.36102,9.736596 L 55.170554,26.131702 C 51.82106,23.920541 47.804659,22.632045 43.490645,22.632045 Z m 57.854249,0 c -4.314011,0 -8.330076,1.288429 -11.679904,3.499657 L 120.2013,53.586398 c 1.50902,-2.916565 2.36101,-6.226067 2.36101,-9.736596 0,-11.720337 -9.49741,-21.217757 -21.21775,-21.217757 z"
style="fill:#5b855c;fill-opacity:1;stroke-width:0.33974" /><path
id="path3845"
style="color:#000000;text-indent:0;text-transform:none"
d="m 150,13.812 c -72.423,0 -131.31,58.889 -131.31,131.31 0,40.196 18.13,76.209 46.656,100.31 l -25.127,30.6 12.343,10.16 25.626,-31.19 c 20.648,13.535 45.325,21.438 71.812,21.438 26.493,0 51.162,-7.8973 71.812,-21.438 l 25.594,31.188 12.375,-10.156 -25.16,-30.59 c 28.53,-24.11 46.69,-60.12 46.69,-100.32 0,-72.418 -58.89,-131.31 -131.31,-131.31 z m 0,16 c 63.776,0 115.31,51.537 115.31,115.31 0,63.776 -51.537,115.31 -115.31,115.31 C 86.224,260.442 34.69,208.902 34.69,145.122 34.688,81.351 86.224,29.812 150,29.812 Z"
transform="matrix(0.33430374,0,0,0.33430374,22.272722,27.005139)"
filter="url(#filter3890)"
fill="#191113" /><path
id="path3009"
fill="#494843"
d="m 113.63928,75.025654 a 41.222995,41.222995 0 1 1 -82.442644,0 41.222995,41.222995 0 1 1 82.442644,0 z"
style="fill:#126d82;fill-opacity:1;stroke-width:0.334304" /><path
id="path4051"
d="m 117.16,194.44 61.664,-32.728"
filter="url(#filter4121)"
stroke="#251e1d"
stroke-width="8"
fill="none"
transform="matrix(0.33973958,0,0,0.33973958,21.457346,20.865366)" /><path
id="path3963"
d="M 166.78,176.2 165.68,60.12"
filter="url(#filter4363)"
stroke="#1c1516"
stroke-width="8"
fill="none"
transform="matrix(0.33973958,0,0,0.33973958,21.457346,20.865366)" /><path
id="path3953"
style="color:#000000;text-indent:0;text-transform:none;fill:#5b855c;fill-opacity:1;stroke-width:0.33974"
fill="#ff5555"
d="m 48.360645,53.119559 -0.891816,1.029818 34.164208,29.812156 0.891817,-1.029826 z" /><path
id="path3949"
style="color:#000000;text-indent:0;text-transform:none;fill:#f17839;fill-opacity:1;stroke-width:0.33974"
fill="#f1f5f4"
d="m 78.503015,71.157015 -20.948336,11.116278 1.592524,3.004589 20.946986,-11.115936 -1.59253,-3.004595 z" /><path
id="path4025"
d="M 152.78,176.2 151.68,60.12"
filter="url(#filter4047)"
stroke="#000000"
stroke-width="10"
fill="#808080"
transform="matrix(0.33973958,0,0,0.33973958,21.457346,20.865366)" /><path
id="path4125"
style="color:#000000;text-indent:0;text-transform:none"
d="m 159,152.75 -14.454,7.7135 -0.26468,11.38 14.544,-7.5927 z"
transform="matrix(0.28827922,0,0,0.35417851,29.533975,18.543212)"
filter="url(#filter4247)"
fill="#4d4c47" /><path
id="path3951"
style="color:#000000;text-indent:0;text-transform:none;fill:#f17839;fill-opacity:1;stroke-width:0.33974"
fill="#f1f5f4"
d="m 74.691141,41.270801 -3.397397,0.03185 0.37161,39.440365 3.397396,-0.03185 -0.370315,-39.443762 z" /><path
id="path3011"
style="color:#000000;text-indent:0;text-transform:none;fill:#5b855c;fill-opacity:1;stroke-width:0.33974"
fill="#f1f5f4"
d="m 72.418285,31.620504 c -24.211203,0 -43.901152,19.689265 -43.901152,43.901146 3.43e-4,13.440097 6.067412,25.48047 15.607298,33.5391 l -8.408554,10.22276 4.129874,3.3974 8.567892,-10.42662 c 6.902488,4.52534 15.151028,7.15492 24.004642,7.15492 8.853608,0 17.102491,-2.62958 24.005997,-7.15492 l 8.568228,10.42662 4.12784,-3.3974 -8.40856,-10.22276 c 9.53989,-8.05863 15.60764,-20.099003 15.60764,-33.5391 0,-24.212224 -19.691306,-43.901146 -43.901145,-43.901146 z m 0,5.350898 c 21.322054,0 38.550245,17.229213 38.550245,38.550248 0,21.318659 -17.228191,38.54006 -38.550245,38.54006 -21.320699,0 -38.550254,-17.221401 -38.550254,-38.54006 3.43e-4,-21.321377 17.229555,-38.550248 38.550254,-38.550248 z" /></g></svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4FC1EA;}
.st1{opacity:0.3;}
.st2{fill:#585763;}
</style>
<g id="XMLID_135_">
<g id="XMLID_1529_">
<path id="XMLID_2258_" class="st0" d="M76.1,72.9v46.2c0,4.1,3.3,7.4,7.4,7.4h32.9c4.1,0,7.4-3.3,7.4-7.4v-34c0-2-0.8-3.9-2.2-5.3
l-12.2-12.2c-1.4-1.4-3.3-2.2-5.3-2.2H83.6C79.5,65.5,76.1,68.8,76.1,72.9z M106.8,70.4L119,82.6c0.7,0.7,1,1.6,1,2.5v34
c0,2-1.6,3.6-3.6,3.6H83.6c-2,0-3.6-1.6-3.6-3.6V72.9c0-2,1.6-3.6,3.6-3.6h20.7C105.2,69.3,106.1,69.7,106.8,70.4z"/>
<rect id="XMLID_2180_" x="88.9" y="80.8" class="st0" width="22.2" height="3.9"/>
<rect id="XMLID_2171_" x="88.9" y="94.1" class="st0" width="22.2" height="3.9"/>
<rect id="XMLID_1695_" x="88.9" y="107.3" class="st0" width="22.2" height="3.9"/>
</g>
<g id="XMLID_1420_" class="st1">
<path id="XMLID_1437_" class="st2" d="M114.5,56.6c13.3,4.9,23.4,16.3,26.5,30.3l3.8-0.8c-3.5-15.7-15.1-28.5-30.2-33.5v-2.3
c0-1.9-2.1-3.1-3.7-2.1l-5.1,2.9c-1.6,0.9-1.6,3.3,0,4.3l5.1,2.9C112.4,59,114.2,58.1,114.5,56.6z"/>
<path id="XMLID_1435_" class="st2" d="M59.2,90.4l2.9-5.1c0.9-1.5-0.1-3.3-1.7-3.7C65.4,68.3,76.8,58.1,90.9,55L90,51.2
c-15.8,3.5-28.6,15.2-33.6,30.4h-2.3c-1.9,0-3.1,2.1-2.1,3.7l2.9,5.1C55.9,92,58.3,92,59.2,90.4z"/>
<path id="XMLID_1426_" class="st2" d="M96.8,136.8l-5.1-2.9c-1.6-0.9-3.7,0.2-3.7,2.1v0.3C73.5,132,62.3,120,59,105.1l-3.8,0.8
c3.7,16.6,16.5,29.9,32.8,34.3v1.6c0,1.9,2.1,3.1,3.7,2.1l5.1-2.9C98.5,140.1,98.5,137.7,96.8,136.8z"/>
<path id="XMLID_1424_" class="st2" d="M148,106.9l-2.9-5.1c-1-1.6-3.3-1.6-4.3,0l-2.9,5.1c-0.9,1.5,0,3.3,1.6,3.6
c-4.9,13.3-16.3,23.4-30.3,26.5l0.8,3.8c15.7-3.5,28.5-15.1,33.5-30.2h2.3C147.8,110.6,148.9,108.5,148,106.9z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<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="400"
height="400"
viewBox="0 0 400 400.00001"
id="svg2"
version="1.1"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="enterprise.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.5998291"
inkscape:cx="124.04023"
inkscape:cy="205.56869"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1916"
inkscape:window-height="968"
inkscape:window-x="0"
inkscape:window-y="110"
inkscape:window-maximized="0">
<sodipodi:guide
position="200.71429,121.42857"
orientation="1,0"
id="guide23298"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata7">
<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>
<g
inkscape:label="Capa 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-652.36216)">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#126d82;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 161.23878,669.68299 c -12.53852,1.01028 -27.20681,1.81817 -36.72558,11.39084 -9.80522,11.37012 -9.95764,29.95751 0.364,41.09469 4.33497,5.97506 10.31265,13.13905 8.51038,20.97477 -4.78084,9.11096 -16.75568,9.58017 -25.73703,10.14768 -26.640003,1.96586 -53.48394,-0.62296 -80.032694,1.65494 -5.655823,0.69669 -7.983091,6.39561 -7.509096,11.50614 -2.652893,30.72408 -3.368891,61.55562 -3.7152,92.37305 -0.08864,8.74886 4.212722,19.19416 13.967687,20.30549 13.242044,0.91978 19.608327,-12.10192 27.642552,-20.10967 3.292891,-3.65675 8.189651,-5.25129 12.847638,-3.34917 15.848926,4.04219 26.511671,20.57387 24.907171,36.66992 -0.287344,14.36034 -9.069766,30.68296 -24.369107,33.04407 -10.974117,1.23933 -17.602531,-9.25543 -26.072286,-14.1507 -7.155167,-5.21547 -19.743304,-7.67569 -24.835105,1.5355 -4.041594,8.7986 -2.695242,18.92508 -3.519458,28.30855 0.04876,26.44925 0.685855,52.98381 2.158773,79.32441 0.386976,5.4776 1.269168,12.81 8.152363,13.3929 30.112541,1.337 60.420047,1.1998 90.526672,0.2104 7.89682,0.1504 18.20366,-0.2117 21.39601,-9.0592 2.60707,-10.5757 -3.34625,-21.13 -11.25541,-27.89144 -8.09775,-8.5362 -4.34934,-25.00836 7.57499,-27.76883 11.37209,-2.78783 23.8388,-3.45977 35.1004,0.17569 7.71388,2.22219 12.93893,10.5992 10.35864,18.41129 -4.08396,10.95847 -14.94044,19.72539 -13.99697,32.35159 0.19861,8.9588 9.90862,12.8208 17.63165,13.0745 34.38073,2.2501 68.95741,1.8468 103.40517,1.2591 6.67751,-0.9698 9.46171,-7.972 8.88098,-14.0093 2.31559,-29.75709 -1.5485,-60.31152 4.86526,-89.76552 2.14649,-5.88348 9.1364,-11.17411 15.26892,-7.35354 12.55815,4.95469 22.37797,18.71455 37.17579,16.16021 15.29074,-1.35399 26.24589,-15.4528 28.16964,-29.97782 2.90662,-15.88135 1.13135,-33.47673 -7.02228,-47.72293 -8.14321,-12.03784 -26.25427,-16.47628 -38.45506,-7.69028 -8.27099,4.4403 -15.66063,13.33193 -25.72639,12.76528 -5.52292,-0.7959 -8.95352,-5.89258 -9.17369,-11.19121 -5.20699,-24.61586 -2.48256,-49.9369 -3.32353,-74.88048 -0.28305,-8.01322 0.86386,-16.69226 -3.30061,-23.85248 -5.66138,-4.71711 -13.45814,-1.94328 -19.65579,-2.33527 -18.38893,0.34705 -56.42916,-0.30822 -68.55917,-1.49523 -7.89125,-1.03326 -17.7264,-2.53697 -22.07707,-10.01639 -0.96747,-5.15366 2.82477,-9.55992 4.53511,-14.14705 6.03063,-10.55589 16.61337,-21.16682 12.96293,-34.4141 -4.29251,-16.36103 -21.55974,-24.74921 -37.45397,-24.89001 -1.29501,-0.0529 -2.59116,-0.0795 -3.88723,-0.0603 z"
id="path4254"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<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"
version="1.1"
id="SERVERS"
width="400"
height="400"
viewBox="0 0 900 900"
enable-background="new 0 0 1800 1800"
xml:space="preserve"
sodipodi:docname="hosting.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata4350"><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="defs4348">
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1916"
inkscape:window-height="968"
id="namedview4346"
showgrid="false"
inkscape:zoom="2.36"
inkscape:cx="266.01255"
inkscape:cy="194.32267"
inkscape:window-x="0"
inkscape:window-y="110"
inkscape:window-maximized="0"
inkscape:current-layer="SERVERS" />
<path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4315"
d="m 155.65123,427.47852 c -13.63329,0 -24.68662,11.05379 -24.68662,24.6857 0,13.63468 11.05333,24.68431 24.68662,24.68431 13.63329,0 24.68662,-11.04963 24.68662,-24.68431 4.6e-4,-13.63191 -11.05333,-24.6857 -24.68662,-24.6857 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4317"
d="m 240.78428,427.47852 c -13.63514,0 -24.68893,11.05379 -24.68893,24.6857 0,13.63468 11.05332,24.68431 24.68893,24.68431 13.63099,0 24.68431,-11.04963 24.68431,-24.68431 0,-13.63191 -11.05379,-24.6857 -24.68431,-24.6857 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4319"
d="m 325.91548,427.47852 c -13.63514,0 -24.68848,11.05379 -24.68848,24.6857 0,13.63468 11.05334,24.68431 24.68848,24.68431 13.63098,0 24.68431,-11.04963 24.68431,-24.68431 0,-13.63191 -11.05333,-24.6857 -24.68431,-24.6857 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4321"
d="m 758.40431,437.61273 h -295.8164 c -8.03366,0 -14.54872,6.51321 -14.54872,14.54733 0,8.03736 6.51506,14.54871 14.54872,14.54871 h 295.8164 c 8.03363,0 14.5487,-6.51135 14.5487,-14.54871 0,-8.03412 -6.51507,-14.54733 -14.5487,-14.54733 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4325"
d="m 155.65123,729.12178 c -13.63329,0 -24.68662,11.05378 -24.68662,24.68431 0,13.63514 11.05333,24.68477 24.68662,24.68477 13.63329,0 24.68662,-11.04963 24.68662,-24.68477 4.6e-4,-13.63099 -11.05333,-24.68431 -24.68662,-24.68431 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4327"
d="m 240.78428,729.12178 c -13.63514,0 -24.68893,11.05378 -24.68893,24.68431 0,13.63514 11.05332,24.68477 24.68893,24.68477 13.63099,0 24.68431,-11.04963 24.68431,-24.68477 0,-13.63099 -11.05379,-24.68431 -24.68431,-24.68431 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4329"
d="m 325.91548,729.12178 c -13.63514,0 -24.68848,11.05378 -24.68848,24.68431 0,13.63514 11.05334,24.68477 24.68848,24.68477 13.63098,0 24.68431,-11.04963 24.68431,-24.68477 0,-13.63099 -11.05333,-24.68431 -24.68431,-24.68431 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4331"
d="m 758.40431,739.25321 h -295.8164 c -8.03366,0 -14.54872,6.51552 -14.54872,14.54872 0,8.03735 6.51506,14.54871 14.54872,14.54871 h 295.8164 c 8.03363,0 14.5487,-6.51136 14.5487,-14.54871 0,-8.03274 -6.51507,-14.54872 -14.5487,-14.54872 z" /><circle
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
id="circle4335"
r="24.685698"
cy="146.1873"
cx="155.6512" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4337"
d="m 240.78428,121.5016 c -13.63514,0 -24.68893,11.05332 -24.68893,24.68662 0,13.63329 11.05332,24.68478 24.68893,24.68478 13.63099,0 24.68431,-11.05149 24.68431,-24.68478 0,-13.6333 -11.05379,-24.68662 -24.68431,-24.68662 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4339"
d="m 325.91548,121.5016 c -13.63514,0 -24.68848,11.05332 -24.68848,24.68662 0,13.63329 11.05334,24.68478 24.68848,24.68478 13.63098,0 24.68431,-11.05149 24.68431,-24.68478 0,-13.6333 -11.05333,-24.68662 -24.68431,-24.68662 z" /><path
style="fill:#126d82;fill-opacity:1;stroke-width:0.46186379"
inkscape:connector-curvature="0"
id="path4341"
d="m 758.40431,131.63535 h -295.8164 c -8.03366,0 -14.54872,6.5132 -14.54872,14.54871 0,8.03551 6.51506,14.54871 14.54872,14.54871 h 295.8164 c 8.03363,0 14.5487,-6.5132 14.5487,-14.54871 0,-8.03551 -6.51507,-14.54871 -14.5487,-14.54871 z" />
<rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:33.75;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5065"
width="824.94537"
height="213.82249"
x="33.688751"
y="38.480705"
ry="30.508474" /><rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:33.75;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5065-9"
width="824.94537"
height="213.82249"
x="33.688755"
y="341.42029"
ry="30.508472" /><rect
style="fill:none;fill-opacity:1;stroke:#126d82;stroke-width:33.75;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5065-9-3"
width="824.94537"
height="213.82249"
x="33.688751"
y="644.35992"
ry="30.508472" /></svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-514 51 200 200" style="enable-background:new -514 51 200 200;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.3;}
.st1{fill:#585763;}
.st2{fill:#F39208;}
</style>
<g id="XMLID_67_">
<g id="XMLID_2293_" class="st0">
<path id="XMLID_2299_" class="st1" d="M-367.4,178.5h-93.2c-7.3,0-13.3-6-13.3-13.3V112c0-7.3,6-13.3,13.3-13.3h93.1
c7.3,0,13.3,6,13.3,13.3v53.3C-354.2,172.6-360.1,178.5-367.4,178.5z M-460.6,104c-4.4,0-8,3.6-8,8v53.3c0,4.4,3.6,8,8,8h93.1
c4.4,0,8-3.6,8-8V112c0-4.4-3.6-8-8-8H-460.6z"/>
</g>
<g id="XMLID_2284_" class="st0">
<path id="XMLID_2290_" class="st1" d="M-352.8,203.3h-122.4c-4.4,0-8-3.6-8-8v-4.2c0-4.4,3.6-8,8-8h122.3c4.4,0,8,3.6,8,8v4.2
C-344.9,199.8-348.4,203.3-352.8,203.3z M-475.2,188.5c-1.5,0-2.7,1.2-2.7,2.7v4.2c0,1.5,1.2,2.7,2.7,2.7h122.3
c1.5,0,2.7-1.2,2.7-2.7v-4.2c0-1.5-1.2-2.7-2.7-2.7H-475.2z"/>
</g>
<g id="XMLID_2280_">
<path id="XMLID_2281_" class="st2" d="M-392.6,160.2h-42.8c-6.4,0-11.6-5.2-11.6-11.6c0-4.8,2.9-9,7.2-10.8
c0.3-5.8,4.9-10.5,10.7-10.9c2.5-5.9,8.5-9.9,15.1-9.9s12.6,4,15.2,9.9c5.8,0.5,10.4,5.1,10.7,10.9c4.2,1.8,7.1,6,7.1,10.7
C-380.9,155-386.1,160.2-392.6,160.2z M-428.3,132.2c-3.5,0-6.3,2.8-6.3,6.3c0,0.3,0,0.5,0.1,0.9c0.2,1.4-0.7,2.7-2.1,3
c-3,0.6-5.1,3.2-5.1,6.2c0,3.5,2.8,6.3,6.3,6.3h42.9c3.5,0,6.3-2.8,6.3-6.3c0-3-2.1-5.6-5.1-6.2c-1.4-0.3-2.3-1.6-2.1-3
c0-0.3,0.1-0.6,0.1-0.9c0-3.5-2.8-6.3-6.3-6.3c-0.2,0-0.4,0-0.7,0c-1.3,0.1-2.5-0.7-2.8-1.9c-1.4-4.7-5.9-8.1-10.8-8.1
c-5,0-9.4,3.3-10.8,8.1c-0.4,1.2-1.5,2-2.8,1.9C-427.8,132.2-428,132.2-428.3,132.2z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
<style type="text/css">
.st0{fill:#4FC1EA;}
.st1{opacity:0.3;}
.st2{fill:#585763;}
</style>
<g id="XMLID_95_">
<g id="XMLID_780_">
<path id="XMLID_816_" class="st0" d="M68.1,129.4h59c4.8,0,8.8-3.9,8.8-8.8V86.8c0-4.8-3.9-8.8-8.8-8.8h-59
c-4.8,0-8.8,3.9-8.8,8.8v33.8C59.3,125.5,63.3,129.4,68.1,129.4z M63.4,86.8c0-2.6,2.1-4.7,4.7-4.7h59c2.6,0,4.7,2.1,4.7,4.7v33.8
c0,2.6-2.1,4.7-4.7,4.7h-59c-2.6,0-4.7-2.1-4.7-4.7V86.8z"/>
<path id="XMLID_781_" class="st0" d="M135.8,131.7H59.5c-3.3,0-6,2.7-6,6v1.4c0,3.3,2.7,6,6,6h76.4c3.3,0,6-2.7,6-6v-1.4
C141.8,134.4,139.1,131.7,135.8,131.7z M137.8,139.1c0,1.1-0.9,1.9-1.9,1.9H59.5c-1.1,0-1.9-0.9-1.9-1.9v-1.4
c0-1.1,0.9-1.9,1.9-1.9h76.4c1.1,0,1.9,0.9,1.9,1.9V139.1z"/>
</g>
<g id="XMLID_662_" class="st1">
<path id="XMLID_663_" class="st2" d="M121.3,39C100.7,39,84,55.8,84,76.4c0,0.6,0,1.1,0,1.6h43.2c0.9,0,1.8,0.1,2.6,0.4h7.6
c-0.1,4.1-0.6,8-1.4,11.6v12.3c0.8-1.5,1.5-3.1,2.1-4.8c3.4-0.4,6.9-1,10.3-1.7c-3.2,4.4-7.5,8-12.4,10.4v4.5
c13.4-5.7,22.8-19,22.8-34.4C158.7,55.8,142,39,121.3,39z M101.2,74.4H88.1c0.3-4.5,1.4-8.8,3.3-12.6l0,0
c3.9-0.9,7.9-1.7,11.8-2.2C102.1,64,101.4,69,101.2,74.4z M94.4,57c3.9-5.4,9.5-9.7,15.9-11.9c-2.2,2.7-4.1,6.2-5.6,10.2
C101.2,55.7,97.8,56.2,94.4,57z M119.3,74.4h-14c0.2-5.6,1-10.8,2.4-15.4c3.8-0.4,7.7-0.6,11.6-0.7V74.4z M119.3,54.2
c-3.4,0.1-6.7,0.2-10.1,0.5c2.5-6,6.1-10.2,10.1-11.3V54.2z M123.4,43.4c4,1.1,7.5,5.3,10.1,11.3c-3.3-0.3-6.7-0.5-10.1-0.5V43.4z
M123.4,74.4V58.3c3.9,0.1,7.7,0.3,11.6,0.7c1.4,4.6,2.3,9.8,2.4,15.4H123.4z M138.1,55.2c-1.5-4.1-3.4-7.6-5.6-10.2
c6.4,2.3,12,6.5,15.9,11.9C144.9,56.2,141.5,55.7,138.1,55.2z M151.2,61.8L151.2,61.8c1.9,3.8,3.1,8.1,3.3,12.6h-13.1
c-0.1-5.3-0.9-10.4-2.1-14.8C143.4,60.1,147.3,60.8,151.2,61.8z M151.2,91.1L151.2,91.1c-3.9,0.9-7.9,1.7-11.8,2.2
c1.2-4.5,1.9-9.5,2.1-14.8h13.1C154.3,82.9,153.1,87.2,151.2,91.1z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 200 200" style="enable-background:new 0 0 200 200;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.3;}
.st1{fill:#585763;}
.st2{fill:#4FC1EA;}
</style>
<g id="XMLID_149_">
<g id="XMLID_2507_" class="st0">
<path id="XMLID_2508_" class="st1" d="M122.7,144.2H77.3c-5,0-9-4.1-9-9v-76c0-5,4.1-9,9-9h45.4c5,0,9,4.1,9,9v76
C131.7,140.2,127.7,144.2,122.7,144.2z M77.3,53.8c-3,0-5.4,2.4-5.4,5.4v76c0,3,2.4,5.4,5.4,5.4h45.4c3,0,5.4-2.4,5.4-5.4v-76
c0-3-2.4-5.4-5.4-5.4H77.3z"/>
</g>
<g id="XMLID_2503_" class="st0">
<path id="XMLID_2504_" class="st1" d="M120.7,131.4H79.3c-3,0-5.4-2.4-5.4-5.4V68.4c0-3,2.4-5.4,5.4-5.4h41.4c3,0,5.4,2.4,5.4,5.4
v57.5C126.1,128.9,123.7,131.4,120.7,131.4z M79.3,66.6c-1,0-1.8,0.8-1.8,1.8v57.5c0,1,0.8,1.8,1.8,1.8h41.4c1,0,1.8-0.8,1.8-1.8
V68.4c0-1-0.8-1.8-1.8-1.8H79.3z"/>
</g>
<g id="XMLID_2501_" class="st0">
<rect id="XMLID_2442_" x="93.5" y="134.4" class="st1" width="12.9" height="3.6"/>
</g>
<g id="XMLID_2465_">
<g id="XMLID_2470_">
<path id="XMLID_2441_" class="st2" d="M102.8,107.8c-1.5-1.5-4-1.5-5.6,0l-2.6-2.6c2.9-2.9,7.7-2.9,10.7,0L102.8,107.8z"/>
</g>
<g id="XMLID_2468_">
<path id="XMLID_2440_" class="st2" d="M108.7,101.9c-4.8-4.8-12.6-4.8-17.4,0l-2.6-2.6c6.2-6.2,16.3-6.2,22.5,0L108.7,101.9z"/>
</g>
<g id="XMLID_2466_">
<path id="XMLID_261_" class="st2" d="M85.2,95.8l-2.6-2.6c9.6-9.6,25.2-9.6,34.8,0l-2.6,2.6C106.7,87.6,93.3,87.6,85.2,95.8z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="-124 126 200 200" style="enable-background:new -124 126 200 200;" xml:space="preserve">
<style type="text/css">
.st0{fill:#00EFB7;}
.st1{opacity:0.3;}
.st2{fill:#585763;}
</style>
<g id="XMLID_27_">
<path id="XMLID_1509_" class="st0" d="M26.3,246.3L16,236c-8.3-8.3-21.8-8.3-30.1,0c-8.3,8.3-8.3,21.8,0,30.1l10.2,10.2
c4.1,4.2,9.6,6.2,15.1,6.2s10.9-2.1,15.1-6.2C34.6,268.1,34.6,254.6,26.3,246.3z M1,234.1c3.7,0,7.3,1.2,10.3,3.5L1,248l-10.3-10.3
C-6.3,235.3-2.7,234.1,1,234.1z M-12.4,240.7L-2.1,251l-10.3,10.3C-17.1,255.3-17.1,246.8-12.4,240.7z M23.2,273.3
c-6.6,6.6-17.4,6.6-24,0l-8.7-8.7l24-24l8.7,8.7C29.8,255.9,29.8,266.7,23.2,273.3z"/>
<g id="XMLID_977_" class="st1">
<path id="XMLID_981_" class="st2" d="M-3.8,276.4l-1.6-1.6c-1.5,0.6-3.1,1.1-4.7,1.5c1-1,2-2.1,2.9-3.3l-3.2-3.2
c-3.4,4.5-7.3,7.4-11.5,8.1v-18.8c1,0,2.1,0,3.1-0.1c-0.6-1.4-1-2.8-1.2-4.3c-0.6,0-1.3,0-1.9,0V228H1.6c0,0.5,0,1.1-0.1,1.6
c1.5,0,2.9,0.2,4.3,0.6c0-0.7,0.1-1.4,0.1-2.1H28c-0.2,5.8-1.4,11.3-3.4,16.4l1.6,1.6c0.6,0.6,1.2,1.2,1.7,1.9
c2.9-6.8,4.5-14.3,4.5-22.1c0-31.1-25.3-56.5-56.5-56.5s-56.4,25.5-56.4,56.7s25.3,56.5,56.5,56.5c7.8,0,15.3-1.6,22.1-4.5
C-2.6,277.5-3.2,277-3.8,276.4z M22.3,202.1c3.4,6.6,5.5,14,5.8,21.8H6c-0.2-9-1.4-17.5-3.5-24.9c6.6,0.9,13.2,2.1,19.7,3.7
L22.3,202.1z M19.6,197.6c-6.2-1.4-12.4-2.4-18.7-3.2c-2.8-7.9-6.6-14.2-11.1-18.6C2.3,179.3,12.8,187.2,19.6,197.6z M-21.8,174.2
c7.1,1.3,13.5,8.8,17.9,19.7c-5.9-0.6-11.9-0.9-17.9-1V174.2z M-21.8,197.3c6.5,0.1,13,0.5,19.5,1.2c2.4,7.5,3.8,16.2,4,25.5
h-23.5V197.3z M-37.9,175.8c-4.5,4.3-8.3,10.7-11.1,18.6c-6.3,0.8-12.5,1.9-18.7,3.2C-60.8,187.2-50.3,179.3-37.9,175.8z
M-70.3,202.1l0.1,0.5c6.5-1.6,13.1-2.8,19.7-3.7c-2.1,7.4-3.4,15.8-3.5,24.9h-22.1C-75.8,216.1-73.7,208.7-70.3,202.1z
M-70.3,250c-3.4-6.6-5.5-14-5.8-21.8H-54c0.2,9,1.4,17.5,3.5,24.9c-6.6-0.9-13.2-2.1-19.7-3.7L-70.3,250z M-67.7,254.5
c6.2,1.4,12.4,2.4,18.7,3.2c2.8,7.9,6.6,14.2,11.1,18.6C-50.3,272.9-60.8,265-67.7,254.5z M-26.2,278c-7.1-1.3-13.5-8.8-17.9-19.7
c5.9,0.6,11.9,0.9,17.9,1V278z M-26.2,254.9c-6.5-0.1-13-0.5-19.5-1.2c-2.4-7.5-3.8-16.2-4-25.5h23.5V254.9z M-26.2,223.9h-23.5
c0.2-9.3,1.7-18,4-25.5c6.5-0.7,13-1.1,19.5-1.2V223.9z M-26.2,192.9c-6,0.1-11.9,0.4-17.8,1c4.3-11,10.7-18.5,17.8-19.7V192.9z"
/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

Some files were not shown because too many files have changed in this diff Show More