various changes

This commit is contained in:
Dan 2022-12-28 13:37:42 -05:00
parent d25c734aac
commit b78dacffe1
107 changed files with 335 additions and 9161 deletions

View File

@ -44,15 +44,20 @@ params:
clientlogos:
- status
- uva
- appomni
# Customizable navbar. For a dropdown, add a "sublinks" list.
navbar:
- title: Features
url: /
url: /pages/features
- title: Projects
url: /
sublinks:
- title: SpiffWorkflow
url: /pages/spiffworkflow
- title: SpiffArena
url: /pages/spiffarena
- title: SpiffEditor
url: /pages/spiffeditor
- title: Get Started
url: /
url: /posts/get_started
button: true
sidebar:
# Logo (from /images/logos/___.svg)
@ -127,7 +132,7 @@ params:
quote: You guys are rock stars. I really appreciate your passion and your expertise on this project. Im very excited too about what we can do with it in the future.
job: VP - IT - UVA
img: ron
- name: Brian Sobe
- name: Anonymous CTO
quote: Lorem ipsum dolor sit amet, elit deleniti dissentias quo eu, hinc minim appetere te usu, ea case duis scribentur has. Duo te consequat elaboraret, has quando suavitate at.
job: CTO
img: brian

57
content/pages/features.md Normal file
View File

@ -0,0 +1,57 @@
---
title: "Features"
subtitle: "Here are just a handful of the major features available ..."
date: 2022-12-27T16:05:00-05:00
draft: false
---
### User Tasks -- gather information from people
Using the excellent and feature complete open source schema from React [Json Form Schema](https://react-jsonschema-form.readthedocs.io/en/latest/) - you can create highly complex web forms to gather information from end users - ingesting this information into your workflow process.
### Service Tasks -- Send and retrieve information from other software
Service Tasks allow you to configure connections to third party applications. You can pull live data from an AWS DynamoDB Server, or push a message out to a Slack channel. Following a basic pattern, you can add new connectors to your own software services by writing a small bit of python code. Many connectors are in the works (AWS services, Postgres) and new ones are easy to create.
![Services Video](../../images/features/services.gif)
### Lanes -- Who is in charge right now?
Lanes clearly and accurately describe the handoff of authority between groups of people making it crystal clear who is responsible for what tasks, and when. This is great for approval processes: "Does Jason deserve that Heavy Metal Cruise Ship vacation in February?" (he definitely does) -- or the hand off of a complex job -- field crew is done, time for Steve to do the computations ...
### Timer Events - Watching the clock
Computers watch clocks. On the average, one could say that is pretty much all they do. Rather than have the computers constantly remind us of what time it is, perhaps they could just deal with the problem, kick off the process, make the request, check the feedback, send the reminder.
"The Field Crew completed the survey, it's been on Steve's desk for 2 days ... time to ping Agnes and get this back on track ..."
![Timer Video](../../images/features/timer.gif)
### Messages - Listening to the World
Service tasks are how SpiffWorkflow speaks to the world, Messages are how SpiffWorkflow listens. Using Message Events you can start new processes, cancel existing processes, or pause processes and wait for some external communication. "We told our finance software to fire off an API call to SpiffWorkflow whenever a payment is processed -- then SpiffWorkflow does all the leg work of letting people know when they will get paid in whatever way they like to get notified - email, phone, slack, text, and it creates the paper trail so there is record of what went down ...."
### Perspectives -- Custom Reporting Tools
It doesn't always make sense to do things in the order they were received. Urgent requests may need to be prioritized and "urgent" can be defined in many ways. Perspectives allow you to report on running processes in custom ways. You can extract important information from the workflow as it executes, and make this available in your lists, so you can easily find which tasks you should pick up next.
![Timer Video](../../images/features/perspectives.gif)
### Decision Tables
Decision tables (DMN / Decision Model Notation) look at bit like spreadsheets, and allow you to articulate core business rules in a way that is as easy to understand, update, and maintain, and can be directly embedded and referenced from your diagrams.
![Markdown Video](../../images/features/decisions.gif)
### Granular Permissions and OpenId
SpiffArea can be connected to any OpenID system - using public systems like Google and Facebook or private configurations with products like KeyCloak it is possible to manage user authentication outside SpiffWorkflow.
At the same time, SpiffArena comes with a permission system that can grow with you. You can use the same diagram tools described above to control permissions for all of your users - setting up permission tables that can be simple (everyone can start any process) to very specific (this API endpoint is only accessible to the accounting department lead)
### Builtin Editors
With editors for Python, Markdown, and Json - you can quickly jump from drawing the diagram to incorporating the small bits of code, documentation, and end user instructions in a way that is fast, simple and intuitive.
![Markdown Video](../../images/features/markdown.gif)
### Data Encapsulation
SpiffWorkflow supports BPMN's Data Objects, Data Inputs and Data Outputs, allowing you to visually control what data is accessible to which components. When composing diagrams within diagrams you can declare the expected variables that will be provided, and the ones that will return, keeping your workflows clean, consistent, and easy to understand.
### Python Editor with builtin unit tests
A robust python editor allows you to write small bits of code that help modify data (say user input on a form) to fit a different purpose (sending a formatted message to Slack). To make these modifications you can use script tasks. And to make sure they are working correctly we provided a way to test them in place to make sure they do what you expect them to do!
![python editor](../../images/features/scripts.gif)

BIN
content/pages/img.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

View File

@ -0,0 +1,161 @@
---
title: "Getting Started"
date: 2022-12-27T13:15:00-05:00
draft: false
---
In this article (and accompanying video) you will create and run your first executable SpiffWorkflow diagram. We'll be using a brand new open source application called SpiffArena that wraps the SpiffWorkflow library in an easier to use interface that provides a host of important tools. Let's get started and you can see for yourself ...
![spiff arena image](/images/getting_started/spiff_arena.png)
## Install and Start SpiffArena
### Pre-Reqs:
You will need to install Docker and Docker-Compose. Please follow [the Docker Installation instructions](https://docs.docker.com/compose/install/) if you do not have these already.
Docker is a way for you to run on your laptop what was designed to run on larger computers and be accessible to many people throughout an organization. It will not alter your computer, and you can fully remove all the files with a few commands provided at the end of this article.
{{< video "/videos/getting_started.mp4" "my-5" >}}
### Downloading and Starting SpiffArena
From Mac0S, Linux Command Line, or Windows Powershell, run the following commands:
{{< highlight Bash "linenos=false" >}}
mkdir spiffworkflow
cd spiffworklow
wget https://raw.githubusercontent.com/sartography/spiff-arena/main/docker-compose.yml -outfile docker-compose.yml
docker-compose pull
docker-compose up -d
{{< / highlight >}}
Please note that it may take a few minutes to download and install the docker images. Nothing permanent is happening here. You can delete these images at any time using the Docker Desktop application. Its also worth noting that subsequent starts are much faster.
**Macs**: Please note that you may need to use curl rather than wget
### Open SpiffArena in a browser
After a few minutes, all processes should be up and running, and you can view the system through your web browser.
1. Visit http://localhost:8001 in your browser.
2. Log in as admin/admin
Congratulations! You have SpiffWorkflow up and running locally! Now what!? Lets start with a simple example.
## Building and running your first Workflow Process
Lets build and run a very simple workflow to get familiar with the interface, and then we will follow up with larger and more complex examples.
**Select “Processes” from the Main Menu**
![main menu image](/images/getting_started/select_processes.png)
**Select “Add a process group”**
![add process button](/images/getting_started/add_process.png)
**Provide the following information:**
1. Display Name: “Playground” _The identifier will automatically be set to “playground”. We will cover other fields and options at another time._
2. Description: “These are my test processes.”
3. Click “Submit”
![process group form](/images/getting_started/process_goup_form.png)
**Select “Add a process model” (the second button)**
![add_process_model](/images/getting_started/add_process_model.png)
**Provide the following information:**
* Display Name: “Simple Example”
* The identifier will automatically be set to “simple-example”. We will cover other fields and options at another time.
* Description: “My first SpiffWorkflow Process Model”
Click “Submit”
Click “New BPMN File”
**Welcome to the Diagram Editor!**
Lets draw a simple functional BPMN Diagram
Every new BPMN diagram is initially populated with a Start Event, which looks like an open circle. Click on it and it will show a blue outline and a “context menu” find the “Task” icon in the menu (the rectangle with rounded corners) and click it to “Append Task”.
![append task](/images/getting_started/append_task.png)
Your diagram should now look like this:
![diagram 1](/images/getting_started/diagram_1.png)
Now lets turn the “Task” (the rectangle) into a Script Task, and we will add a bit of Python code to our diagram. Click the Task, to get the context menu up again. Click the wrench icon ![wrench icon](/images/getting_started/wrench.png), and select ![script task](/images/getting_started/script_task.png) “Script Task” from the list of options.
At this point your cursor will be blinking inside of the Task icon, allowing you to enter the name of the Task. For this time we will use an alternative method, described in the next step
Click anywhere off the Task and your diagram should now look like this:
![diagram 2](/images/getting_started/diagram_2.png)
Select the Script Task (the rectangle should have a blue outline around it) and then take a look at the options in the Properties Panel on the right. You should see something like the image below. There are three sections. When you click on a section it will expand.
![Script Properties Panel](/images/getting_started/prop_panel_script.png)
Click General so it is expanded, we can give the Task a name. Lets call it “Set Name”. Your diagram should now look like this:
![diagram 3](/images/getting_started/diagram_3.png)
For this exercise well need two Tasks, so similar to how you added the first Task after the Start Event click on the Script Task you just added, and append a second task,
![diagram 4](/images/getting_started/diagram_4.png)
so the diagram looks like this:
![diagram 5](/images/getting_started/diagram_5.png)
Take advantage of the blinking cursor in the middle of the newly added Task and name it “Display Message”. Next click on the wrench icon and select “Manual Task” . And to complete the diagram, click on the bolded circle at the top left, it should say “Append EndEvent” as shown below.
![diagram 6](/images/getting_started/diagram_6.png)
Your diagram should now look like this:
![diagram 7](/images/getting_started/diagram_7.png)
Now lets add a bit of Python code to execute. Click in the Script Task and expand the “Script” Section and click the “Launch Editor” button which will bring up a python editor. Paste in the following code, and click the Close Button.
{{< highlight Python "linenos=true" >}}
my_name = "World"
{{< / highlight >}}
Now, in the second task, lets add some text and Jinja code to display a message. Click on the Manual Task and in the Property Panel on the right side, expand the Instructions section and add the following:
{{< highlight Jinja2 "linenos=true" >}}
Hello {{my_name}}!
--------------------------
Welcome to SpiffWorkflow!
{{< / highlight >}}
The right hand Property Panel should look like this (you may need to grab the bottom left of the Instruction box and drag it down to see everything you pasted in there).
![Manual Properties Panel](/images/getting_started/prop_panel_manual.png)
Save the diagram using the save button in the upper left. When it asks for a name call it “hello_world”
Now click on the “Simple Example” in the breadcrumbs at the top of the page to go back to the process model.
Click the Start button, and you should be greeted with your “Hello World!” message:
Click the Continue button to return to the Home page and then the Completed tab to see your first completed process instance!
![Hello World Run](/images/getting_started/final_screen.png)
### Shutting it all down
{{< highlight Bash "linenos=false" >}}
$ docker-compose down
$ docker ps
{{< / highlight >}}
## What you have learned
Today you learned a great deal about SpiffWorkflow and the new SpiffArena application, but its just the tip of the iceberg. Here are few things we covered today:
1. How to get SpiffArena running locally on your computer. You can stop it using the DockerDesktop application, or by running docker container down at the command line.
2. How to create a new Process Model
3. How to create a simple executable BPMN diagram
4. How to add start events, tasks, and end events to a diagram.
5. How to create a Script Task that contains a bit of python.
6. How to create a Manual Task with a message that people can see.
Remember that the real power of SpiffWorkflow is its ability to help create transparency around complex rules of a business, government agency, or any other organization. This isnt just some quick and easy way to write code. It is a tool for building consensus and for offering a guarantee that what you see is truly what you get. In upcoming tutorials we will cover some of the powerful ways that Spiffworkflow helps you create transparency by using seemingly simple diagrams to describe complex processes, critical decision points, and to coordinate parallel actions and the handoff of responsibility from one person or application to the next all in a way everyone can see and understand.
Dont let this simple tutorial fool you. There is some substantial power within your reach to create change and improve the world in which you live. Well be posting tutorials frequently, so please check back in soon!

View File

@ -0,0 +1,41 @@
---
title: "A Visual Workflow Library for Python"
date: 2022-12-27T13:15:00-05:00
draft: false
---
# A Visual Workflow Library for Python
SpiffWorkflow allows your python application to process BPMN diagrams (think of them as very powerful flow charts) to accomplish what would otherwise require writing a lot of complex business logic in your code. You can use these diagrams to accomplish a number of tasks, such as:
Creating an online questionnaire which changes depending on the answers to previous questions;
Building a complex approval process that needs to be handed off between multiple people;
Allowing non-developers to make iterative changes to the flow of an application over time;
SpiffWorkflow can do all of this while drastically improving communication within multidisciplinary teams, allowing more people to contribute to your application, and making it more resilient to changing requirements.
Visualizing Code is the Future
Visual software development environments are key for handling many of the business problems we need to solve over the coming decade. While there are tons of marketing sites touting “low-code” solutions of nominal value, there are a handful of elegant real-world success stories. Ive seen them most clearly through the eyes of my son. His introduction to programming was Scratch where basic programming constructs work like building blocks you can stack together. It feels a little like playing with legos, you can build chunks, then stick them together in different ways to see what happens. From there my son moved on to Blender, which uses visual tools for the complex process of building 3D animations, taking a dual disciple problem, and providing intuitive visual representation of what is definitely programming. Low-Code using visualization tools is very much a real thing, and it will reshape the way we work with computers in the future to solve complex problems.
What are Workflows and BPMN
The term “Workflow” can mean many things in software. Our focus is on Business Processes — such as the complex approval process necessary for launching a medical research study at a university (our core use case at the moment). There is a well established standard for visualizing business processes called BPMN (Business Process Modeling Notation) that looks a heck of a lot like a flow chart (see image below). Version 2.0 published in 2010 was designed to be executable. This is important.
Not to delve too deeply, but the arrows in the diagram above dictate motion from one task to the next. The boxes with people are User Tasks, and are often powered by user interfaces that allow real people to provide input. The Xs are crossroads where different paths can be taken. The script tasks (with the piece of curvy paper) are where we can inject brief bits of code to make calculations and call out to other software systems and APIs. This is a very small example of all that is possible wit
Not to delve too deeply, but the arrows in the diagram above dictate motion from one task to the next. The boxes with people are User Tasks, and are often powered by user interfaces that allow real people to provide input. The Xs are crossroads where different paths can be taken. The script tasks (with the piece of curvy paper) are where we can inject brief bits of code to make calculations and call out to other software systems and APIs. This is a very small example of all that is possible within the enormous 538 page BPMN standard, but it is a valid example, and demonstrates that powerful diagramming tools can still be intuitive.
Whats great about BPMN is that you can potentially create software even a CEO can understand. Imagine having a board meeting where everyone around the table actually knew what they were talking about. This is the glorious promise of BPMN. A diagram that doesnt roughly abstract the general meaning of what we think the software does. Its a diagram that IS the software.
What is SpiffWorkflow
BPMN diagrams dont just run. You need an interpreter that is capable of executing the diagram, in the same way that you need to have the python interpreter to run a python program. SpiffWorkflow is an interpreter for BPMN, that makes the diagram runnable as a part of your Python application.
SpiffWorkflow is open source, and released under the GNU Lesser General Public License.
Two years ago we were searching for an open source workflow library in Python that could handle BPMN. We found SpiffWorkflow, a project founded by Samuel Abels (@knipknap) in 2010. Over the last two years weve made thousands of contributions to the code base as we started using it to manage dozens of complex real-world workflows. Earlier this year we released a new version of SpiffWorkflow with all of our contributions, and released a set of new bug fixes just this past week. It is not perfect, but it is definitely battle hardened, and ready for others to pick up, try out, and potentially contribute to.
If you want to learn more, and play around with the library, please check out the ReadTheDocs, particularly the section on BPMN. And please stay tuned for more technical articles with tips on how to get the most out of SpiffWorkflow and use it in your own applications.
Python
Workflow
Bpmn
Low Code

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "meta.html" . }}
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
{{ partial "css.html" . }}
<link rel="stylesheet" type="text/css" href="/css/custom.css">
</head>
<body>
{{ if ne .Site.Params.preloader false }}
<!-- Preloader -->
<div id="preloader">
<div id="status"></div>
</div>
{{ end }}
{{ block "main" . }}
{{ partial "single/single.html" . }}
{{ if .Params.include_footer }}
{{ partial "footer.html" . }}
{{ end }}
<!-- Back To Top Button -->
<div id="backtotop"><a href="#"></a></div>
{{ if .Params.sidebar }}
{{ partial "single/sidebar.html" . }}
{{ end }}
{{ end }}
{{ partial "javascript.html" . }}
</body>
</html>

View File

@ -0,0 +1,22 @@
<div class="container">
<div id="player-wrapper" class="{{ .Get 1 }}"></div>
</div>
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@clappr/player@latest/dist/clappr.min.js"
>
</script>
<script>
var playerElement = document.getElementById("player-wrapper");
var player = new Clappr.Player({
source: {{ .Get 0 }},
mute: true,
height: 360,
width: 500
});
player.attachTo(playerElement);
</script>

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

View File

@ -1,666 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
version="1.1"
id="svg169210"
xml:space="preserve"
width="1841.572"
height="1661.3665"
viewBox="0 0 1841.572 1661.3664"
sodipodi:docname="flow.svg"
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="defs169214" /><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.059463259"
inkscape:cx="-1067.8863"
inkscape:cy="-2043.2785"
inkscape:window-width="1916"
inkscape:window-height="952"
inkscape:window-x="0"
inkscape:window-y="126"
inkscape:window-maximized="1"
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" /><g
id="g169216"
inkscape:groupmode="layer"
inkscape:label="TapScanner 12-09-2022-1255"
transform="matrix(1.3333333,0,0,-1.3333333,-34.011115,2205.3625)"><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.82115,454.77883 c -53.47911,-7.11398 -47.28442,39.67978 -53.82459,14.77594 0.0764,-4.73266 -8.99839,18.23324 -19.16784,12.70724 -1.44486,-0.78513 -7.81196,-2.97833 13.83441,-33.5004 3.35799,-4.223 -1.38535,0.86303 3.8108,-5.99049 41.58982,-47.54029 137.2465,-15.68168 140.35311,-14.44278 80.58939,32.13865 126.66987,82.73222 170.44659,148.06854 9.4737,14.52248 7.74912,40.64534 1.03249,53.44852 -52.11535,99.46011 -62.00282,160.98672 -153.62907,164.49141 -6.96146,0.26628 -45.99137,3.93799 -48.166,17.33358"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 543.55571,1066.3564 c -7.09172,-63.1823 -0.3353,-129.02649 56.22664,-169.38516 57.82969,-28.01136 112.71575,-1.84907 140.99065,38.95541 24.68657,32.43796 32.57082,61.53578 41.00301,98.97715"
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"><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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1008.3422,1143.2194 c 59.097,7.2845 119.5966,-4.4548 178.4893,4.8102 43.4544,6.8362 97.6744,9.604 95.8922,-49.3092 -5.4742,-44.9477 12.2023,-100.51555 -1.9,-144.05921 -20.0403,-50.80757 -80.1247,-31.97292 -122.0694,-38.86833 -50.4747,-3.71862 -101.5584,-8.86881 -151.8944,-0.81095 -49.52079,30.54733 -29.22689,96.40989 -33.05922,145.25699 -0.27798,30.9603 -1.6758,78.5162 34.54152,82.9805 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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1001.8199,1005.2083 c 3.6611,10.9337 -5.13032,28.9241 0.7253,38.032 21.1455,3.5903 22.862,-23.11 0.6727,-18.925"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1047.8803,1023.0012 c -9.4833,0.8713 -19.7571,-2.4208 -17.6229,-16.9719 6.6546,-2.8263 11.148,2.8337 18.5412,8.1124"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1033.0116,1033.05 c 18.4817,10.0665 15.787,-18.9083 16.6429,-26.0005"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1060.8541,1034.7324 c -1.1066,-9.0439 0.5941,-19.2975 -0.1344,-28.3283"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1060.8541,1034.7324 c -0.411,-11.3063 3.8398,2.7473 13.2575,-2.0775"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1080.6711,1043.043 c -1.0185,-12.3687 -1.0724,-33.0335 2.0029,-34.5206 3.2289,-1.3797 6.7662,-1.5391 6.7662,-1.5391"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1073.2989,1034.9204 c 5.9838,-2.5251 12.4045,0.9552 18.5466,-0.2491"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1099.2957,1033.5578 c 0.8006,-8.5598 1.7084,-18.6821 -0.1609,-27.126"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1099.7145,1045.3494 c 3.3558,-2.4992 -0.5231,-0.155 -0.7298,-3.5834"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1128.5299,1032.8477 c -18.0867,4.3712 -28.9633,-30.7438 -0.098,-24.7337"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1137.6831,1033.4859 c -1.973,-8.0175 0.9725,-18.7662 -0.6208,-26.8453"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1136.8515,1044.3845 c 0.4542,-1.2199 1.7002,-1.8672 2.7976,-2.3817"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1148.798,1034.1633 c 3.6465,-12.1078 -0.8804,-32.0699 0.092,-40.50626"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1149.8861,1028.6738 c 8.4568,5.2936 21.7542,10.6675 21.1412,-6.3967 -0.4814,-13.403 -8.982,-23.0151 -21.539,-7.0134"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1181.9255,1033.368 c 13.1599,5.657 18.6843,-3.4856 17.1632,-18.2654 -0.1528,-2.8255 -0.022,-5.727 0.9464,-8.4151"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1199.5394,1020.1145 c -13.2122,8.0497 -27.2918,-8.6723 -15.2966,-13.1681 4.9263,0.2937 10.6595,2.3338 13.2781,6.4512"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1209.68,1041.0204 c 0.2616,-11.2985 -2.2223,-20.5234 0.5914,-31.4674 0.9131,-3.2573 7.7422,-3.1192 9.3182,-2.0001"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1203.5425,1033.1491 c 5.0635,0.4381 12.754,1.9587 17.8399,0.8712"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1227.0027,1021.3491 c 6.0215,-0.6114 16.3447,-2.3224 19.8701,0.048 2.7879,1.8743 0.3676,7.1956 -5.1154,11.386 -17.552,10.3293 -21.9087,-27.9094 -2.1811,-26.193 1.6376,1.7713 6.2866,-0.3279 7.1288,2.1997"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 528.7326,1621.2178 c -14.90097,-21.6829 -15.76983,-102.4411 -3.89926,-153.199 5.66471,-24.2605 14.02215,-54.8582 37.45345,-63.8044 58.26757,-9.3376 140.25131,-10.8902 199.93378,-2.4872 27.64028,3.955 52.272,-14.8446 68.85143,20.1901 16.57943,35.0346 7.46313,102.7289 -1.80218,152.0455 -5.19922,28.668 0.53767,48.6478 -27.99839,58.4732 -23.18057,8.3085 -75.00378,0.2877 -99.12015,3.4282 -72.73846,2.1502 -158.51771,7.0365 -173.41868,-14.6464 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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 544.0588,1585.3633 c -0.24352,-4.97 0.58784,-10.3163 3.81491,-14.4773 -2.14605,-0.6072 -2.76955,-2.4397 -3.83906,-4.2284 1.66219,-2.5136 5.26958,-2.7061 7.71064,-4.2869 9.25881,-6.793 7.63602,0.049 11.62037,1.6202 1.62209,-0.7989 0.25807,0.1608 1.89233,-0.6994 8.37298,-2.1797 12.77946,3.5416 13.53159,0.6293 1.21407,-2.9063 4.34459,-4.2228 6.47504,-1.5361 2.86505,1.7644 6.2333,3.1923 7.84473,6.3317 2.80829,2.7758 -4.62273,3.2821 -3.61947,6.3582 5.39457,4.5972 4.48494,9.3799 6.12385,12.6548 2.17995,1.1225 6.61426,1.5541 3.93181,4.7911 -1.13914,2.7868 -2.52149,5.6278 -3.29881,8.3941 -2.39725,-0.6978 -5.79412,-3.1406 -7.3632,-1.3779 -2.73433,3.0716 -6.15795,5.0629 -9.3449,6.673 -1.84107,0.9301 -0.44192,3.8213 0.14917,4.978 0.26831,3.0469 -4.22785,2.0676 -6.11759,3.5128 -2.13771,0.1804 -5.6009,1.8084 -6.91175,0.3746 -1.38466,-2.292 -1.50832,-4.7021 -4.09748,-5.755 -7.66219,1.0004 -12.45989,-8.2822 -13.24792,-7.9398 -2.20096,-0.1621 -5.06022,1.9644 -6.58953,1.6745 -0.68037,-4.3376 -3.0634,-8.3687 -3.16151,-12.7949 1.49811,-1.8212 3.55517,-2.6188 4.49673,-4.8966 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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 561.40172,1593.8638 c -0.96403,-2.976 -0.0503,-4.9431 0.84357,-7.209 1.03784,-1.5531 2.97948,-2.6754 4.87213,-2.36 1.54686,0.4814 4.60352,2.0041 5.09422,3.2997 0.59819,2.13 1.66773,5.6625 -0.77426,7.7024 -3.9053,2.1054 -7.81993,3.4716 -10.03566,-1.4331 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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 604.98563,1530.2236 c -18.64654,10.492 -32.75994,-20.1993 -18.3365,-31.8982 3.57711,-4.3097 14.1683,-3.1185 19.49318,-0.7752"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 610.34182,1507.3431 c -1.64818,-20.4619 28.14906,-15.956 20.77338,8.2756 -4.59846,11.899 -22.20527,5.2153 -20.77338,-8.2756 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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 642.65198,1521.823 c 0.6316,-6.5216 0.78788,-17.0244 0.54047,-25.5143"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 643.28358,1515.3014 c 17.79482,19.7647 22.68721,-9.4373 20.32865,-20.5174"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 675.09973,1522.7531 c 0.54278,-7.7527 -0.6371,-14.2161 0.37667,-27.9768"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 675.64251,1515.0004 c 19.06393,19.8318 22.33501,-7.8413 18.53109,-20.1139"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 706.74106,1509.603 c 4.54879,-2.9298 14.90539,-1.1384 17.73941,-0.5881 5.66777,1.1006 1.05831,11.4777 -9.14068,13.6766 -17.46915,-3.7474 -10.7695,-34.456 10.12518,-26.3828"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 753.31817,1520.6294 c -14.25586,8.472 -28.32974,-17.229 -13.94945,-24.9719 4.02887,-1.8748 8.89035,-1.6572 12.87125,0.2288"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 762.40517,1529.5716 c -0.89467,-10.9592 -5.22291,-38.0915 10.0747,-34.4183 l 0.58753,0.2538"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 756.69224,1521.6884 c 3.52932,0.542 11.35019,0.058 14.90732,0.059"
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" /><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"></tspan></text><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 44.344257,1089.0073 C 45.892473,961.50852 37.813119,919.43421 181.61907,927.80959 c 164.82062,-3.36642 179.42164,10.40022 166.4228,145.15761 2.68741,115.9738 -42.68105,95.5404 -197.27162,95.774 -86.591759,5.7371 -103.434486,-24.5066 -106.425993,-79.7339 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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 170.2728,977.70372 c 18.9325,-3.35685 38.89258,-2.75059 58.52883,-1.01194"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 174.56913,963.85107 c 17.20507,0.0201 34.41768,-0.3364 51.61576,0.34358"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 170.83203,952.17462 c 17.50953,-6.14553 36.37865,-5.03517 54.51647,-3.42075"
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="translate(15.875546,-55.022093)"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 648.27416,615.50797 c -36.8221,-12.71128 -19.82528,-53.01067 4.61609,-62.12357 16.85807,-6.28548 37.97232,9.53297 44.50548,29.91959 1.95039,23.89941 -26.69226,38.00384 -49.12157,32.20398 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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 690.99745,1206.9185 C 562.87459,1214.3903 560.50948,1108.645 528.76402,1034.2104 498.89594,985.16915 459.99841,845.65949 408.30768,837.71442 c 71.68333,56.60542 63.15359,215.20448 77.63407,298.63118 28.37976,137.5216 169.10467,214.2557 294.82561,172.4789 43.81118,-13.2281 57.70412,-60.1468 74.79911,-97.3109 34.27188,-80.247 35.27598,-169.2313 23.42292,-253.48697 -11.85306,-84.25566 -76.89833,-130.78863 -137.4735,-140.53375 -62.69835,-15.82001 -128.10247,-5.14589 -188.5182,14.61543 -13.4715,4.72457 -61.5602,13.24188 -63.26886,15.74408 -0.5099,0.74671 3.11054,0.95775 13.01387,0.37246 71.25805,-3.86449 192.2457,-39.93919 249.82881,11.87845 37.74133,40.6752 34.14615,114.35058 30.75746,166.6675 -7.07068,57.2652 -35.38491,111.6901 -77.76058,149.8367 -23.0891,26.8023 -27.07147,77.5918 7.30333,98.2111"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 602.25495,1141.3114 c 14.14736,-1.0713 28.34486,-1.4771 42.53038,-1.2242"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 697.50644,1138.6603 c 15.53729,0.133 24.83776,-0.8208 40.37638,-0.5704"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 662.11728,1094.5353 c 7.75642,-16.3151 -25.72685,-65.246 13.77873,-52.4574"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 621.41243,976.02027 c 22.11586,-17.29983 61.81194,-25.35051 79.96165,1.88813"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 620.01191,888.59911 c 1.70541,-14.48456 -7.12719,-50.50926 -7.12719,-50.50926 m -5.30407,-21.09179 c -7.69688,-14.41227 -18.68126,-16.81618 -34.35119,-14.13076 -34.6641,1.38315 -60.56327,-28.42883 -86.14221,-52.58624 -28.505,-26.92087 -49.60241,-59.1975 -84.36899,-95.1052 -60.04516,-49.01934 -8.95995,-88.09545 42.92524,-123.31031 56.82347,-37.24469 103.90522,-101.57446 174.81015,-116.60338 22.72724,-6.47087 63.21496,-6.37214 81.28965,5.88463 m -105.74674,48.40797 c -60.19178,52.1696 -115.87443,107.74117 -123.81397,144.1842 3.22272,16.48457 24.78769,44.88997 40.28835,58.97754 7.14521,6.32449 9.70543,9.0247 11.38533,-0.19548 6.01914,-33.25889 4.00883,-94.32294 1.47021,-118.65027"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 683.17205,453.55383 c -29.74092,-20.84097 -37.81521,-10.35285 -38.11907,-6.23006 -0.42524,5.76973 43.55037,33.12567 70.77342,25.44673 9.6428,-2.71999 23.70193,5.4784 27.43894,7.07836 42.50924,28.9497 84.88043,63.94599 103.20212,104.53428 4.7739,9.1198 2.03923,10.80272 -1.69708,19.06291 -20.91636,46.27766 -25.36547,68.59035 -64.41996,90.39892 -7.70541,4.54689 -7.61182,4.14916 -9.98133,-4.11302 -6.72543,-23.80812 2.02068,-69.71405 6.28582,-115.26972 2.31778,-20.42322 1.36337,-42.22813 5.21292,-62.42942"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 695.73904,894.3141 c 0.91848,-15.5591 -4.85447,-39.38904 -0.60642,-57.64833"
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="translate(34.65272,257.5482)"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 911.12558,649.7955 c 70.45565,39.20861 85.4537,73.13529 127.47412,123.38659 39.3713,40.73967 37.5571,97.78716 70.281,133.25138"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1066.2633,865.36392 c 16.1982,6.79055 36.6462,49.03219 42.6174,41.06955 -4.2183,-13.09098 -8.9646,-41.32688 -10.3984,-55.27411"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1155.6793,1246.3186 c -19.0919,-62.0132 43.1788,-101.1111 76.9471,-60.3739 9.0943,17.8767 23.0853,41.6382 14.0177,71.3783"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1150.0352,1283.6461 c -3.4628,-15.1897 0.19,-35.4058 4.5579,-37.0364 13.1262,-4.9002 88.2773,26.1007 89.5428,58.6034 -4.666,7.869 -19.934,21.4526 -31.7739,15.126 -16.3497,-19.9606 -47.3087,-18.3473 -62.3268,-36.693 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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1156.8185,1289.9136 c 3.4983,26.2468 34.1358,37.2804 55.5435,30.4255"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1239.7501,1291.4528 c 38.2946,-25.447 1.1219,-48.5475 -30.0274,-29.7163"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1172.7806,1233.5844 c 7.2267,-2.1798 12.3489,-2.913 19.8426,0.4247"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1208.9781,1234.4163 c 4.7671,-3.3066 15.6047,-2.5962 20.6408,-1.0423"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1197.3611,1218.0337 c -4.376,-3.6357 -7.0272,-20.7478 3.4174,-13.5506"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1167.8475,1187.8389 c 3.254,3.5893 2.5721,9.3727 6.7937,11.6248 10.7568,5.7386 18.3913,-3.8835 39.2503,3.0655 8.4861,2.8271 12.5425,-12.1649 18.7349,-16.5845"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1185.4765,1189.1894 c 5.0368,-9.939 20.9105,-8.2168 25.4113,1.0594"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1338.8945,1218.7036 c -40.5513,-16.3588 -40.9215,-68.7056 -33.3083,-104.8776 7.0742,-34.0631 61.8835,-54.2825 80.9508,-20.4498 11.8722,28.0072 22.3495,57.6707 14.3288,88.371 -2.5844,29.7728 -34.638,47.3605 -61.9713,36.9564 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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1330.6345,1158.192 c 2.1966,0.028 10.9733,0.2691 13.1651,0.3611"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1359.1998,1159.194 c 6.7853,0.2136 13.7455,2.4264 20.4216,0.075"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1347.7803,1138.6662 c -0.4658,-6.1652 2.0418,-19.9364 11.259,-15.1167"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1343.8693,1108.8008 c 10.7534,-4.0617 27.3264,-4.2082 32.3063,8.5257"
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.75px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
d="m 1319.1222,1109.1979 c 0.694,-0.1308 2.9188,-0.5503 3.3372,-0.6292"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 1163.6875,1247.0477 c 6.6156,-4.8003 67.7587,3.0928 69.2529,7.5266"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 216.44048,906.254 C 237.34821,804.2069 305.821,750.54212 397.56144,685.13596"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 510.41548,1474.5317 C 403.43328,1446.4993 252.288,1321.4097 219.98137,1178.9711"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 205.07645,1220.1361 c 6.02121,-16.3162 9.15691,-27.9973 15.81366,-39.4997 9.39948,8.9781 7.65112,16.506 27.18101,28.8712"
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:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1126.2182,1148.8039 c -33.9565,130.4111 -146.8988,222.6133 -248.14812,300.1115 l -18.51906,9.4745"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 873.06173,1422.4018 c 0,0 -16.20194,29.3567 -25.2756,38.2609 11.76489,-2.2728 24.94,-2.8146 43.31208,-8.6099"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 899.24245,1615.441 c -3.39758,7.5051 -11.94887,13.0585 -20.2218,10.1257 -12.43806,-4.2643 -22.10671,-16.264 -23.86769,-29.2632 -1.3557,-8.2645 6.0046,-15.0566 13.88679,-15.4256 1.67019,-0.2361 3.3577,-0.336 5.0438,-0.344"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 867.4147,1582.3604 c -8.21285,-7.0959 -9.99179,-19.5812 -4.96906,-29.0312 8.28676,-16.1462 25.27917,-27.2903 43.10355,-29.8167 11.39144,-1.6901 23.72005,3.0903 29.20633,13.6276"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 897.30655,1563.8916 c 2.14029,-15.496 18.16149,-24.7551 32.79418,-24.7345 14.48332,-0.718 31.02264,7.0384 34.66981,22.1181 l 0.33873,1.4928 0.26346,1.5414"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 961.19956,1549.4841 c 14.28701,-5.8521 32.85288,-4.659 43.38214,7.728 9.7223,11.0271 11.7506,26.662 10.2663,40.8086"
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-rule:evenodd;stroke:#126d82;stroke-width:7.50000019;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0"
d="m 998.40903,1587.6243 c 10.11067,4.275 21.51077,12.4658 21.14147,24.6908 -1.0161,13.8728 -12.8611,23.9074 -24.12615,30.3938 -13.59715,7.3968 -31.30882,12.0969 -45.69712,4.1701 -7.36661,-4.2294 -11.63147,-12.2867 -13.06137,-20.4474"
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></svg>

Before

Width:  |  Height:  |  Size: 55 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 63 KiB

View File

@ -1,30 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,30 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,32 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,36 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,32 +0,0 @@
<?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>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,23 +0,0 @@
<?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{opacity:0.3;fill:#585763;enable-background:new ;}
.st1{fill:#4FC1EA;}
</style>
<g id="XMLID_81_">
<path id="XMLID_2288_" class="st0" d="M-7.9,213.9v-9h-4.2v8.9h-5.1v-8.9h-4.2v8.9h-5.1v-8.9h-4.2v8.9h-5.1v-8.9H-40v9
c-3.2,0.4-5.6,3.1-5.6,6.3v13.3c0,5.9,4.8,10.6,10.6,10.6h9v34h4.2v-34h9c5.9,0,10.6-4.8,10.6-10.6v-13.3
C-2.2,216.9-4.7,214.2-7.9,213.9z M-6.5,233.5c0,3.5-2.9,6.4-6.4,6.4h-22.3c-3.5,0-6.4-2.9-6.4-6.4v-13.3c0-1.2,1-2.1,2.1-2.1h30.8
c1.2,0,2.1,1,2.1,2.1L-6.5,233.5L-6.5,233.5z"/>
<g id="XMLID_2286_">
<path id="XMLID_2287_" class="st1" d="M7.8,197.9L7.8,197.9c0-7.4-5.9-13.4-13.2-13.6c-3-7.5-10.3-12.6-18.5-12.6
s-15.5,5.1-18.5,12.6c-7.3,0.2-13.2,6.2-13.2,13.5c-5.4,1.9-9.1,7-9.1,12.8c0,7.5,6.1,13.5,13.5,13.5h5.5v-4c0-0.1,0-0.1,0-0.2
h-5.5c-5.1,0-9.3-4.2-9.3-9.3c0-4.4,3.2-8.3,7.5-9.1c1.1-0.2,1.9-1.3,1.7-2.4c-0.1-0.5-0.1-0.9-0.1-1.3c0-5.1,4.2-9.3,9.3-9.3
c0.3,0,0.6,0,1,0.1c1,0.1,2-0.5,2.3-1.5c1.8-6.5,8-11.1,14.8-11.1s13,4.6,14.9,11.1c0.3,1,1.2,1.6,2.3,1.5c0.3,0,0.6-0.1,1-0.1
c5.1,0,9.3,4.2,9.3,9.3c0,0.4,0,0.8-0.1,1.3c-0.2,1.1,0.6,2.2,1.7,2.4c4.3,0.9,7.5,4.7,7.5,9.1c0,5.1-4.2,9.3-9.3,9.3h-5.5
c0,0.1,0,0.1,0,0.2v4h5.5c7.5,0,13.5-6.1,13.5-13.5C16.8,204.9,13.1,199.8,7.8,197.9z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,132 +0,0 @@
<?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 800 600" style="enable-background:new 0 0 800 600;" xml:space="preserve">
<style type="text/css">
.st0{fill:none;stroke:#5D5C74;stroke-width:4;stroke-miterlimit:10;}
.st1{fill:#4FC1EA;stroke:#5D5C74;stroke-width:3;stroke-miterlimit:10;}
.st2{fill:#5C5C74;}
.st3{fill:#344258;stroke:#5D5C74;stroke-width:4;stroke-miterlimit:10;}
.st4{fill:#FBD7CE;}
.st5{fill:#E4E6E9;}
.st6{fill:#CDCFD2;}
.st7{fill:#5D5C74;}
.st8{fill:#FFFFFF;}
.st9{fill:#DFE1E2;}
.st10{fill:#EDEEEF;}
.st11{fill:none;stroke:#5D5C74;stroke-width:3;stroke-miterlimit:10;}
.st12{fill:none;stroke:#F39200;stroke-width:3;stroke-miterlimit:10;}
.st13{fill:none;stroke:#4FC1EB;stroke-width:3;stroke-miterlimit:10;}
</style>
<g id="XMLID_2188_">
<line id="XMLID_7309_" class="st0" x1="50.3" y1="513.7" x2="759.5" y2="513.7"/>
<path id="XMLID_7308_" class="st1" d="M626.4,232.3c23.9,74.6-11.4,131.2-103.2,131.2c-97,0-125.1-56.4-102.2-131.2
c14.5-47.2,9-98.5,23.7-122c20.8-33.1,40.1-46,78.4-46c36.1,0,59.5,11.5,74.3,43.7C609.6,134.2,610.9,183.9,626.4,232.3z"/>
<path id="XMLID_7305_" class="st2" d="M522.5,363.4c-45.8,0-78-12.2-95.9-36.4c-17.1-23.2-19.7-56.5-7.5-96.5
c6.7-22,9.1-45,11.3-65.4c2.5-23.7,4.6-44.1,12.6-56.9c21.9-34.9,42-46.6,79.5-46.6c38.6,0,61.1,13.3,75.5,44.5
c6.2,13.5,9.6,32.8,13.4,55.2c3.7,21.4,7.9,45.6,15.5,69.3c12.1,37.8,9.3,70.5-8.2,94.4C600.4,350.1,567.1,363.4,522.5,363.4z
M522.5,64.1c-36.5,0-56,11.5-77.4,45.4c-7.7,12.3-9.8,32.4-12.2,55.8c-2.1,20.5-4.6,43.7-11.4,65.9c-12,39.1-9.5,71.7,7.1,94.2
c17.3,23.5,48.9,35.3,93.8,35.3c43.8,0,76.3-12.9,94.2-37.4c17-23.2,19.7-55.1,7.8-92.1c-7.7-23.9-11.9-48.2-15.6-69.6
c-3.9-22.2-7.2-41.3-13.2-54.5C581.8,77,559.9,64.1,522.5,64.1z"/>
<path id="XMLID_7304_" class="st3" d="M392,406.9c0-54.9,59.2-99.5,132.2-99.5s132.2,44.5,132.2,99.5"/>
<path id="XMLID_7303_" class="st4" d="M553.8,156c-28.4,0-52.9-11.6-64.6-28.4c-4.7,18.9-18,33-34,35c0,17.7,0,45.8,0,61.2
c0,23.6,14.8,53,37.9,67.8v23.6c0,13.2,8.3,31.7,30.2,31.7c21.3,0,30.6-18.5,30.6-31.7v-22c24.7-14.2,38-45,38-69.5
c0-23.6,0-77.2,0-77.2c0-0.2,0-0.3,0-0.5C587.8,154,577.9,156,553.8,156z"/>
<path id="XMLID_7300_" class="st2" d="M523.1,347.5c-23.1,0-31.4-19.7-31.4-33v-23c-22-14.4-37.9-43.1-37.9-68.5v-61.2
c0-0.6,0.5-1.2,1.1-1.3c15.3-1.9,28.2-15.2,32.9-34c0.1-0.5,0.5-0.9,1-1c0.5-0.1,1,0.1,1.3,0.5c12,17.1,36.3,27.8,63.5,27.8
c24.7,0,33.3-2.1,36.9-9.1c0.3-0.5,0.9-0.8,1.4-0.7c0.6,0.1,1,0.6,1,1.2l0,0.5v77.2c0,23.1-11.9,54.8-38,70.2v21.2
C555,328.2,545.1,347.5,523.1,347.5z M456.3,162.9v60.1c0,24.8,15.7,52.9,37.3,66.7c0.4,0.2,0.6,0.6,0.6,1.1v23.6
c0,12.2,7.7,30.4,28.9,30.4c20.2,0,29.3-17.8,29.3-30.4v-22c0-0.5,0.2-0.9,0.6-1.1c24.5-14.1,37.3-45.1,37.3-68.4v-73.7
c-5.8,6-17.2,7.1-36.8,7.1c-26.9,0-51.1-10.2-64.1-26.7C484.2,147.7,471.5,160.5,456.3,162.9z"/>
<g id="XMLID_7298_">
<path id="XMLID_7299_" class="st2" d="M537.5,248.2c0,0-5.9,6.8-13.2,6.8c-7.3,0-13.2-6.8-13.2-6.8s5.9,0.8,13.2,0.8
C531.6,249,537.5,248.2,537.5,248.2z"/>
</g>
<g id="XMLID_7296_">
<path id="XMLID_7297_" class="st2" d="M525,229.8c-0.1,0-0.2,0-0.3,0c-2.1-0.1-3.9-0.9-4.9-2.3c-0.8-1.1-1-2.5-0.6-3.9l1.2,0.4
c-0.3,1-0.2,1.9,0.4,2.7c0.8,1.1,2.2,1.8,3.9,1.8c2,0,3.8-0.7,4.7-1.9c0.6-0.8,0.6-1.8,0.2-2.9l1.2-0.5c0.8,1.9,0.3,3.3-0.3,4.1
C529.5,228.8,527.3,229.8,525,229.8z"/>
</g>
<path id="XMLID_7295_" class="st5" d="M670.3,378.6v156.6c0,8.1-6.6,14.7-14.7,14.7H390.2c-8.1,0-14.7-6.6-14.7-14.7V378.4
c0-8.1,6.6-14.7,14.7-14.7h265.4C663.7,363.9,670.3,370.5,670.3,378.6"/>
<path id="XMLID_7294_" class="st6" d="M670.3,518.1v17.2c0,8.1-6.6,14.7-14.7,14.7H390.2c-8.1,0-14.7-6.6-14.7-14.7v-17.3
L670.3,518.1z"/>
<path id="XMLID_7293_" class="st7" d="M375.5,460c-1.7,0-3.1-1.4-3.1-3.1v-31c0-1.7,1.6-2.9,3.1-2.9c1.6,0,2.9,1.4,2.9,2.9v31
C378.6,458.6,377.2,460,375.5,460"/>
<path id="XMLID_7292_" class="st7" d="M655.6,553.2H390.2c-9.9,0-17.8-8-17.8-17.8V476c0-1.7,1.6-2.9,3.1-2.9
c1.6,0,2.9,1.4,2.9,2.9v59.4c0,6.4,5.2,11.8,11.6,11.8h265.6c6.4,0,11.6-5.2,11.6-11.8V378.6c0-6.4-5.2-11.8-11.6-11.8H390.2
c-6.4,0-11.6,5.2-11.6,11.8v30.8c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1v-30.8c0-9.9,8-17.8,17.8-17.8h265.4
c9.9,0,17.8,8,17.8,17.8v156.6C673.4,545.1,665.5,553.2,655.6,553.2"/>
<path id="XMLID_7288_" class="st8" d="M650.2,428.5c-1.4,0-2.4-1-2.4-2.4v-28.2c0-6.8-5.5-12.3-12.3-12.3h-31.7
c-1.4,0-2.4-1-2.4-2.4c0-1.4,1-2.4,2.4-2.4h31.7c9.5,0,17.2,7.8,17.2,17.2v28.2C652.8,427.3,651.6,428.5,650.2,428.5 M586.3,385.5
h-22.2c-1.4,0-2.4-1-2.4-2.4c0-1.4,1-2.4,2.4-2.4h22.2c1.4,0,2.4,1,2.4,2.4C588.7,384.3,587.7,385.5,586.3,385.5 M531.4,469.4
c11.6,13.9,2.8,20.1-8.3,20.1s-20.1-9-20.1-20.1c0-11.1,9-20.1,20.1-20.1S539.4,459.3,531.4,469.4"/>
<path id="XMLID_7285_" class="st7" d="M522.9,452.2c-9.4,0-17,7.6-17,17c0,9.4,7.6,17,17,17c5.2,0,9.4-1.6,10.4-4
c1.2-2.4-0.3-6.4-4.3-11.1c-0.9-1-1-2.8,0-4c3.1-3.8,4-7.8,2.4-10.7C530.2,454,526.9,452.2,522.9,452.2 M522.9,492.6
c-12.8,0-23.2-10.4-23.2-23.2c0-12.8,10.4-23.2,23.2-23.2c6.4,0,11.6,2.9,14,7.8c2.3,4.5,1.6,10-1.7,15.2
c4.5,6.1,5.9,11.4,3.8,15.8C536.8,489.8,530.7,492.6,522.9,492.6"/>
<path id="XMLID_7284_" class="st7" d="M519.8,440.3c-1.7,0-3.1-1.4-3.1-3.1c0-0.3,0-0.5,0.2-0.9c0.2-0.3,2.8-9.7,10.6-12
c1.6-0.5,3.3,0.5,3.8,2.3c0.3,1.6-0.5,3.3-2.1,3.6c-4.3,1.4-6.4,7.6-6.4,7.8C522.4,439.4,521.2,440.3,519.8,440.3"/>
<path id="XMLID_7283_" class="st9" d="M225,530.6h43v-64.1h-43V530.6z"/>
<path id="XMLID_7280_" class="st7" d="M228.1,527.5H265v-57.9h-36.9L228.1,527.5z M268.1,533.7h-43c-1.7,0-3.1-1.4-3.1-3.1v-64.1
c0-1.7,1.4-3.1,3.1-3.1h43c1.7,0,3.1,1.4,3.1,3.1v64.1C271,532.3,269.8,533.7,268.1,533.7z"/>
<path id="XMLID_7275_" class="st7" d="M268.1,522.1c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c9.5,0,17.3-7.8,17.3-17.3
c0-9.5-7.8-17.3-17.3-17.3c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1c13,0,23.4,10.6,23.4,23.6
C291.5,511.6,280.9,522.1,268.1,522.1 M246.6,458.5c-0.5,0-1-0.2-1.4-0.7c-0.5-0.7-5.5-7.6-4.5-12.3c0.5-2.1,1.7-3.6,3.1-5.2
c1.6-1.9,3.1-3.6,3.3-6.6c0.2-1,1-1.7,2.1-1.7c1,0.2,1.7,1,1.7,2.1c-0.3,4.2-2.4,6.6-4.2,8.7c-1,1.2-2.1,2.4-2.3,3.6
c-0.5,2.4,2.4,7.3,3.8,9.2c0.7,0.9,0.5,1.9-0.3,2.6C247.3,458.4,247,458.5,246.6,458.5 M236,457.2c-0.2,0-0.3,0-0.5-0.2
c-0.3-0.3-3.8-2.6-4.2-5c-0.2-1,0.2-2.1,0.7-2.9c0.5-1.2,0.9-2.3,0.5-3.6c-0.2-0.5,0.2-1,0.7-1c0.5-0.2,1,0.2,1,0.7
c0.5,2.1-0.2,3.5-0.5,4.7c-0.3,0.7-0.5,1.4-0.5,2.1c0.2,1,2.1,2.8,3.3,3.8c0.3,0.3,0.5,0.9,0.2,1.2
C236.6,457,236.4,457.2,236,457.2 M257.2,457.5c-0.3,0-0.7-0.2-0.9-0.7c-0.2-0.5-1.6-4.5-0.3-6.6c0.5-0.9,1.4-1.6,2.3-2.1
c1-0.7,1.9-1.2,2.6-2.6c0.2-0.5,0.7-0.7,1.2-0.3c0.3,0.2,0.7,0.7,0.5,1.2c-0.9,1.9-2.3,2.8-3.3,3.5c-0.7,0.5-1.4,0.9-1.6,1.4
c-0.5,1,0,3.5,0.5,5c0.2,0.5,0,1-0.5,1.2H257.2"/>
<path id="XMLID_7271_" class="st8" d="M239.4,517.3c-1.5,0-2.7-1.1-2.7-2.7v-20c0-1.5,1.1-2.7,2.7-2.7c1.5,0,2.7,1.1,2.7,2.7v20
C242.1,516.2,240.9,517.3,239.4,517.3C239.4,517.5,239.4,517.5,239.4,517.3 M239.4,540.1c-1.5,0-2.7-1.1-2.7-2.7v-10.1
c0-1.5,1.1-2.7,2.7-2.7c1.5,0,2.7,1.1,2.7,2.7v10.1C242.1,538.8,240.9,540.1,239.4,540.1"/>
<path id="XMLID_7270_" class="st6" d="M229.1,268.6L179,318.8c0,0-11.6-10.7-13.3-19.9c0,0-8.3-21.2,10.6-37.9c0,0,11-13,34.1-7.4
C210.4,253.6,223,257.8,229.1,268.6z"/>
<path id="XMLID_7269_" class="st7" d="M109.9,233.2c0.1-0.5,0.5-0.8,0.9-1c0.4-0.2,0.9-0.2,1.4,0l59.9,26.3
c0.2,0.1,0.4,0.2,0.6,0.4c15.5-14.2,39.6-13.9,54.6,1.1c2.3,2.3,4.3,4.9,5.9,7.6l0,0c0.7,0.8,0.7,2-0.1,2.7l-4.2,4.2h-5.7l5.8-5.8
c-1.3-2-2.9-4-4.6-5.8c-13.8-13.8-36.3-13.8-50.2,0c-9.7,9.7-12.6,23.8-8.6,36.1c0,0,0,0,0,0c0.2,0.7,0.1,1.4-0.5,1.9
c-0.8,0.8-2,0.8-2.8,0c-0.1-0.1-0.2-0.3-0.3-0.4c0,0-0.1,0-0.1-0.1c0,0,0-0.1,0-0.1c0-0.1-0.1-0.2-0.1-0.3
c-4.2-13.1-1.4-27.9,8.3-38.6l-57.6-25.3l-23.3,74.2h-3.6L109.9,233.2z"/>
<path id="XMLID_7265_" class="st7" d="M112.8,532.3c-0.5,0-1-0.2-1.3-0.6l-39.4-48.4h4.4l37.1,45.6h64.2c0.9,0,1.7,0.8,1.7,1.7v9
c0,0.9-0.8,1.7-1.7,1.7l-137.5,1.4c0,0,0,0,0,0c-0.9,0-1.7-0.8-1.7-1.7c0-0.9,0.7-1.7,1.7-1.7l135.8-1.4v-5.6H112.8z"/>
<path id="XMLID_7263_" class="st7" d="M181.8,321.6c-0.8,0.8-2.1,0.8-2.8,0c-0.8-0.8-0.8-2.1,0-2.8l10.3-10.3v5.7L181.8,321.6z"/>
<path id="XMLID_7262_" class="st10" d="M220.4,308.9c-7.4,7.4-19.1,7.7-27,1.1l28-28C228.1,289.8,227.8,301.5,220.4,308.9z"/>
<path id="XMLID_7256_" class="st7" d="M228.9,274.5h-5.7l-34,34v5.7l1.3-1.3c9.4,8.2,23.7,7.9,32.6-1.1c8.9-8.9,9.3-23.2,1.1-32.6
L228.9,274.5z M221.5,282c6.6,7.8,6.3,19.6-1.1,27c-7.4,7.4-19.1,7.7-27,1.1L221.5,282z"/>
<path id="XMLID_7255_" class="st5" d="M50.2,473.7c-11.2,0-20.2-9.1-20.2-20.2c0-11.2,9.1-20.2,20.2-20.2
c11.2,0,20.2,9.1,20.2,20.2C70.4,464.7,61.3,473.7,50.2,473.7z"/>
<path id="XMLID_7251_" class="st7" d="M72.2,483.3h4.4l-10.2-12.6c4.6-4.3,7.5-10.4,7.5-17.2c0-10.1-6.4-18.7-15.3-22.1l2.8-8.9
h-3.6l-2.5,7.9c-1.6-0.4-3.4-0.6-5.1-0.6c-13,0-23.6,10.6-23.6,23.6c0,13,10.6,23.6,23.6,23.6c5,0,9.7-1.6,13.5-4.3L72.2,483.3z
M50.2,473.7c-11.2,0-20.2-9.1-20.2-20.2c0-11.2,9.1-20.2,20.2-20.2c11.2,0,20.2,9.1,20.2,20.2C70.4,464.7,61.3,473.7,50.2,473.7z"
/>
<rect id="XMLID_7247_" x="40.3" y="532.3" class="st6" width="135.8" height="7"/>
<line id="XMLID_7245_" class="st11" x1="56.4" y1="432.3" x2="88.2" y2="307.8"/>
<g id="XMLID_7240_">
<path id="XMLID_7243_" class="st2" d="M475.8,189.7c-0.6,0-1.3-0.2-1.8-0.7c-1.1-1-1.1-2.6-0.1-3.7c3.3-3.5,7.9-5.3,12.3-4.9
c3.7,0.3,6.8,2.2,8.7,5.1c0.8,1.2,0.4,2.8-0.8,3.6c-1.2,0.8-2.8,0.4-3.6-0.8c-1-1.6-2.7-2.5-4.7-2.7c-2.8-0.3-5.8,1-8,3.3
C477.2,189.4,476.5,189.7,475.8,189.7z"/>
</g>
<g id="XMLID_7234_">
<path id="XMLID_7235_" class="st2" d="M574.4,189.7c-0.7,0-1.4-0.3-1.9-0.8c-2.2-2.3-5.4-3.6-8.6-3.4c-2.6,0.1-4.8,1.2-6.2,3
c-0.9,1.2-2.5,1.4-3.7,0.5c-1.1-0.9-1.4-2.5-0.5-3.7c2.3-3,5.9-4.8,10-5.1c4.8-0.3,9.4,1.6,12.7,5c1,1,1,2.7-0.1,3.7
C575.7,189.4,575.1,189.7,574.4,189.7z"/>
</g>
<path id="XMLID_7233_" class="st12" d="M593.6,24.1c-1.3,1.1-3,1.8-4.9,1.8c-4.1,0-7.4-3.3-7.4-7.4s3.3-7.4,7.4-7.4
s7.4,3.3,7.4,7.4c0,1.3-0.3,2.5-0.9,3.5"/>
<path id="XMLID_7231_" class="st13" d="M927.6,36c-1.2,1-2.8,1.7-4.5,1.7c-3.8,0-6.9-3.1-6.9-6.9s3.1-6.9,6.9-6.9
c3.8,0,6.9,3.1,6.9,6.9c0,1.2-0.3,2.3-0.8,3.2"/>
<path id="XMLID_7227_" class="st13" d="M723.9-25.7c-2.8,2.4-6.5,3.9-10.5,3.9c-8.9,0-16.1-7.2-16.1-16.1S704.5-54,713.4-54
c8.9,0,16.1,7.2,16.1,16.1c0,2.7-0.7,5.3-1.9,7.6"/>
<path id="XMLID_7226_" class="st13" d="M738.4,128.4c-0.9,0.8-2.2,1.3-3.5,1.3c-3,0-5.4-2.4-5.4-5.4s2.4-5.4,5.4-5.4
c3,0,5.4,2.4,5.4,5.4c0,0.9-0.2,1.8-0.6,2.5"/>
<path id="XMLID_7222_" class="st12" d="M776.6,72.4c-1.9,1.6-4.3,2.6-7,2.6c-5.9,0-10.7-4.8-10.7-10.7s4.8-10.7,10.7-10.7
c5.9,0,10.7,4.8,10.7,10.7c0,1.8-0.5,3.5-1.3,5"/>
<path id="XMLID_7218_" class="st12" d="M422.9-49.9c-0.9,0.8-2.2,1.3-3.5,1.3c-3,0-5.4-2.4-5.4-5.4s2.4-5.4,5.4-5.4
c3,0,5.4,2.4,5.4,5.4c0,0.9-0.2,1.8-0.6,2.5"/>
<path id="XMLID_7196_" class="st12" d="M893.7,176.5c-0.9,0.8-2.2,1.3-3.5,1.3c-3,0-5.4-2.4-5.4-5.4s2.4-5.4,5.4-5.4
s5.4,2.4,5.4,5.4c0,0.9-0.2,1.8-0.6,2.5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,29 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="55" height="80" viewBox="0 0 55 80" xmlns="http://www.w3.org/2000/svg" fill="#FFF">
<g transform="matrix(1 0 0 -1 0 80)">
<rect width="10" height="20" rx="3">
<animate attributeName="height"
begin="0s" dur="4.3s"
values="20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="15" width="10" height="80" rx="3">
<animate attributeName="height"
begin="0s" dur="2s"
values="80;55;33;5;75;23;73;33;12;14;60;80" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="30" width="10" height="50" rx="3">
<animate attributeName="height"
begin="0s" dur="1.4s"
values="50;34;78;23;56;23;34;76;80;54;21;50" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="45" width="10" height="30" rx="3">
<animate attributeName="height"
begin="0s" dur="2s"
values="30;45;13;80;56;72;45;76;34;23;67;30" calcMode="linear"
repeatCount="indefinite" />
</rect>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,47 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<!-- Todo: add easing -->
<svg width="57" height="57" viewBox="0 0 57 57" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)" stroke-width="2">
<circle cx="5" cy="50" r="5">
<animate attributeName="cy"
begin="0s" dur="2.2s"
values="50;5;50;50"
calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="cx"
begin="0s" dur="2.2s"
values="5;27;49;5"
calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="27" cy="5" r="5">
<animate attributeName="cy"
begin="0s" dur="2.2s"
from="5" to="5"
values="5;50;50;5"
calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="cx"
begin="0s" dur="2.2s"
from="27" to="27"
values="27;49;5;27"
calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="49" cy="50" r="5">
<animate attributeName="cy"
begin="0s" dur="2.2s"
values="50;50;5;50"
calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="cx"
from="49" to="49"
begin="0s" dur="2.2s"
values="49;5;27;49"
calcMode="linear"
repeatCount="indefinite" />
</circle>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,52 +0,0 @@
<svg width="135" height="140" viewBox="0 0 135 140" xmlns="http://www.w3.org/2000/svg" fill="#fff">
<rect y="10" width="15" height="120" rx="6">
<animate attributeName="height"
begin="0.5s" dur="1s"
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="y"
begin="0.5s" dur="1s"
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="30" y="10" width="15" height="120" rx="6">
<animate attributeName="height"
begin="0.25s" dur="1s"
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="y"
begin="0.25s" dur="1s"
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="60" width="15" height="140" rx="6">
<animate attributeName="height"
begin="0s" dur="1s"
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="y"
begin="0s" dur="1s"
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="90" y="10" width="15" height="120" rx="6">
<animate attributeName="height"
begin="0.25s" dur="1s"
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="y"
begin="0.25s" dur="1s"
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
repeatCount="indefinite" />
</rect>
<rect x="120" y="10" width="15" height="120" rx="6">
<animate attributeName="height"
begin="0.5s" dur="1s"
values="120;110;100;90;80;70;60;50;40;140;120" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="y"
begin="0.5s" dur="1s"
values="10;15;20;25;30;35;40;45;50;0;10" calcMode="linear"
repeatCount="indefinite" />
</rect>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,20 +0,0 @@
<svg width="135" height="135" viewBox="0 0 135 135" xmlns="http://www.w3.org/2000/svg" fill="#fff">
<path d="M67.447 58c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm9.448 9.447c0 5.523 4.477 10 10 10 5.522 0 10-4.477 10-10s-4.478-10-10-10c-5.523 0-10 4.477-10 10zm-9.448 9.448c-5.523 0-10 4.477-10 10 0 5.522 4.477 10 10 10s10-4.478 10-10c0-5.523-4.477-10-10-10zM58 67.447c0-5.523-4.477-10-10-10s-10 4.477-10 10 4.477 10 10 10 10-4.477 10-10z">
<animateTransform
attributeName="transform"
type="rotate"
from="0 67 67"
to="-360 67 67"
dur="2.5s"
repeatCount="indefinite"/>
</path>
<path d="M28.19 40.31c6.627 0 12-5.374 12-12 0-6.628-5.373-12-12-12-6.628 0-12 5.372-12 12 0 6.626 5.372 12 12 12zm30.72-19.825c4.686 4.687 12.284 4.687 16.97 0 4.686-4.686 4.686-12.284 0-16.97-4.686-4.687-12.284-4.687-16.97 0-4.687 4.686-4.687 12.284 0 16.97zm35.74 7.705c0 6.627 5.37 12 12 12 6.626 0 12-5.373 12-12 0-6.628-5.374-12-12-12-6.63 0-12 5.372-12 12zm19.822 30.72c-4.686 4.686-4.686 12.284 0 16.97 4.687 4.686 12.285 4.686 16.97 0 4.687-4.686 4.687-12.284 0-16.97-4.685-4.687-12.283-4.687-16.97 0zm-7.704 35.74c-6.627 0-12 5.37-12 12 0 6.626 5.373 12 12 12s12-5.374 12-12c0-6.63-5.373-12-12-12zm-30.72 19.822c-4.686-4.686-12.284-4.686-16.97 0-4.686 4.687-4.686 12.285 0 16.97 4.686 4.687 12.284 4.687 16.97 0 4.687-4.685 4.687-12.283 0-16.97zm-35.74-7.704c0-6.627-5.372-12-12-12-6.626 0-12 5.373-12 12s5.374 12 12 12c6.628 0 12-5.373 12-12zm-19.823-30.72c4.687-4.686 4.687-12.284 0-16.97-4.686-4.686-12.284-4.686-16.97 0-4.687 4.686-4.687 12.284 0 16.97 4.686 4.687 12.284 4.687 16.97 0z">
<animateTransform
attributeName="transform"
type="rotate"
from="0 67 67"
to="360 67 67"
dur="8s"
repeatCount="indefinite"/>
</path>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -1,56 +0,0 @@
<svg width="105" height="105" viewBox="0 0 105 105" xmlns="http://www.w3.org/2000/svg" fill="#fff">
<circle cx="12.5" cy="12.5" r="12.5">
<animate attributeName="fill-opacity"
begin="0s" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="12.5" cy="52.5" r="12.5" fill-opacity=".5">
<animate attributeName="fill-opacity"
begin="100ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="52.5" cy="12.5" r="12.5">
<animate attributeName="fill-opacity"
begin="300ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="52.5" cy="52.5" r="12.5">
<animate attributeName="fill-opacity"
begin="600ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="92.5" cy="12.5" r="12.5">
<animate attributeName="fill-opacity"
begin="800ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="92.5" cy="52.5" r="12.5">
<animate attributeName="fill-opacity"
begin="400ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="12.5" cy="92.5" r="12.5">
<animate attributeName="fill-opacity"
begin="700ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="52.5" cy="92.5" r="12.5">
<animate attributeName="fill-opacity"
begin="500ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="92.5" cy="92.5" r="12.5">
<animate attributeName="fill-opacity"
begin="200ms" dur="1s"
values="1;.2;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
</svg>

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1,18 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="140" height="64" viewBox="0 0 140 64" xmlns="http://www.w3.org/2000/svg" fill="#fff">
<path d="M30.262 57.02L7.195 40.723c-5.84-3.976-7.56-12.06-3.842-18.063 3.715-6 11.467-7.65 17.306-3.68l4.52 3.76 2.6-5.274c3.717-6.002 11.47-7.65 17.305-3.68 5.84 3.97 7.56 12.054 3.842 18.062L34.49 56.118c-.897 1.512-2.793 1.915-4.228.9z" fill-opacity=".5">
<animate attributeName="fill-opacity"
begin="0s" dur="1.4s"
values="0.5;1;0.5"
calcMode="linear"
repeatCount="indefinite" />
</path>
<path d="M105.512 56.12l-14.44-24.272c-3.716-6.008-1.996-14.093 3.843-18.062 5.835-3.97 13.588-2.322 17.306 3.68l2.6 5.274 4.52-3.76c5.84-3.97 13.592-2.32 17.307 3.68 3.718 6.003 1.998 14.088-3.842 18.064L109.74 57.02c-1.434 1.014-3.33.61-4.228-.9z" fill-opacity=".5">
<animate attributeName="fill-opacity"
begin="0.7s" dur="1.4s"
values="0.5;1;0.5"
calcMode="linear"
repeatCount="indefinite" />
</path>
<path d="M67.408 57.834l-23.01-24.98c-5.864-6.15-5.864-16.108 0-22.248 5.86-6.14 15.37-6.14 21.234 0L70 16.168l4.368-5.562c5.863-6.14 15.375-6.14 21.235 0 5.863 6.14 5.863 16.098 0 22.247l-23.007 24.98c-1.43 1.556-3.757 1.556-5.188 0z" />
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,17 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)" stroke-width="2">
<circle stroke-opacity=".5" cx="18" cy="18" r="18"/>
<path d="M36 18c0-9.94-8.06-18-18-18">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="1s"
repeatCount="indefinite"/>
</path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 694 B

View File

@ -1,37 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="44" height="44" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="#fff">
<g fill="none" fill-rule="evenodd" stroke-width="2">
<circle cx="22" cy="22" r="1">
<animate attributeName="r"
begin="0s" dur="1.8s"
values="1; 20"
calcMode="spline"
keyTimes="0; 1"
keySplines="0.165, 0.84, 0.44, 1"
repeatCount="indefinite" />
<animate attributeName="stroke-opacity"
begin="0s" dur="1.8s"
values="1; 0"
calcMode="spline"
keyTimes="0; 1"
keySplines="0.3, 0.61, 0.355, 1"
repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="1">
<animate attributeName="r"
begin="-0.9s" dur="1.8s"
values="1; 20"
calcMode="spline"
keyTimes="0; 1"
keySplines="0.165, 0.84, 0.44, 1"
repeatCount="indefinite" />
<animate attributeName="stroke-opacity"
begin="-0.9s" dur="1.8s"
values="1; 0"
calcMode="spline"
keyTimes="0; 1"
keySplines="0.3, 0.61, 0.355, 1"
repeatCount="indefinite" />
</circle>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,42 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="45" height="45" viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg" stroke="#4FC1EA">
<g fill="none" fill-rule="evenodd" transform="translate(1 1)" stroke-width="2">
<circle cx="22" cy="22" r="6" stroke-opacity="0">
<animate attributeName="r"
begin="1.5s" dur="3s"
values="6;22"
calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="stroke-opacity"
begin="1.5s" dur="3s"
values="1;0" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="stroke-width"
begin="1.5s" dur="3s"
values="2;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="6" stroke-opacity="0">
<animate attributeName="r"
begin="3s" dur="3s"
values="6;22"
calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="stroke-opacity"
begin="3s" dur="3s"
values="1;0" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="stroke-width"
begin="3s" dur="3s"
values="2;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="22" cy="22" r="8">
<animate attributeName="r"
begin="0s" dur="1.5s"
values="6;1;2;3;4;5;6"
calcMode="linear"
repeatCount="indefinite" />
</circle>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,55 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="58" height="58" viewBox="0 0 58 58" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd">
<g transform="translate(2 1)" stroke="#FFF" stroke-width="1.5">
<circle cx="42.601" cy="11.462" r="5" fill-opacity="1" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="1;0;0;0;0;0;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="49.063" cy="27.063" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;1;0;0;0;0;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="42.601" cy="42.663" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;1;0;0;0;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="27" cy="49.125" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;0;1;0;0;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="11.399" cy="42.663" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;0;0;1;0;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="4.938" cy="27.063" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;0;0;0;1;0;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="11.399" cy="11.462" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;0;0;0;0;1;0" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="27" cy="5" r="5" fill-opacity="0" fill="#fff">
<animate attributeName="fill-opacity"
begin="0s" dur="1.3s"
values="0;0;0;0;0;0;0;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -1,32 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="8.042%" y1="0%" x2="65.682%" y2="23.865%" id="a">
<stop stop-color="#fff" stop-opacity="0" offset="0%"/>
<stop stop-color="#fff" stop-opacity=".631" offset="63.146%"/>
<stop stop-color="#fff" offset="100%"/>
</linearGradient>
</defs>
<g fill="none" fill-rule="evenodd">
<g transform="translate(1 1)">
<path d="M36 18c0-9.94-8.06-18-18-18" id="Oval-2" stroke="url(#a)" stroke-width="2">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="0.9s"
repeatCount="indefinite" />
</path>
<circle fill="#fff" cx="36" cy="18" r="1">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="0.9s"
repeatCount="indefinite" />
</circle>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,33 +0,0 @@
<!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL -->
<svg width="120" height="30" viewBox="0 0 120 30" xmlns="http://www.w3.org/2000/svg" fill="#fff">
<circle cx="15" cy="15" r="15">
<animate attributeName="r" from="15" to="15"
begin="0s" dur="0.8s"
values="15;9;15" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="fill-opacity" from="1" to="1"
begin="0s" dur="0.8s"
values="1;.5;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="60" cy="15" r="9" fill-opacity="0.3">
<animate attributeName="r" from="9" to="9"
begin="0s" dur="0.8s"
values="9;15;9" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="fill-opacity" from="0.5" to="0.5"
begin="0s" dur="0.8s"
values=".5;1;.5" calcMode="linear"
repeatCount="indefinite" />
</circle>
<circle cx="105" cy="15" r="15">
<animate attributeName="r" from="15" to="15"
begin="0s" dur="0.8s"
values="15;9;15" calcMode="linear"
repeatCount="indefinite" />
<animate attributeName="fill-opacity" from="1" to="1"
begin="0s" dur="0.8s"
values="1;.5;1" calcMode="linear"
repeatCount="indefinite" />
</circle>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,5 +0,0 @@
<svg width="480px" height="480px" viewBox="0 0 480 480" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="#00d1b2" fill-rule="evenodd">
<polygon id="Path" points="136 296 156 156 236 76 336 176 276 236 356 316 236 396"></polygon>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 338 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -1,30 +0,0 @@
<?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 798 454" style="enable-background:new 0 0 798 454;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:#FFFFFF;}
</style>
<path class="st0" d="M92.8,330.4c-7.4,0-13.7-1.2-18.9-3.7c-5.2-2.5-9.4-6.1-12.4-10.8c-3-4.7-5.3-10.2-6.6-16.4
c-1.4-6.2-2.1-13.3-2.1-21.5v-50.1c0-6.7,0.5-12.6,1.4-17.9c0.9-5.3,2.4-10.1,4.5-14.6c2.1-4.4,4.8-8.1,8.1-11
c3.3-2.9,7.5-5.2,12.5-6.8c5-1.6,10.8-2.4,17.3-2.4c6.3,0,11.9,0.7,16.8,2.1c4.9,1.4,8.9,3.3,12.2,5.8c3.3,2.5,5.9,5.6,8,9.3
c2.1,3.7,3.5,7.8,4.4,12.2c0.9,4.4,1.3,9.3,1.3,14.8v9.6h-31.5v-12.1c0-2.3,0-4.2-0.1-5.6s-0.3-3.1-0.7-4.8
c-0.4-1.8-0.9-3.1-1.7-4.1c-0.7-1-1.8-1.8-3.2-2.5c-1.4-0.7-3.1-1-5.1-1c-2.1,0-3.8,0.4-5.2,1.2c-1.4,0.8-2.5,1.7-3.3,2.9
c-0.8,1.1-1.4,2.6-1.8,4.5c-0.4,1.9-0.7,3.6-0.8,5.1c-0.1,1.5-0.1,3.4-0.1,5.7v69.1c0,6,0.9,10.8,2.6,14.2c1.7,3.5,4.9,5.2,9.4,5.2
c8.4,0,12.7-6.7,12.7-20.1v-16.9H97.2v-19.9h42.3v78.4h-21.4l-1.8-12.6C112,325.4,104.1,330.4,92.8,330.4z"/>
<line class="st0" x1="175.9" y1="330" x2="118.1" y2="330"/>
<path class="st0" d="M297.2,304.2c-0.6,0.1-1.2,0.2-1.8,0.3c-0.6,0.1-1.4,0.2-2.4,0.2c-1,0.1-1.8,0.1-2.6,0
c-6.3-0.2-9.4-3.1-9.4-8.7v-55.7h14.9v-19.8H281v-32.7h-29.6v32.7h-9.9h-11.5H227h-26.5v79c-7.5,4.4-11.9,3.8-14.3,1.9v-80.9h-29.4
V305c0,7.3,1.6,13.3,4.9,18c3.3,4.7,8,7,14.2,7c3,0,5.9-0.5,8.8-1.5l0,0c0,0,6.5,0.2,15.8-5.5v5.2h29.4v-77.6h21.4v40
c0,3.2,0.1,6,0.3,8.5c0.2,2.5,0.5,5.1,1,7.9c0.5,2.7,1.1,5.1,1.9,7.2c0.8,2.1,1.9,4.1,3.2,6c1.3,1.9,2.9,3.5,4.7,4.8
c1.8,1.3,4,2.3,6.6,3.1c2.6,0.8,5.5,1.3,8.7,1.4c1,0.1,2,0.1,3,0.1c5.3,0,11.1-0.5,17.4-1.6V304C298.1,304,297.8,304.1,297.2,304.2z
"/>
<polygon class="st0" points="308.5,219 332,219 352.5,296 372,219 396,219 415,296 436.5,219 460.5,219 429,330 404,330
384.5,256.1 365,330 340,330 "/>
<ellipse class="st0" cx="519" cy="275.1" rx="58.5" ry="57.9"/>
<ellipse class="st1" cx="519" cy="275.1" rx="31.5" ry="31.1"/>
<path class="st0" d="M593.7,219h24.7v16.7c0,0,9.7-17,39.7-16.7v25c0,0-33.3-5-39.3,26.7V330h-25V219z"/>
<path class="st0" d="M675,166.7h25V252c0,0,30.3,6.3,37.7-33H762c0,0,1,32.7-29.3,51.3L776,330h-30l-33.3-46c0,0-3.3-6.3-12.7-6v52
h-25V166.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,42 +0,0 @@
<?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="-300 709 798 454" style="enable-background:new -300 709 798 454;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{opacity:0.2;enable-background:new ;}
</style>
<g class="st0">
<path d="M-270.7,993.5c9.2,32,16.7,41.7,20,47.7s23.8,26.1,23.8,26.1s51.3,43.8,103.3,31.5c52-12.3,67.8-30.3,67.8-30.3
c9-4.8,41.5-39.5,41.5-39.5l-49.2-56c0,0-37,43.3-60.8,48.8s-38-5-38-5s-22.3-8.3-29-34.8s3.5-41.8,3.5-41.8s1-3.7,16.5-19.7
s43-12,43-12c-16-9.8-20.8-11-20.8-11c-33.3-12.3-63.3-4-63.3-4s-33.9,5.5-50.6,46.2C-263,939.7-276.8,974.4-270.7,993.5z"/>
<path d="M-269.2,938.5c0,0,5.5-37,53.5-56s95,17.5,95,17.5l30.8,29c0,0,89.7,103,120.7,133s63.5,34.5,63.5,34.5s35.5,9.5,76.5-5.5
s55.5-39,55.5-39s29-34,30-74.5c0,0-9.3,28.8-31.5,40.3c-22.2,11.5-36.8,21.3-90,14.5c0,0-19.8-4.3-33.8-12.8s-33.3-27.3-33.3-27.3
s-19.3-18.8-37-40.8s-45.3-56.8-45.3-56.8s-52.2-54.3-106.5-60.5c-54.3-6.2-90,18.8-90,18.8S-262.7,885.3-269.2,938.5z"/>
<path d="M-0.7,897.5l49.5,62c0,0,43.5-53.5,74-51s38.5,16.5,38.5,16.5s16.5,16.2,17.5,41.4c1,25.2-21.9,47.7-39,55.1
c0,0,36.9,7.7,70.5-6.5c33.6-14.2,47-52,46-67.5c0,0-42.7-3.2-55.7-39.2s4-48.7,2-50s-34.3-27.8-90.7-25.1
C55.7,836,0.3,891.7-0.7,897.5z"/>
</g>
<g class="st1">
<path d="M223.3,918c-0.5,0-0.9-0.5-0.9-1v-50.8c0-0.3,0.3-0.7,0.6-0.7h12c0.5,0,0.8,0.3,0.8,0.7v50.9c0,0.4-0.3,0.9-0.8,0.9H223.3z
"/>
<path d="M238.6,866.4c0-0.5,0.4-0.9,0.8-0.9h11.8c0.5,0,0.8,0.3,1,0.8l4.2,15.8c0.1,0.6,0.3,0.8,0.5,0.8c0.2,0,0.4-0.3,0.4-0.9
v-15.6c0-0.5,0.3-0.9,0.8-0.9h10.5c0.6,0,0.9,0.5,0.9,1v50.6c0,0.5-0.3,0.9-0.8,0.9h-13.1c-0.3,0-0.7-0.3-0.8-0.7l-3.1-12.6
c-0.1-0.7-0.4-1-0.6-1s-0.4,0.3-0.4,1v12.4c0,0.5-0.4,0.9-0.9,0.9h-10.6c-0.4,0-0.7-0.4-0.7-1V866.4z"/>
<path d="M272.4,866.5c0-0.5,0.3-1,0.8-1h25.2c0.5,0,0.8,0.4,0.8,0.8v12.2c0,0.5-0.4,0.9-0.9,0.9H287c-0.4,0-0.8,0.3-0.8,0.8v4.2
c0,0.4,0.2,0.6,0.7,0.6h5.3c0.3,0,0.8,0.3,0.8,0.7v12.7c0,0.4-0.3,0.8-0.8,0.8h-5.3c-0.3,0-0.7,0.5-0.7,0.9v17c0,0.6-0.4,1-0.9,1
h-12.2c-0.4,0-0.8-0.4-0.8-0.9V866.5z"/>
<path d="M302.7,918c-0.5,0-0.9-0.5-0.9-1v-50.8c0-0.3,0.3-0.7,0.6-0.7h12c0.5,0,0.8,0.3,0.8,0.7v50.9c0,0.4-0.3,0.9-0.8,0.9H302.7z
"/>
<path d="M318,866.4c0-0.5,0.4-0.9,0.8-0.9h11.8c0.5,0,0.8,0.3,1,0.8l4.2,15.8c0.1,0.6,0.3,0.8,0.5,0.8c0.2,0,0.4-0.3,0.4-0.9v-15.6
c0-0.5,0.3-0.9,0.8-0.9h10.5c0.6,0,0.9,0.5,0.9,1v50.6c0,0.5-0.3,0.9-0.8,0.9h-13.1c-0.3,0-0.7-0.3-0.8-0.7l-3.1-12.6
c-0.1-0.7-0.4-1-0.6-1s-0.4,0.3-0.4,1v12.4c0,0.5-0.4,0.9-0.9,0.9h-10.6c-0.4,0-0.7-0.4-0.7-1V866.4z"/>
<path d="M352.7,918c-0.5,0-0.9-0.5-0.9-1v-50.8c0-0.3,0.3-0.7,0.6-0.7h12c0.5,0,0.8,0.3,0.8,0.7v50.9c0,0.4-0.4,0.9-0.8,0.9H352.7z
"/>
<path d="M377.4,918c-0.5,0-1-0.4-1-1v-36.5c0-0.5-0.4-0.8-0.9-0.8h-7c-0.4,0-0.9-0.6-0.9-1v-12.5c0-0.4,0.2-0.7,0.6-0.7h30
c0.5,0,0.9,0.3,0.9,0.8v12.3c0,0.6-0.4,1-1,1h-7c-0.5,0-0.8,0.4-0.8,1v36.5c0,0.5-0.4,0.9-1,0.9H377.4z"/>
<path d="M401.6,866.4c0-0.4,0.4-0.9,0.9-0.9h24.9c0.4,0,0.7,0.4,0.7,0.8v12.6c0,0.4-0.3,0.7-0.8,0.7h-11.7c-0.3,0-0.5,0.2-0.5,0.5
v3.9c0,0.3,0.3,0.5,0.5,0.5h5.5c0.3,0,0.5,0.2,0.5,0.5v12.7c0,0.3-0.3,0.6-0.6,0.6h-5.7c-0.3,0-0.5,0.2-0.5,0.6v4.1
c0,0.3,0.2,0.5,0.4,0.5h12.1c0.5,0,0.8,0.3,0.8,0.7v13c0,0.4-0.4,0.8-0.8,0.8h-25.1c-0.4,0-0.8-0.4-0.8-0.9V866.4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -1,41 +0,0 @@
<?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 798 454" style="enable-background:new 0 0 798 454;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
</style>
<g class="st0">
<path d="M167.3,251.3l29.7,80.7c2.6,6.9,8.2,10.4,16.9,10.4h45.5c13.2,0,19.8,4.6,19.8,13.9c0,6.4-2.3,11.4-7,15
c-4.7,3.6-11.2,5.4-19.5,5.4h-46.7c-12.4,0-21.1-1.7-26.1-5.1c-5.1-3.4-9.7-10.6-13.8-21.4l-37.2-100.6l-29.1,71.5
c-5.6,14.1-13.6,21.1-24,21.1c-4.3,0-8-1.4-11.1-4.2c-3.1-2.8-4.6-6.1-4.6-10c0-3.1,0.8-6.7,2.4-10.7l1.7-4.1l36.5-89.9
c5.5-13.7,8.3-23.1,8.3-28.4c0-4.6-2-8.5-6-11.9c-4-3.3-8.6-5-14-5c-9.6,0-18.2,4-25.8,12c-7.6,8-11.5,17-11.5,26.9
c0,10.9,5.9,18.4,17.6,22.6c7.1,2.5,10.7,6.9,10.7,13.2c0,5.2-2,9.6-6.1,13c-4.1,3.4-9.2,5.1-15.2,5.1c-11.7,0-21.7-5-30.1-14.9
c-8.3-9.9-12.5-21.8-12.5-35.6c0-20.5,7.7-38.4,23-53.8s33.3-23,53.9-23c15.4,0,28.2,4.5,38.5,13.5c10.3,9,15.5,20.2,15.5,33.7
c0,9.6-2.4,20.3-7.3,32.3l-4.9,11.9l73.8-77.2c8-8.3,15.2-12.5,21.8-12.5c4.5,0,8.2,1.5,11.2,4.4c3,3,4.5,6.7,4.5,11.2
c0,5.5-3.8,12.3-11.4,20.2L167.3,251.3z"/>
<path d="M260,261.6l-4.8,11.8c-4.3,10.5-9.9,15.7-16.9,15.7c-4.2,0-7.7-1.3-10.5-3.8c-2.8-2.5-4.2-5.7-4.2-9.4c0-2.2,1-5.8,3.1-11
l15.9-39.2c3.8-9.5,9.3-14.2,16.3-14.2c6.9,0,11.2,3.3,12.8,9.8l1.1,4.4c0.6,2.2,1.4,3.7,2.5,4.2c1.1,0.6,3.9,0.8,8.3,0.8h32.9
c12.3,0,18.4,4.3,18.4,12.9c0,11.9-7.8,17.8-23.3,17.8L310,263c-14.9,14.2-22.3,25.2-22.3,33c0,7.8,4.3,11.7,12.9,11.7h17.7
c11.9,0,17.8,4.1,17.8,12.4c0,5.8-2.1,10.3-6.3,13.5c-4.2,3.2-10,4.8-17.5,4.8h-27.5c-9.4,0-17-3.2-23-9.7
c-6-6.5-8.9-14.8-8.9-25.2c0-6.6,1.6-12.9,4.8-19.1c3.2-6.2,8.8-13.8,16.9-22.8H260z"/>
<path d="M407.4,228.9c13.6,0,24.8,4.3,33.5,12.9c8.8,8.6,13.1,19.6,13.1,32.9c0,10-2.3,20-6.9,29.9c-4.6,9.9-10.5,17.8-17.8,23.7
c-4.9,3.8-9.9,6.5-15.1,7.9c-5.2,1.5-12.5,2.2-21.9,2.2c-15.3,0-25.6-1.8-30.9-5.5c-12.6-8.6-18.8-21.4-18.8-38.2
c0-17.8,6.4-33.2,19.3-46.2C374.7,235.4,389.9,228.9,407.4,228.9z M404.1,258.8c-6.9,0-13.3,3.4-19,10.3
c-5.7,6.8-8.6,14.4-8.6,22.6c0,10.9,6.1,16.3,18.3,16.3c7.1,0,12.6-2.2,16.4-6.6c6.4-7.2,9.6-15.5,9.6-24.7c0-5.3-1.5-9.6-4.6-12.9
C413.1,260.4,409,258.8,404.1,258.8z"/>
<path d="M630.6,307.7h16.7c11.8,0,17.7,4.2,17.7,12.5c0,5.7-2.1,10.2-6.3,13.4c-4.2,3.2-10,4.8-17.4,4.8h-28.5
c-6.2,0-11.2-1.6-15-4.9c-3.8-3.3-5.8-7.6-5.8-12.9c0-3.7,1.3-8.6,3.8-14.9l13.2-32.2c0.7-1.9,1.1-3.6,1.1-5.2
c0-6.1-3.1-9.1-9.3-9.1c-4.8,0-9.5,2.2-14.2,6.5c-4.7,4.3-8.4,10-11.2,17.1l-15.7,38.8c-5.2,12.6-12.6,18.8-22.5,18.8
c-3.8,0-7.1-1.3-9.8-3.8c-2.7-2.5-4.1-5.5-4.1-9c0-2.7,0.7-5.9,2.1-9.6l1.5-3.8l15.9-39.2c1.4-3.5,2.1-6.2,2.1-8.2
c0-2.1-0.9-3.9-2.8-5.4c-1.9-1.5-4.1-2.3-6.6-2.3c-10.1,0-18.1,7.3-24,21.9l-16.4,40.3c-5.2,12.6-12.6,19-22.3,19
c-3.8,0-7.1-1.2-9.9-3.7c-2.8-2.5-4.1-5.5-4.1-9.1c0-2.8,0.7-6,2.1-9.6l1.5-3.8l28-68.9c3.9-9.6,9.8-14.5,17.7-14.5
c8.2,0,13.2,3.8,15.2,11.5c6.4-5.4,11.5-9,15.5-10.8c4-1.8,8.9-2.7,14.7-2.7c12.6,0,22,5.5,28.2,16.4c10.5-11,22.3-16.4,35.4-16.4
c9,0,16.5,2.6,22.6,7.8c6,5.2,9.1,11.6,9.1,19.2c0,4.8-1,9.7-3.1,14.8L630.6,307.7z"/>
<path d="M735.4,228.9c13.6,0,24.8,4.3,33.5,12.9c8.8,8.6,13.1,19.6,13.1,32.9c0,10-2.3,20-6.9,29.9c-4.6,9.9-10.5,17.8-17.8,23.7
c-4.9,3.8-9.9,6.5-15.1,7.9c-5.2,1.5-12.5,2.2-21.9,2.2c-15.3,0-25.6-1.8-30.9-5.5c-12.6-8.6-18.8-21.4-18.8-38.2
c0-17.8,6.4-33.2,19.3-46.2C702.7,235.4,717.9,228.9,735.4,228.9z M732.1,258.8c-6.9,0-13.3,3.4-19,10.3
c-5.7,6.8-8.6,14.4-8.6,22.6c0,10.9,6.1,16.3,18.3,16.3c7.1,0,12.6-2.2,16.4-6.6c6.4-7.2,9.6-15.5,9.6-24.7c0-5.3-1.5-9.6-4.6-12.9
C741.1,260.4,737,258.8,732.1,258.8z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,221 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="177.62154mm"
height="36.387508mm"
viewBox="0 0 177.62154 36.387508"
version="1.1"
id="svg5"
xmlns="http://www.w3.org/2000/svg"
>
<marker
style="overflow:visible"
id="Arrow2Send"
refX="0"
refY="0"
orient="auto"
>
<path
transform="matrix(-0.3,0,0,-0.3,0.69,0)"
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"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path8760" />
</marker>
<marker
style="overflow:visible"
id="marker9093"
refX="0"
refY="0"
orient="auto"
>
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path9091" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
>
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8742" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lend"
refX="0"
refY="0"
orient="auto"
>
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8730" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
>
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path8727" />
</marker>
<g
id="layer1"
transform="translate(461.53405,-851.65939)">
<path
style="fill:#000000;stroke-width:0.264583"
id="path45562"
d="" />
<path
style="fill:#000000;stroke-width:0.264583"
id="path45542"
d="" />
<text
xml:space="preserve"
style="font-size:4.23333px;line-height:125%;font-family:NanumMyeongjo;-inkscape-font-specification:NanumMyeongjo;letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="-250.71158"
y="668.76953"
id="text59672"><tspan
id="tspan59670"
style="stroke-width:0.264583px"
x="-250.71158"
y="668.76953" /></text>
<path
d="m -419.85028,869.85972 q 2.10753,0 3.40104,1.63919 1.30466,1.63918 1.30466,4.80606 0,2.11867 -0.6133,3.56829 -0.61331,1.43847 -1.69494,2.17443 -1.08165,0.73597 -2.48666,0.73597 -0.90323,0 -1.54998,-0.22302 -0.64675,-0.23417 -1.10395,-0.591 -0.45719,-0.36798 -0.79171,-0.78057 h -0.17842 q 0.0892,0.44604 0.13383,0.91439 0.0446,0.46833 0.0446,0.91437 v 5.02907 h -3.40104 v -17.95302 h 2.76543 l 0.47949,1.6169 h 0.15605 q 0.33452,-0.5018 0.81401,-0.92554 0.47949,-0.42374 1.14855,-0.66905 0.68021,-0.25647 1.57228,-0.25647 z m -1.09279,2.72082 q -0.89207,0 -1.41617,0.36799 -0.52408,0.36798 -0.76942,1.10393 -0.23416,0.73597 -0.25646,1.86222 v 0.36798 q 0,1.2043 0.22301,2.04062 0.23418,0.83631 0.76942,1.27121 0.54639,0.43488 1.49423,0.43488 0.78056,0 1.28236,-0.43488 0.50179,-0.4349 0.74711,-1.27121 0.25646,-0.84748 0.25646,-2.06292 0,-1.82875 -0.56869,-2.75428 -0.56869,-0.92554 -1.76185,-0.92554 z"
id="path105589-9"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -410.11335,870.09388 v 12.46676 h -3.40104 v -12.46676 z m -1.69494,-4.8841 q 0.75826,0 1.30466,0.35683 0.54639,0.34568 0.54639,1.30466 0,0.94782 -0.54639,1.31581 -0.5464,0.35682 -1.30466,0.35682 -0.76942,0 -1.31581,-0.35682 -0.53524,-0.36799 -0.53524,-1.31581 0,-0.95898 0.53524,-1.30466 0.54639,-0.35683 1.31581,-0.35683 z"
id="path105591-5"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
d="m -391.15216,872.64745 h -2.94385 v 9.91319 h -3.40103 v -9.91319 h -1.87336 v -1.63918 l 1.87336,-0.91439 v -0.91437 q 0,-1.59458 0.53524,-2.4755 0.54639,-0.89209 1.52768,-1.24891 0.99243,-0.36799 2.34169,-0.36799 0.99245,0 1.80646,0.16725 0.81401,0.15605 1.32696,0.35684 l -0.86978,2.4978 q -0.39027,-0.12263 -0.84747,-0.22301 -0.45719,-0.10041 -1.04819,-0.10041 -0.71365,0 -1.04818,0.43488 -0.32338,0.42374 -0.32338,1.09279 v 0.78056 h 2.94385 z"
id="path106049-0"
/>
<path
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
d="m -400.25375,872.64745 h -2.94384 v 9.91319 h -3.40104 v -9.91319 h -1.87335 v -1.63918 l 1.87335,-0.91439 v -0.91437 q 0,-1.59458 0.53525,-2.4755 0.5464,-0.89209 1.52767,-1.24891 0.99244,-0.36799 2.34171,-0.36799 0.99243,0 1.80644,0.16725 0.81403,0.15605 1.32697,0.35684 l -0.86978,2.4978 q -0.39028,-0.12263 -0.84746,-0.22301 -0.45719,-0.10041 -1.04819,-0.10041 -0.71366,0 -1.0482,0.43488 -0.32337,0.42374 -0.32337,1.09279 v 0.78056 h 2.94384 z"
id="path105593-48"
/>
<path
d="m -367.2924,866.25797 -4.14815,16.30267 h -3.93629 l -2.20788,-8.56393 q -0.0668,-0.24532 -0.17842,-0.74711 -0.11144,-0.50178 -0.23417,-1.09278 -0.12264,-0.60216 -0.22302,-1.12626 -0.0892,-0.53524 -0.12263,-0.84746 -0.0334,0.31222 -0.13383,0.83632 -0.0892,0.5241 -0.21187,1.11509 -0.11144,0.591 -0.22303,1.10394 -0.11144,0.51294 -0.1784,0.78057 l -2.19675,8.54162 h -3.92512 l -4.1593,-16.30267 h 3.40103 l 2.08522,8.89845 q 0.0892,0.40143 0.20073,0.95898 0.12263,0.55753 0.23417,1.17084 0.12264,0.60216 0.21185,1.17085 0.10042,0.55755 0.14503,0.97013 0.0558,-0.42373 0.14502,-0.98128 0.0892,-0.56869 0.18956,-1.14854 0.11144,-0.591 0.22303,-1.0928 0.11144,-0.50179 0.20071,-0.81401 l 2.37516,-9.13262 h 3.26722 l 2.37515,9.13262 q 0.078,0.30107 0.17842,0.81401 0.11144,0.5018 0.22301,1.0928 0.11144,0.591 0.20073,1.15969 0.10041,0.55755 0.14502,0.97013 0.078,-0.55754 0.21187,-1.34926 0.14502,-0.80287 0.30107,-1.59459 0.16724,-0.79171 0.28993,-1.32695 l 2.07408,-8.89845 z"
id="path105595-7"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -355.51468,876.30497 q 0,1.56112 -0.42374,2.76542 -0.41257,1.2043 -1.21544,2.04062 -0.79173,0.82517 -1.91797,1.24891 -1.11508,0.42374 -2.52011,0.42374 -1.3158,0 -2.41974,-0.42374 -1.09279,-0.42374 -1.90682,-1.24891 -0.80287,-0.83632 -1.2489,-2.04062 -0.43489,-1.2043 -0.43489,-2.76542 0,-2.07409 0.73597,-3.51256 0.73595,-1.43846 2.09636,-2.18557 1.36042,-0.74712 3.24494,-0.74712 1.75069,0 3.09996,0.74712 1.3604,0.74711 2.12982,2.18557 0.78056,1.43847 0.78056,3.51256 z m -8.61967,0 q 0,1.2266 0.26762,2.06292 0.26763,0.83631 0.83632,1.26005 0.56871,0.42374 1.48308,0.42374 0.90323,0 1.46077,-0.42374 0.56871,-0.42374 0.82517,-1.26005 0.26762,-0.83632 0.26762,-2.06292 0,-1.23777 -0.26762,-2.05178 -0.25646,-0.82517 -0.82517,-1.23775 -0.5687,-0.41259 -1.48307,-0.41259 -1.34927,0 -1.96256,0.92553 -0.60216,0.92552 -0.60216,2.77659 z"
id="path105597-17"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -347.07121,869.85972 q 0.25648,0 0.59102,0.0334 0.34566,0.0222 0.55753,0.0668 l -0.25646,3.18918 q -0.16725,-0.0558 -0.47949,-0.078 -0.30108,-0.0334 -0.52411,-0.0334 -0.65789,0 -1.28235,0.16724 -0.61331,0.16725 -1.10394,0.54639 -0.49064,0.36799 -0.78056,0.98129 -0.27879,0.60214 -0.27879,1.48307 v 6.34489 h -3.40103 v -12.46675 h 2.57588 l 0.50178,2.09639 h 0.16724 q 0.36797,-0.63561 0.91437,-1.15971 0.55755,-0.53525 1.26006,-0.84746 0.71366,-0.32338 1.53882,-0.32338 z"
id="path105599-2"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -341.03634,865.20978 v 7.76105 q 0,0.7025 -0.0558,1.40503 -0.0558,0.7025 -0.12264,1.40501 h 0.0446 q 0.34568,-0.49064 0.70252,-0.97013 0.36797,-0.47949 0.78057,-0.92554 l 3.49023,-3.79132 h 3.83593 l -4.95101,5.40822 5.25208,7.05854 h -3.92513 l -3.5906,-5.05137 -1.46078,1.17085 v 3.88052 h -3.40103 v -17.35086 z"
id="path105601-7"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -323.25392,872.64745 h -2.94385 v 9.91319 h -3.40103 v -9.91319 h -1.87336 v -1.63918 l 1.87336,-0.91439 v -0.91437 q 0,-1.59458 0.53524,-2.4755 0.54639,-0.89209 1.52768,-1.24891 0.99243,-0.36799 2.34169,-0.36799 0.99245,0 1.80646,0.16725 0.81401,0.15605 1.32696,0.35684 l -0.86978,2.4978 q -0.39027,-0.12263 -0.84747,-0.22301 -0.45719,-0.10041 -1.04819,-0.10041 -0.71365,0 -1.04818,0.43488 -0.32338,0.42374 -0.32338,1.09279 v 0.78056 h 2.94385 z"
id="path105603-22"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -317.17448,882.56064 h -3.40103 v -17.35086 h 3.40103 z"
id="path105605-6"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -303.60161,876.30497 q 0,1.56112 -0.42372,2.76542 -0.41259,1.2043 -1.21546,2.04062 -0.79171,0.82517 -1.91797,1.24891 -1.11508,0.42374 -2.5201,0.42374 -1.31581,0 -2.41975,-0.42374 -1.09279,-0.42374 -1.90682,-1.24891 -0.80287,-0.83632 -1.24889,-2.04062 -0.4349,-1.2043 -0.4349,-2.76542 0,-2.07409 0.73597,-3.51256 0.73595,-1.43846 2.09637,-2.18557 1.36041,-0.74712 3.24493,-0.74712 1.75069,0 3.09996,0.74712 1.3604,0.74711 2.12982,2.18557 0.78056,1.43847 0.78056,3.51256 z m -8.61967,0 q 0,1.2266 0.26763,2.06292 0.26762,0.83631 0.83631,1.26005 0.56871,0.42374 1.48309,0.42374 0.90323,0 1.46076,-0.42374 0.56871,-0.42374 0.82517,-1.26005 0.26762,-0.83632 0.26762,-2.06292 0,-1.23777 -0.26762,-2.05178 -0.25646,-0.82517 -0.82517,-1.23775 -0.5687,-0.41259 -1.48307,-0.41259 -1.34925,0 -1.96256,0.92553 -0.60216,0.92552 -0.60216,2.77659 z"
id="path105607-1"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
d="m -291.205,882.56064 -0.95898,-4.36001 q -0.078,-0.39029 -0.25648,-1.14855 -0.17842,-0.76942 -0.39027,-1.6392 -0.20073,-0.88092 -0.37915,-1.62804 -0.16724,-0.7471 -0.24532,-1.09278 h -0.10041 q -0.078,0.34568 -0.24532,1.09278 -0.16724,0.74712 -0.37913,1.62804 -0.20071,0.88093 -0.37913,1.66149 -0.17842,0.76942 -0.26762,1.17085 l -1.00359,4.31542 h -3.6575 l -3.546,-12.46676 h 3.38989 l 1.43847,5.51973 q 0.14503,0.57985 0.27877,1.38272 0.13383,0.7917 0.23417,1.53882 0.11144,0.73597 0.16725,1.17085 h 0.0892 q 0.0222,-0.32338 0.0892,-0.85862 0.078,-0.53525 0.16725,-1.10394 0.10041,-0.57985 0.17842,-1.03704 0.0892,-0.46835 0.13383,-0.63561 l 1.53882,-5.97691 h 3.74671 l 1.46078,5.97691 q 0.078,0.32338 0.20071,1.02588 0.13382,0.70252 0.23417,1.44964 0.10041,0.73595 0.11144,1.15969 h 0.0892 q 0.0446,-0.37913 0.15604,-1.12624 0.11144,-0.74712 0.25648,-1.56115 0.15605,-0.82515 0.31223,-1.405 l 1.49423,-5.51973 h 3.33412 l -3.5906,12.46676 z"
id="path105609-0"
style="font-weight:bold;font-size:13.4639px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#126d82;fill-opacity:1;stroke-width:1.42731px"
/>
<path
id="path73257-7-2-9-159"
style="vector-effect:none;fill:#126d82;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.433;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m -436.04162,851.65939 v 0.91595 c 0.96107,0.84548 1.66181,1.94689 2.02041,3.17567 h -17.54738 c -3.11685,0 -5.68164,2.56482 -5.68164,5.68159 v 3.91192 c 0,3.11682 2.56479,5.68164 5.68164,5.68164 h 5.6851 4.69113 5.6878 c 1.21493,0 2.13344,0.91846 2.13344,2.13344 v 3.91632 c 0,1.21498 -0.91851,2.13346 -2.13344,2.13346 h -14.79076 c -0.75878,-2.29982 -2.93713,-3.97943 -5.47735,-3.97943 -3.16218,0 -5.76138,2.60267 -5.76138,5.76489 0,3.1622 2.5992,5.76399 5.76138,5.76399 2.54974,0 4.73517,-1.69176 5.48615,-4.00482 h 14.78196 c 3.1168,0 5.67808,-2.5613 5.67808,-5.67809 v -3.91632 c 0,-3.11677 -2.56128,-5.68164 -5.67808,-5.68164 h -5.6878 -4.69113 -5.6851 c -1.21497,0 -2.13609,-0.91837 -2.13609,-2.13344 v -3.91192 c 0,-1.21499 0.92112,-2.13696 2.13609,-2.13696 h 17.60609 c -0.33391,1.31874 -1.05865,2.50576 -2.07912,3.4053 v 0.68721 l 11.72877,-5.86483 z m -19.73105,27.11871 c 1.24555,0 2.21936,0.97116 2.21936,2.21674 0,1.24556 -0.97381,2.21936 -2.21936,2.21936 -1.24559,0 -2.21675,-0.9738 -2.21675,-2.21936 0,-1.24558 0.97116,-2.21674 2.21675,-2.21674 z"
/>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:7.18046px;line-height:125%;font-family:'Open Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.448779px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="-421.95959"
y="859.76959"
id="text109870-49"
><tspan
id="tspan109868-0"
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-family:'Open Sans';fill:#FFFFFF;fill-opacity:1;stroke:none;stroke-width:0.448779px"
x="-421.95959"
y="859.76959">Draw the code</tspan></text>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,10 +0,0 @@
/*!-----------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Version: 0.33.0(4b1abad427e58dbedc1215d99a0902ffc885fcd4)
* Released under the MIT license
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
*-----------------------------------------------------------------------------*/
define("vs/basic-languages/python/python", ["require","require"],(require)=>{
var moduleExports=(()=>{var d=Object.create;var o=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var _=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var l=e=>o(e,"__esModule",{value:!0});var b=(e=>typeof require!="undefined"?require:typeof Proxy!="undefined"?new Proxy(e,{get:(n,t)=>(typeof require!="undefined"?require:n)[t]}):e)(function(e){if(typeof require!="undefined")return require.apply(this,arguments);throw new Error('Dynamic require of "'+e+'" is not supported')});var y=(e,n)=>()=>(n||e((n={exports:{}}).exports,n),n.exports),h=(e,n)=>{for(var t in n)o(e,t,{get:n[t],enumerable:!0})},i=(e,n,t,a)=>{if(n&&typeof n=="object"||typeof n=="function")for(let r of _(n))!f.call(e,r)&&(t||r!=="default")&&o(e,r,{get:()=>n[r],enumerable:!(a=m(n,r))||a.enumerable});return e},c=(e,n)=>i(l(o(e!=null?d(u(e)):{},"default",!n&&e&&e.__esModule?{get:()=>e.default,enumerable:!0}:{value:e,enumerable:!0})),e),x=(e=>(n,t)=>e&&e.get(n)||(t=i(l({}),n,1),e&&e.set(n,t),t))(typeof WeakMap!="undefined"?new WeakMap:0);var g=y((v,p)=>{var w=c(b("vs/editor/editor.api"));p.exports=w});var D={};h(D,{conf:()=>k,language:()=>$});var s={};i(s,c(g()));var k={comments:{lineComment:"#",blockComment:["'''","'''"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"',notIn:["string"]},{open:"'",close:"'",notIn:["string","comment"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],onEnterRules:[{beforeText:new RegExp("^\\s*(?:def|class|for|if|elif|else|while|try|with|finally|except|async).*?:\\s*$"),action:{indentAction:s.languages.IndentAction.Indent}}],folding:{offSide:!0,markers:{start:new RegExp("^\\s*#region\\b"),end:new RegExp("^\\s*#endregion\\b")}}},$={defaultToken:"",tokenPostfix:".python",keywords:["False","None","True","and","as","assert","async","await","break","class","continue","def","del","elif","else","except","exec","finally","for","from","global","if","import","in","is","lambda","nonlocal","not","or","pass","print","raise","return","try","while","with","yield","int","float","long","complex","hex","abs","all","any","apply","basestring","bin","bool","buffer","bytearray","callable","chr","classmethod","cmp","coerce","compile","complex","delattr","dict","dir","divmod","enumerate","eval","execfile","file","filter","format","frozenset","getattr","globals","hasattr","hash","help","id","input","intern","isinstance","issubclass","iter","len","locals","list","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","reversed","range","raw_input","reduce","reload","repr","reversed","round","self","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","unichr","unicode","vars","xrange","zip","__dict__","__methods__","__members__","__class__","__bases__","__name__","__mro__","__subclasses__","__init__","__import__"],brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.bracket"},{open:"(",close:")",token:"delimiter.parenthesis"}],tokenizer:{root:[{include:"@whitespace"},{include:"@numbers"},{include:"@strings"},[/[,:;]/,"delimiter"],[/[{}\[\]()]/,"@brackets"],[/@[a-zA-Z_]\w*/,"tag"],[/[a-zA-Z_]\w*/,{cases:{"@keywords":"keyword","@default":"identifier"}}]],whitespace:[[/\s+/,"white"],[/(^#.*$)/,"comment"],[/'''/,"string","@endDocString"],[/"""/,"string","@endDblDocString"]],endDocString:[[/[^']+/,"string"],[/\\'/,"string"],[/'''/,"string","@popall"],[/'/,"string"]],endDblDocString:[[/[^"]+/,"string"],[/\\"/,"string"],[/"""/,"string","@popall"],[/"/,"string"]],numbers:[[/-?0x([abcdef]|[ABCDEF]|\d)+[lL]?/,"number.hex"],[/-?(\d*\.)?\d+([eE][+\-]?\d+)?[jJ]?[lL]?/,"number"]],strings:[[/'$/,"string.escape","@popall"],[/'/,"string.escape","@stringBody"],[/"$/,"string.escape","@popall"],[/"/,"string.escape","@dblStringBody"]],stringBody:[[/[^\\']+$/,"string","@popall"],[/[^\\']+/,"string"],[/\\./,"string"],[/'/,"string.escape","@popall"],[/\\$/,"string"]],dblStringBody:[[/[^\\"]+$/,"string","@popall"],[/[^\\"]+/,"string"],[/\\./,"string"],[/"/,"string.escape","@popall"],[/\\$/,"string"]]}};return x(D);})();
return moduleExports;
});

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.8 KiB

View File

@ -1,50 +0,0 @@
<?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 798 454" style="enable-background:new 0 0 798 454;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
</style>
<g class="st0">
<path d="M42.8,188L42.8,188c-8.6,0-15.5-6.9-15.5-15.5V136c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v36.5
C58.3,181.1,51.3,188,42.8,188z"/>
<path d="M131.8,188L131.8,188c-8.6,0-15.5-6.9-15.5-15.5v-79c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v79
C147.3,181.1,140.3,188,131.8,188z"/>
<path d="M309.8,188L309.8,188c-8.6,0-15.5-6.9-15.5-15.5v-79c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v79
C325.3,181.1,318.3,188,309.8,188z"/>
<path d="M220.8,221L220.8,221c-8.6,0-15.5-6.9-15.5-15.5v-173c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v173
C236.3,214.1,229.3,221,220.8,221z"/>
<path d="M398.2,188L398.2,188c-8.6,0-15.5-6.9-15.5-15.5V136c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v36.5
C413.7,181.1,406.8,188,398.2,188z"/>
<path d="M755.2,188L755.2,188c-8.6,0-15.5-6.9-15.5-15.5V136c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v36.5
C770.7,181.1,763.8,188,755.2,188z"/>
<path d="M487.2,188L487.2,188c-8.6,0-15.5-6.9-15.5-15.5v-79c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v79
C502.7,181.1,495.8,188,487.2,188z"/>
<path d="M665.2,188L665.2,188c-8.6,0-15.5-6.9-15.5-15.5v-79c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v79
C680.7,181.1,673.8,188,665.2,188z"/>
<path d="M576.2,221L576.2,221c-8.6,0-15.5-6.9-15.5-15.5v-173c0-8.6,6.9-15.5,15.5-15.5h0c8.6,0,15.5,6.9,15.5,15.5v173
C591.7,214.1,584.8,221,576.2,221z"/>
</g>
<g class="st0">
<path d="M166.8,401.5c-12,0-20.9-3-26.6-9.1c-5.7-6.1-8.7-16.2-9-30.3l25.2-3.3c0,4,0.2,7.4,0.7,10.1c0.4,2.7,1.1,4.8,1.9,6.3
c0.8,1.4,1.7,2.5,2.7,3s2.1,0.9,3.3,0.9c3.3,0,5-2.4,5-7.2c0-4.7-1.1-8.7-3.2-12.1s-5.5-7.1-10.2-11.1l-7.7-6.5
c-2.8-2.4-5.1-4.5-6.8-6.4c-1.8-1.9-3.6-4.1-5.4-6.8c-1.8-2.7-3.2-5.7-4.1-9c-0.9-3.3-1.3-6.9-1.3-10.9c0-10.5,3.2-18.6,9.5-24.3
c6.3-5.7,15.1-8.6,26.2-8.6c19.9,0,30,11.8,30.1,35.4l-25.8,2.6c0-3.2,0-5.6-0.1-7.1c-0.1-1.6-0.3-3.2-0.6-4.9
c-0.3-1.7-0.9-2.9-1.6-3.5c-0.8-0.7-1.8-1-3-1c-1.8,0-3.2,1-4.1,2.9c-0.9,1.9-1.4,3.7-1.4,5.6c0,1,0.1,2,0.3,3
c0.2,1,0.3,1.8,0.5,2.6c0.1,0.8,0.5,1.6,1,2.5c0.5,0.9,0.9,1.6,1.1,2.2c0.2,0.5,0.7,1.2,1.5,2.1s1.2,1.5,1.5,1.8
c0.2,0.3,0.8,1,1.8,1.8c0.9,0.9,1.5,1.4,1.7,1.6c0.2,0.2,0.8,0.7,1.9,1.7c1.1,1,1.7,1.5,1.8,1.6l7,6.2c3,2.7,5.5,5.2,7.6,7.5
c2.1,2.3,4.1,5,6,8.1s3.3,6.4,4.3,10c1,3.6,1.4,7.5,1.4,11.6c0,8.7-3,16.1-9,22C184.5,398.5,176.6,401.5,166.8,401.5z"/>
<path d="M241.8,399.6v-51.6l-22.2-69.8h28.1l9.6,32.5l8-32.5h26.9l-21.8,69.8v51.6H241.8z"/>
<path d="M350.3,401.5c-12,0-20.9-3-26.6-9.1c-5.7-6.1-8.7-16.2-9-30.3l25.2-3.3c0,4,0.2,7.4,0.7,10.1c0.4,2.7,1.1,4.8,1.9,6.3
c0.8,1.4,1.7,2.5,2.7,3s2.1,0.9,3.3,0.9c3.3,0,5-2.4,5-7.2c0-4.7-1.1-8.7-3.2-12.1s-5.5-7.1-10.2-11.1l-7.7-6.5
c-2.8-2.4-5.1-4.5-6.8-6.4c-1.8-1.9-3.6-4.1-5.4-6.8c-1.8-2.7-3.2-5.7-4.1-9c-0.9-3.3-1.3-6.9-1.3-10.9c0-10.5,3.2-18.6,9.5-24.3
c6.3-5.7,15.1-8.6,26.2-8.6c19.9,0,30,11.8,30.1,35.4l-25.8,2.6c0-3.2,0-5.6-0.1-7.1c-0.1-1.6-0.3-3.2-0.6-4.9
c-0.3-1.7-0.9-2.9-1.6-3.5c-0.8-0.7-1.8-1-3-1c-1.8,0-3.2,1-4.1,2.9c-0.9,1.9-1.4,3.7-1.4,5.6c0,1,0.1,2,0.3,3
c0.2,1,0.3,1.8,0.5,2.6c0.1,0.8,0.5,1.6,1,2.5c0.5,0.9,0.9,1.6,1.1,2.2c0.2,0.5,0.7,1.2,1.5,2.1s1.2,1.5,1.5,1.8
c0.2,0.3,0.8,1,1.8,1.8c0.9,0.9,1.5,1.4,1.7,1.6c0.2,0.2,0.8,0.7,1.9,1.7c1.1,1,1.7,1.5,1.8,1.6l7,6.2c3,2.7,5.5,5.2,7.6,7.5
c2.1,2.3,4.1,5,6,8.1s3.3,6.4,4.3,10c1,3.6,1.4,7.5,1.4,11.6c0,8.7-3,16.1-9,22C367.9,398.5,360,401.5,350.3,401.5z"/>
<path d="M421.7,399.6v-99.5H404v-22h65.1v22h-17.7v99.5H421.7z"/>
<path d="M494.9,399.6V278.1h56.8v19.9h-27.1v27.1h20.2v20.7h-20.2v33.9H552v19.8H494.9z"/>
<path d="M578.8,399.6V278.1h29.7v47.3l18.4-47.3h29.2l-22,55.2l22.3,66.3h-30.5L610.1,347l-1.5,1.9v50.7H578.8z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -1,22 +0,0 @@
<?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 798 454" style="enable-background:new 0 0 798 454;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:#FFFFFF;}
</style>
<path class="st0" d="M36.4,149l49-10.5v41h36v42h-37V294c0,0-0.5,26,37,15v38.5c0,0-21,14-63,0c0,0-19.3-14.4-22-39.3
S36.4,149,36.4,149z"/>
<path class="st0" d="M137.4,181v172.7h49V235.5c0,0,18-20,36-8.5v-46.8c0,0-9.8-5.3-27.3,0.7c0,0-11,6-13.4,13.5l-2.4-14.6
l-41.9,0.2V181z"/>
<rect x="235.1" y="180.7" class="st0" width="48.7" height="173.1"/>
<polygon class="st0" points="235.1,165 283.8,154.3 283.8,114.7 235.1,125.3 "/>
<path class="st0" d="M438.9,209.8c0,0-13.3-25.8-44.8-31.8c-31.5-6-46.3,14.5-46.3,14.5l-2.8,1.5v-54.2v-25.2L300.4,125v228.7h1.5
h49.8v-11c19.5,13.3,40.3,12,40.3,12c33.8-7,41.8-24.3,41.8-24.3s11.8-11,18-50S438.9,209.8,438.9,209.8z"/>
<path class="st1" d="M351.1,230.3v72.3c0,0,15,16,36,5s16.7-54.7,16.7-54.7s-7.5-31.7-27.1-32.3C357.1,220,351.1,230.3,351.1,230.3z
"/>
<path class="st0" d="M605.8,283.7h-95c0,0,0,25.1,22.7,27.9c22.7,2.8,34.7,2.5,62.7-8.5l0.3,38.3c0,0-46.3,23.7-87.7,7
c-41.3-16.7-46-61-46-61s-10.3-53.3,20.7-87.7s78-19,78-19s36,15,42,58.3C603.4,239,608.8,254.7,605.8,283.7z"/>
<path class="st1" d="M509.9,246.5c0,0-1.2-27.7,24-29.7c25.2-2,26,30.7,26,30.7h-50L509.9,246.5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 50 KiB

View File

@ -1,35 +0,0 @@
<?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="390 76 1230 300" style="enable-background:new 390 76 1230 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#344358;}
.st1{fill:#F39208;}
.st2{fill:#FCC010;}
.st3{fill:#F49619;}
.st4{fill:#EC630E;}
</style>
<circle id="XMLID_2_" class="st0" cx="1389.2" cy="223.1" r="25.9"/>
<circle id="XMLID_19_" class="st1" cx="1443.1" cy="158.6" r="30.8"/>
<circle id="XMLID_20_" class="st0" cx="1447.5" cy="242.8" r="13"/>
<g>
<path id="XMLID_59_" class="st2" d="M570.6,374.2c-81.9,0-148.2-66.3-148.2-148.2S488.9,77.6,570.8,77.6L570.6,374.2z"/>
<path id="XMLID_58_" class="st3" d="M570.8,111.1v40.9v137.7v50.8c-63.5,0-114.9-51.3-114.9-114.9
C455.9,162.4,507.4,111,570.8,111.1z"/>
<path id="XMLID_57_" class="st4" d="M570.8,152.1v137.7l-63.5-54.2c-5.8-5.1-6.2-14-0.8-19.4l64.2-64.2L570.8,152.1z"/>
</g>
<g id="XMLID_60_">
<path id="XMLID_61_" class="st0" d="M676.4,161v43.2h83.3v49.3h-83.3v82.3h-51.2v-224h136.1V161H676.4z"/>
<path id="XMLID_63_" class="st0" d="M886.1,172.5v54.4c-19.8-3.2-48.1,4.8-48.1,36.5v72.4H790v-160H838v28.5
C844.5,182.8,865.9,172.5,886.1,172.5z"/>
<path id="XMLID_65_" class="st1" d="M985,297.4c13.1,0,24.4-5.2,30.7-12.2l38.5,22.1c-15.7,21.8-39.4,33-69.8,33
c-54.7,0-88.7-36.8-88.7-84.6c0-47.7,34.6-84.6,85.1-84.6c46.8,0,81.3,36.2,81.3,84.6c0,6.7-0.6,13.1-1.9,19.2H946.6
C952.7,291.6,967.4,297.4,985,297.4z M1014.5,239.1c-5.2-18.5-19.5-25.3-33.9-25.3c-18.2,0-30.4,8.9-34.9,25.3H1014.5z"/>
<path id="XMLID_68_" class="st0" d="M1207.3,287.8c0,36.8-32,52.5-66.6,52.5c-32,0-56.4-12.2-68.9-38.1l41.6-23.7
c4.2,12.2,13.1,18.9,27.3,18.9c11.5,0,17.2-3.6,17.2-9.9c0-17.6-78.8-8.3-78.8-63.7c0-34.9,29.4-52.5,62.7-52.5
c26,0,49,11.5,62.4,34.3l-40.9,22.1c-4.5-8.3-10.9-14.1-21.4-14.1c-8.3,0-13.5,3.2-13.5,8.9
C1128.5,240.7,1207.3,228.6,1207.3,287.8z"/>
<path id="XMLID_70_" class="st0" d="M1384.9,237.5v98.3h-48v-91.3c0-19.8-12.5-29.1-27.9-29.1c-17.6,0-29.7,10.2-29.7,33v87.4
h-48.1V111.7h48.1v79.1c8.6-11.9,24.7-19.5,45.8-19.5C1357.4,171.2,1384.9,194.3,1384.9,237.5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,12 +0,0 @@
<?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 1230 300" style="enable-background:new 0 0 1230 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#F39208;}
</style>
<rect x="13" y="5.1" class="st0" width="131.9" height="291.5"/>
<rect x="156.9" y="5.1" class="st0" width="131.9" height="137.9"/>
<rect x="156.9" y="156" class="st1" width="131.9" height="140.7"/>
</svg>

Before

Width:  |  Height:  |  Size: 632 B

View File

@ -1,35 +0,0 @@
<?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="390 76 1230 300" style="enable-background:new 390 76 1230 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#F39208;}
.st2{fill:#FCC010;}
.st3{fill:#F49619;}
.st4{fill:#EC630E;}
</style>
<circle id="XMLID_2_" class="st0" cx="1389.2" cy="223.1" r="25.9"/>
<circle id="XMLID_19_" class="st1" cx="1443.1" cy="158.6" r="30.8"/>
<circle id="XMLID_20_" class="st0" cx="1447.5" cy="242.8" r="13"/>
<g>
<path id="XMLID_59_" class="st2" d="M570.6,374.2c-81.9,0-148.2-66.3-148.2-148.2S488.9,77.6,570.8,77.6L570.6,374.2z"/>
<path id="XMLID_58_" class="st3" d="M570.8,111.1v40.9v137.7v50.8c-63.5,0-114.9-51.3-114.9-114.9
C455.9,162.4,507.4,111,570.8,111.1z"/>
<path id="XMLID_57_" class="st4" d="M570.8,152.1v137.7l-63.5-54.2c-5.8-5.1-6.2-14-0.8-19.4l64.2-64.2L570.8,152.1z"/>
</g>
<g id="XMLID_60_">
<path id="XMLID_61_" class="st0" d="M676.4,161v43.2h83.3v49.3h-83.3v82.3h-51.2v-224h136.1V161H676.4z"/>
<path id="XMLID_63_" class="st0" d="M886.1,172.5v54.4c-19.8-3.2-48.1,4.8-48.1,36.5v72.4H790v-160H838v28.5
C844.5,182.8,865.9,172.5,886.1,172.5z"/>
<path id="XMLID_65_" class="st1" d="M985,297.4c13.1,0,24.4-5.2,30.7-12.2l38.5,22.1c-15.7,21.8-39.4,33-69.8,33
c-54.7,0-88.7-36.8-88.7-84.6c0-47.7,34.6-84.6,85.1-84.6c46.8,0,81.3,36.2,81.3,84.6c0,6.7-0.6,13.1-1.9,19.2H946.6
C952.7,291.6,967.4,297.4,985,297.4z M1014.5,239.1c-5.2-18.5-19.5-25.3-33.9-25.3c-18.2,0-30.4,8.9-34.9,25.3H1014.5z"/>
<path id="XMLID_68_" class="st0" d="M1207.3,287.8c0,36.8-32,52.5-66.6,52.5c-32,0-56.4-12.2-68.9-38.1l41.6-23.7
c4.2,12.2,13.1,18.9,27.3,18.9c11.5,0,17.2-3.6,17.2-9.9c0-17.6-78.8-8.3-78.8-63.7c0-34.9,29.4-52.5,62.7-52.5
c26,0,49,11.5,62.4,34.3l-40.9,22.1c-4.5-8.3-10.9-14.1-21.4-14.1c-8.3,0-13.5,3.2-13.5,8.9
C1128.5,240.7,1207.3,228.6,1207.3,287.8z"/>
<path id="XMLID_70_" class="st0" d="M1384.9,237.5v98.3h-48v-91.3c0-19.8-12.5-29.1-27.9-29.1c-17.6,0-29.7,10.2-29.7,33v87.4
h-48.1V111.7h48.1v79.1c8.6-11.9,24.7-19.5,45.8-19.5C1357.4,171.2,1384.9,194.3,1384.9,237.5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -1,75 +0,0 @@
<?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="-206 346 1230 300" style="enable-background:new -206 346 1230 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#F39208;}
.st2{fill:#FCC010;}
.st3{fill:#F49619;}
.st4{fill:#EC630E;}
.st5{fill:#CBEAFC;}
.st6{fill:#77C2E0;}
.st7{fill:#F9DE6A;}
.st8{fill:#C6781A;}
</style>
<circle id="XMLID_2_" class="st0" cx="897.4" cy="529.4" r="25.9"/>
<circle id="XMLID_19_" class="st1" cx="951.3" cy="464.9" r="30.8"/>
<circle id="XMLID_20_" class="st0" cx="955.7" cy="549.1" r="13"/>
<path id="XMLID_59_" class="st2" d="M-168.3,486.8c-30.8-30.8-30.8-80.7,0-111.5s80.8-30.8,111.6,0L-168.3,486.8z"/>
<path id="XMLID_58_" class="st3" d="M-69.3,387.9l-15.4,15.4l-51.8,51.8l-19.1,19.1c-23.9-23.9-23.9-62.5,0-86.4
C-131.8,364-93.1,364-69.3,387.9z"/>
<path id="XMLID_57_" class="st4" d="M-84.7,403.3l-51.8,51.8l-3.5-44.3c-0.3-4.1,2.9-7.6,7-7.6L-84.7,403.3L-84.7,403.3z"/>
<polygon id="XMLID_56_" class="st5" points="22.8,411.5 20.6,440 18.1,471.6 5.5,632.7 -114.4,632.7 -126.7,474.4 -128.3,454.5
-131.6,411.5 "/>
<rect id="XMLID_55_" x="-72.8" y="460.5" class="st6" width="37.8" height="37.8"/>
<polygon id="XMLID_54_" class="st6" points="22.8,411.5 20.6,440 5.5,632.7 -4.9,632.7 10.2,440 12.4,411.5 "/>
<path id="XMLID_53_" class="st1" d="M18.1,471.6L5.5,632.7h-119.9l-12.3-158.3c11.4-4.4,27.9-6.9,48.8-0.6c31.4,9.5,57,3.3,85.6-0.9
C11.1,472.5,14.6,472,18.1,471.6z"/>
<path id="XMLID_52_" class="st7" d="M-35,478.6v19.7h-37.8v-23C-59.5,478.7-47.1,479.3-35,478.6z"/>
<path id="XMLID_51_" class="st8" d="M18.1,471.6L5.5,632.7H-4.9L7.6,473C11.1,472.5,14.6,472,18.1,471.6z"/>
<rect id="XMLID_50_" x="-95.1" y="510.4" transform="matrix(-0.3456 0.9384 -0.9384 -0.3456 394.1975 783.7637)" class="st7" width="37.8" height="37.8"/>
<path id="XMLID_42_" class="st0" d="M25.9,408.7c-0.8-0.9-1.9-1.4-3.1-1.4H-82.7l16.4-16.4l0,0l0,0l12.6-12.6c1.7-1.7,1.7-4.3,0-6
c-32.4-32.4-85.1-32.4-117.6,0c-14.5,14.6-23.1,33.9-24.2,54.5c-0.1,2.3,1.7,4.3,4,4.4c0.1,0,0.1,0,0.2,0c2.2,0,4.1-1.8,4.2-4
c1-18.5,8.7-35.8,21.8-48.9c14.1-14.1,32.8-21.9,52.8-21.9c18.5,0,36,6.7,49.7,19l-6.6,6.6c-25.6-22.6-64.8-21.6-89.3,2.9
s-25.4,63.7-2.9,89.3l-6.6,6.6c-9.6-10.7-15.8-23.8-18-38.1c-0.4-2.3-2.5-3.9-4.8-3.5c-2.3,0.4-3.9,2.5-3.5,4.8
c2.7,17.5,10.8,33.3,23.3,45.8c0.8,0.8,1.9,1.2,3,1.2c1.1,0,2.2-0.4,3-1.2l32.9-32.9l1.4,17.7v0.1l8.7,111c0.2,2.2,2,3.9,4.2,3.9
c0.1,0,0.2,0,0.3,0c2.3-0.2,4.1-2.2,3.9-4.6l-8.4-107.7c13.2-4.3,27.7-4.1,43.1,0.6c0.7,0.2,1.4,0.4,2.1,0.6v19.8
c0,2.3,1.9,4.2,4.2,4.2H-35c2.3,0,4.2-1.9,4.2-4.2v-15.8c9.4-0.8,18.7-2.2,28.1-3.7c5.3-0.8,10.7-1.7,16.2-2.4l-11.9,152h-112
l-2.1-27c-0.2-2.3-2.2-4.1-4.6-3.9c-2.3,0.2-4.1,2.2-3.9,4.6l2.4,30.9c0.2,2.2,2,3.9,4.2,3.9H5.5c2.2,0,4-1.7,4.2-3.9l12.7-161l0,0
l2.7-34.7c0.2-2.3-1.6-4.4-3.9-4.6c-2.3-0.2-4.4,1.6-4.6,3.9l-2.4,31.2C8,468.6,1.9,469.6-4,470.5c-9,1.4-17.9,2.8-26.8,3.6v-13.5
c0-2.3-1.9-4.2-4.2-4.2h-37.8c-2.3,0-4.2,1.9-4.2,4.2v9.2c-16-4.8-31.7-5.1-45.9-1l-4.1-52.9H18.3l-0.4,4.5
c-0.2,2.3,1.6,4.4,3.9,4.6c2.3,0.2,4.4-1.6,4.6-3.9l0.7-9.1C27.2,410.7,26.7,409.5,25.9,408.7z M-39.3,494.1h-29.3v-13.5
c8.7,1.8,16.9,2.5,25,2.5c1.5,0,2.9,0,4.4-0.1L-39.3,494.1L-39.3,494.1z M-39.3,464.8v9.8c-9.5,0.3-19.1-0.3-29.3-2.6v-7.2
L-39.3,464.8L-39.3,464.8z M-94.7,407.3h-12.6v-32.8c11.5,1,22.7,5.5,31.9,13.5L-94.7,407.3z M-135.7,413.8l1.1,14h-34.6
c0.7-12.1,5.2-24.1,13.6-33.8L-135.7,413.8z M-155.6,468.2c-8-9.2-12.5-20.4-13.5-31.9h35.1l0.7,9.6L-155.6,468.2z M-130.2,407.3
l-19.4-19.3c9.8-8.4,21.7-13,33.8-13.6v33h-14.4V407.3z"/>
<path id="XMLID_39_" class="st0" d="M-50.5,514.2L-86,501.1c-1.1-0.4-2.2-0.3-3.2,0.1c-1,0.5-1.8,1.3-2.2,2.4l-13.1,35.5
c-0.8,2.2,0.3,4.6,2.5,5.4l35.5,13.1c0.5,0.2,1,0.3,1.5,0.3c1.7,0,3.3-1.1,4-2.8l13.1-35.5C-47.2,517.4-48.3,515-50.5,514.2z
M-67.5,548.2L-95,538.1l10.1-27.5l27.5,10.1L-67.5,548.2z"/>
<path id="XMLID_38_" class="st0" d="M-10.8,519.6c2.3,0,4.2-1.9,4.2-4.2v-0.9c0-2.3-1.9-4.2-4.2-4.2s-4.2,1.9-4.2,4.2v0.9
C-15,517.7-13.2,519.6-10.8,519.6z"/>
<path id="XMLID_37_" class="st0" d="M-69.3,601.7c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2s4.2-1.9,4.2-4.2v-0.9
C-65,603.5-66.9,601.7-69.3,601.7z"/>
<path id="XMLID_36_" class="st0" d="M-53.9,617.8c2.3,0,4.2-1.9,4.2-4.2v-0.9c0-2.3-1.9-4.2-4.2-4.2s-4.2,1.9-4.2,4.2v0.9
C-58.2,615.9-56.3,617.8-53.9,617.8z"/>
<path id="XMLID_35_" class="st0" d="M-18.9,573.6c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2s4.2-1.9,4.2-4.2v-0.9
C-14.7,575.5-16.5,573.6-18.9,573.6z"/>
<path id="XMLID_34_" class="st0" d="M-53.9,566.6v-0.9c0-2.3-1.9-4.2-4.2-4.2s-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2
C-55.8,570.8-53.9,569-53.9,566.6z"/>
<path id="XMLID_33_" class="st0" d="M-24.4,504.8c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2s4.2-1.9,4.2-4.2V509
C-20.2,506.7-22.1,504.8-24.4,504.8z"/>
<g id="XMLID_60_">
<path id="XMLID_61_" class="st0" d="M139.6,457.9v43.6h84v49.7h-84v83H87.9v-226h137.3v49.7H139.6z"/>
<path id="XMLID_63_" class="st0" d="M351.2,469.5v54.9c-20-3.2-48.5,4.8-48.5,36.8v73h-48.5V472.8h48.5v28.8
C309.2,479.9,330.8,469.5,351.2,469.5z"/>
<path id="XMLID_65_" class="st1" d="M451,595.5c13.2,0,24.6-5.2,31-12.3l38.8,22.3c-15.8,22-39.7,33.3-70.4,33.3
c-55.2,0-89.5-37.1-89.5-85.3c0-48.1,34.9-85.3,85.9-85.3c47.2,0,82,36.5,82,85.3c0,6.8-0.6,13.2-1.9,19.4H412.2
C418.4,589.7,433.2,595.5,451,595.5z M480.7,536.7c-5.2-18.7-19.7-25.5-34.2-25.5c-18.4,0-30.7,9-35.2,25.5H480.7z"/>
<path id="XMLID_68_" class="st0" d="M675.2,585.8c0,37.1-32.3,53-67.2,53c-32.3,0-56.9-12.3-69.5-38.4l42-23.9
c4.2,12.3,13.2,19.1,27.5,19.1c11.6,0,17.4-3.6,17.4-10c0-17.8-79.5-8.4-79.5-64.3c0-35.2,29.7-53,63.3-53
c26.2,0,49.4,11.6,63,34.6l-41.3,22.3c-4.5-8.4-11-14.2-21.6-14.2c-8.4,0-13.6,3.2-13.6,9C595.7,538.3,675.2,526.1,675.2,585.8z"/>
<path id="XMLID_70_" class="st0" d="M854.4,535.1v99.2H806v-92.1c0-20-12.6-29.4-28.1-29.4c-17.8,0-30,10.3-30,33.3v88.2h-48.5
V408.2h48.5V488c8.7-12,24.9-19.7,46.2-19.7C826.7,468.2,854.4,491.5,854.4,535.1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -1,76 +0,0 @@
<?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 1230 300" style="enable-background:new 0 0 1230 300;" xml:space="preserve">
<style type="text/css">
.st0{fill:#344358;}
.st1{fill:#F39208;}
.st2{fill:#FCC010;}
.st3{fill:#F49619;}
.st4{fill:#EC630E;}
.st5{fill:#CBEAFC;}
.st6{fill:#77C2E0;}
.st7{fill:#F9DE6A;}
.st8{fill:#C6781A;}
.st9{fill:#010202;}
</style>
<circle id="XMLID_2_" class="st0" cx="1103.4" cy="183.4" r="25.9"/>
<circle id="XMLID_19_" class="st1" cx="1157.3" cy="118.9" r="30.8"/>
<circle id="XMLID_20_" class="st0" cx="1161.7" cy="203.1" r="13"/>
<path id="XMLID_59_" class="st2" d="M37.7,140.8C6.9,110,6.9,60.1,37.7,29.3s80.8-30.8,111.6,0L37.7,140.8z"/>
<path id="XMLID_58_" class="st3" d="M136.7,41.9l-15.4,15.4l-51.8,51.8l-19.1,19.1c-23.9-23.9-23.9-62.5,0-86.4
C74.2,18,112.9,18,136.7,41.9z"/>
<path id="XMLID_57_" class="st4" d="M121.3,57.3l-51.8,51.8L66,64.8c-0.3-4.1,2.9-7.6,7-7.6H121.3L121.3,57.3z"/>
<polygon id="XMLID_56_" class="st5" points="228.8,65.5 226.6,94 224.1,125.6 211.5,286.7 91.6,286.7 79.3,128.4 77.7,108.5
74.4,65.5 "/>
<rect id="XMLID_55_" x="133.2" y="114.5" class="st6" width="37.8" height="37.8"/>
<polygon id="XMLID_54_" class="st6" points="228.8,65.5 226.6,94 211.5,286.7 201.1,286.7 216.2,94 218.4,65.5 "/>
<path id="XMLID_53_" class="st1" d="M224.1,125.6l-12.6,161.1H91.6L79.3,128.4c11.4-4.4,27.9-6.9,48.8-0.6c31.4,9.5,57,3.3,85.6-0.9
C217.1,126.5,220.6,126,224.1,125.6z"/>
<path id="XMLID_52_" class="st7" d="M171,132.6v19.7h-37.8v-23C146.5,132.7,158.9,133.3,171,132.6z"/>
<path id="XMLID_51_" class="st8" d="M224.1,125.6l-12.6,161.1h-10.4L213.6,127C217.1,126.5,220.6,126,224.1,125.6z"/>
<rect id="XMLID_50_" x="110.9" y="164.5" transform="matrix(0.3456 -0.9384 0.9384 0.3456 -87.1514 241.7549)" class="st7" width="37.8" height="37.8"/>
<path id="XMLID_42_" class="st9" d="M231.9,62.7c-0.8-0.9-1.9-1.4-3.1-1.4H123.3l16.4-16.4c0,0,0,0,0,0c0,0,0,0,0,0l12.6-12.6
c1.7-1.7,1.7-4.3,0-6c-32.4-32.4-85.1-32.4-117.6,0C20.2,40.9,11.6,60.2,10.5,80.8c-0.1,2.3,1.7,4.3,4,4.4c0.1,0,0.1,0,0.2,0
c2.2,0,4.1-1.8,4.2-4c1-18.5,8.7-35.8,21.8-48.9c14.1-14.1,32.8-21.9,52.8-21.9c18.5,0,36,6.7,49.7,19l-6.6,6.6
C111,13.4,71.8,14.4,47.3,38.9c-24.5,24.5-25.4,63.7-2.9,89.3l-6.6,6.6c-9.6-10.7-15.8-23.8-18-38.1c-0.4-2.3-2.5-3.9-4.8-3.5
c-2.3,0.4-3.9,2.5-3.5,4.8c2.7,17.5,10.8,33.3,23.3,45.8c0.8,0.8,1.9,1.2,3,1.2c1.1,0,2.2-0.4,3-1.2l32.9-32.9l1.4,17.7
c0,0,0,0.1,0,0.1l8.7,111c0.2,2.2,2,3.9,4.2,3.9c0.1,0,0.2,0,0.3,0c2.3-0.2,4.1-2.2,3.9-4.6l-8.4-107.7c13.2-4.3,27.7-4.1,43.1,0.6
c0.7,0.2,1.4,0.4,2.1,0.6v19.8c0,2.3,1.9,4.2,4.2,4.2H171c2.3,0,4.2-1.9,4.2-4.2v-15.8c9.4-0.8,18.7-2.2,28.1-3.7
c5.3-0.8,10.7-1.7,16.2-2.4l-11.9,152H95.6l-2.1-27c-0.2-2.3-2.2-4.1-4.6-3.9c-2.3,0.2-4.1,2.2-3.9,4.6l2.4,30.9
c0.2,2.2,2,3.9,4.2,3.9h119.9c2.2,0,4-1.7,4.2-3.9L228.4,126c0,0,0,0,0,0l2.7-34.7c0.2-2.3-1.6-4.4-3.9-4.6
c-2.3-0.2-4.4,1.6-4.6,3.9l-2.4,31.2c-6.2,0.8-12.3,1.8-18.2,2.7c-9,1.4-17.9,2.8-26.8,3.6v-13.5c0-2.3-1.9-4.2-4.2-4.2h-37.8
c-2.3,0-4.2,1.9-4.2,4.2v9.2c-16-4.8-31.7-5.1-45.9-1l-4.1-52.9h145.3l-0.4,4.5c-0.2,2.3,1.6,4.4,3.9,4.6c2.3,0.2,4.4-1.6,4.6-3.9
l0.7-9.1C233.2,64.7,232.7,63.5,231.9,62.7z M166.7,148.1h-29.3v-13.5c8.7,1.8,16.9,2.5,25,2.5c1.5,0,2.9,0,4.4-0.1L166.7,148.1
L166.7,148.1z M166.7,118.8v9.8c-9.5,0.3-19.1-0.3-29.3-2.6v-7.2L166.7,118.8L166.7,118.8z M111.3,61.3H98.7V28.5
c11.5,1,22.7,5.5,31.9,13.5L111.3,61.3z M70.3,67.8l1.1,14H36.8C37.5,69.7,42,57.7,50.4,48L70.3,67.8z M50.4,122.2
c-8-9.2-12.5-20.4-13.5-31.9H72l0.7,9.6L50.4,122.2z M75.8,61.3L56.4,42c9.8-8.4,21.7-13,33.8-13.6v33H75.8z"/>
<path id="XMLID_39_" class="st9" d="M155.5,168.2L120,155.1c-1.1-0.4-2.2-0.3-3.2,0.1c-1,0.5-1.8,1.3-2.2,2.4l-13.1,35.5
c-0.8,2.2,0.3,4.6,2.5,5.4l35.5,13.1c0.5,0.2,1,0.3,1.5,0.3c1.7,0,3.3-1.1,4-2.8l13.1-35.5C158.8,171.4,157.7,169,155.5,168.2z
M138.5,202.2l-27.5-10.1l10.1-27.5l27.5,10.1L138.5,202.2z"/>
<path id="XMLID_38_" class="st9" d="M195.2,173.6c2.3,0,4.2-1.9,4.2-4.2v-0.9c0-2.3-1.9-4.2-4.2-4.2s-4.2,1.9-4.2,4.2v0.9
C191,171.7,192.8,173.6,195.2,173.6z"/>
<path id="XMLID_37_" class="st9" d="M136.7,255.7c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2c2.3,0,4.2-1.9,4.2-4.2v-0.9
C141,257.5,139.1,255.7,136.7,255.7z"/>
<path id="XMLID_36_" class="st9" d="M152.1,271.8c2.3,0,4.2-1.9,4.2-4.2v-0.9c0-2.3-1.9-4.2-4.2-4.2s-4.2,1.9-4.2,4.2v0.9
C147.8,269.9,149.7,271.8,152.1,271.8z"/>
<path id="XMLID_35_" class="st9" d="M187.1,227.6c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2c2.3,0,4.2-1.9,4.2-4.2v-0.9
C191.3,229.5,189.5,227.6,187.1,227.6z"/>
<path id="XMLID_34_" class="st9" d="M152.1,220.6v-0.9c0-2.3-1.9-4.2-4.2-4.2c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2
C150.2,224.8,152.1,223,152.1,220.6z"/>
<path id="XMLID_33_" class="st9" d="M181.6,158.8c-2.3,0-4.2,1.9-4.2,4.2v0.9c0,2.3,1.9,4.2,4.2,4.2s4.2-1.9,4.2-4.2V163
C185.8,160.7,183.9,158.8,181.6,158.8z"/>
<g id="XMLID_60_">
<path id="XMLID_61_" class="st0" d="M345.6,111.9v43.6h84v49.7h-84v83h-51.7V62.2h137.3v49.7H345.6z"/>
<path id="XMLID_63_" class="st0" d="M557.2,123.5v54.9c-20-3.2-48.5,4.8-48.5,36.8v73h-48.5V126.8h48.5v28.8
C515.2,133.9,536.8,123.5,557.2,123.5z"/>
<path id="XMLID_65_" class="st1" d="M657,249.5c13.2,0,24.6-5.2,31-12.3l38.8,22.3c-15.8,22-39.7,33.3-70.4,33.3
c-55.2,0-89.5-37.1-89.5-85.3c0-48.1,34.9-85.3,85.9-85.3c47.2,0,82,36.5,82,85.3c0,6.8-0.6,13.2-1.9,19.4H618.2
C624.4,243.7,639.2,249.5,657,249.5z M686.7,190.7c-5.2-18.7-19.7-25.5-34.2-25.5c-18.4,0-30.7,9-35.2,25.5H686.7z"/>
<path id="XMLID_68_" class="st0" d="M881.2,239.8c0,37.1-32.3,53-67.2,53c-32.3,0-56.9-12.3-69.5-38.4l42-23.9
c4.2,12.3,13.2,19.1,27.5,19.1c11.6,0,17.4-3.6,17.4-10c0-17.8-79.5-8.4-79.5-64.3c0-35.2,29.7-53,63.3-53
c26.2,0,49.4,11.6,63,34.6l-41.3,22.3c-4.5-8.4-11-14.2-21.6-14.2c-8.4,0-13.6,3.2-13.6,9C801.7,192.3,881.2,180.1,881.2,239.8z"/>
<path id="XMLID_70_" class="st0" d="M1060.4,189.1v99.2H1012v-92.1c0-20-12.6-29.4-28.1-29.4c-17.8,0-30,10.3-30,33.3v88.2h-48.5
V62.2h48.5v79.8c8.7-12,24.9-19.7,46.2-19.7C1032.7,122.2,1060.4,145.5,1060.4,189.1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -1,17 +0,0 @@
<?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 128 128" style="enable-background:new 0 0 128 128;" xml:space="preserve">
<style type="text/css">
.st0{fill:#3D84C3;}
.st1{fill:#4497D3;}
.st2{fill:#5AB0E4;}
.st3{fill:#3B8ECC;}
</style>
<g id="XMLID_441_">
<polygon id="XMLID_445_" class="st0" points="41.3,50.6 26.8,64 110.5,64 "/>
<polygon id="XMLID_444_" class="st1" points="26.8,64 41.3,77.4 110.5,64 "/>
<polygon id="XMLID_443_" class="st2" points="110.5,64 33.1,106.2 41.3,77.4 "/>
<polygon id="XMLID_442_" class="st3" points="110.5,64 41.3,50.6 33.1,21.8 "/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -1,828 +0,0 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.108.0">
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'G-3Z83G8WLEK', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<meta property="og:title" content="SpiffWorkflow" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://spiffworkflow.org/" />
<meta name="description" content="Hardcoded description; the author should update :)" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>SpiffWorkflow</title>
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link href="https://fonts.googleapis.com/css?family=Open&#43;Sans:400,600" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/style.min.3800f4a0f37a900c9dc48f9d2bd0deee9d946f197566472c5881419cf361b8b7.css" integrity="sha256-OAD0oPN6kAydxI&#43;dK9De7p2Ubxl1ZkcsWIFBnPNhuLc=">
<link rel="stylesheet" type="text/css" href="/css/icons.css">
</head>
<body>
<div id="preloader">
<div id="status"></div>
</div>
<section class="hero is-fullheight is-default is-bold">
<nav class="navbar is-fresh is-transparent no-shadow" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/images/logos/spiffworkflow_logo.png" alt="" width="138" height="28">
</a>
<a class="navbar-item is-hidden-desktop is-hidden-tablet">
<div id="menu-icon-wrapper" class="menu-icon-wrapper" style="visibility: visible;">
<svg width="1000px" height="1000px">
<path class="path1" d="M 300 400 L 700 400 C 900 400 900 750 600 850 A 400 400 0 0 1 200 200 L 800 800"></path>
<path class="path2" d="M 300 500 L 700 500"></path>
<path class="path3" d="M 700 600 L 300 600 C 100 600 100 200 400 150 A 400 380 0 1 1 200 800 L 800 200"></path>
</svg>
<button id="menu-icon-trigger" class="menu-icon-trigger"></button>
</div>
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbar-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-menu" class="navbar-menu is-static">
<div class="navbar-start">
<a class="navbar-item is-hidden-mobile">
<div id="menu-icon-wrapper" class="menu-icon-wrapper" style="visibility: visible;">
<svg width="1000px" height="1000px">
<path class="path1" d="M 300 400 L 700 400 C 900 400 900 750 600 850 A 400 400 0 0 1 200 200 L 800 800"></path>
<path class="path2" d="M 300 500 L 700 500"></path>
<path class="path3" d="M 700 600 L 300 600 C 100 600 100 200 400 150 A 400 380 0 1 1 200 800 L 800 200"></path>
</svg>
<button id="menu-icon-trigger" class="menu-icon-trigger"></button>
</div>
</a>
</div>
<div class="navbar-end">
<a href="/" class="navbar-item is-secondary">
Features
</a>
<a href="/" class="navbar-item is-secondary">
Pricing
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Dropdown
</a>
<div class="navbar-dropdown">
<a href="/" class="navbar-item">
Dropdown item
</a>
<a href="/" class="navbar-item">
Dropdown item
</a>
<a href="/" class="navbar-item">
Dropdown item
</a>
</div>
</div>
<a href="/" class="navbar-item is-secondary">
Log in
</a>
<a href="/" class="navbar-item">
<span class="button signup-button rounded secondary-btn raised">
Sign up
</span>
</a>
</div>
</div>
</div>
</nav>
<nav id="navbar-clone" class="navbar is-fresh is-transparent" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/images/logos/spiffworkflow_logo.png" alt="" width="138" height="138">
</a>
<a class="navbar-item is-hidden-desktop is-hidden-tablet">
<div id="menu-icon-wrapper" class="menu-icon-wrapper" style="visibility: visible;">
<svg width="1000px" height="1000px">
<path class="path1" d="M 300 400 L 700 400 C 900 400 900 750 600 850 A 400 400 0 0 1 200 200 L 800 800"></path>
<path class="path2" d="M 300 500 L 700 500"></path>
<path class="path3" d="M 700 600 L 300 600 C 100 600 100 200 400 150 A 400 380 0 1 1 200 800 L 800 200"></path>
</svg>
<button id="menu-icon-trigger" class="menu-icon-trigger"></button>
</div>
</a>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="cloned-navbar-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="cloned-navbar-menu" class="navbar-menu is-fixed">
<div class="navbar-start">
<a class="navbar-item is-hidden-mobile">
<div id="cloned-menu-icon-wrapper" class="menu-icon-wrapper" style="visibility: visible;">
<svg width="1000px" height="1000px">
<path class="path1" d="M 300 400 L 700 400 C 900 400 900 750 600 850 A 400 400 0 0 1 200 200 L 800 800"></path>
<path class="path2" d="M 300 500 L 700 500"></path>
<path class="path3" d="M 700 600 L 300 600 C 100 600 100 200 400 150 A 400 380 0 1 1 200 800 L 800 200"></path>
</svg>
<button id="cloned-menu-icon-trigger" class="menu-icon-trigger"></button>
</div>
</a>
</div>
<div class="navbar-end">
<a href="/" class="navbar-item is-secondary">
Features
</a>
<a href="/" class="navbar-item is-secondary">
Pricing
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Dropdown
</a>
<div class="navbar-dropdown">
<a href="/" class="navbar-item">
Dropdown item
</a>
<a href="/" class="navbar-item">
Dropdown item
</a>
<a href="/" class="navbar-item">
Dropdown item
</a>
</div>
</div>
<a href="/" class="navbar-item is-secondary">
Log in
</a>
<a href="/" class="navbar-item">
<span class="button signup-button rounded secondary-btn raised">
Sign up
</span>
</a>
</div>
</div>
</div>
</nav>
<div class="hero-body">
<div class="container">
<div class="columns is-vcentered">
<div class="column is-5 is-offset-1 landing-caption">
<h1 class="title is-1 is-bold is-spaced">
Executable Diagrams
</h1>
<h2 class="subtitle is-5 is-muted">
Connect people and software together in a way that makes sense to everyone.
</h2>
<p>
<a class="button cta rounded primary-btn raised" href="#">
Get started
</a>
</p>
</div>
<div class="column is-5 is-offset-1">
<figure class="image is-4by3">
<img src="/images/illustrations/flow.svg" alt="Description">
</figure>
</div>
</div>
</div>
</div>
<div class="hero-foot mb-20">
<div class="container">
<div class="tabs is-centered">
<ul>
<li>
<a>
<img class="partner-logo" src="/images/logos/clients/status.svg">
</a>
</li>
<li>
<a>
<img class="partner-logo" src="/images/logos/clients/uva.svg">
</a>
</li>
<li>
<a>
<img class="partner-logo" src="/images/logos/clients/appomni.svg">
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section section-feature-grey is-medium" id="section1">
<div class="container">
<div class="title-wrapper has-text-centered">
<h2 class="title is-2">Open Source Software</h2>
<h3 class="subtitle is-5 is-muted">It&#39;s all open. All of it. The whole enchelada. (well it would be a taquito then, wouldn&#39;t it?).</h3>
<div class="divider is-centered"></div>
</div>
<div class="content-wrapper">
<div class="columns">
<div class="column is-one-third">
<div class="feature-card is-bordered has-text-centered revealOnScroll delay-1" data-animation="fadeInLeft">
<div class="card-title">
<h4>SpiffWorkflow</h4>
</div>
<div class="card-icon">
<img src="/images/illustrations/icons/mouse-globe.svg">
</div>
<div class="card-text">
<p>a super lightweight diagram execution library</p>
</div>
<div class="card-action">
<a href="/" class="button btn-align-md accent-btn raised">Learn More</a>
</div>
</div>
</div>
<div class="column is-one-third">
<div class="feature-card is-bordered has-text-centered revealOnScroll delay-1" data-animation="fadeInLeft">
<div class="card-title">
<h4>SpiffArena</h4>
</div>
<div class="card-icon">
<img src="/images/illustrations/icons/laptop-cloud.svg">
</div>
<div class="card-text">
<p>A ready to run system for building, running, and managing diagrams.</p>
</div>
<div class="card-action">
<a href="/" class="button btn-align-md accent-btn raised">Learn More</a>
</div>
</div>
</div>
<div class="column is-one-third">
<div class="feature-card is-bordered has-text-centered revealOnScroll delay-1" data-animation="fadeInLeft">
<div class="card-title">
<h4>SpiffDiagram</h4>
</div>
<div class="card-icon">
<img src="/images/illustrations/icons/plug-cloud.svg">
</div>
<div class="card-text">
<p>SpiffWorkflow Extensions for the popular BPMN.io diagram editor.</p>
</div>
<div class="card-action">
<a href="/" class="button btn-align-md accent-btn raised">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section is-medium" id="section2">
<div class="container">
<div class="columns">
<div class="column is-centered-tablet-portrait">
<h1 class="title section-title">It&#39;s about people, how they connect, and respecting their time.</h1>
<h3 class="subtitle is-5 is-muted">Connect your teams with transparency and shared understanding. Glue your software systems together to minimize the noise. Then don&#39;t both people, until they need to be bothered.</h3>
<div class="divider"></div>
</div>
<div class="column is-7 mt-60">
<article class="media icon-box">
<figure class="media-left">
<p class="image">
<img src="/images/illustrations/icons/doc-sync.svg">
</p>
</figure>
<div class="media-content mt-50">
<div class="content">
<p>
<span class="icon-box-title">Create Transparency</span>
<span class="icon-box-text">Only when people understand processes will they can contribute to their improvement. Executable diagrams allow people to see what is happening behind the curtains. That transparency is two fold. It creates empathy (&ldquo;I didn&rsquo;t know you were handling so much!&rdquo;) while also creating power (&ldquo;Hey, if we reviewed this earlier, it would save everyone a lot of time&rdquo;).</span>
</p>
</div>
</div>
</article>
<article class="media icon-box">
<figure class="media-left">
<p class="image">
<img src="/images/illustrations/icons/laptop-globe.svg">
</p>
</figure>
<div class="media-content mt-50">
<div class="content">
<p>
<span class="icon-box-title">Automate The Bots</span>
<span class="icon-box-text">No one wants 20 applications telling them what to do all day. In many cases, what is needed is a little glue &ndash; a way to pull information from one system, and use it in another. The Services Task in our diagrams allows us to talk to services, gather information, send them to other services, and automate ourselves out of the loop.</span>
</p>
</div>
</div>
</article>
<article class="media icon-box">
<figure class="media-left">
<p class="image">
<img src="/images/illustrations/icons/mobile-feed.svg">
</p>
</figure>
<div class="media-content mt-50">
<div class="content">
<p>
<span class="icon-box-title">Deliver on Schedule</span>
<span class="icon-box-text">We need more time by the fireplace for contempation, less time by the phone and it&rsquo;s distractions. If we can reduce the noise, then we we can think in peace. Perhaps, maybe, do something of merit, of consequence. Something worthy.</span>
</p>
</div>
</div>
</article>
</div>
</div>
</div>
</section>
<section class="section section-feature-grey is-medium" id="section3">
<div class="container">
<div class="columns">
<div class="column is-10 is-offset-1">
<div class="has-text-centered">
<img class="pushed-image" src="/images/illustrations/school.svg">
</div>
</div>
</div>
<div class="title-wrapper has-text-centered">
<h2 class="title is-2">Should we cancel school today?</h2>
<h3 class="subtitle is-5 is-muted">Diagrams can be intutive AND executable - removing monotony, adding transpaency and opening opertunities for improvement and adaptation.</h3>
</div>
<p class="has-text-centered mt-20">
<a class="button cta is-large rounded secondary-btn raised" href="#">
Get started
</a>
</p>
</div>
</section>
<section class="section is-medium section-secondary" id="section4">
<div class="container">
<div class="title-wrapper has-text-centered">
<h2 class="title is-2 light-text is-spaced">Join the Innovators</h2>
<h3 class="subtitle is-5 light-text">We are just getting started. SpiffWorkflow is over 10 years old, but SpiffArena is just a few months old. We need more leaders innovators like ...</h3>
</div>
<div class="content-wrapper">
<div class="columns is-vcentered">
<div class="column is-4">
<figure class="testimonial">
<blockquote>
Absolutely amazing work, thank you so very much for pulling off the MVP, it&#39;s exactly what I was hoping for and really appreciate working with you guys...
</blockquote>
<div class="author">
<img src="/images/illustrations/faces/jarrad.png" alt=""/>
<h5>Jarrad Hope</h5>
<span>CoFounder - Status.im</span>
</div>
</figure>
</div>
<div class="column is-4">
<figure class="testimonial">
<blockquote>
You guys are rock stars. I really appreciate your passion and your expertise on this project. Im very excited too about what we can do with it in the future.
</blockquote>
<div class="author">
<img src="/images/illustrations/faces/ron.png" alt=""/>
<h5>Ron Hutchins</h5>
<span>VP - IT - UVA</span>
</div>
</figure>
</div>
<div class="column is-4">
<figure class="testimonial">
<blockquote>
Lorem ipsum dolor sit amet, elit deleniti dissentias quo eu, hinc minim appetere te usu, ea case duis scribentur has. Duo te consequat elaboraret, has quando suavitate at.
</blockquote>
<div class="author">
<img src="/images/illustrations/faces/brian.png" alt=""/>
<h5>Brian Sobe</h5>
<span>CTO</span>
</div>
</figure>
</div>
</div>
</div>
</div>
</section>
<section class="section section-light-grey is-medium" id="section5">
<div class="container">
<div class="title-wrapper has-text-centered">
<h2 class="title is-2 is-spaced">Drop us a line or two </h2>
<h3 class="subtitle is-5 is-muted">We'd love to hear from you</h3>
<div class="divider is-centered"></div>
</div>
<div class="content-wrapper">
<div class="columns">
<div class="column is-6 is-offset-3">
<form>
<div class="columns is-multiline">
<div class="column is-6">
<input class="input is-medium" type="text" placeholder="Enter your name">
</div>
<div class="column is-6">
<input class="input is-medium" type="email" placeholder="Enter your email address">
</div>
<div class="column is-12">
<textarea class="textarea" rows="10" placeholder="Write someting..."></textarea>
</div>
<div class="form-footer has-text-centered mt-10">
<button class="button cta is-large primary-btn raised is-clear">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<footer class="footer footer-dark">
<div class="container">
<div class="columns">
<div class="column">
<div class="footer-logo">
<img src="/images/logos/fresh-white-alt.svg">
</div>
</div>
<div class="column">
<div class="footer-column">
<div class="footer-header">
<h3>Product</h3>
</div>
<ul class="link-list">
<li>
<a href="/">
Discover features
</a>
</li>
<li>
<a href="/">
Why choose our product?
</a>
</li>
<li>
<a href="/">
Compare features
</a>
</li>
<li>
<a href="/">
Our roadmap
</a>
</li>
<li>
<a href="/agb">
AGB
</a>
</li>
</ul>
</div>
</div>
<div class="column">
<div class="footer-column">
<div class="footer-header">
<h3>Docs</h3>
</div>
<ul class="link-list">
<li>
<a href="/">
Get started
</a>
</li>
<li>
<a href="/">
User guides
</a>
</li>
<li>
<a href="/">
Admin guide
</a>
</li>
<li>
<a href="/">
Developers
</a>
</li>
</ul>
</div>
</div>
<div class="column">
<div class="footer-column">
<div class="footer-header">
<h3>Blog</h3>
</div>
<ul class="link-list">
<li>
<a href="/blog/first">
Latest news
</a>
</li>
<li>
<a href="/blog/second">
Tech articles
</a>
</li>
</ul>
</div>
</div>
<div class="column">
<div class="footer-column">
<div class="footer-header">
<h3>Follow Us</h3>
<nav class="level is-mobile">
<div class="level-left">
<a class="level-item" href="https://github.com/lucperkins/github-fresh">
<span class="icon"><i class="fa fa-github"></i></span>
</a>
<a class="level-item" href="https://dribbble.com/#">
<span class="icon"><i class="fa fa-dribbble"></i></span>
</a>
<a class="level-item" href="https://facebook.com/#">
<span class="icon"><i class="fa fa-facebook"></i></span>
</a>
<a class="level-item" href="https://twitter.com/lucperkins">
<span class="icon"><i class="fa fa-twitter"></i></span>
</a>
<a class="level-item" href="https://bitbucket.org/#">
<span class="icon"><i class="fa fa-bitbucket"></i></span>
</a>
</div>
</nav>
<a href="https://bulma.io" target="_blank">
<img src="/images/logos/made-with-bulma.png" alt="Made with Bulma" width="128" height="24">
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<div id="backtotop"><a href="#"></a></div>
<div class="sidebar">
<div class="sidebar-header">
<img src="/images/logos/fresh-square.svg">
<a class="sidebar-close" href="javascript:void(0);">
<i data-feather="x"></i>
</a>
</div>
<div class="inner">
<ul class="sidebar-menu">
<li class="have-children">
<a href="#">
<span class="fa fa-user"></span>
User
</a>
<ul>
<li>
<a href="/">
Profile
</a>
</li>
<li>
<a href="/">
Account
</a>
</li>
<li>
<a href="/">
Settings
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-envelope"></span>
Messages
</a>
<ul>
<li>
<a href="/">
Inbox
</a>
</li>
<li>
<a href="/">
Compose
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-image"></span>
Images
</a>
<ul>
<li>
<a href="/">
Library
</a>
</li>
<li>
<a href="/">
Upload
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-cog"></span>
Settings
</a>
<ul>
<li>
<a href="/">
User settings
</a>
</li>
<li>
<a href="/">
App settings
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="backtotop"><a href="#"></a></div>
<div class="sidebar">
<div class="sidebar-header">
<img src="/images/logos/fresh-square.svg">
<a class="sidebar-close" href="javascript:void(0);">
<i data-feather="x"></i>
</a>
</div>
<div class="inner">
<ul class="sidebar-menu">
<li class="have-children">
<a href="#">
<span class="fa fa-user"></span>
User
</a>
<ul>
<li>
<a href="/">
Profile
</a>
</li>
<li>
<a href="/">
Account
</a>
</li>
<li>
<a href="/">
Settings
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-envelope"></span>
Messages
</a>
<ul>
<li>
<a href="/">
Inbox
</a>
</li>
<li>
<a href="/">
Compose
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-image"></span>
Images
</a>
<ul>
<li>
<a href="/">
Library
</a>
</li>
<li>
<a href="/">
Upload
</a>
</li>
</ul>
</li>
<li class="have-children">
<a href="#">
<span class="fa fa-cog"></span>
Settings
</a>
<ul>
<li>
<a href="/">
User settings
</a>
</li>
<li>
<a href="/">
App settings
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="/js/fresh.js"></script>
<script src="/js/jquery.panelslider.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
</body>
</html>

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>SpiffWorkflow</title>
<link>http://spiffworkflow.org/</link>
<description>Recent content on SpiffWorkflow</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="http://spiffworkflow.org/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -1,144 +0,0 @@
$(document).ready(function(){
//Preloader
$(window).on('load', function() { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(350).css({'overflow':'visible'});
})
//Mobile menu toggle
if ($('.navbar-burger').length) {
$('.navbar-burger').on("click", function(){
var menu_id = $(this).attr('data-target');
$(this).toggleClass('is-active');
$("#"+menu_id).toggleClass('is-active');
$('.navbar.is-light').toggleClass('is-dark-mobile')
});
}
//Animate left hamburger icon and open sidebar
$('.menu-icon-trigger').click(function(e){
e.preventDefault();
$('.menu-icon-wrapper').toggleClass('open');
$('.sidebar').toggleClass('is-active');
});
//Close sidebar
$('.sidebar-close').click(function() {
$('.sidebar').removeClass('is-active');
$('.menu-icon-wrapper').removeClass('open');
})
//Sidebar menu
if ($('.sidebar').length) {
$(".sidebar-menu > li.have-children > a").on("click", function(i){
i.preventDefault();
if( ! $(this).parent().hasClass("active") ){
$(".sidebar-menu li ul").slideUp();
$(this).next().slideToggle();
$(".sidebar-menu li").removeClass("active");
$(this).parent().addClass("active");
}
else{
$(this).next().slideToggle();
$(".sidebar-menu li").removeClass("active");
}
});
}
//Navbar Clone
if ($('#navbar-clone').length) {
$(window).scroll(function() { // this will work when your window scrolled.
var height = $(window).scrollTop(); //getting the scrolling height of window
if(height > 50) {
$("#navbar-clone").addClass('is-active');
} else{
$("#navbar-clone").removeClass('is-active');
}
});
}
//Init feather icons
feather.replace();
//reveal elements on scroll so animations trigger the right way
var $window = $(window),
win_height_padded = $window.height() * 1.1,
isTouch = Modernizr.touch;
$window.on('scroll', revealOnScroll);
function revealOnScroll() {
var scrolled = $window.scrollTop();
$(".revealOnScroll:not(.animated)").each(function () {
var $this = $(this),
offsetTop = $this.offset().top;
if (scrolled + win_height_padded > offsetTop) {
if ($this.data('timeout')) {
window.setTimeout(function(){
$this.addClass('animated ' + $this.data('animation'));
}, parseInt($this.data('timeout'),10));
} else {
$this.addClass('animated ' + $this.data('animation'));
}
}
});
}
// Back to Top button behaviour
var pxShow = 600;
var scrollSpeed = 500;
$(window).scroll(function() {
if ($(window).scrollTop() >= pxShow) {
$("#backtotop").addClass('visible');
} else {
$("#backtotop").removeClass('visible');
}
});
$('#backtotop a').on('click', function() {
$('html, body').animate({
scrollTop: 0
}, scrollSpeed);
return false;
});
// Select all links with hashes
$('a[href*="#"]')
// Remove links that don't actually link to anything
.not('[href="#"]')
.not('[href="#0"]')
.click(function(event) {
// On-page links
if (
location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '')
&&
location.hostname == this.hostname
) {
// Figure out element to scroll to
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
// Does a scroll target exist?
if (target.length) {
// Only prevent default if animation is actually gonna happen
event.preventDefault();
$('html, body').animate({
scrollTop: target.offset().top
}, 550, function() {
// Callback after animation
// Must change focus!
var $target = $(target);
$target.focus();
if ($target.is(":focus")) { // Checking if the target was focused
return false;
} else {
$target.attr('tabindex','-1'); // Adding tabindex for elements not focusable
$target.focus(); // Set focus again
};
});
}
}
});
})

View File

@ -1 +0,0 @@
(function(e){"use strict";function r(r){var i=r.data("ps-options");if(e("body").hasClass(i.bodyClass)||n)return;r.trigger("psBeforeOpen"),n=!0,r.addClass("ps-active-panel"),e("body").addClass(i.bodyClass).one(t,function(e){n=!1,r.trigger("psOpen"),typeof i.onOpen=="function"&&i.onOpen()})}var t=["transitionend","webkitTransitionEnd","oTransitionEnd","MSTransitionEnd"].join(" "),n=!1;e.panelslider=function(e,t){e.panelslider(t)},e.panelslider.close=function(r){var i=e(".ps-active-panel"),s=i.data("ps-options");if(!i.length||n)return;i.trigger("psBeforeClose"),n=!0,i.removeClass("ps-active-panel"),e("body").removeClass(s.bodyClass).one(t,function(e){n=!1,i.trigger("psClose"),r&&setTimeout(function(){r()},0)})},e(document).on("click keyup",function(t){var n=e(".ps-active-panel");if(t.type=="keyup"&&t.keyCode!=27)return;n.length&&n.data("ps-options").clickClose&&e.panelslider.close()}),e(document).on("click",".ps-active-panel",function(e){e.stopPropagation()}),e.fn.panelslider=function(t){var n={bodyClass:"ps-active",clickClose:!0,onOpen:null},i=e(this.attr("href"));return i.data("ps-options",e.extend({},n,t)),this.click(function(t){var n=e(".ps-active-panel");n.length?n[0]==i[0]?e.panelslider.close():e.panelslider.close(function(){r(i)}):r(i),t.preventDefault(),t.stopPropagation()}),this}})(jQuery);

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://spiffworkflow.org/</loc>
</url>
</urlset>

8
static/css/custom.css Normal file
View File

@ -0,0 +1,8 @@
.content {
max-width: 860px;
}
.content p, .content li, .content ul {
font-size: 1.3em;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

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: 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

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