Merge remote-tracking branch 'origin/master'

This commit is contained in:
scotty
2016-09-30 10:21:09 -07:00
78 changed files with 17838 additions and 100 deletions
+4
View File
@@ -10,4 +10,8 @@ toc:
section:
- title: Using an HTTP Proxy to Access the Kubernetes API
path: /docs/tasks/access-kubernetes-api/http-proxy-access-api/
- title: Administering a Cluster
section:
- title: Assigning Pods to Nodes
path: /docs/tasks/administer-cluster/assign-pods-nodes/
+51 -1
View File
@@ -2,9 +2,59 @@ bigheader: "Tutorials"
toc:
- title: Tutorials
path: /docs/tutorials/
- title: Getting Started
section:
- title: 1. Create a Cluster
section:
- title: Creating a Cluster
path: /docs/tutorials/getting-started/create-cluster/
- title: Using Minikube to Create a Cluster
path: /docs/tutorials/getting-started/cluster-intro/
- title: Interactive Tutorial - Creating a Cluster
path: /docs/tutorials/getting-started/cluster-interactive/
- title: 2. Deploy an App
section:
- title: Deploying an App
path: /docs/tutorials/getting-started/deploy-app/
- title: Using kubectl to Create a Deployment
path: /docs/tutorials/getting-started/deploy-intro/
- title: Interactive Tutorial - Deploying an App
path: /docs/tutorials/getting-started/deploy-interactive/
- title: 3. Explore Your App
section:
- title: Exploring Your App
path: /docs/tutorials/getting-started/explore-app/
- title: Viewing Pods and Nodes
path: /docs/tutorials/getting-started/explore-intro/
- title: Interactive Tutorial - Exploring Your App
path: /docs/tutorials/getting-started/explore-interactive/
- title: 4. Expose Your App Publicly
section:
- title: Exposing Your App Publicly
path: /docs/tutorials/getting-started/expose-app/
- title: Using a Service to Expose Your App
path: /docs/tutorials/getting-started/expose-intro/
- title: Interactive Tutorial - Exposing Your App
path: /docs/tutorials/getting-started/expose-interactive/
- title: 5. Scale Your App
section:
- title: Scaling Your App
path: /docs/tutorials/getting-started/scale-app/
- title: Running Multiple Instances of Your App
path: /docs/tutorials/getting-started/scale-intro/
- title: Interactive Tutorial - Scaling Your App
path: /docs/tutorials/getting-started/scale-interactive/
- title: 6. Update Your App
section:
- title: Updating Your App
path: /docs/tutorials/getting-started/update-app/
- title: Performing a Rolling Update
path: /docs/tutorials/getting-started/update-intro/
- title: Interactive Tutorial - Updating Your App
path: /docs/tutorials/getting-started/update-interactive/
- title: Stateless Applications
section:
- title: Running a Stateless Application Using a Deployment
path: /docs/tutorials/stateless-application/run-stateless-application-deployment/
- title: Exposing an External IP Address Using a Service
- title: Using a Service to Access an Application in a Cluster
path: /docs/tutorials/stateless-application/expose-external-ip-address-service/
+15 -17
View File
@@ -26,16 +26,16 @@
</section>
<section id="encyclopedia">
<div id="docsToc">
<div id="docsToc">
<div class="pi-accordion">
{% assign tree = site.data[foundTOC].toc %}{% include tree.html %}
</div> <!-- /pi-accordion -->
<button class="push-menu-close-button" onclick="kub.toggleToc()"></button>
</div> <!-- /docsToc -->
<div id="docsContent">
<button class="push-menu-close-button" onclick="kub.toggleToc()"></button>
</div> <!-- /docsToc -->
<div id="docsContent">
<p><a href="/editdocs#{{ page.path }}" id="editPageButton">Edit This Page</a></p>
{% if notitle != "true" %}<h1>{{ title }}</h1>{% endif %}
{{ content }}
{% if notitle != "true" %}<h1>{{ title }}</h1>{% endif %}
{{ content }}
<p><a href=""><img src="https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/{{ page.path }}?pixel" alt="Analytics" /></a>
{% if page.url != "/404.html" and page.url != "/docs/search/" %}<div id="pd_rating_holder_8345992"></div>
<script type="text/javascript">
@@ -60,23 +60,21 @@
<button class="flyout-button" onclick="kub.toggleToc()"></button>
<style>
.cse .gsc-control-cse, .gsc-control-cse, {
padding: 0;
}
.gsc-control-cse table, .gsc-control-cse-en table {
margin:0px !important;
}
.gsc-above-wrapper-area {
border-bottom: 0;
}
.cse .gsc-control-cse, .gsc-control-cse, {
padding: 0;
}
.gsc-control-cse table, .gsc-control-cse-en table {
margin:0px !important;
}
.gsc-above-wrapper-area {
border-bottom: 0;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36037335-10', 'auto');
ga('send', 'pageview');
</script>
+22 -21
View File
@@ -42,39 +42,37 @@ You will install the following packages on all the machines:
For each host in turn:
<!--
# curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
# cat <<EOF > /etc/apt/sources.list.d/kubernetes.list
deb http://packages.cloud.google.com/apt kubernetes-xenial main
EOF
# apt-get update
# apt-get install -y kubeadm docker.io§
-->
* SSH into the machine and become `root` if you are not already (for example, run `sudo su -`).
* If the machine is running Ubuntu 16.04, run:
# apt-get install -y docker.io socat apt-transport-https
# curl -s -L \
https://storage.googleapis.com/kubeadm/kubernetes-xenial-preview-bundle.txz | tar xJv
# dpkg -i kubernetes-xenial-preview-bundle/*.deb
# curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
# cat <<EOF > /etc/apt/sources.list.d/kubernetes.list
deb http://apt.kubernetes.io/ kubernetes-xenial main
EOF
# apt-get update
# apt-get install -y docker.io kubelet kubeadm kubectl kubernetes-cni
If the machine is running CentOS 7, run:
# cat <<EOF > /etc/yum.repos.d/k8s.repo
[kubelet]
name=kubelet
baseurl=http://files.rm-rf.ca/rpms/kubelet/
# cat <<EOF > /etc/yum.repos.d/kubernetes.repo
[kubernetes]
name=Kubernetes
baseurl=http://yum.kubernetes.io/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=0
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg
https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
EOF
# yum install docker kubelet kubeadm kubectl kubernetes-cni
# setenforce 0
# yum install -y docker kubelet kubeadm kubectl kubernetes-cni
# systemctl enable docker && systemctl start docker
# systemctl enable kubelet && systemctl start kubelet
The kubelet is now restarting every few seconds, as it waits in a crashloop for `kubeadm` to tell it what to do.
Note: `setenforce 0` will no longer be necessary on CentOS once [#33555](https://github.com/kubernetes/kubernetes/pull/33555) is included in a released version of `kubeadm`.
### (2/4) Initializing your master
The master is the machine where the "control plane" components run, including `etcd` (the cluster database) and the API server (which the `kubectl` CLI communicates with).
@@ -82,7 +80,10 @@ All of these components run in pods started by `kubelet`.
To initialize the master, pick one of the machines you previously installed `kubelet` and `kubeadm` on, and run:
# kubeadm init --use-kubernetes-version v1.4.0-beta.11
# kubeadm init
**Note:** this will autodetect the network interface to advertise the master on as the interface with the default gateway.
If you want to use a different interface, specify `--api-advertise-addresses=<ip-address>` argument to `kubeadm init`.
This will download and install the cluster database and "control plane" components.
This may take several minutes.
+2 -3
View File
@@ -47,9 +47,8 @@ ssh jclouds@${ip_address_of_master_node}
Build Kubernetes-Mesos.
```shell
git clone https://github.com/kubernetes/kubernetes
cd kubernetes
export KUBERNETES_CONTRIB=mesos
git clone https://github.com/kubernetes-incubator/kube-mesos-framework
cd kube-mesos-framework
make
```
+1 -1
View File
@@ -94,7 +94,7 @@ To start a cluster, run the command:
```shell
minikube start
Starting local Kubernetes cluster...
Kubernetes is available at https://192.168.99.100:443.
Kubectl is now configured to use the cluster.
```
This will build and start a lightweight local cluster, consisting of a master, etcd, Docker and a single node.
@@ -0,0 +1,88 @@
---
---
{% capture overview %}
This page shows how to assign a Kubernetes Pod to a particular node in a
Kubernetes cluster.
{% endcapture %}
{% capture prerequisites %}
* Install [kubectl](http://kubernetes.io/docs/user-guide/prereqs).
* Create a Kubernetes cluster, including a running Kubernetes
API server. One way to create a new cluster is to use
[Minikube](/docs/getting-started-guides/minikube).
* Configure `kubectl` to communicate with your Kubernetes API server. This
configuration is done automatically if you use Minikube.
{% endcapture %}
{% capture steps %}
### Adding a label to a node
1. List the nodes in your cluster:
kubectl get nodes
The output is similar to this:
NAME STATUS AGE
worker0 Ready 1d
worker1 Ready 1d
worker2 Ready 1d
1. Chose one of your nodes, and add a label to it:
kubectl label nodes <your-node-name> disktype=ssd
where `<your-node-name>` is the name of your chosen node.
1. Verify that your chosen node has a `disktype=ssd` label:
kubectl get nodes --show-labels
The output is similar to this:
NAME STATUS AGE LABELS
worker0 Ready 1d ...,disktype=ssd,kubernetes.io/hostname=worker0
worker1 Ready 1d ...,kubernetes.io/hostname=worker1
worker2 Ready 1d ...,kubernetes.io/hostname=worker2
In the preceding output, you can see that the `worker0` node has a
`disktype=ssd` label.
### Creating a pod that gets scheduled to your chosen node
This pod configuration file describes a pod that has a node selector,
`disktype: ssd`. This means that the pod will get scheduled on a node that has
a `disktype=ssd` label.
{% include code.html language="yaml" file="pod.yaml" ghlink="/docs/tasks/administer-cluster/pod.yaml" %}
1. Use the configuration file to create a pod that will get scheduled on your
chosen node:
export REPO=https://raw.githubusercontent.com/kubernetes/kubernetes.github.io/master
kubectl create -f $REPO/docs/tasks/administer-cluster/pod.yaml
1. Verify that the pod is running on your chosen node:
kubectl get pods --output=wide
The output is similar to this:
NAME READY STATUS RESTARTS AGE IP NODE
nginx 1/1 Running 0 13s 10.200.0.4 worker0
{% endcapture %}
{% capture whatsnext %}
Learn more about
[labels and selectors](/docs/user-guide/labels/).
{% endcapture %}
{% include templates/task.md %}
+13
View File
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
env: test
spec:
containers:
- name: nginx
image: nginx
imagePullPolicy: IfNotPresent
nodeSelector:
disktype: ssd
+3
View File
@@ -11,6 +11,9 @@ The Tasks section of the Kubernetes documentation is a work in progress
* [Using an HTTP Proxy to Access the Kubernetes API](/docs/tasks/access-kubernetes-api/http-proxy-access-api)
#### Administering a Cluster
* [Assigning Pods to Nodes](/docs/tasks/administer-cluster/assign-pods-nodes/)
### What's next
@@ -0,0 +1,40 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/cluster-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/1" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;"></div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/deploy-app.html" role="button">Continue to Module 2<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,104 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/create-cluster.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<p>
<b>Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit.</b> The abstractions in Kubernetes allow you to deploy containerized applications to a cluster without tying them specifically to individual machines. To make use of this new model of deployment, applications need to be packaged in a way that decouples them from individual hosts: they need to be containerized. Containerized applications are more flexible and available than in past deployment models, where applications were installed directly onto specific machines as packages deeply integrated into the host. <b>Kubernetes automates the distribution and scheduling of application containers across a cluster in a more efficient way.</b> Kubernetes is an <a href="https://github.com/kubernetes/kubernetes">open-source</a> platform and is production-ready.
</p>
<p>A Kubernetes cluster consists of two types of resources:
<ul>
<li>The <b>Master</b> coordinates the cluster</li>
<li><b>Nodes</b> are the workers that run applications</li>
</ul>
</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Kubernetes cluster</li>
<li>Minikube</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters.
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Cluster Diagram</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_01_cluster.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p><b>The Master is responsible for managing the cluster.</b> The master coordinates all activity in your cluster, such as scheduling applications, maintaining applications' desired state, scaling applications, and rolling out new updates.</p>
<p><b>A node is a VM or a physical computer that serves as a worker machine in a Kubernetes cluster.</b> Each node has a Kubelet, which is an agent for managing the node and communicating with the Kubernetes master. The node should also have tools for handling container operations, such as Docker or rkt. A Kubernetes cluster that handles production traffic should have a minimum of three nodes.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Masters manage the cluster and the nodes are used to host the running applications. </i></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>When you deploy applications on Kubernetes, you tell the master to start the application containers. The master schedules the containers to run on the cluster's nodes. <b>The nodes communicate with the master using the Kubernetes API</b>, which the master exposes. End users can also use the Kubernetes API directly to interact with the cluster.</p>
<p>A Kubernetes cluster can be deployed on either physical or virtual machines. To get started with Kubernetes development, you can use <a href="https://github.com/kubernetes/minikube">minikube</a>. Minikube is a is a lightweight Kubernetes implementation that creates a VM on your local machine and deploys a simple cluster containing only one node. Minikube is available for Linux, Mac OS and Windows systems. The minikube CLI provides basic bootstrapping operations for working with your cluster, including start, stop, status, and delete. For this bootcamp, however, you'll use a provided online terminal with minikube pre-installed.</p>
<p>Now that you know what Kubernetes is, lets go to the online tutorial and start our first cluster!</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/cluster-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,47 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i>learn what a Kubernetes cluster is</i></li>
<li><i>learn what <a href="https://github.com/kubernetes/minikube">minikube</a> is</i></li>
<li><i>start a Kubernetes cluster using an online terminal</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_01.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
Before you do this tutorial, you should be familiar with Linux containers.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/cluster-intro.html" role="button">Start Module 1 <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,52 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/cluster-interactive.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i>Learn about application Deployments</i></li>
<li><i>Deploy your first app on Kubernetes with Kubectl</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_02.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
How to <a href="/docs/tutorials/getting-started/create-cluster.html">start a Kubernetes cluster</a> with minikube <br>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/deploy-intro.html" role="button">Start Module 2 <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,43 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/deploy-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/7" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/explore-app.html" role="button">Continue to Module 3<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,106 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/deploy-app.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<p>
Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it. To do so, you create a Kubernetes <b>Deployment</b>. The Deployment is responsible for creating and updating instances of your application. Once you've created a Deployment, the Kubernetes master schedules the application instances that the Deployment creates onto individual Nodes in the cluster.
</p>
<p>Once the application instances are created, a Kubernetes Deployment Controller continuously monitors those instances. The Deployment controller replaces an instance if the Node hosting it goes down or it is deleted. <b>This provides a self-healing mechanism to address machine failure or maintenance.</b></p>
<p>In a pre-orchestration world, installation scripts would often be used to start applications, but they did not allow recovery from machine failure. By both creating your application instances and keeping them running across Nodes, Kubernetes Deployments provide a fundamentally different approach to application management. </p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Deployments</li>
<li>Kubectl</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
A Deployment is responsible for creating and updating instances of your application
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Deploying your first app on Kubernetes</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_02_first_app.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>You can create and manage a Deployment by using the Kubernetes command line interface, <b>Kubectl</b>. Kubectl uses the Kubernetes API to interact with the cluster. In this module, you'll learn the most common Kubectl commands needed to create Deployments that run your applications on a Kubernetes cluster.</p>
<p>When you create a Deployment, you'll need to specify the container image for your application and the number of replicas that you want to run. You can change that information later by updating your Deployment; Modules <a href="5-0.html">5</a> and <a href="5-0.html">6</a> of the bootcamp discuss how you can update your Deployments.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Applications need to be packaged into one of the supported container formats in order to be deployed on Kubernetes </i></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>For our first Deployment, well use a <a href="https://nodejs.org">NodeJS</a> application packaged in a Docker container. The source code and the Dockerfile are available in the <a href="https://github.com/kubernetes/kubernetes-bootcamp">GitHub repository</a> for the Kubernetes Bootcamp.</p>
<p>Now that you know what Deployments are, lets go to the online tutorial and deploy our first app!</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/deploy-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,53 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/deploy-interactive.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i>Learn about Kubernetes <a href="http://kubernetes.io/docs/user-guide/pods/">Pods</a></i></li>
<li><i>Learn about Kubernetes <a href="https://github.com/kubernetes/kubernetes/blob/master/docs/admin/node.md">Nodes</a></i></li>
<li><i>Troubleshoot deployed applications</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_03.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
What are <a href="/docs/tutorials/getting-started/deploy-app.html">Deployments</a> <br>
How to deploy applications on Kubernetes
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/explore-intro.html" role="button">Start Module 3 <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,43 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/explore-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/4" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/expose-app.html" role="button">Continue to Module 4<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,140 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/explore-app.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<h2>Pods</h2>
<p>When you created a Deployment in Module <a href="/docs/tutorials/getting-started/deploy-app.html">2</a>, Kubernetes created a <b>Pod</b> to host your application instance. A Pod is Kubernetes abstraction that represents a group of one or more application containers (such as Docker or rkt), and some shared resources for those containers. Those resources include:</p>
<ul>
<li>Shared storage, as Volumes</li>
<li>Networking, as a unique cluster IP address</li>
<li>Information about how to run each container, such as the container image version or specific ports to use</li>
</ul>
<p>A Pod models an application-specific “logical host” and can contain different application containers which are relatively tightly coupled. For example, a Pod might include both the container with your Node.js app as well as a different container that feeds the data to be published by the Node.js webserver. The containers in a Pod share an IP Address and port space, are always co-located and co-scheduled, and run in a shared context on the same Node.</p>
<p>Pods are the atomic unit on the Kubernetes platform. When we create a Deployment on Kubernetes, that Deployment creates Pods with containers inside them (as opposed to creating containers directly). Each Pod is tied to the Node where it is scheduled, and remains there until termination (according to restart policy) or deletion. In case of a Node failure, identical Pods are scheduled on other available Nodes in the cluster.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Pods</li>
<li>Nodes</li>
<li>Kubectl main commands</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
A Pod is a group of one or more application containers (such as Docker or rkt) and includes shared storage (volumes), IP address and information about how to run them.
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Pods overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_03_pods.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2>Nodes</h2>
<p>A Pod always runs on a <b>Node</b>. A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster. Each Node is managed by the Master. A Node can have multiple pods, and the Kubernetes master automatically handles scheduling the pods across the Nodes in the cluster. The Master's automatic scheduling takes into account the available resources on each Node.</p>
<p>Every Kubernetes Node runs at least:</p>
<ul>
<li>Kubelet, a process responsible for communication between the Kubernetes Master and the Nodes; it manages the Pods and the containers running on a machine.</li>
<li>A container runtime (like Docker, rkt) responsible for pulling the container image from a registry, unpacking the container, and running the application.</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Containers should only be scheduled together in a single Pod if they are tightly coupled and need to share resources such as disk. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Node overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_03_nodes.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2>Troubleshooting with kubectl</h2>
<p>In Module <a href="2-0.html">2</a>, you used Kubectl command-line interface. You'll continue to use it in Module 3 to get information about deployed applications and their environments. The most common operations can be done with the following kubectl commands:</p>
<ul>
<li><b>kubectl get</b> - list resources</li>
<li><b>kubectl describe</b> - show detailed information about a resource</li>
<li><b>kubectl logs</b> - print the logs from a container in a pod</li>
<li><b>kubectl exec</b> - execute a command on a container in a pod</li>
</ul>
<p>You can use these commands to see when applications were deployed, what their current status is, where they are running and what their configuration is.</p>
<p>Now that we know more about our cluster components and the command line, lets explore our application.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> A node is a worker machine in Kubernetes and may be a VM or physical machine, depending on the cluster. Multiple Pods can run on one Node. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/explore-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,54 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/explore-interactive.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i><a href="http://kubernetes.io/docs/user-guide/services">Services</a></i></li>
<li><i>Learn about Kubernetes <a href="http://kubernetes.io/docs/user-guide/labels">Labels</a></i></li>
<li><i>Exposing applications outside Kubernetes</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_04.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
How to <a href="/docs/tutorials/getting-started/deploy-app.html">deploy apps</a> on Kubernetes<br>
How to <a href="/docs/tutorials/getting-started/explore-app.html"> troubleshoot </a> applications with Kubectl
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/expose-intro.html" role="button">Start Module 4 <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,41 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/expose-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/8" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/scale-app.html" role="button">Continue to Module 5<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,134 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/explore-app.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<p>While Pods do have their own unique IP across the cluster, those IPs are not exposed outside Kubernetes. Taking into account that over time Pods may be terminated, deleted or replaced by other Pods, we need a way to let other Pods and applications automatically discover each other. Kubernetes addresses this by grouping Pods in Services. A Kubernetes <b>Service</b> is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.</p>
<p>This abstraction will allow us to expose Pods to traffic originating from outside the cluster. Services have their own unique cluster-private IP address and expose a port to receive traffic. If you choose to expose the service outside the cluster, the options are:</p>
<ul>
<li>LoadBalancer - provides a public IP address (what you would typically use when you run Kubernetes on GKE or AWS)</li>
<li>NodePort - exposes the Service on the same port on each Node of the cluster using NAT (available on all Kubernetes clusters, and in Minikube)</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Exposing Pods to external traffic</li>
<li>Load balancing traffic across multiple Pods</li>
<li>Using labels</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>
A Kubernetes Service is an abstraction layer which defines a logical set of Pods and enables external traffic exposure, load balancing and service discovery for those Pods.
</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Services overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_04_services.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>A Service provides load balancing of traffic across the contained set of Pods. This is useful when a service is created to group all Pods from a specific Deployment (our application will make use of this in the next module, when well have multiple instances running).</p>
<p>Services are also responsible for service-discovery within the cluster (covered in Module 6). This will for example allow a frontend service (like a web server) to receive traffic from a backend service (like a database) without worrying about Pods.</p>
<p>Services match a set of Pods using Label Selectors, a grouping primitive that allows logical operation on Labels.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> You can create a Service when you start a Deployment by adding --expose as a parameter for the kubectl run command </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p><b>Labels</b> are key/value pairs that are attached to objects, such as Pods and you can think of them as hashtags from social media. They are used to organize related objects in a way meaningful to the users like:</p>
<ul>
<li>Production environment (production, test, dev)</li>
<li>Application version (beta, v1.3)</li>
<li>Type of service/server (frontend, backend, database)</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i> Labels are key/value pairs that are attached to objects </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Labels</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p><img src="/docs/tutorials/getting-started/public/images/module_04_labels.svg"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Labels can be attached to objects at the creation time or later and can be modified at any time.
The kubectl run command sets some default Labels/Label Selectors on the new Pods/ Deployment. The link between Labels and Label Selectors defines the relationship between the Deployment and the Pods it creates.</p>
<p>Lets expose now our application with the help of a Service, and apply some new Labels.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/expose-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
+97
View File
@@ -0,0 +1,97 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="./public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-9">
<h2>Getting Started with Kubernetes</h2>
<p><i style="color: #3771e3;">By the end of this tutorial you will understand what Kubernetes does. You will also learn how to deploy, scale, update and debug containerized applications on a Kubernetes cluster using an interactive online terminal.</i></p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-9">
<h2>Why Kubernetes?</h2>
<p>Today users expect applications to be available 24/7, while developers expect to deploy new versions of those applications several times a day. The way we build software is moving in this direction, enabling applications to be released and updated in an easy and fast way without downtime. We also need to be able to scale application in line with the user demand and we expect them to make intelligent use of the available resources. <a href="http://kubernetes.io/docs/whatisk8s/">Kubernetes</a> is a platform designed to meet those requirements, using the experience accumulated by Google in this area, combined with best-of-breed ideas from the community.</p>
</div>
</div>
<div class="content__modules">
<h2>Getting Started Modules</h2>
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/create-cluster.html"><img src="./public/images/module_01.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="1-0.html"><h5>1. Create a Kubernetes cluster</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/deploy-app.html"><img src="./public/images/module_02.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="2-0.html"><h5>2. Deploy an app</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/explore-app.html"><img src="./public/images/module_03.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="3-0.html"><h5>3. Explore your app</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/expose-app.html"><img src="./public/images/module_04.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="4-0.html"><h5>4. Expose your app publicly</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/scale-app.html"><img src="./public/images/module_05.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="5-0.html"><h5>5. Scale up your app</h5></a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<a href="/docs/tutorials/getting-started/update-app.html"><img src="./public/images/module_06.svg?v=1469803628347" alt=""></a>
<div class="caption">
<a href="6-0.html"><h5>6. Update your app</h5></a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/create-cluster.html" role="button">Start the tutorial<span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.3 KiB

@@ -0,0 +1 @@
<svg id="Graphics" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><style>.cls-1,.cls-4{fill:#326de6}.cls-2,.cls-3{fill:#fff;stroke-miterlimit:10}.cls-2{stroke:#326de6;stroke-width:1.91px}.cls-3{stroke:#06f7c9;stroke-width:3px}.cls-4{opacity:.08}</style></defs><title>16.07.28_K8S_badge</title><path class="cls-1" d="M114.41 248.61l-15.46-25.8-30.21 3.72 57.48-118.88 45.67 22.08-57.48 118.88z"/><path class="cls-1" d="M185.59 248.61l16.1-26.23 29.57 4.15-57.48-118.88-45.67 22.08 57.48 118.88z"/><path class="cls-2" d="M151.86 51.93l55.48 32a4 4 0 0 1 2 3.49v64.08a4 4 0 0 1-2 3.49l-55.48 32a4 4 0 0 1-4 0L92.36 155a4 4 0 0 1-2-3.49V87.45a4 4 0 0 1 2-3.49l55.48-32a4 4 0 0 1 4.02-.03z"/><path class="cls-3" d="M149.85 184.56a1 1 0 0 1-.51-.14l-55.48-32a1 1 0 0 1-.51-.89V87.45a1 1 0 0 1 .51-.89l55.48-32a1 1 0 0 1 1 0l55.48 32a1 1 0 0 1 .51.89v64.06a1 1 0 0 1-.51.89l-55.48 32a1 1 0 0 1-.49.16z"/><path class="cls-4" d="M156.79 66.47l42.89 24.76a4 4 0 0 1 2 3.49v49.52a4 4 0 0 1-2 3.49l-42.89 24.76a4 4 0 0 1-4 0v-106a4 4 0 0 1 4-.02z"/><path class="cls-1" d="M163.15 109.57L151.7 103a.67.67 0 0 1-.34-.58V89.16a.67.67 0 0 1 .34-.58L163.15 82a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58l-11.45 6.61a.67.67 0 0 1-.67-.03zM135.61 125.89l-12.12 7-12.12-7V111.9l12.12-7 12.12 7v13.99zM137 109.76l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM136.82 156l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM163.29 155.82l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58L164 155.82a.67.67 0 0 1-.71 0zM188.74 126.08l-11.45 6.61a.67.67 0 0 1-.67 0l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM150.96 119.57h-1.58M158.99 121.34l-1.04-4.55-.7-3.06-4.19-2.01-2.84-1.37-7.01 3.37-.02.01-.86 3.8-.67 2.95-.2.86 2.05 2.57.37.47 2.44 3.06h7.8l1.84-2.31.59-.74 2.44-3.05z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.4 KiB

@@ -0,0 +1 @@
<svg id="Graphics" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><style>.cls-1,.cls-4{fill:#326de6}.cls-2,.cls-3{fill:#fff;stroke-miterlimit:10}.cls-2{stroke:#326de6;stroke-width:1.91px}.cls-3{stroke:#06f7c9;stroke-width:3px}.cls-4{opacity:.08}</style></defs><title>16.07.28_K8S_badge</title><path class="cls-1" d="M114.41 248.61l-15.46-25.8-30.21 3.72 57.48-118.88 45.67 22.08-57.48 118.88z"/><path class="cls-1" d="M185.59 248.61l16.1-26.23 29.57 4.15-57.48-118.88-45.67 22.08 57.48 118.88z"/><path class="cls-2" d="M151.86 51.93l55.48 32a4 4 0 0 1 2 3.49v64.08a4 4 0 0 1-2 3.49l-55.48 32a4 4 0 0 1-4 0L92.36 155a4 4 0 0 1-2-3.49V87.45a4 4 0 0 1 2-3.49l55.48-32a4 4 0 0 1 4.02-.03z"/><path class="cls-3" d="M149.85 184.56a1 1 0 0 1-.51-.14l-55.48-32a1 1 0 0 1-.51-.89V87.45a1 1 0 0 1 .51-.89l55.48-32a1 1 0 0 1 1 0l55.48 32a1 1 0 0 1 .51.89v64.06a1 1 0 0 1-.51.89l-55.48 32a1 1 0 0 1-.49.16z"/><path class="cls-4" d="M156.79 66.47l42.89 24.76a4 4 0 0 1 2 3.49v49.52a4 4 0 0 1-2 3.49l-42.89 24.76a4 4 0 0 1-4 0v-106a4 4 0 0 1 4-.02z"/><path class="cls-1" d="M163.15 109.57L151.7 103a.67.67 0 0 1-.34-.58V89.16a.67.67 0 0 1 .34-.58L163.15 82a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58l-11.45 6.61a.67.67 0 0 1-.67-.03zM135.61 125.89l-12.12 7-12.12-7V111.9l12.12-7 12.12 7v13.99zM137 109.76l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM136.82 156l-12.12-7v-14l12.12-7 11.78 6.8a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM163.29 155.82l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58L164 155.82a.67.67 0 0 1-.71 0zM188.74 126.08l-11.45 6.61a.67.67 0 0 1-.67 0l-11.45-6.61a.67.67 0 0 1-.34-.58v-13.22a.67.67 0 0 1 .34-.58l11.45-6.61a.67.67 0 0 1 .67 0l11.45 6.61a.67.67 0 0 1 .34.58v13.22a.67.67 0 0 1-.34.58zM150.96 119.57h-1.58M158.99 121.34l-1.04-4.55-.7-3.06-4.19-2.01-2.84-1.37-7.01 3.37-.02.01-.86 3.8-.67 2.95-.2.86 2.05 2.57.37.47 2.44 3.06h7.8l1.84-2.31.59-.74 2.44-3.05z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#326de6}.cls-2{fill:none;stroke:#326de6;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px}</style></defs><title>16.07.27_K8S_like_dislike</title><g id="Likes_dislikes"><circle class="cls-1" cx="35.64" cy="43.62" r="2.77" transform="rotate(-76.32 35.639 43.618)"/><path class="cls-2" d="M50.75 79.34a7.07 7.07 0 0 0 5.38-.5l18.24-11a7.07 7.07 0 0 0 3-4.52l2.79-21.1a7.07 7.07 0 0 0-1.69-5.14l-14.79-15.3a7.07 7.07 0 0 0-5.07-1.88l-21.19 2a7.07 7.07 0 0 0-4.63 2.79L21.13 42.45a7.07 7.07 0 0 0-.71 5.36L27.06 68a7.07 7.07 0 0 0 3.75 3.9z"/><path class="cls-2" d="M25 58.13a11 11 0 0 1 10-.33c5.19 2.64 5.65 8.41 5.67 8.67"/></g></svg>

After

Width:  |  Height:  |  Size: 729 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.cls-1{fill:#326de6}.cls-2{fill:#fff}</style></defs><title>16.07.27_K8S_like_dislike</title><g id="Likes_dislikes"><path class="cls-1" d="M49.25 79.34a7.07 7.07 0 0 1-5.38-.5l-18.24-11a7.07 7.07 0 0 1-3-4.52l-2.79-21.1a7.07 7.07 0 0 1 1.69-5.14l14.79-15.3a7.07 7.07 0 0 1 5.07-1.88l21.19 2a7.07 7.07 0 0 1 4.63 2.79l11.67 17.8a7.07 7.07 0 0 1 .71 5.36L72.94 68a7.07 7.07 0 0 1-3.75 3.9z"/><path class="cls-2" d="M74.62 62.94a13.21 13.21 0 0 1-3.86.6 11.3 11.3 0 0 1-5.17-1.23c-6-3-6.47-9.64-6.48-9.91a1.5 1.5 0 1 1 3-.18s.39 5.15 4.85 7.42a9.44 9.44 0 0 0 8.56-.29 1.5 1.5 0 0 1 .34-.15"/><circle class="cls-2" cx="65.23" cy="42.52" r="2.77" transform="rotate(-76.32 65.24 42.516)"/></g></svg>

After

Width:  |  Height:  |  Size: 768 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{opacity:0.13;}.cls-2{fill:url(#linear-gradient);}.cls-3,.cls-4{fill:#fff;stroke:#326de6;stroke-linecap:round;stroke-linejoin:round;}.cls-3{stroke-width:0.8px;}.cls-4{stroke-width:1.2px;}</style><linearGradient id="linear-gradient" x1="86.51" y1="100" x2="263.49" y2="100" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#06f7c9"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><g class="cls-1"><polygon class="cls-2" points="245.97 47.9 263.49 124.69 214.38 186.27 135.62 186.27 86.51 124.69 104.03 47.9 175 13.73 245.97 47.9"/></g><polygon class="cls-3" points="197.46 86.54 176.94 74.69 176.94 51 197.46 39.15 217.98 51 217.98 74.69 197.46 86.54"/><polygon class="cls-3" points="150.26 113.85 129.74 125.69 109.22 113.85 109.22 90.16 129.74 78.31 150.26 90.16 150.26 113.85"/><polygon class="cls-3" points="152.54 86.54 132.02 74.69 132.02 51 152.54 39.15 173.06 51 173.06 74.69 152.54 86.54"/><polygon class="cls-3" points="152.31 164.85 131.79 153 131.79 129.31 152.31 117.46 172.83 129.31 172.83 153 152.31 164.85"/><polygon class="cls-3" points="197.69 164.85 177.17 153 177.17 129.31 197.69 117.46 218.21 129.31 218.21 153 197.69 164.85"/><polygon class="cls-3" points="240.78 113.85 220.26 125.69 199.74 113.85 199.74 90.16 220.26 78.31 240.78 90.16 240.78 113.85"/><line class="cls-4" x1="174.91" y1="101.81" x2="174.91" y2="104.53"/><line class="cls-4" x1="176.27" y1="103.17" x2="173.55" y2="103.17"/><polygon class="cls-4" points="190.13 106.22 188.34 98.37 187.13 93.09 187.13 93.09 187.13 93.09 187.14 93.09 187.13 93.09 187.13 93.09 179.91 89.61 175 87.25 175 87.25 175 87.25 175 87.25 162.89 93.08 162.87 93.09 162.87 93.09 162.87 93.09 162.87 93.09 161.37 99.66 161.37 99.66 161.37 99.66 161.37 99.66 160.21 104.74 159.87 106.22 159.87 106.22 159.87 106.22 159.87 106.22 163.42 110.67 164.05 111.47 164.05 111.47 168.27 116.75 168.27 116.75 168.27 116.75 168.27 116.75 168.27 116.75 175 116.75 175 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 181.73 116.75 184.91 112.77 185.93 111.49 185.93 111.49 190.13 106.22 190.13 106.22 190.13 106.22 190.13 106.22"/></g></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -0,0 +1,467 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 476.1 385.3" style="enable-background:new 0 0 476.1 385.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{opacity:0.71;fill:#326CE6;}
.st4{opacity:0.45;fill:#FFFFFF;}
.st5{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st6{fill:#006DE9;}
.st7{fill:#A0CAEA;}
.st8{fill:#FFFFFF;}
.st9{opacity:0.13;}
.st10{fill:url(#SVGID_1_);}
.st11{fill:url(#SVGID_2_);}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="master_x5F_level1_1_" viewBox="-68.6 -66.9 137.2 133.9">
<g>
<g>
<line class="st0" x1="0" y1="-11.1" x2="0" y2="0.7"/>
<line class="st0" x1="5.9" y1="-5.2" x2="-5.9" y2="-5.2"/>
</g>
<polygon class="st1" points="-29.2,-63.9 -65.6,-18.3 -52.6,38.6 0,63.9 52.6,38.6 65.6,-18.3 29.2,-63.9 "/>
</g>
</symbol>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st2" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st3" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st4" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st5" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st6" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st7" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st8" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st8" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
<g id="XMLID_296_" class="st9">
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="28.6348" y1="185.2931" x2="343.0902" y2="185.2931">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<polygon class="st10" points="311.9,92.7 343.1,229.2 255.8,338.6 115.9,338.6 28.6,229.2 59.8,92.7 185.9,32 "/>
</g>
</g>
</g>
<g id="master">
<use xlink:href="#master_x5F_level1_1_" width="137.2" height="133.9" x="-68.6" y="-66.9" transform="matrix(0.4 0 0 -0.4 185.8606 187.2514)" style="overflow:visible;"/>
<g id="master_x5F_level1">
</g>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<polygon class="st16" points="182.7,139.9 147.1,160.4 111.4,139.9 111.4,98.7 147.1,78.2 182.7,98.7 "/>
<polygon class="st13" points="129.3,150.2 147.1,160.4 182.7,139.9 182.7,119.3 "/>
<polygon class="st7" points="163.5,147.7 157.4,137.2 179.9,124.2 179.9,138.3 "/>
<g>
<path class="st8" d="M162.5,139.3c0.4-0.3,0.9-0.3,1.3-0.2c0.4,0.1,0.8,0.4,1,0.8l0.3,0.5c0.3,0.4,0.3,0.9,0.2,1.3
c-0.1,0.4-0.4,0.8-0.8,1l-1.4,0.8l-0.2-0.3l0.3-0.3l-1.6-2.7l-0.4,0.2l-0.2-0.3l0.4-0.2L162.5,139.3z M162.1,140l1.6,2.7l0.6-0.3
c0.3-0.2,0.5-0.4,0.6-0.8c0.1-0.3,0-0.6-0.2-1l-0.3-0.5c-0.2-0.3-0.4-0.5-0.7-0.6c-0.3-0.1-0.6-0.1-0.9,0.1L162.1,140z"/>
<path class="st8" d="M165.7,140.3c-0.2-0.4-0.3-0.8-0.2-1.1c0.1-0.4,0.3-0.6,0.6-0.9c0.4-0.2,0.7-0.2,1.1-0.1
c0.3,0.1,0.6,0.4,0.9,0.8l0,0.1c0.2,0.4,0.3,0.8,0.2,1.1c-0.1,0.4-0.3,0.6-0.6,0.8c-0.4,0.2-0.7,0.2-1.1,0.1
C166.2,141,165.9,140.8,165.7,140.3L165.7,140.3z M166.2,140.1c0.2,0.3,0.3,0.5,0.6,0.6c0.2,0.1,0.4,0.1,0.7,0
c0.2-0.1,0.3-0.3,0.4-0.6c0-0.2-0.1-0.5-0.2-0.8l0-0.1c-0.2-0.3-0.3-0.5-0.6-0.6c-0.2-0.1-0.4-0.1-0.7,0c-0.2,0.1-0.3,0.3-0.4,0.6
C165.9,139.5,166,139.8,166.2,140.1L166.2,140.1z"/>
<path class="st8" d="M170.1,139.1c0.2-0.1,0.3-0.2,0.3-0.4c0.1-0.2,0.1-0.3,0-0.5l0.4-0.2l0,0c0.1,0.2,0.2,0.5,0,0.8
c-0.1,0.3-0.3,0.5-0.6,0.7c-0.4,0.2-0.7,0.3-1.1,0.1c-0.3-0.1-0.6-0.4-0.8-0.7l-0.1-0.1c-0.2-0.4-0.3-0.7-0.2-1.1s0.3-0.6,0.6-0.9
c0.2-0.1,0.4-0.2,0.6-0.2c0.2,0,0.4,0,0.6,0l0.3,0.6l-0.4,0.2l-0.3-0.3c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0.1-0.3,0.1
c-0.2,0.1-0.4,0.3-0.4,0.6c0,0.2,0.1,0.5,0.2,0.7l0.1,0.1c0.2,0.3,0.3,0.5,0.5,0.6C169.7,139.2,169.9,139.2,170.1,139.1z"/>
<path class="st8" d="M169.8,135.2l-0.2-0.3l0.9-0.5l1.2,2.1l0.3-0.2l0.2-1l-0.3,0.1l-0.2-0.3l1.1-0.6l0.2,0.3l-0.3,0.2l-0.2,1.2
l1.4,0.6l0.3-0.1l0.2,0.3l-1.1,0.6l-0.2-0.3l0.2-0.2l-1.2-0.5l-0.3,0.2l0.5,0.8l0.4-0.2l0.2,0.3l-1.2,0.7l-0.2-0.3l0.3-0.3l-1.7-3
L169.8,135.2z"/>
<path class="st8" d="M175.9,136.3c-0.4,0.2-0.7,0.3-1.1,0.1s-0.6-0.4-0.9-0.7l-0.1-0.1c-0.2-0.4-0.3-0.7-0.2-1.1
c0.1-0.4,0.3-0.6,0.6-0.8c0.3-0.2,0.7-0.2,1-0.1s0.5,0.3,0.7,0.7l0.2,0.3l-1.7,1l0,0c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.4,0.1,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.2-0.2,0.2-0.4l0.4,0.2c0,0.1-0.1,0.3-0.2,0.4
C176.3,136,176.1,136.1,175.9,136.3z M174.5,134c-0.2,0.1-0.3,0.2-0.3,0.4s0,0.4,0.1,0.6l0,0l1.2-0.7l0-0.1
c-0.1-0.2-0.2-0.3-0.4-0.4C174.9,133.9,174.7,133.9,174.5,134z"/>
<path class="st8" d="M176,133.1l-0.2-0.3l0.8-0.5l0.3,0.3c0-0.2,0-0.3,0.1-0.5c0.1-0.1,0.2-0.2,0.3-0.3c0,0,0.1,0,0.1-0.1
c0,0,0.1,0,0.1,0l0.2,0.5l-0.3,0.1c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.2-0.1,0.4l0.8,1.5l0.4-0.2l0.2,0.3l-1.2,0.7l-0.2-0.3
l0.3-0.3l-1.1-1.8L176,133.1z"/>
</g>
<g>
<path class="st8" d="M141.1,151.8l-0.2-0.3l0.9-0.5l1.2,2.1l0.3-0.2l0.2-1l-0.3,0.1l-0.2-0.3l1.1-0.6l0.2,0.3l-0.3,0.2l-0.2,1.2
l1.4,0.6l0.3-0.1l0.2,0.3l-1.1,0.6l-0.2-0.3l0.2-0.2l-1.2-0.5l-0.3,0.2l0.5,0.8l0.4-0.2l0.2,0.3l-1.2,0.7l-0.2-0.3l0.3-0.3l-1.7-3
L141.1,151.8z"/>
<path class="st8" d="M147.6,152c0,0.2,0,0.3-0.1,0.5c-0.1,0.1-0.2,0.3-0.4,0.4c-0.3,0.2-0.5,0.2-0.8,0.1c-0.3-0.1-0.5-0.3-0.7-0.7
l-0.7-1.1l-0.3,0.1l-0.2-0.3l0.3-0.2l0.5-0.3l0.9,1.5c0.2,0.3,0.3,0.4,0.4,0.5s0.3,0,0.5-0.1c0.2-0.1,0.3-0.2,0.4-0.3
c0.1-0.1,0.1-0.3,0.1-0.4l-0.9-1.5l-0.4,0.1L146,150l0.3-0.2l0.5-0.3l1.3,2.2l0.3-0.1l0.2,0.3l-0.7,0.4L147.6,152z"/>
<path class="st8" d="M150.6,149.2c0.2,0.4,0.3,0.7,0.2,1c0,0.3-0.2,0.6-0.5,0.8c-0.2,0.1-0.3,0.1-0.5,0.2c-0.2,0-0.3,0-0.5-0.1
l0.1,0.4l-0.4,0.2l-1.9-3.3l-0.4,0.2l-0.2-0.3l0.9-0.5l0.8,1.4c0-0.2,0.1-0.3,0.1-0.4c0.1-0.1,0.2-0.2,0.4-0.3
c0.3-0.2,0.6-0.2,1,0S150.4,148.7,150.6,149.2L150.6,149.2z M150.1,149.4c-0.2-0.3-0.4-0.5-0.6-0.6c-0.2-0.1-0.4-0.1-0.7,0
c-0.1,0.1-0.2,0.2-0.3,0.3c-0.1,0.1-0.1,0.3-0.1,0.4l0.7,1.1c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.4-0.1
c0.2-0.1,0.3-0.3,0.4-0.5C150.4,149.9,150.3,149.7,150.1,149.4L150.1,149.4z"/>
<path class="st8" d="M153,149.5c-0.4,0.2-0.7,0.3-1.1,0.1s-0.6-0.4-0.9-0.7l-0.1-0.1c-0.2-0.4-0.3-0.7-0.2-1.1
c0.1-0.4,0.3-0.6,0.6-0.8c0.3-0.2,0.7-0.2,1-0.1s0.5,0.3,0.7,0.7l0.2,0.3l-1.7,1v0c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.4,0.1,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.2-0.2,0.2-0.4l0.4,0.2c0,0.1-0.1,0.3-0.2,0.4S153.2,149.3,153,149.5z
M151.6,147.2c-0.2,0.1-0.3,0.2-0.3,0.4c0,0.2,0,0.4,0.1,0.6l0,0l1.2-0.7l0-0.1c-0.1-0.2-0.2-0.3-0.4-0.4S151.8,147.1,151.6,147.2
z"/>
<path class="st8" d="M152.4,145.2l-0.2-0.3l0.9-0.5l1.9,3.3l0.4-0.2l0.2,0.3l-1.2,0.7l-0.2-0.3l0.3-0.3l-1.7-3L152.4,145.2z"/>
<path class="st8" d="M157.1,147.1c-0.4,0.2-0.7,0.3-1.1,0.1s-0.6-0.4-0.9-0.7l-0.1-0.1c-0.2-0.4-0.3-0.7-0.2-1.1
c0.1-0.4,0.3-0.6,0.6-0.8c0.3-0.2,0.7-0.2,1-0.1s0.5,0.3,0.7,0.7l0.2,0.3l-1.7,1v0c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.4,0.1,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3c0.1-0.1,0.2-0.2,0.2-0.4l0.4,0.2c0,0.1-0.1,0.3-0.2,0.4S157.3,147,157.1,147.1z
M155.7,144.8c-0.2,0.1-0.3,0.2-0.3,0.4s0,0.4,0.1,0.6l0,0l1.2-0.7l0-0.1c-0.1-0.2-0.2-0.3-0.4-0.4
C156.1,144.7,155.9,144.7,155.7,144.8z"/>
<path class="st8" d="M157.5,142.6l0.4,0.6l0.5-0.3l0.2,0.3l-0.5,0.3l0.9,1.6c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2,0,0.2,0
c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1l0.2,0.3c0,0.1-0.1,0.1-0.2,0.2c-0.1,0.1-0.2,0.1-0.2,0.2c-0.2,0.1-0.4,0.1-0.6,0.1
c-0.2,0-0.3-0.2-0.5-0.4l-0.9-1.6l-0.4,0.2l-0.2-0.3l0.4-0.2l-0.4-0.6L157.5,142.6z"/>
</g>
<polygon class="st16" points="225.1,160.4 189.4,139.9 189.4,98.7 225.1,78.2 260.7,98.7 260.7,139.9 "/>
<polygon class="st13" points="189.4,119.3 189.4,139.9 225.1,160.4 242.9,150.2 "/>
<polygon class="st7" points="208.7,147.7 214.8,137.2 237.3,150.2 225.1,157.2 "/>
<g>
<path class="st8" d="M215.5,142.6c0.5,0.3,0.7,0.6,0.8,1c0.1,0.4,0,0.9-0.2,1.3l-0.3,0.5c-0.3,0.4-0.6,0.7-1,0.8
c-0.4,0.1-0.9,0-1.3-0.2l-1.4-0.8l0.2-0.3l0.4,0.2l1.6-2.7l-0.3-0.3l0.2-0.3l0.4,0.2L215.5,142.6z M214.7,142.6l-1.6,2.7l0.6,0.3
c0.3,0.2,0.6,0.2,0.9,0.1c0.3-0.1,0.6-0.3,0.7-0.6l0.3-0.5c0.2-0.3,0.2-0.6,0.2-1c-0.1-0.3-0.3-0.6-0.6-0.8L214.7,142.6z"/>
<path class="st8" d="M216.2,145.9c0.2-0.4,0.5-0.6,0.8-0.8c0.3-0.1,0.7-0.1,1,0.1c0.4,0.2,0.6,0.5,0.6,0.9c0.1,0.4,0,0.7-0.2,1.1
l0,0.1c-0.2,0.4-0.5,0.6-0.8,0.8c-0.3,0.1-0.7,0.1-1-0.1c-0.4-0.2-0.6-0.5-0.6-0.9C215.9,146.7,216,146.3,216.2,145.9L216.2,145.9
z M216.7,146.2c-0.2,0.3-0.2,0.5-0.2,0.8c0,0.2,0.1,0.4,0.4,0.6c0.2,0.1,0.4,0.1,0.7,0c0.2-0.1,0.4-0.3,0.6-0.6l0-0.1
c0.2-0.3,0.2-0.5,0.2-0.8c0-0.2-0.1-0.4-0.4-0.6c-0.2-0.1-0.4-0.1-0.7,0C217,145.7,216.8,145.9,216.7,146.2L216.7,146.2z"/>
<path class="st8" d="M219.5,149.1c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3-0.1,0.4-0.2l0.4,0.2l0,0c-0.1,0.2-0.3,0.4-0.6,0.4
c-0.3,0.1-0.6,0-0.9-0.2c-0.4-0.2-0.6-0.5-0.6-0.9c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.8-0.7s0.7-0.1,1.1,0.1
c0.2,0.1,0.4,0.3,0.5,0.4s0.2,0.3,0.2,0.5l-0.3,0.6l-0.4-0.2l0.1-0.5c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.2
c-0.2-0.1-0.5-0.2-0.7,0c-0.2,0.1-0.4,0.3-0.5,0.6l-0.1,0.1c-0.2,0.3-0.2,0.5-0.2,0.7C219.2,148.8,219.3,149,219.5,149.1z"/>
<path class="st8" d="M222.7,146.8l0.2-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9-0.4l-0.2-0.2l0.2-0.3l1.1,0.6l-0.2,0.3l-0.3-0.1l-1.1,0.4
l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1-0.6l0.2-0.3l0.3,0.1l-0.2-1.2l-0.3-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3
L222.7,146.8z"/>
<path class="st8" d="M224.8,152.7c-0.4-0.2-0.6-0.5-0.6-0.8s0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7s0.7-0.1,1,0.1
c0.3,0.2,0.5,0.5,0.6,0.8c0.1,0.3,0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7c0,0.2,0.2,0.4,0.4,0.5
c0.2,0.1,0.3,0.1,0.5,0.2c0.1,0,0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0S225.1,152.8,224.8,152.7z M226.1,150.3
c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.4,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C226.4,150.6,226.3,150.4,226.1,150.3z"/>
<path class="st8" d="M227.6,151.2l0.2-0.3l0.8,0.5l-0.2,0.4c0.1-0.1,0.3-0.1,0.4-0.2c0.1,0,0.3,0,0.4,0.1c0,0,0.1,0,0.1,0.1
c0,0,0.1,0.1,0.1,0.1l-0.3,0.4l-0.3-0.2c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.2,0.1-0.3,0.1l-0.8,1.5l0.3,0.3l-0.2,0.3l-1.2-0.7
l0.2-0.3l0.4,0.2l1.1-1.8L227.6,151.2z"/>
</g>
<g>
<path class="st8" d="M194,130.3l0.2-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9-0.4l-0.2-0.2l0.2-0.3l1.1,0.6l-0.2,0.3l-0.3-0.1l-1.1,0.4
l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1-0.6l0.2-0.3l0.3,0.1l-0.2-1.2l-0.3-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3
L194,130.3z"/>
<path class="st8" d="M197.1,136.1c-0.2,0.1-0.3,0.1-0.5,0.1c-0.2,0-0.3,0-0.5-0.1c-0.3-0.2-0.4-0.4-0.5-0.6c-0.1-0.3,0-0.6,0.2-1
l0.7-1.1l-0.3-0.2l0.2-0.3l0.3,0.2l0.5,0.3l-0.9,1.5c-0.2,0.3-0.2,0.5-0.2,0.6c0,0.1,0.1,0.3,0.3,0.4c0.2,0.1,0.3,0.1,0.5,0.1
c0.1,0,0.3-0.1,0.4-0.1l0.9-1.5l-0.3-0.3l0.2-0.3l0.3,0.2l0.5,0.3l-1.3,2.2l0.3,0.2l-0.2,0.3l-0.7-0.4L197.1,136.1z"/>
<path class="st8" d="M201,137.3c-0.2,0.4-0.5,0.6-0.8,0.7s-0.6,0.1-0.9-0.1c-0.2-0.1-0.3-0.2-0.4-0.3c-0.1-0.1-0.1-0.3-0.1-0.5
l-0.2,0.3l-0.4-0.2l1.9-3.3l-0.3-0.3l0.2-0.3l0.9,0.5l-0.8,1.4c0.1-0.1,0.3-0.1,0.5-0.1s0.3,0.1,0.5,0.2c0.3,0.2,0.5,0.5,0.5,0.8
S201.3,136.8,201,137.3L201,137.3z M200.6,136.9c0.2-0.3,0.3-0.6,0.3-0.8c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.3-0.1-0.4-0.1
c-0.1,0-0.3,0.1-0.4,0.1l-0.7,1.1c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.3,0.3c0.2,0.1,0.4,0.1,0.6,0
C200.2,137.4,200.4,137.2,200.6,136.9L200.6,136.9z"/>
<path class="st8" d="M202,139.4c-0.4-0.2-0.6-0.5-0.6-0.8c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7
c0.4-0.1,0.7-0.1,1,0.1c0.3,0.2,0.5,0.5,0.6,0.8c0.1,0.3,0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7
c0,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.3,0.1,0.5,0.2c0.1,0,0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0C202.4,139.6,202.2,139.6,202,139.4z
M203.2,137.1c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.3,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C203.5,137.4,203.4,137.2,203.2,137.1z"/>
<path class="st8" d="M205.3,136.8l0.2-0.3l0.9,0.5l-1.9,3.3l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3L205.3,136.8z"/>
<path class="st8" d="M206.1,141.8c-0.4-0.2-0.6-0.5-0.6-0.8c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7
c0.4-0.1,0.7-0.1,1,0.1c0.3,0.2,0.5,0.5,0.6,0.8c0.1,0.3,0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7
c0,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.3,0.1,0.5,0.2c0.1,0,0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0C206.5,142,206.3,141.9,206.1,141.8z
M207.3,139.5c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.3,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C207.6,139.7,207.5,139.6,207.3,139.5z"/>
<path class="st8" d="M210.2,139.9l-0.4,0.6l0.5,0.3l-0.2,0.3l-0.5-0.3l-0.9,1.6c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.1,0.2,0.2
c0,0,0.1,0,0.1,0.1c0.1,0,0.1,0,0.1,0.1l-0.1,0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.4-0.4
c0-0.2,0-0.4,0.1-0.6l0.9-1.6l-0.4-0.2l0.2-0.3l0.4,0.2l0.4-0.6L210.2,139.9z"/>
</g>
<polygon class="st16" points="147.1,296.4 111.4,275.9 111.4,234.7 147.1,214.1 182.7,234.7 182.7,275.9 "/>
<polygon class="st13" points="129.3,224.4 147.1,214.1 182.7,234.7 182.7,255.3 "/>
<polygon class="st7" points="163.5,226.9 157.4,237.4 179.9,250.4 179.9,236.3 "/>
<g>
<path class="st8" d="M164.2,232.3c0.5,0.3,0.7,0.6,0.8,1c0.1,0.4,0,0.9-0.2,1.3l-0.3,0.5c-0.3,0.4-0.6,0.7-1,0.8
c-0.4,0.1-0.9,0-1.3-0.2l-1.4-0.8l0.2-0.3l0.4,0.2l1.6-2.7l-0.3-0.3l0.2-0.3l0.4,0.2L164.2,232.3z M163.4,232.3l-1.6,2.7l0.6,0.3
c0.3,0.2,0.6,0.2,0.9,0.1c0.3-0.1,0.6-0.3,0.7-0.6l0.3-0.5c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.3-0.6-0.6-0.8L163.4,232.3z"/>
<path class="st8" d="M164.9,235.6c0.2-0.4,0.5-0.6,0.8-0.8c0.3-0.1,0.7-0.1,1,0.1c0.4,0.2,0.6,0.5,0.6,0.9c0.1,0.4,0,0.7-0.2,1.1
l0,0.1c-0.2,0.4-0.5,0.6-0.8,0.8c-0.3,0.1-0.7,0.1-1-0.1c-0.4-0.2-0.6-0.5-0.6-0.9C164.6,236.4,164.7,236,164.9,235.6L164.9,235.6
z M165.4,235.9c-0.2,0.3-0.2,0.5-0.2,0.8c0,0.2,0.1,0.4,0.4,0.6c0.2,0.1,0.4,0.1,0.7,0c0.2-0.1,0.4-0.3,0.6-0.6l0-0.1
c0.2-0.3,0.2-0.5,0.2-0.8c0-0.2-0.1-0.4-0.4-0.6c-0.2-0.1-0.4-0.1-0.7,0C165.8,235.4,165.6,235.6,165.4,235.9L165.4,235.9z"/>
<path class="st8" d="M168.2,238.8c0.2,0.1,0.3,0.1,0.5,0.1c0.2,0,0.3-0.1,0.4-0.2l0.4,0.2l0,0c-0.1,0.2-0.3,0.4-0.6,0.4
c-0.3,0.1-0.6,0-0.9-0.2c-0.4-0.2-0.6-0.5-0.6-0.9c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.8-0.7
c0.3-0.1,0.7-0.1,1.1,0.1c0.2,0.1,0.4,0.3,0.5,0.4s0.2,0.3,0.2,0.5L170,238l-0.4-0.2l0.1-0.5c0-0.1-0.1-0.2-0.1-0.3
c-0.1-0.1-0.2-0.2-0.3-0.2c-0.2-0.1-0.5-0.2-0.7,0c-0.2,0.1-0.4,0.3-0.5,0.6l-0.1,0.1c-0.2,0.3-0.2,0.5-0.2,0.7
C167.9,238.5,168,238.7,168.2,238.8z"/>
<path class="st8" d="M171.4,236.5l0.2-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9-0.4l-0.2-0.2l0.2-0.3l1.1,0.6l-0.2,0.3L173,239l-1.1,0.4
l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1-0.6l0.2-0.3l0.3,0.1l-0.2-1.2l-0.3-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3
L171.4,236.5z"/>
<path class="st8" d="M173.6,242.4c-0.4-0.2-0.6-0.5-0.6-0.8c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7
c0.4-0.1,0.7-0.1,1,0.1c0.3,0.2,0.5,0.5,0.6,0.8c0.1,0.3,0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7
c0,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.3,0.1,0.5,0.2s0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0C174,242.6,173.8,242.5,173.6,242.4z
M174.8,240c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.4,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C175.1,240.3,175,240.1,174.8,240z"/>
<path class="st8" d="M176.3,240.9l0.2-0.3l0.8,0.5l-0.2,0.4c0.1-0.1,0.3-0.1,0.4-0.2c0.2,0,0.3,0,0.4,0.1c0,0,0.1,0,0.1,0.1
c0,0,0.1,0.1,0.1,0.1l-0.3,0.4l-0.3-0.2c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.2,0.1-0.3,0.1l-0.8,1.5l0.3,0.3l-0.2,0.3l-1.2-0.7
l0.2-0.3l0.4,0.2l1.1-1.8L176.3,240.9z"/>
</g>
<g>
<path class="st8" d="M142.7,220l0.2-0.3l0.9,0.5l-1.2,2.1l0.3,0.2l0.9-0.4l-0.2-0.2l0.2-0.3l1.1,0.6l-0.2,0.3l-0.3-0.1l-1.1,0.4
l0.2,1.5l0.3,0.2l-0.2,0.3l-1.1-0.6l0.2-0.3l0.3,0.1l-0.2-1.2l-0.3-0.2l-0.5,0.8l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3
L142.7,220z"/>
<path class="st8" d="M145.8,225.8c-0.2,0.1-0.3,0.1-0.5,0.1s-0.3,0-0.5-0.1c-0.3-0.2-0.4-0.4-0.5-0.6s0-0.6,0.2-1l0.7-1.1
l-0.3-0.2l0.2-0.3l0.3,0.2l0.5,0.3l-0.9,1.5c-0.2,0.3-0.2,0.5-0.2,0.6s0.1,0.3,0.3,0.4c0.2,0.1,0.3,0.1,0.5,0.1
c0.1,0,0.3-0.1,0.4-0.1l0.9-1.5l-0.3-0.3l0.2-0.3l0.3,0.2l0.5,0.3l-1.3,2.2l0.3,0.2l-0.2,0.3l-0.7-0.4L145.8,225.8z"/>
<path class="st8" d="M149.8,227c-0.2,0.4-0.5,0.6-0.8,0.7c-0.3,0.1-0.6,0.1-0.9-0.1c-0.2-0.1-0.3-0.2-0.4-0.3
c-0.1-0.1-0.1-0.3-0.1-0.5l-0.2,0.3l-0.4-0.2l1.9-3.3l-0.3-0.3l0.2-0.3l0.9,0.5l-0.8,1.4c0.1-0.1,0.3-0.1,0.5-0.1
c0.2,0,0.3,0.1,0.5,0.2c0.3,0.2,0.5,0.5,0.5,0.8C150.1,226.1,150,226.5,149.8,227L149.8,227z M149.3,226.6
c0.2-0.3,0.3-0.6,0.3-0.8c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0.1-0.4,0.1l-0.7,1.1c0,0.2,0,0.3,0.1,0.4
s0.2,0.2,0.3,0.3c0.2,0.1,0.4,0.1,0.6,0C149,227.1,149.1,227,149.3,226.6L149.3,226.6z"/>
<path class="st8" d="M150.7,229.1c-0.4-0.2-0.6-0.5-0.6-0.8c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7
c0.4-0.1,0.7-0.1,1,0.1c0.3,0.2,0.5,0.5,0.6,0.8s0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7s0.2,0.4,0.4,0.5
c0.2,0.1,0.3,0.1,0.5,0.2c0.1,0,0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0C151.1,229.3,150.9,229.3,150.7,229.1z M151.9,226.8
c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.4,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C152.2,227.1,152.1,226.9,151.9,226.8z"/>
<path class="st8" d="M154,226.5l0.2-0.3l0.9,0.5l-1.9,3.3l0.3,0.3l-0.2,0.3l-1.2-0.7l0.2-0.3l0.4,0.2l1.7-3L154,226.5z"/>
<path class="st8" d="M154.8,231.5c-0.4-0.2-0.6-0.5-0.6-0.8c-0.1-0.4,0-0.7,0.2-1.1l0.1-0.1c0.2-0.4,0.5-0.6,0.9-0.7
c0.4-0.1,0.7-0.1,1,0.1c0.3,0.2,0.5,0.5,0.6,0.8s0,0.6-0.2,1l-0.2,0.3l-1.7-1l0,0c-0.1,0.2-0.2,0.5-0.2,0.7s0.2,0.4,0.4,0.5
c0.2,0.1,0.3,0.1,0.5,0.2c0.1,0,0.3,0,0.4,0l0,0.4c-0.1,0-0.3,0-0.5,0C155.2,231.7,155,231.7,154.8,231.5z M156.1,229.2
c-0.2-0.1-0.3-0.1-0.5,0c-0.2,0.1-0.4,0.2-0.5,0.4l0,0l1.2,0.7l0-0.1c0.1-0.2,0.1-0.4,0.1-0.5
C156.4,229.5,156.3,229.3,156.1,229.2z"/>
<path class="st8" d="M158.9,229.6l-0.4,0.6l0.5,0.3l-0.2,0.3l-0.5-0.3l-0.9,1.6c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1,0.1,0.1,0.2,0.2
c0,0,0.1,0,0.1,0.1c0.1,0,0.1,0,0.1,0.1l-0.1,0.4c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.4-0.4
c0-0.2,0-0.4,0.1-0.6l0.9-1.6l-0.4-0.2l0.2-0.3l0.4,0.2l0.4-0.6L158.9,229.6z"/>
</g>
</g>
<g id="service">
</g>
<g id="pods">
</g>
<g id="IP">
</g>
<g id="deployments">
</g>
<g id="containers_x2F_volumes">
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M374.4,188.6L374.4,188.6l-2.8,6.8h-0.8l-2.8-6.8l0,0l0.1,3.5v2.5l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2
v-0.7h1h1.5l2.7,6.9h0l2.7-6.9h2.4v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2V192L374.4,188.6z"/>
<path class="st42" d="M381.5,195.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H381.5z M379.6,194.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S379.3,194.6,379.6,194.6z"/>
<path class="st42" d="M388.8,191.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L388.8,191.1z"/>
<path class="st42" d="M392.1,187.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H392.1z"/>
<path class="st42" d="M397.4,195.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S397.9,195.5,397.4,195.5z M397.2,189.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S397.7,189.9,397.2,189.9z"/>
<path class="st42" d="M400.9,189.8v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2V190L400.9,189.8z"/>
</g>
<g>
<path class="st42" d="M366,230.1l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7H370v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7H366V230.1z"/>
<path class="st42" d="M373.9,227.6c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V227.6z M375,227.7c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V227.7z"/>
<path class="st42" d="M384.9,230c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L384.9,230z
M381.7,227.9c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V227.9z"/>
<path class="st42" d="M390.7,230.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7H389l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S391.2,230.9,390.7,230.9z M390.5,225.3c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S391,225.3,390.5,225.3z"/>
<path class="st42" d="M397.1,232.5l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V232.5z M402.3,227.7c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V227.7z"/>
<path class="st42" d="M404.5,225.2v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L404.5,225.2z"/>
<path class="st42" d="M409.3,227.6c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V227.6z M410.5,227.7c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V227.7z"/>
<path class="st42" d="M418.9,230c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S418.3,230,418.9,230z"/>
<path class="st42" d="M425.4,230.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S426,230.9,425.4,230.9z M425.3,225.3c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S425.7,225.3,425.3,225.3z"/>
<path class="st42" d="M433.8,226.5H433l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L433.8,226.5z"/>
<path class="st42" d="M440,226.5h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L440,226.5z"/>
<path class="st42" d="M444.1,230.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S444.6,230.9,444.1,230.9z M443.9,225.3c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S444.4,225.3,443.9,225.3z"/>
<path class="st42" d="M452.5,226.5h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L452.5,226.5z"/>
</g>
<g>
<path class="st42" d="M374.4,111.8v0.7l-1,0.2v7.6h-1.2l-4.1-6.6l0,0v5.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1h1.2
l4.1,6.6l0,0v-5.7l-1-0.2v-0.7h2.1H374.4z"/>
<path class="st42" d="M375.3,117.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V117.1z M376.5,117.2c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V117.2z"/>
<path class="st42" d="M386.3,119.5c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L386.3,119.5z
M383.2,117.4c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V117.4z"/>
<path class="st42" d="M392.2,120.4c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V117c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S392.7,120.4,392.2,120.4z M392,114.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S392.5,114.8,392,114.8z"/>
</g>
<g>
<g>
<path class="st42" d="M122.4,356.6l1-0.2v-6.9l-1-0.2v-1.2h4v1.2l-1,0.2v2.6h0.8l1.9-2.7l-0.6-0.1v-1.2h3.8v1.2l-1,0.2l-2.4,3.2
l2.7,3.8l1,0.2v1.2h-3.8v-1.2l0.6-0.1l-1.9-2.8h-1.1v2.7l1,0.2v1.2h-4V356.6z"/>
<path class="st42" d="M137,356.9c-0.2,0.3-0.5,0.6-0.9,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.8,0-1.4-0.2-1.8-0.7
c-0.4-0.5-0.6-1.2-0.6-2.3v-3l-0.8-0.2v-1.2h0.8h1.9v4.3c0,0.5,0.1,0.9,0.3,1.1c0.2,0.2,0.4,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
s0.4-0.2,0.5-0.4V352l-0.8-0.2v-1.2h0.8h1.9v5.8l0.9,0.2v1.2h-2.6L137,356.9z"/>
<path class="st42" d="M147.4,354.4c0,1.1-0.2,1.9-0.7,2.6c-0.5,0.6-1.2,1-2.1,1c-0.4,0-0.8-0.1-1.1-0.3c-0.3-0.2-0.6-0.4-0.8-0.8
l-0.1,0.9H141v-9l-1-0.2v-1.2h3v3.9c0.2-0.3,0.5-0.5,0.7-0.7c0.3-0.2,0.6-0.2,1-0.2c0.9,0,1.6,0.3,2.1,1c0.5,0.7,0.7,1.6,0.7,2.8
V354.4z M145.5,354.3c0-0.7-0.1-1.3-0.3-1.7c-0.2-0.4-0.6-0.6-1.1-0.6c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v3
c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.8-0.2,1-0.5s0.3-0.9,0.3-1.5V354.3z"/>
<path class="st42" d="M151.8,358c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
c0.3-0.1,0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6C152.9,357.9,152.4,358,151.8,358z M151.6,352c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1S152,352,151.6,352z"/>
<path class="st42" d="M155.7,356.6l0.9-0.2V352l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2h-3.8
V356.6z"/>
<path class="st42" d="M161.2,356.6l0.9-0.2V352l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.5-0.7,0.9-0.9s0.7-0.3,1.2-0.3
c0.7,0,1.3,0.2,1.7,0.7s0.6,1.2,0.6,2.1v3.1l0.9,0.2v1.2h-3.7v-1.2l0.8-0.2v-3.1c0-0.5-0.1-0.8-0.3-1c-0.2-0.2-0.5-0.3-0.9-0.3
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4v3.9l0.8,0.2v1.2h-3.7V356.6z"/>
<path class="st42" d="M173.3,358c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
c0.3-0.1,0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6C174.4,357.9,173.9,358,173.3,358z M173.1,352c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1S173.5,352,173.1,352z"/>
<path class="st42" d="M180,348.9v1.8h1.3v1.4H180v3.7c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.3-0.1l0.2,1.4c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.6c-0.4-0.4-0.5-0.9-0.5-1.7V352
H177v-1.4h1.1v-1.8H180z"/>
<path class="st42" d="M185.6,358c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
c0.3-0.1,0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6C186.7,357.9,186.2,358,185.6,358z M185.5,352c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1S185.9,352,185.5,352z"/>
<path class="st42" d="M189.6,356.6l0.9-0.2V352l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2h-3.8
V356.6z"/>
<path class="st42" d="M201,353.1h-1.3l-0.2-0.9c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.3,0.3-0.3,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.6,0.3,1.1,0.4c0.9,0.2,1.5,0.4,2,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.3,1.2-0.8,1.6c-0.6,0.4-1.3,0.6-2.2,0.6c-0.6,0-1.1-0.1-1.5-0.2c-0.5-0.2-0.9-0.4-1.2-0.7l0-1.6h1.4l0.3,0.9
c0.1,0.1,0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.3-0.3,0.3-0.6c0-0.2-0.1-0.4-0.3-0.6
c-0.2-0.2-0.6-0.3-1.1-0.4c-0.8-0.2-1.5-0.4-1.9-0.8c-0.4-0.3-0.6-0.8-0.6-1.4c0-0.6,0.2-1.1,0.7-1.6s1.2-0.7,2.1-0.7
c0.6,0,1.1,0.1,1.6,0.2c0.5,0.2,0.9,0.3,1.2,0.6L201,353.1z"/>
<path class="st42" d="M208.9,356.5c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8h1.8l0,0c0,0.7-0.3,1.3-0.8,1.8
c-0.6,0.5-1.3,0.7-2.1,0.7c-1.1,0-1.9-0.3-2.5-1s-0.9-1.5-0.9-2.6v-0.2c0-1.1,0.3-1.9,0.9-2.6s1.4-1,2.5-1c0.6,0,1.1,0.1,1.6,0.3
c0.5,0.2,0.8,0.4,1.1,0.7l0,1.9h-1.6l-0.3-1.1c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1-0.1-0.3-0.1-0.5-0.1c-0.5,0-0.9,0.2-1.2,0.6
s-0.3,0.9-0.3,1.5v0.2c0,0.6,0.1,1.2,0.3,1.6C208,356.3,208.4,356.5,208.9,356.5z"/>
<path class="st42" d="M212.5,348.6v-1.2h3v9l0.9,0.2v1.2h-3.8v-1.2l0.9-0.2v-7.6L212.5,348.6z"/>
<path class="st42" d="M222,356.9c-0.2,0.3-0.5,0.6-0.9,0.8c-0.3,0.2-0.7,0.3-1.2,0.3c-0.8,0-1.4-0.2-1.8-0.7
c-0.4-0.5-0.6-1.2-0.6-2.3v-3l-0.8-0.2v-1.2h0.8h1.9v4.3c0,0.5,0.1,0.9,0.3,1.1c0.2,0.2,0.4,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
s0.4-0.2,0.5-0.4V352l-0.8-0.2v-1.2h0.8h1.9v5.8l0.9,0.2v1.2h-2.6L222,356.9z"/>
<path class="st42" d="M231.4,353.1h-1.3l-0.2-0.9c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.3,0.3-0.3,0.6c0,0.2,0.1,0.4,0.3,0.5c0.2,0.1,0.6,0.3,1.1,0.4c0.9,0.2,1.5,0.4,2,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.3,1.2-0.8,1.6c-0.6,0.4-1.3,0.6-2.2,0.6c-0.6,0-1.1-0.1-1.5-0.2c-0.5-0.2-0.9-0.4-1.2-0.7l0-1.6h1.4l0.3,0.9
c0.1,0.1,0.3,0.2,0.5,0.2s0.4,0.1,0.6,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.1,0.3-0.3,0.3-0.6c0-0.2-0.1-0.4-0.3-0.6
c-0.2-0.2-0.6-0.3-1.1-0.4c-0.8-0.2-1.5-0.4-1.9-0.8c-0.4-0.3-0.6-0.8-0.6-1.4c0-0.6,0.2-1.1,0.7-1.6s1.2-0.7,2.1-0.7
c0.6,0,1.1,0.1,1.6,0.2c0.5,0.2,0.9,0.3,1.2,0.6L231.4,353.1z"/>
<path class="st42" d="M235.4,348.9v1.8h1.3v1.4h-1.3v3.7c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.3-0.1l0.2,1.4c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.6c-0.4-0.4-0.5-0.9-0.5-1.7V352
h-1.1v-1.4h1.1v-1.8H235.4z"/>
<path class="st42" d="M241,358c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
c0.3-0.1,0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6C242.1,357.9,241.6,358,241,358z M240.8,352c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1S241.2,352,240.8,352z"/>
<path class="st42" d="M245,356.6l0.9-0.2V352l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2H245
V356.6z"/>
</g>
</g>
<line class="st62" x1="360.6" y1="191.7" x2="201.6" y2="191.7"/>
<line class="st62" x1="360.6" y1="228.8" x2="160" y2="228.8"/>
<line class="st62" x1="360.6" y1="118.3" x2="243.4" y2="118.3"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{opacity:0.13;}.cls-2{fill:url(#linear-gradient);}.cls-3,.cls-4{fill:#fff;}.cls-3,.cls-4,.cls-5,.cls-7{stroke:#326de6;}.cls-3,.cls-4,.cls-6,.cls-7{stroke-linecap:round;stroke-linejoin:round;}.cls-3,.cls-5,.cls-6,.cls-7{stroke-width:0.8px;}.cls-4{stroke-width:1.2px;}.cls-5,.cls-7{fill:none;}.cls-5{stroke-miterlimit:10;}.cls-6{fill:#06f7c9;stroke:#011f38;}.cls-8{fill:#326de6;}</style><linearGradient id="linear-gradient" x1="181.65" y1="100" x2="302.12" y2="100" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#06f7c9"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><g class="cls-1"><polygon class="cls-2" points="290.19 64.54 302.12 116.81 268.69 158.72 215.07 158.72 181.65 116.81 193.58 64.54 241.88 41.28 290.19 64.54"/></g><polygon class="cls-3" points="257.17 90.84 243.2 82.77 243.2 66.64 257.17 58.58 271.14 66.64 271.14 82.77 257.17 90.84"/><polygon class="cls-3" points="225.04 109.43 211.07 117.49 197.11 109.43 197.11 93.3 211.07 85.23 225.04 93.3 225.04 109.43"/><polygon class="cls-3" points="226.59 90.84 212.63 82.77 212.63 66.64 226.59 58.58 240.56 66.64 240.56 82.77 226.59 90.84"/><polygon class="cls-3" points="226.44 144.14 212.47 136.08 212.47 119.95 226.44 111.89 240.41 119.95 240.41 136.08 226.44 144.14"/><polygon class="cls-3" points="257.32 144.14 243.36 136.08 243.36 119.95 257.32 111.89 271.29 119.95 271.29 136.08 257.32 144.14"/><polygon class="cls-3" points="286.66 109.43 272.69 117.49 258.72 109.43 258.72 93.3 272.69 85.23 286.66 93.3 286.66 109.43"/><line class="cls-4" x1="241.82" y1="101.23" x2="241.82" y2="103.08"/><line class="cls-4" x1="242.75" y1="102.16" x2="240.9" y2="102.16"/><polygon class="cls-4" points="252.18 104.23 250.96 98.89 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 250.14 95.3 245.22 92.93 241.88 91.32 241.88 91.32 241.88 91.32 241.88 91.32 233.64 95.29 233.62 95.3 233.62 95.3 233.62 95.3 233.62 95.3 232.6 99.77 232.6 99.77 232.6 99.77 232.6 99.77 231.81 103.23 231.58 104.23 231.58 104.23 231.58 104.23 231.58 104.23 234 107.26 234.43 107.81 234.43 107.81 237.3 111.4 237.3 111.4 237.3 111.4 237.3 111.4 237.3 111.4 241.88 111.4 241.88 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 246.47 111.4 248.63 108.69 249.32 107.82 249.32 107.82 252.18 104.23 252.18 104.23 252.18 104.23 252.18 104.23"/><circle class="cls-5" cx="68.81" cy="100.33" r="20.93"/><polygon class="cls-6" points="59.12 94.72 68.81 89.13 78.51 94.72 68.81 100.33 59.12 94.72"/><polygon class="cls-6" points="59.12 105.92 59.12 94.72 68.81 100.33 68.81 111.52 59.12 105.92"/><polygon class="cls-6" points="68.81 111.52 68.81 100.33 78.51 94.72 78.51 105.92 68.81 111.52"/><line class="cls-7" x1="106.55" y1="100.33" x2="163.02" y2="100.33"/><polygon class="cls-8" points="160.37 103.6 159.82 103.01 162.71 100.33 159.82 97.64 160.37 97.05 163.88 100.33 160.37 103.6"/></g></svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@@ -0,0 +1,576 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 476.1 385.3" style="enable-background:new 0 0 476.1 385.3;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st2{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st3{opacity:0.71;fill:#326CE6;}
.st4{opacity:0.45;fill:#FFFFFF;}
.st5{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st6{fill:#006DE9;}
.st7{fill:#A0CAEA;}
.st8{fill:#FFFFFF;}
.st9{opacity:0.13;}
.st10{fill:url(#SVGID_1_);}
.st11{fill:url(#SVGID_2_);}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="master_x5F_level1_1_" viewBox="-68.6 -66.9 137.2 133.9">
<g>
<g>
<line class="st0" x1="0" y1="-11.1" x2="0" y2="0.7"/>
<line class="st0" x1="5.9" y1="-5.2" x2="-5.9" y2="-5.2"/>
</g>
<polygon class="st1" points="-29.2,-63.9 -65.6,-18.3 -52.6,38.6 0,63.9 52.6,38.6 65.6,-18.3 29.2,-63.9 "/>
</g>
</symbol>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st2" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st3" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st4" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st5" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st6" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st7" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st8" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st8" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
<g id="XMLID_8_" class="st9">
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="27.9955" y1="185.5114" x2="342.4509" y2="185.5114">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<polygon class="st10" points="311.3,92.9 342.5,229.4 255.2,338.8 115.3,338.8 28,229.4 59.1,92.9 185.2,32.2 "/>
</g>
</g>
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<use xlink:href="#master_x5F_level1_1_" width="137.2" height="133.9" x="-68.6" y="-66.9" transform="matrix(0.4 0 0 -0.4 185.2213 187.4709)" style="overflow:visible;"/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<polygon class="st16" points="224.6,160.7 189,140.1 189,98.9 224.6,78.4 260.3,98.9 260.3,140.1 "/>
<polygon class="st13" points="189,127.8 189,140.1 224.6,160.7 235.2,154.5 "/>
<polygon class="st7" points="207.8,148.6 211.1,143 231.1,154.5 224.6,158.3 "/>
<g>
<path class="st8" d="M213.7,146.5c0.4,0.2,0.6,0.5,0.7,0.9c0.1,0.4,0,0.7-0.2,1.1l-0.2,0.4c-0.2,0.4-0.5,0.6-0.9,0.7
c-0.4,0.1-0.7,0-1.1-0.2l-1.2-0.7l0.1-0.2l0.4,0.1l1.3-2.3l-0.3-0.2l0.1-0.3l0.3,0.2L213.7,146.5z M213.1,146.5l-1.3,2.3l0.5,0.3
c0.3,0.2,0.5,0.2,0.8,0.1c0.3-0.1,0.5-0.3,0.6-0.5l0.2-0.4c0.2-0.3,0.2-0.5,0.2-0.8c-0.1-0.3-0.2-0.5-0.5-0.6L213.1,146.5z"/>
<path class="st8" d="M214.3,149.2c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.9,0.1c0.3,0.2,0.5,0.4,0.5,0.7
c0.1,0.3,0,0.6-0.2,0.9l0,0c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.1-0.9-0.1c-0.3-0.2-0.5-0.4-0.5-0.7
C214.1,149.9,214.1,149.6,214.3,149.2L214.3,149.2z M214.7,149.5c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.2,0.1,0.4,0.3,0.5
c0.2,0.1,0.4,0.1,0.5,0c0.2-0.1,0.3-0.3,0.5-0.5l0,0c0.1-0.2,0.2-0.4,0.2-0.6c0-0.2-0.1-0.4-0.3-0.5c-0.2-0.1-0.4-0.1-0.6,0
S214.9,149.2,214.7,149.5L214.7,149.5z"/>
<path class="st8" d="M217.1,151.9c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2-0.1,0.3-0.2l0.4,0.2l0,0c-0.1,0.2-0.3,0.3-0.5,0.3
c-0.3,0-0.5,0-0.7-0.1c-0.3-0.2-0.5-0.4-0.5-0.7c0-0.3,0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.9,0.1
c0.2,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.2,0.3,0.2,0.4l-0.3,0.5l-0.3-0.2l0.1-0.4c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.2-0.2
c-0.2-0.1-0.4-0.1-0.6,0c-0.2,0.1-0.3,0.3-0.4,0.5l0,0.1c-0.1,0.2-0.2,0.4-0.2,0.6C216.8,151.7,216.9,151.8,217.1,151.9z"/>
<path class="st8" d="M219.7,150l0.1-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8-0.3l-0.2-0.1l0.1-0.3l0.9,0.5l-0.1,0.3l-0.3-0.1l-1,0.3
l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9-0.5l0.1-0.2l0.2,0.1l-0.2-1l-0.3-0.1L219,153l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5
L219.7,150z"/>
<path class="st8" d="M221.5,154.9c-0.3-0.2-0.5-0.4-0.5-0.7s0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.8,0.1
c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6c0,0.2,0.1,0.3,0.3,0.4
c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C221.9,155.1,221.7,155,221.5,154.9z M222.6,153
c-0.1-0.1-0.3-0.1-0.4,0c-0.2,0.1-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5C222.8,153.2,222.7,153.1,222.6,153z"
/>
<path class="st8" d="M223.9,153.7l0.1-0.3l0.7,0.4l-0.1,0.3c0.1-0.1,0.2-0.1,0.4-0.1c0.1,0,0.2,0,0.4,0.1c0,0,0.1,0,0.1,0.1
c0,0,0.1,0,0.1,0.1l-0.3,0.3l-0.2-0.1c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1l-0.7,1.2l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2
l0.4,0.1l0.9-1.5L223.9,153.7z"/>
</g>
<g>
<path class="st8" d="M194.3,135.3l0.1-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8-0.3l-0.2-0.1l0.1-0.3l0.9,0.5l-0.1,0.3l-0.3-0.1l-1,0.3
l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9-0.5l0.1-0.2l0.2,0.1l-0.2-1l-0.3-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5
L194.3,135.3z"/>
<path class="st8" d="M196.8,140.2c-0.1,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.3,0-0.4-0.1c-0.2-0.1-0.4-0.3-0.4-0.5c0-0.2,0-0.5,0.2-0.8
l0.6-1l-0.2-0.2l0.1-0.3l0.2,0.1l0.4,0.2l-0.7,1.3c-0.1,0.2-0.2,0.4-0.2,0.5c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.4,0.1
s0.2,0,0.3-0.1l0.7-1.2l-0.3-0.2l0.1-0.3l0.3,0.2l0.4,0.2l-1.1,1.8l0.2,0.2l-0.1,0.2l-0.6-0.3L196.8,140.2z"/>
<path class="st8" d="M200.1,141.2c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.5,0.1-0.8-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
c-0.1-0.1-0.1-0.2-0.1-0.4l-0.2,0.3l-0.3-0.2l1.6-2.8l-0.3-0.2l0.1-0.3l0.7,0.4l-0.7,1.2c0.1-0.1,0.2-0.1,0.4-0.1
c0.1,0,0.3,0,0.4,0.1c0.3,0.2,0.4,0.4,0.4,0.7C200.4,140.5,200.3,140.8,200.1,141.2L200.1,141.2z M199.7,140.9
c0.1-0.2,0.2-0.5,0.2-0.7c0-0.2-0.1-0.4-0.3-0.5c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.2,0.1-0.3,0.1l-0.5,0.9c0,0.1,0,0.2,0.1,0.3
c0.1,0.1,0.1,0.2,0.3,0.3c0.2,0.1,0.4,0.1,0.5,0C199.5,141.3,199.6,141.2,199.7,140.9L199.7,140.9z"/>
<path class="st8" d="M200.9,143c-0.3-0.2-0.5-0.4-0.5-0.7s0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.8,0.1
c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6c0,0.2,0.1,0.3,0.3,0.4
c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C201.2,143.2,201.1,143.1,200.9,143z M201.9,141
c-0.1-0.1-0.3-0.1-0.4,0c-0.2,0.1-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5C202.2,141.3,202.1,141.1,201.9,141z"
/>
<path class="st8" d="M203.7,140.8l0.1-0.3l0.7,0.4l-1.6,2.8l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5L203.7,140.8z"/>
<path class="st8" d="M204.3,145c-0.3-0.2-0.5-0.4-0.5-0.7c-0.1-0.3,0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6-0.1,0.8,0.1c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6
c0,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.1,0.4,0.1s0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C204.7,145.1,204.5,145.1,204.3,145z
M205.4,143c-0.1-0.1-0.3-0.1-0.4,0c-0.2,0.1-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5
C205.6,143.2,205.5,143.1,205.4,143z"/>
<path class="st8" d="M207.8,143.4l-0.3,0.5l0.4,0.2l-0.2,0.3l-0.4-0.2l-0.8,1.3c-0.1,0.1-0.1,0.2-0.1,0.2c0,0.1,0.1,0.1,0.1,0.2
c0,0,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0l-0.1,0.3c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2-0.1-0.2-0.1c-0.2-0.1-0.3-0.2-0.3-0.4s0-0.3,0.1-0.5
l0.8-1.3l-0.3-0.2l0.2-0.3l0.3,0.2l0.3-0.5L207.8,143.4z"/>
</g>
<polygon class="st16" points="182.3,140.1 146.6,160.7 111,140.1 111,99 146.6,78.4 182.3,99 "/>
<polygon class="st13" points="136,154.5 146.6,160.7 182.3,140.1 182.2,127.9 "/>
<polygon class="st7" points="163.4,148.6 160.2,143 180.2,131.4 180.2,138.9 "/>
<g>
<path class="st8" d="M164.6,142.5c0.4-0.2,0.7-0.3,1.1-0.2c0.4,0.1,0.6,0.3,0.9,0.7l0.2,0.4c0.2,0.4,0.3,0.7,0.2,1.1
c-0.1,0.4-0.3,0.7-0.7,0.9l-1.2,0.7l-0.1-0.2l0.3-0.2l-1.3-2.3l-0.4,0.1l-0.1-0.3l0.3-0.2L164.6,142.5z M164.3,143.1l1.3,2.3
l0.5-0.3c0.3-0.2,0.4-0.4,0.5-0.6c0.1-0.3,0-0.5-0.2-0.8l-0.2-0.4c-0.2-0.3-0.4-0.5-0.6-0.5c-0.3-0.1-0.5-0.1-0.8,0.1L164.3,143.1
z"/>
<path class="st8" d="M167.3,143.4c-0.2-0.3-0.2-0.6-0.2-0.9c0.1-0.3,0.2-0.5,0.5-0.7c0.3-0.2,0.6-0.2,0.9-0.1
c0.3,0.1,0.5,0.3,0.7,0.6l0,0c0.2,0.3,0.2,0.6,0.2,0.9c-0.1,0.3-0.2,0.5-0.5,0.7c-0.3,0.2-0.6,0.2-0.9,0.1
C167.7,144,167.5,143.7,167.3,143.4L167.3,143.4z M167.7,143.2c0.1,0.2,0.3,0.4,0.5,0.5s0.4,0.1,0.6,0c0.2-0.1,0.3-0.3,0.3-0.5
c0-0.2,0-0.4-0.2-0.6l0,0c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.1-0.6,0c-0.2,0.1-0.3,0.3-0.3,0.5S167.5,142.9,167.7,143.2
L167.7,143.2z"/>
<path class="st8" d="M171,142.3c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0-0.3,0-0.4l0.3-0.2l0,0c0.1,0.2,0.1,0.4,0,0.6
c-0.1,0.2-0.2,0.4-0.5,0.6c-0.3,0.2-0.6,0.2-0.9,0.1c-0.3-0.1-0.5-0.3-0.7-0.6l0-0.1c-0.2-0.3-0.2-0.6-0.2-0.9
c0-0.3,0.2-0.5,0.5-0.7c0.2-0.1,0.3-0.2,0.5-0.2s0.3,0,0.5,0l0.3,0.5l-0.3,0.2l-0.3-0.3c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0.1
c-0.2,0.1-0.3,0.3-0.3,0.5c0,0.2,0.1,0.4,0.2,0.6l0,0.1c0.1,0.2,0.3,0.4,0.4,0.5C170.6,142.5,170.8,142.5,171,142.3z"/>
<path class="st8" d="M170.6,139.1l-0.1-0.3l0.7-0.4l1,1.8l0.2-0.1l0.1-0.8l-0.2,0.1l-0.1-0.3l0.9-0.5l0.1,0.3l-0.2,0.2l-0.2,1
l1.2,0.5l0.3-0.1l0.1,0.2l-0.9,0.5l-0.1-0.2l0.2-0.1l-1-0.4l-0.3,0.1l0.4,0.7l0.4-0.1l0.1,0.2l-1,0.6l-0.1-0.2l0.3-0.2L171,139
L170.6,139.1z"/>
<path class="st8" d="M175.8,140c-0.3,0.2-0.6,0.2-0.9,0.1c-0.3-0.1-0.5-0.3-0.7-0.6l-0.1-0.1c-0.2-0.3-0.2-0.6-0.2-0.9
c0.1-0.3,0.2-0.5,0.5-0.7c0.3-0.2,0.6-0.2,0.8-0.1c0.2,0.1,0.5,0.3,0.6,0.6l0.1,0.2l-1.4,0.8v0c0.1,0.2,0.3,0.3,0.4,0.4
c0.2,0.1,0.4,0.1,0.5,0c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.3,0.2c0,0.1-0.1,0.2-0.2,0.4
C176.1,139.8,175.9,139.9,175.8,140z M174.6,138.1c-0.1,0.1-0.2,0.2-0.2,0.4c0,0.2,0,0.3,0.1,0.5l0,0l1-0.6l0-0.1
c-0.1-0.2-0.2-0.3-0.3-0.3C174.9,138,174.8,138,174.6,138.1z"/>
<path class="st8" d="M175.8,137.4l-0.1-0.3l0.7-0.4l0.2,0.3c0-0.1,0-0.3,0.1-0.4c0.1-0.1,0.1-0.2,0.3-0.3c0,0,0.1,0,0.1,0
c0,0,0.1,0,0.1,0l0.2,0.4l-0.2,0.1c-0.1,0.1-0.2,0.1-0.2,0.2s-0.1,0.2,0,0.3l0.7,1.2l0.4-0.1l0.1,0.2l-1,0.6l-0.1-0.2l0.3-0.2
l-0.9-1.5L175.8,137.4z"/>
</g>
<g>
<path class="st8" d="M145.1,153.8l-0.1-0.3l0.7-0.4l1,1.8l0.2-0.1l0.1-0.8l-0.2,0.1l-0.1-0.3l0.9-0.5l0.1,0.3l-0.2,0.2l-0.2,1
l1.2,0.5l0.3-0.1l0.1,0.2l-0.9,0.5l-0.1-0.2l0.2-0.1l-1-0.4l-0.3,0.1l0.4,0.7l0.4-0.1l0.1,0.2l-1,0.6l-0.1-0.2l0.3-0.2l-1.4-2.5
L145.1,153.8z"/>
<path class="st8" d="M150.6,154c0,0.2,0,0.3-0.1,0.4c-0.1,0.1-0.2,0.2-0.3,0.3c-0.2,0.1-0.5,0.2-0.7,0.1c-0.2-0.1-0.4-0.3-0.6-0.6
l-0.6-1l-0.3,0.1l-0.1-0.3l0.2-0.1l0.4-0.2l0.7,1.3c0.1,0.2,0.3,0.4,0.4,0.4c0.1,0,0.2,0,0.4-0.1c0.1-0.1,0.2-0.2,0.3-0.3
c0.1-0.1,0.1-0.2,0.1-0.4l-0.7-1.2l-0.3,0.1l-0.1-0.3l0.3-0.2l0.4-0.2l1.1,1.8l0.3-0.1l0.1,0.2l-0.6,0.3L150.6,154z"/>
<path class="st8" d="M153.1,151.7c0.2,0.3,0.2,0.6,0.2,0.9c0,0.3-0.2,0.5-0.4,0.6c-0.1,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.3,0-0.4-0.1
l0.1,0.3l-0.3,0.2l-1.6-2.8l-0.4,0.1l-0.1-0.3l0.7-0.4l0.7,1.2c0-0.1,0.1-0.3,0.1-0.4c0.1-0.1,0.2-0.2,0.3-0.3
c0.3-0.2,0.5-0.2,0.8,0C152.7,151,152.9,151.3,153.1,151.7L153.1,151.7z M152.7,151.8c-0.1-0.2-0.3-0.4-0.5-0.5s-0.4-0.1-0.5,0
c-0.1,0.1-0.2,0.2-0.3,0.3c0,0.1-0.1,0.2-0.1,0.3l0.5,0.9c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.4-0.1c0.2-0.1,0.3-0.2,0.3-0.4
C152.9,152.3,152.9,152.1,152.7,151.8L152.7,151.8z"/>
<path class="st8" d="M155.1,151.9c-0.3,0.2-0.6,0.2-0.9,0.1s-0.5-0.3-0.7-0.6l-0.1-0.1c-0.2-0.3-0.2-0.6-0.2-0.9
c0.1-0.3,0.2-0.5,0.5-0.7c0.3-0.2,0.6-0.2,0.8-0.1c0.2,0.1,0.5,0.3,0.6,0.6l0.1,0.2l-1.4,0.8v0c0.1,0.2,0.3,0.3,0.4,0.4
c0.2,0.1,0.4,0.1,0.5,0c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.3,0.2c0,0.1-0.1,0.2-0.2,0.4
C155.4,151.7,155.3,151.8,155.1,151.9z M153.9,150c-0.1,0.1-0.2,0.2-0.2,0.4c0,0.2,0,0.3,0.1,0.5l0,0l1-0.6l0-0.1
c-0.1-0.2-0.2-0.3-0.3-0.3C154.2,149.9,154.1,149.9,153.9,150z"/>
<path class="st8" d="M154.6,148.4l-0.1-0.3l0.7-0.4l1.6,2.8l0.4-0.1l0.1,0.2l-1,0.6l-0.1-0.2l0.3-0.2l-1.4-2.5L154.6,148.4z"/>
<path class="st8" d="M158.6,149.9c-0.3,0.2-0.6,0.2-0.9,0.1c-0.3-0.1-0.5-0.3-0.7-0.6l-0.1-0.1c-0.2-0.3-0.2-0.6-0.2-0.9
c0.1-0.3,0.2-0.5,0.5-0.7c0.3-0.2,0.6-0.2,0.8-0.1c0.2,0.1,0.5,0.3,0.6,0.6l0.1,0.2l-1.4,0.8v0c0.1,0.2,0.3,0.3,0.4,0.4
c0.2,0.1,0.4,0.1,0.5,0c0.1-0.1,0.2-0.2,0.3-0.3c0.1-0.1,0.1-0.2,0.2-0.3l0.3,0.2c0,0.1-0.1,0.2-0.2,0.4
C158.9,149.7,158.7,149.8,158.6,149.9z M157.4,148c-0.1,0.1-0.2,0.2-0.2,0.4c0,0.2,0,0.3,0.1,0.5l0,0l1-0.6l0-0.1
c-0.1-0.2-0.2-0.3-0.3-0.3C157.7,147.9,157.5,147.9,157.4,148z"/>
<path class="st8" d="M158.9,146.1l0.3,0.5l0.4-0.2l0.2,0.3l-0.4,0.2l0.8,1.3c0.1,0.1,0.1,0.2,0.2,0.2c0.1,0,0.1,0,0.2,0
c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1l0.2,0.2c0,0-0.1,0.1-0.1,0.2c-0.1,0.1-0.1,0.1-0.2,0.1c-0.2,0.1-0.3,0.1-0.5,0.1
c-0.1,0-0.3-0.2-0.4-0.4l-0.7-1.3l-0.3,0.2l-0.2-0.3l0.3-0.2l-0.3-0.5L158.9,146.1z"/>
</g>
<polygon class="st16" points="146.2,296.6 110.6,276.1 110.6,234.9 146.2,214.4 181.9,234.9 181.9,276.1 "/>
<polygon class="st13" points="135.6,220.5 146.2,214.4 181.9,234.9 181.8,247.2 "/>
<polygon class="st7" points="163,226.4 159.8,232.1 179.8,243.6 179.8,236.1 "/>
<g>
<path class="st8" d="M145.8,218.8l0.1-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8-0.3l-0.2-0.1l0.1-0.3l0.9,0.5l-0.1,0.3l-0.3-0.1l-1,0.3
l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9-0.5l0.1-0.2l0.2,0.1l-0.2-1l-0.3-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5
L145.8,218.8z"/>
<path class="st8" d="M148.4,223.7c-0.1,0.1-0.3,0.1-0.4,0.1c-0.1,0-0.3,0-0.4-0.1c-0.2-0.1-0.4-0.3-0.4-0.5c0-0.2,0-0.5,0.2-0.8
l0.6-1l-0.2-0.2l0.1-0.3l0.2,0.1l0.4,0.2l-0.7,1.3c-0.1,0.2-0.2,0.4-0.2,0.5c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.3,0.1,0.4,0.1
c0.1,0,0.2,0,0.3-0.1l0.7-1.2l-0.3-0.2l0.1-0.3l0.3,0.2l0.4,0.2l-1.1,1.8l0.2,0.2l-0.1,0.2l-0.6-0.3L148.4,223.7z"/>
<path class="st8" d="M151.7,224.7c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.5,0.1-0.8-0.1c-0.1-0.1-0.2-0.2-0.3-0.3
c-0.1-0.1-0.1-0.2-0.1-0.4l-0.2,0.3l-0.3-0.2l1.6-2.8l-0.3-0.2l0.1-0.3l0.7,0.4l-0.7,1.2c0.1-0.1,0.2-0.1,0.4-0.1
c0.1,0,0.3,0,0.4,0.1c0.3,0.2,0.4,0.4,0.4,0.7C152,224,151.9,224.3,151.7,224.7L151.7,224.7z M151.3,224.4
c0.1-0.2,0.2-0.5,0.2-0.7c0-0.2-0.1-0.4-0.3-0.5c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.2,0.1-0.3,0.1l-0.5,0.9c0,0.1,0,0.2,0.1,0.3
c0.1,0.1,0.1,0.2,0.3,0.3c0.2,0.1,0.4,0.1,0.5,0C151,224.8,151.2,224.6,151.3,224.4L151.3,224.4z"/>
<path class="st8" d="M152.5,226.5c-0.3-0.2-0.5-0.4-0.5-0.7s0-0.6,0.2-0.9l0.1-0.1c0.2-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6-0.1,0.8,0.1c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6
c0,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C152.8,226.6,152.6,226.6,152.5,226.5
z M153.5,224.5c-0.1-0.1-0.3-0.1-0.4,0c-0.2,0.1-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5
S153.7,224.6,153.5,224.5z"/>
<path class="st8" d="M155.3,224.3l0.1-0.3l0.7,0.4l-1.6,2.8l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5L155.3,224.3z"/>
<path class="st8" d="M155.9,228.5c-0.3-0.2-0.5-0.4-0.5-0.7s0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.8,0.1
c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6c0,0.2,0.1,0.3,0.3,0.4
c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C156.3,228.6,156.1,228.6,155.9,228.5z M157,226.5
c-0.1-0.1-0.3-0.1-0.4,0s-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5C157.2,226.7,157.1,226.6,157,226.5z"/>
<path class="st8" d="M159.4,226.9l-0.3,0.5l0.4,0.2l-0.2,0.3l-0.4-0.2l-0.8,1.3c-0.1,0.1-0.1,0.2-0.1,0.2c0,0.1,0.1,0.1,0.1,0.2
c0,0,0.1,0,0.1,0.1c0,0,0.1,0,0.1,0l-0.1,0.3c-0.1,0-0.1,0-0.2,0c-0.1,0-0.2-0.1-0.2-0.1c-0.2-0.1-0.3-0.2-0.3-0.4s0-0.3,0.1-0.5
l0.8-1.3l-0.3-0.2l0.2-0.3l0.3,0.2l0.3-0.5L159.4,226.9z"/>
</g>
<g>
<path class="st8" d="M166.1,230.5c0.4,0.2,0.6,0.5,0.7,0.9c0.1,0.4,0,0.7-0.2,1.1l-0.2,0.4c-0.2,0.4-0.5,0.6-0.9,0.7
s-0.7,0-1.1-0.2l-1.2-0.7l0.1-0.2l0.4,0.1l1.3-2.3l-0.3-0.2l0.1-0.3l0.3,0.2L166.1,230.5z M165.4,230.5l-1.3,2.3l0.5,0.3
c0.3,0.2,0.5,0.2,0.8,0.1c0.3-0.1,0.5-0.3,0.6-0.5l0.2-0.4c0.2-0.3,0.2-0.5,0.2-0.8c-0.1-0.3-0.2-0.5-0.5-0.6L165.4,230.5z"/>
<path class="st8" d="M166.7,233.2c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.9,0.1c0.3,0.2,0.5,0.4,0.5,0.7
c0.1,0.3,0,0.6-0.2,0.9l0,0c-0.2,0.3-0.4,0.5-0.7,0.6c-0.3,0.1-0.6,0.1-0.9-0.1c-0.3-0.2-0.5-0.4-0.5-0.7
C166.4,233.9,166.5,233.6,166.7,233.2L166.7,233.2z M167,233.5c-0.1,0.2-0.2,0.4-0.2,0.6c0,0.2,0.1,0.4,0.3,0.5
c0.2,0.1,0.4,0.1,0.5,0c0.2-0.1,0.3-0.3,0.5-0.5l0,0c0.1-0.2,0.2-0.4,0.2-0.6c0-0.2-0.1-0.4-0.3-0.5c-0.2-0.1-0.4-0.1-0.6,0
C167.3,233.1,167.2,233.2,167,233.5L167,233.5z"/>
<path class="st8" d="M169.4,235.9c0.1,0.1,0.3,0.1,0.4,0.1s0.2-0.1,0.3-0.2l0.3,0.2l0,0c-0.1,0.2-0.3,0.3-0.5,0.3
c-0.3,0-0.5,0-0.7-0.1c-0.3-0.2-0.5-0.4-0.5-0.7c0-0.3,0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6c0.3-0.1,0.6-0.1,0.9,0.1
c0.2,0.1,0.3,0.2,0.4,0.4c0.1,0.1,0.2,0.3,0.2,0.4l-0.3,0.5l-0.3-0.2l0.1-0.4c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.2-0.2
c-0.2-0.1-0.4-0.1-0.6,0c-0.2,0.1-0.3,0.3-0.4,0.5l0,0.1c-0.1,0.2-0.2,0.4-0.2,0.6C169.1,235.6,169.2,235.8,169.4,235.9z"/>
<path class="st8" d="M172.1,234l0.1-0.3l0.7,0.4l-1,1.8l0.2,0.1l0.8-0.3l-0.2-0.1l0.1-0.3l0.9,0.5l-0.1,0.3l-0.3-0.1l-1,0.3
l0.2,1.3l0.2,0.2l-0.1,0.2l-0.9-0.5l0.1-0.2l0.2,0.1l-0.2-1l-0.3-0.1l-0.4,0.7l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2l0.4,0.1l1.4-2.5
L172.1,234z"/>
<path class="st8" d="M173.9,238.9c-0.3-0.2-0.5-0.4-0.5-0.7c-0.1-0.3,0-0.6,0.2-0.9l0-0.1c0.2-0.3,0.4-0.5,0.7-0.6
c0.3-0.1,0.6-0.1,0.8,0.1c0.3,0.2,0.5,0.4,0.5,0.6c0,0.3,0,0.5-0.2,0.8l-0.1,0.2l-1.4-0.8l0,0c-0.1,0.2-0.2,0.4-0.1,0.6
c0,0.2,0.1,0.3,0.3,0.4c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0l0,0.3c-0.1,0-0.3,0-0.4,0C174.2,239.1,174,239,173.9,238.9z
M174.9,236.9c-0.1-0.1-0.3-0.1-0.4,0c-0.2,0.1-0.3,0.2-0.4,0.3l0,0l1,0.6l0-0.1c0.1-0.2,0.1-0.3,0.1-0.5
C175.2,237.2,175.1,237,174.9,236.9z"/>
<path class="st8" d="M176.2,237.7l0.1-0.3l0.7,0.4l-0.1,0.3c0.1-0.1,0.2-0.1,0.4-0.1c0.1,0,0.2,0,0.4,0.1c0,0,0.1,0,0.1,0.1
c0,0,0.1,0,0.1,0.1l-0.3,0.3l-0.2-0.1c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2,0-0.3,0.1l-0.7,1.2l0.3,0.2l-0.1,0.2l-1-0.6l0.1-0.2
l0.4,0.1l0.9-1.5L176.2,237.7z"/>
</g>
</g>
<g id="service">
</g>
<g id="pods">
<circle class="st29" cx="146.2" cy="119.5" r="20.9"/>
</g>
<g id="IP">
</g>
<g id="deployments">
<g>
<g>
<circle class="st47" cx="177.4" cy="181.7" r="10.1"/>
<g>
<g>
<path class="st48" d="M180.9,176c1.9,1.2,3.2,3.3,3.2,5.8c0,3.7-3,6.7-6.7,6.7c-3.7,0-6.7-3-6.7-6.7c0-2.9,1.9-5.4,4.5-6.4"/>
<g>
<polygon class="st42" points="182.1,178.9 181.2,176.2 183.9,175.3 182.4,174.5 179.6,175.4 180.5,178.1 "/>
</g>
</g>
</g>
<g>
<path class="st42" d="M174.8,185.1v-6.7h2.3c0.8,0,1.5,0.3,2,0.8c0.5,0.5,0.8,1.2,0.8,2v1.1c0,0.8-0.3,1.5-0.8,2
c-0.5,0.5-1.2,0.8-2,0.8H174.8z M176.1,179.4v4.7h0.9c0.5,0,0.9-0.2,1.1-0.5c0.3-0.3,0.4-0.8,0.4-1.3v-1.1
c0-0.5-0.1-0.9-0.4-1.3c-0.3-0.3-0.7-0.5-1.1-0.5H176.1z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="136.5,113.9 146.2,108.3 155.9,113.9 146.2,119.5 "/>
<polygon class="st50" points="136.5,125.1 136.5,113.9 146.2,119.5 146.2,130.7 "/>
<polygon class="st50" points="146.2,130.7 146.2,119.5 155.9,113.9 155.9,125.1 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M373.8,200.8L373.8,200.8l-2.8,6.8h-0.8l-2.8-6.8l0,0l0.1,3.5v2.5l1,0.2v0.7h-3.1v-0.7l1-0.2V200l-1-0.2
v-0.7h1h1.5l2.7,6.9h0l2.7-6.9h2.4v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.5L373.8,200.8z"/>
<path class="st42" d="M380.8,207.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H380.8z M379,206.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S378.6,206.8,379,206.8z"/>
<path class="st42" d="M388.2,203.3h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L388.2,203.3z"/>
<path class="st42" d="M391.5,199.8v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H391.5z"/>
<path class="st42" d="M396.7,207.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7H395l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S397.3,207.8,396.7,207.8z M396.6,202.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S397,202.1,396.6,202.1z"/>
<path class="st42" d="M400.3,202v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L400.3,202z"/>
</g>
<g>
<path class="st42" d="M365.4,230.3l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2V227c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V230.3z"/>
<path class="st42" d="M373.2,227.8c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V227.8z M374.4,227.9c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V227.9z"/>
<path class="st42" d="M384.2,230.3c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2V228
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L384.2,230.3z
M381.1,228.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V228.1z"/>
<path class="st42" d="M390,231.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S390.6,231.1,390,231.1z M389.9,225.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S390.3,225.5,389.9,225.5z"/>
<path class="st42" d="M396.4,232.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V232.7z M401.6,228c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V228z"/>
<path class="st42" d="M403.8,225.4v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L403.8,225.4z"/>
<path class="st42" d="M408.7,227.8c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V227.8z M409.9,227.9c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V227.9z"/>
<path class="st42" d="M418.3,230.2c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S417.7,230.2,418.3,230.2z"/>
<path class="st42" d="M424.8,231.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S425.3,231.1,424.8,231.1z M424.6,225.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S425.1,225.5,424.6,225.5z"/>
<path class="st42" d="M433.2,226.7h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L433.2,226.7z"/>
<path class="st42" d="M439.3,226.7h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L439.3,226.7z"/>
<path class="st42" d="M443.5,231.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S444,231.1,443.5,231.1z M443.3,225.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S443.8,225.5,443.3,225.5z"/>
<path class="st42" d="M451.9,226.7H451l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L451.9,226.7z"/>
</g>
<g>
<path class="st42" d="M373.8,95v0.7l-1,0.2v7.6h-1.2l-4.1-6.6l0,0v5.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2V95h1h1.2l4.1,6.6
l0,0v-5.7l-1-0.2V95h2.1H373.8z"/>
<path class="st42" d="M374.7,100.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V100.3z M375.9,100.4c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V100.4z"/>
<path class="st42" d="M385.7,102.8c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L385.7,102.8z
M382.6,100.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V100.6z"/>
<path class="st42" d="M391.5,103.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S392,103.6,391.5,103.6z M391.3,98c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S391.8,98,391.3,98z"/>
</g>
<line class="st62" x1="360" y1="203.9" x2="188.6" y2="203.9"/>
<g>
<path class="st42" d="M369,176.9c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7l-1-0.2
v-0.7h1H369z M367.6,177.8v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H367.6z"/>
<path class="st42" d="M376.8,185.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S377.3,185.5,376.8,185.5z M376.6,179.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S377.1,179.9,376.6,179.9z"/>
<path class="st42" d="M380.2,187.1l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V187.1z M385.4,182.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V182.3z"/>
<path class="st42" d="M387.4,177v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L387.4,177z"/>
<path class="st42" d="M391.2,182.2c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V182.2z M392.3,182.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V182.3z"/>
<path class="st42" d="M403.9,179.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1v-0.7h2.6
v0.7l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1v-0.7h2.6V179.8z"/>
<path class="st42" d="M404.4,184.7l1-0.2V180l-1-0.2v-0.7h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V184.7z"/>
<path class="st42" d="M418.8,185.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S419.3,185.5,418.8,185.5z M418.6,179.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S419.1,179.9,418.6,179.9z"/>
<path class="st42" d="M422.2,184.7l1-0.2V180l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V184.7z"/>
<path class="st42" d="M432.1,177.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H432.1z"/>
</g>
<line class="st62" x1="360" y1="181.7" x2="181.5" y2="181.7"/>
<line class="st62" x1="360" y1="229" x2="159.4" y2="229"/>
<line class="st62" x1="360" y1="101.5" x2="242.8" y2="101.5"/>
<g>
<path class="st42" d="M368.5,126.3c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
H370l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S367.8,126.3,368.5,126.3z"/>
<path class="st42" d="M372.1,123.8c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V123.8z M373.2,123.9c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V123.9z"/>
<path class="st42" d="M378.6,126.3l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V126.3z"/>
<path class="st42" d="M388.6,119.2v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H388.6z"/>
<path class="st42" d="M395.1,127c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H395.1z M393.2,126.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S392.9,126.2,393.2,126.2z"/>
<path class="st42" d="M397.5,126.3l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V126.3z M399.6,119.1h-1.2v-1.2h1.2V119.1z"/>
<path class="st42" d="M401.3,126.3l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V126.3z"/>
<path class="st42" d="M412,127.2c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S412.6,127.2,412,127.2z M411.9,121.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S412.3,121.5,411.9,121.5z"/>
<path class="st42" d="M415.6,121.4v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L415.6,121.4z"/>
<path class="st42" d="M420.6,126.3l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V126.3z M422.7,119.1h-1.2v-1.2h1.2V119.1z"/>
<path class="st42" d="M426,126.1h2.6l0.1-1h1v1.9h-5v-0.8l3.4-4.6h-2.3l-0.1,1h-1v-1.9h4.8v0.8L426,126.1z"/>
<path class="st42" d="M433.7,127.2c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7H432l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S434.2,127.2,433.7,127.2z M433.5,121.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S434,121.5,433.5,121.5z"/>
<path class="st42" d="M441.5,126.3c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2V124
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L441.5,126.3z
M438.4,124.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V124.1z"/>
<path class="st42" d="M451.5,127c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H451.5z M449.7,126.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S449.3,126.2,449.7,126.2z"/>
<path class="st42" d="M453.9,128.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V128.7z M459.1,124c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V124z"/>
<path class="st42" d="M461.1,128.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V128.7z M466.3,124c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V124z"/>
</g>
<line class="st62" x1="360" y1="123.7" x2="150.2" y2="123.7"/>
<g>
<path class="st42" d="M120.9,356.9l1-0.2v-6.9l-1-0.2v-1.2h4v1.2l-1,0.2v2.6h0.8l1.9-2.7l-0.6-0.1v-1.2h3.8v1.2l-1,0.2l-2.4,3.2
l2.7,3.8l1,0.2v1.2h-3.8v-1.2l0.6-0.1L125,354h-1.1v2.7l1,0.2v1.2h-4V356.9z"/>
<path class="st42" d="M135.6,357.1c-0.2,0.3-0.5,0.6-0.9,0.8s-0.7,0.3-1.2,0.3c-0.8,0-1.4-0.2-1.8-0.7c-0.4-0.5-0.6-1.2-0.6-2.3
v-3l-0.8-0.2v-1.2h0.8h1.9v4.3c0,0.5,0.1,0.9,0.3,1.1s0.4,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1s0.4-0.2,0.5-0.4v-3.9l-0.8-0.2v-1.2
h0.8h1.9v5.8l0.9,0.2v1.2h-2.6L135.6,357.1z"/>
<path class="st42" d="M146,354.6c0,1.1-0.2,1.9-0.7,2.6c-0.5,0.6-1.2,1-2.1,1c-0.4,0-0.8-0.1-1.1-0.3s-0.6-0.4-0.8-0.8l-0.1,0.9
h-1.7v-9l-1-0.2v-1.2h3v3.9c0.2-0.3,0.5-0.5,0.7-0.7s0.6-0.2,1-0.2c0.9,0,1.6,0.3,2.1,1c0.5,0.7,0.7,1.6,0.7,2.8V354.6z
M144.1,354.5c0-0.7-0.1-1.3-0.3-1.7s-0.6-0.6-1.1-0.6c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.5v3c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.5,0.2,0.8,0.2c0.5,0,0.8-0.2,1-0.5c0.2-0.4,0.3-0.9,0.3-1.5V354.5z"/>
<path class="st42" d="M150.3,358.2c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
s0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6S150.9,358.2,150.3,358.2z M150.2,352.2c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1C150.8,352.3,150.5,352.2,150.2,352.2z"/>
<path class="st42" d="M154.3,356.9l0.9-0.2v-4.5l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2h-3.8
V356.9z"/>
<path class="st42" d="M159.7,356.9l0.9-0.2v-4.5l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.5-0.7,0.9-0.9s0.7-0.3,1.2-0.3
c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1v3.1l0.9,0.2v1.2h-3.7v-1.2l0.8-0.2v-3.1c0-0.5-0.1-0.8-0.3-1
c-0.2-0.2-0.5-0.3-0.9-0.3c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.4v3.9l0.8,0.2v1.2h-3.7V356.9z"/>
<path class="st42" d="M171.9,358.2c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
s0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6S172.4,358.2,171.9,358.2z M171.7,352.2c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1C172.4,352.3,172.1,352.2,171.7,352.2z"/>
<path class="st42" d="M178.5,349.1v1.8h1.3v1.4h-1.3v3.7c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.3-0.1l0.2,1.4c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.6c-0.4-0.4-0.5-0.9-0.5-1.7v-3.7
h-1.1v-1.4h1.1v-1.8H178.5z"/>
<path class="st42" d="M184.2,358.2c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
s0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6S184.8,358.2,184.2,358.2z M184,352.2c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1C184.7,352.3,184.4,352.2,184,352.2z"/>
<path class="st42" d="M188.1,356.9l0.9-0.2v-4.5l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2h-3.8
V356.9z"/>
<path class="st42" d="M199.6,353.3h-1.3l-0.2-0.9c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.6,0.1-0.8,0.2
c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.2,0.1,0.4,0.3,0.5s0.6,0.3,1.1,0.4c0.9,0.2,1.5,0.4,2,0.8s0.6,0.8,0.6,1.4c0,0.6-0.3,1.2-0.8,1.6
c-0.6,0.4-1.3,0.6-2.2,0.6c-0.6,0-1.1-0.1-1.5-0.2c-0.5-0.2-0.9-0.4-1.2-0.7l0-1.6h1.4l0.3,0.9c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.3,0.3-0.6c0-0.2-0.1-0.4-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.5-0.4-1.9-0.8
s-0.6-0.8-0.6-1.4c0-0.6,0.2-1.1,0.7-1.6s1.2-0.7,2.1-0.7c0.6,0,1.1,0.1,1.6,0.2s0.9,0.3,1.2,0.6L199.6,353.3z"/>
<path class="st42" d="M211.9,351.6h-1.4l-0.2-1.3c-0.2-0.2-0.4-0.3-0.7-0.5s-0.6-0.2-1-0.2c-0.8,0-1.5,0.3-1.9,0.9
c-0.5,0.6-0.7,1.4-0.7,2.4v0.3c0,1,0.2,1.8,0.7,2.4c0.5,0.6,1.1,0.9,1.9,0.9c0.4,0,0.7-0.1,1-0.2c0.3-0.1,0.6-0.3,0.7-0.5l0.2-1.3
h1.4v1.9c-0.4,0.5-0.9,0.8-1.5,1.1c-0.6,0.3-1.3,0.4-2,0.4c-1.3,0-2.4-0.4-3.2-1.3s-1.2-2.1-1.2-3.5V353c0-1.4,0.4-2.6,1.2-3.5
c0.8-0.9,1.9-1.4,3.2-1.4c0.7,0,1.4,0.1,2,0.4c0.6,0.3,1.1,0.6,1.5,1.1V351.6z"/>
<path class="st42" d="M212.6,348.8v-1.2h3v9l0.9,0.2v1.2h-3.8v-1.2l0.9-0.2V349L212.6,348.8z"/>
<path class="st42" d="M222.2,357.1c-0.2,0.3-0.5,0.6-0.9,0.8s-0.7,0.3-1.2,0.3c-0.8,0-1.4-0.2-1.8-0.7c-0.4-0.5-0.6-1.2-0.6-2.3
v-3L217,352v-1.2h0.8h1.9v4.3c0,0.5,0.1,0.9,0.3,1.1s0.4,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1s0.4-0.2,0.5-0.4v-3.9l-0.8-0.2v-1.2h0.8
h1.9v5.8l0.9,0.2v1.2h-2.6L222.2,357.1z"/>
<path class="st42" d="M231.5,353.3h-1.3l-0.2-0.9c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.4-0.1-0.7-0.1c-0.3,0-0.6,0.1-0.8,0.2
c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.2,0.1,0.4,0.3,0.5s0.6,0.3,1.1,0.4c0.9,0.2,1.5,0.4,2,0.8s0.6,0.8,0.6,1.4c0,0.6-0.3,1.2-0.8,1.6
c-0.6,0.4-1.3,0.6-2.2,0.6c-0.6,0-1.1-0.1-1.5-0.2c-0.5-0.2-0.9-0.4-1.2-0.7l0-1.6h1.4l0.3,0.9c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.3,0.3-0.6c0-0.2-0.1-0.4-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.5-0.4-1.9-0.8
s-0.6-0.8-0.6-1.4c0-0.6,0.2-1.1,0.7-1.6s1.2-0.7,2.1-0.7c0.6,0,1.1,0.1,1.6,0.2s0.9,0.3,1.2,0.6L231.5,353.3z"/>
<path class="st42" d="M235.5,349.1v1.8h1.3v1.4h-1.3v3.7c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0
c0.1,0,0.2,0,0.3-0.1l0.2,1.4c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.4,0-0.7,0c-0.7,0-1.2-0.2-1.5-0.6c-0.4-0.4-0.5-0.9-0.5-1.7v-3.7
h-1.1v-1.4h1.1v-1.8H235.5z"/>
<path class="st42" d="M241.2,358.2c-1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.5-0.9-2.5v-0.3c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.4-1
c1,0,1.7,0.3,2.3,0.9c0.5,0.6,0.8,1.4,0.8,2.4v1.1h-4.3l0,0c0,0.5,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.1,0.5c0.4,0,0.8,0,1.1-0.1
s0.6-0.2,0.9-0.4l0.5,1.2c-0.3,0.2-0.7,0.4-1.2,0.6S241.8,358.2,241.2,358.2z M241,352.2c-0.4,0-0.6,0.1-0.8,0.4
c-0.2,0.3-0.3,0.6-0.4,1.1l0,0h2.4v-0.2c0-0.4-0.1-0.7-0.3-1C241.7,352.3,241.4,352.2,241,352.2z"/>
<path class="st42" d="M245.1,356.9l0.9-0.2v-4.5l-1-0.2v-1.2h2.8l0.1,1c0.2-0.4,0.4-0.7,0.7-0.9c0.3-0.2,0.6-0.3,0.9-0.3
c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0.1l-0.2,1.8l-0.8,0c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.4,0.5v3.5l0.9,0.2v1.2h-3.8
V356.9z"/>
</g>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 48 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2{fill:#326de6}.cls-3{opacity:.1;fill:url(#linear-gradient)}.cls-4{fill:none;stroke:#326de6;stroke-miterlimit:10;stroke-width:1.2px}.cls-5{fill:#06f7c9;stroke:#011f38;stroke-linecap:round;stroke-linejoin:round;stroke-width:.8px}</style><linearGradient id="linear-gradient" x1="140.96" y1="100.17" x2="209.04" y2="100.17" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#10ffc6"/></linearGradient></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><path class="cls-1" d="M175 167.25l-58.1-33.54V66.63L175 33.08l58.1 33.55v67.08L175 167.25z"/><path class="cls-2" d="M175 168.16a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.63a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79L175.46 168a.91.91 0 0 1-.46.16zm-57.18-35l57.18 33 57.18-33v-66L175 34.14l-57.18 33z"/><circle class="cls-3" cx="175" cy="100.17" r="34.04"/><circle class="cls-4" cx="175" cy="100.17" r="34.13"/><path class="cls-5" d="M163.14 93.32L175 86.47l11.86 6.85-11.86 6.85-11.86-6.85z"/><path class="cls-5" d="M163.14 107.02v-13.7l11.86 6.85v13.69l-11.86-6.84zM175 113.86v-13.69l11.86-6.85v13.7L175 113.86z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

@@ -0,0 +1,521 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 504 432" style="enable-background:new 0 0 504 432;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
</g>
<g id="Node">
<polygon class="st13" points="27.2,290.9 27.2,311.3 191.3,406 209,395.8 "/>
<polygon class="st14" points="27.2,311.3 27.2,122 191.3,27.3 355.3,122 355.3,311.3 191.3,406 "/>
<polygon class="st15" points="110.5,356.6 116.9,345.4 204.2,395.8 191.3,403.3 "/>
<g>
<path class="st6" d="M145,365.7c0.8,0.4,1.3,1,1.5,1.8c0.2,0.7,0.1,1.5-0.4,2.2l-0.5,0.8c-0.4,0.8-1,1.2-1.8,1.4
c-0.7,0.2-1.5,0.1-2.3-0.4l-2.5-1.4l0.3-0.5l0.7,0.3l2.7-4.7l-0.6-0.5l0.3-0.5l0.7,0.4L145,365.7z M143.6,365.7l-2.7,4.7l1,0.6
c0.5,0.3,1.1,0.4,1.6,0.2c0.5-0.2,0.9-0.5,1.3-1.1l0.5-0.8c0.3-0.6,0.4-1.1,0.3-1.6c-0.1-0.5-0.4-1-1-1.3L143.6,365.7z"/>
<path class="st6" d="M146.3,371.3c0.4-0.6,0.9-1.1,1.5-1.3c0.6-0.2,1.2-0.2,1.8,0.2c0.6,0.4,1,0.8,1.1,1.5s0,1.3-0.4,1.9l-0.1,0.1
c-0.4,0.7-0.9,1.1-1.5,1.3c-0.6,0.2-1.2,0.1-1.8-0.2c-0.6-0.4-1-0.8-1.1-1.5S145.8,372,146.3,371.3L146.3,371.3z M147,371.8
c-0.3,0.5-0.4,0.9-0.4,1.3s0.2,0.7,0.6,1c0.4,0.2,0.8,0.2,1.1,0c0.4-0.2,0.7-0.5,1-1l0.1-0.1c0.3-0.5,0.4-0.9,0.4-1.3
c0-0.4-0.2-0.7-0.6-1c-0.4-0.2-0.8-0.2-1.1,0C147.6,370.9,147.3,371.3,147,371.8L147,371.8z"/>
<path class="st6" d="M151.9,376.8c0.3,0.2,0.5,0.2,0.8,0.2c0.3,0,0.5-0.2,0.7-0.4l0.7,0.4l0,0c-0.2,0.4-0.6,0.6-1.1,0.7
c-0.5,0.1-1,0-1.5-0.3c-0.6-0.4-1-0.9-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.4-1.3c0.6-0.2,1.2-0.2,1.8,0.2
c0.4,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.4,0.9l-0.5,1l-0.6-0.4l0.2-0.8c0-0.1-0.1-0.3-0.2-0.4c-0.1-0.1-0.3-0.3-0.5-0.4
c-0.4-0.2-0.8-0.3-1.2-0.1c-0.4,0.2-0.7,0.5-0.9,1l-0.1,0.2c-0.3,0.4-0.4,0.9-0.4,1.3S151.5,376.6,151.9,376.8z"/>
<path class="st6" d="M157.4,372.9l0.3-0.5l1.5,0.8l-2.1,3.7l0.5,0.3l1.6-0.6l-0.4-0.3l0.3-0.5l1.8,1.1l-0.3,0.5l-0.6-0.2l-2,0.7
l0.4,2.6l0.4,0.4l-0.3,0.5l-1.8-1.1l0.3-0.5l0.4,0.2l-0.3-2.1l-0.5-0.3l-0.8,1.4l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3
l2.9-5.1L157.4,372.9z"/>
<path class="st6" d="M161,382.9c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7l-0.3,0.5l-2.8-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
s0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0C161.7,383.2,161.4,383.1,161,382.9z
M163.2,378.9c-0.3-0.2-0.6-0.2-0.9-0.1c-0.3,0.1-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1c0.2-0.3,0.2-0.6,0.2-0.9
C163.7,379.3,163.5,379.1,163.2,378.9z"/>
<path class="st6" d="M165.8,380.4l0.3-0.5l1.4,0.8l-0.3,0.7c0.3-0.2,0.5-0.2,0.8-0.3c0.3,0,0.5,0,0.7,0.2c0.1,0,0.1,0.1,0.2,0.1
c0.1,0,0.1,0.1,0.1,0.1l-0.5,0.7l-0.4-0.3c-0.2-0.1-0.4-0.2-0.6-0.2c-0.2,0-0.4,0.1-0.6,0.2l-1.5,2.5l0.6,0.5l-0.3,0.5l-2.1-1.2
l0.3-0.5l0.7,0.3l1.8-3.1L165.8,380.4z"/>
</g>
<g>
<path class="st6" d="M59.5,316.4l0.3-0.5l1.5,0.8l-2.1,3.7l0.5,0.3l1.6-0.6l-0.4-0.3l0.3-0.5l1.8,1.1l-0.3,0.5l-0.6-0.2l-2,0.7
l0.4,2.6l0.4,0.4l-0.3,0.5l-1.8-1.1l0.3-0.5l0.4,0.2l-0.3-2.1l-0.5-0.3l-0.8,1.4l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3
l2.9-5.1L59.5,316.4z"/>
<path class="st6" d="M64.8,326.4c-0.3,0.2-0.6,0.2-0.8,0.2c-0.3,0-0.6-0.1-0.9-0.2c-0.5-0.3-0.8-0.6-0.9-1.1
c-0.1-0.5,0.1-1,0.4-1.7l1.1-2l-0.4-0.4l0.3-0.5l0.5,0.3l0.8,0.5l-1.5,2.6c-0.3,0.5-0.4,0.8-0.3,1.1c0,0.3,0.2,0.5,0.5,0.6
c0.3,0.2,0.6,0.2,0.8,0.2c0.3,0,0.5-0.1,0.7-0.2l1.5-2.5l-0.5-0.5l0.3-0.5l0.6,0.3l0.8,0.5l-2.2,3.8l0.4,0.4l-0.3,0.5l-1.2-0.7
L64.8,326.4z"/>
<path class="st6" d="M71.5,328.4c-0.4,0.6-0.8,1.1-1.3,1.3c-0.5,0.2-1.1,0.2-1.6-0.1c-0.3-0.2-0.5-0.4-0.7-0.6
c-0.1-0.2-0.2-0.5-0.2-0.8l-0.4,0.5l-0.7-0.4l3.3-5.7l-0.6-0.5l0.3-0.5l1.5,0.8l-1.4,2.5c0.3-0.1,0.5-0.2,0.8-0.2
c0.3,0,0.5,0.1,0.8,0.3c0.5,0.3,0.8,0.8,0.9,1.4C72.2,327,72,327.6,71.5,328.4L71.5,328.4z M70.8,327.9c0.3-0.5,0.4-1,0.4-1.4
c0-0.4-0.2-0.7-0.6-1c-0.2-0.1-0.5-0.2-0.7-0.2s-0.5,0.1-0.7,0.2l-1.1,1.9c0,0.3,0,0.5,0.1,0.7c0.1,0.2,0.3,0.4,0.5,0.5
c0.4,0.2,0.7,0.2,1.1,0.1C70.2,328.7,70.5,328.4,70.8,327.9L70.8,327.9z"/>
<path class="st6" d="M73.1,332.1c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7L76,331l-2.9-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
c0,0.4,0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0
C73.8,332.5,73.5,332.3,73.1,332.1z M75.3,328.1c-0.3-0.2-0.6-0.2-0.9-0.1s-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1
c0.2-0.3,0.2-0.6,0.2-0.9S75.6,328.3,75.3,328.1z"/>
<path class="st6" d="M78.9,327.6l0.3-0.5l1.5,0.8l-3.3,5.7l0.6,0.5l-0.3,0.5l-2.1-1.2l0.3-0.5l0.7,0.3l2.9-5.1L78.9,327.6z"/>
<path class="st6" d="M80.2,336.2c-0.6-0.4-1-0.8-1.1-1.5c-0.1-0.6,0-1.2,0.4-1.9l0.1-0.2c0.4-0.6,0.8-1,1.5-1.2
c0.6-0.2,1.2-0.2,1.7,0.1c0.6,0.3,0.9,0.8,1,1.3c0.1,0.5,0,1.1-0.4,1.7l-0.3,0.5l-2.9-1.6l0,0c-0.2,0.4-0.3,0.8-0.3,1.2
c0,0.4,0.3,0.7,0.6,0.9c0.3,0.2,0.5,0.3,0.8,0.3c0.2,0,0.5,0,0.7,0l0,0.7c-0.2,0.1-0.5,0.1-0.8,0
C80.9,336.6,80.6,336.4,80.2,336.2z M82.3,332.2c-0.3-0.2-0.6-0.2-0.9-0.1s-0.6,0.3-0.8,0.6l0,0l2,1.2l0.1-0.1
c0.2-0.3,0.2-0.6,0.2-0.9S82.7,332.4,82.3,332.2z"/>
<path class="st6" d="M87.3,332.9l-0.6,1.1l0.8,0.5l-0.3,0.6l-0.8-0.5l-1.5,2.7c-0.1,0.2-0.2,0.4-0.1,0.5c0,0.1,0.1,0.2,0.3,0.3
c0.1,0,0.2,0.1,0.2,0.1c0.1,0,0.2,0.1,0.2,0.1l-0.2,0.6c-0.1,0-0.2,0-0.4-0.1c-0.2-0.1-0.3-0.1-0.5-0.2c-0.3-0.2-0.5-0.4-0.6-0.7
c-0.1-0.3,0-0.7,0.2-1.1l1.5-2.7l-0.7-0.4l0.3-0.6l0.7,0.4l0.6-1.1L87.3,332.9z"/>
</g>
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
</g>
<g id="service">
</g>
<g id="pods">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="112.0342" y1="278.8816" x2="173.4959" y2="278.8816">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_1_);" cx="142.8" cy="278.9" r="30.7"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="148.6926" y1="192.4681" x2="194.7889" y2="192.4681">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_2_);" cx="171.7" cy="192.5" r="23"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="217.9671" y1="162.705" x2="299.9161" y2="162.705">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st30" cx="258.9" cy="162.7" r="41"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="205.6747" y1="278.4409" x2="312.2084" y2="278.4409">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st31" cx="258.9" cy="278.4" r="53.3"/>
<circle class="st34" cx="142.8" cy="278.9" r="30.7"/>
<circle class="st34" cx="171.7" cy="192.5" r="23"/>
<circle class="st34" cx="258.9" cy="162.7" r="41"/>
<circle class="st34" cx="258.9" cy="278.4" r="53.3"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M111.6,266.2l0.5-1.3l-6.1-2.8l-0.5,1.5l-0.4-0.2l0.5-2.2l6.7,3.1l0.7-1.3l0.4,0.2l-1.5,3.2L111.6,266.2z"/>
<path class="st42" d="M114.1,256.7c0.9,0.6,1.4,1.2,1.6,1.9c0.2,0.7,0.1,1.3-0.3,2c-0.4,0.6-1,1-1.7,1c-0.7,0.1-1.5-0.2-2.3-0.8
l-1.5-1c-0.8-0.6-1.4-1.2-1.6-1.9s-0.1-1.3,0.3-2c0.4-0.6,1-1,1.7-1c0.7-0.1,1.5,0.2,2.3,0.8L114.1,256.7z M112.1,256.2
c-0.7-0.5-1.3-0.7-1.8-0.7c-0.5,0-1,0.3-1.3,0.8c-0.3,0.5-0.4,1-0.2,1.5c0.2,0.5,0.6,1,1.3,1.4l1.6,1.1c0.7,0.5,1.3,0.7,1.8,0.7
s1-0.3,1.3-0.7c0.3-0.5,0.4-1,0.2-1.5s-0.6-1-1.3-1.4L112.1,256.2z"/>
<path class="st42" d="M118,256.9l-0.5,0.6l-0.7-0.6l0.5-0.6L118,256.9z"/>
<path class="st42" d="M118.6,255.5l1-1l-4.6-4.9l-1,1.2l-0.3-0.3l1.3-1.9l5.1,5.4l1.1-0.9l0.3,0.4l-2.6,2.4L118.6,255.5z"/>
<path class="st42" d="M124.4,247.6c0.6,0.8,0.8,1.6,0.8,2.3c0,0.7-0.4,1.3-1,1.7c-0.6,0.4-1.3,0.5-2,0.3c-0.7-0.2-1.3-0.7-1.9-1.6
l-1-1.5c-0.6-0.8-0.8-1.6-0.8-2.3c0-0.7,0.4-1.3,1-1.7c0.6-0.4,1.3-0.6,2-0.3c0.7,0.2,1.3,0.7,1.9,1.6L124.4,247.6z M122.8,246.4
c-0.5-0.7-0.9-1.1-1.4-1.3c-0.5-0.2-1-0.1-1.5,0.2c-0.5,0.3-0.7,0.8-0.7,1.3c0,0.5,0.2,1.1,0.7,1.8l1.1,1.6
c0.5,0.7,0.9,1.1,1.5,1.3c0.5,0.2,1,0.1,1.5-0.2c0.5-0.3,0.7-0.8,0.7-1.3s-0.2-1.1-0.7-1.8L122.8,246.4z"/>
<path class="st42" d="M128,249.2l-0.7,0.3l-0.4-0.8l0.7-0.3L128,249.2z"/>
<path class="st42" d="M129.1,248.1l1.3-0.6l-2.4-6.3l-1.4,0.8l-0.2-0.4l1.9-1.3l2.7,6.9l1.4-0.5l0.2,0.4l-3.3,1.3L129.1,248.1z"/>
<path class="st42" d="M137.4,243c0.2,1,0.2,1.8-0.1,2.5c-0.3,0.6-0.8,1-1.6,1.2c-0.8,0.2-1.4,0-2-0.4c-0.5-0.4-0.9-1.2-1.2-2.2
l-0.4-1.7c-0.2-1-0.2-1.8,0.1-2.5s0.8-1,1.6-1.2c0.8-0.2,1.4,0,2,0.4c0.5,0.5,0.9,1.2,1.2,2.2L137.4,243z M136.3,241.3
c-0.2-0.8-0.5-1.4-0.9-1.7c-0.4-0.4-0.9-0.5-1.5-0.4c-0.6,0.1-1,0.4-1.2,0.9c-0.2,0.5-0.2,1.1-0.1,1.9l0.4,1.9
c0.2,0.8,0.5,1.4,0.9,1.7c0.4,0.4,0.9,0.5,1.5,0.4c0.6-0.1,1-0.4,1.2-0.9c0.2-0.5,0.2-1.1,0.1-1.9L136.3,241.3z"/>
<path class="st42" d="M140.1,245.9l-0.7,0.1l-0.1-0.9l0.7-0.1L140.1,245.9z"/>
<path class="st42" d="M141.4,245.7l0-0.5l2.7-2.9c0.5-0.5,0.9-1,1.1-1.3c0.2-0.4,0.3-0.7,0.3-1c0-0.5-0.1-0.9-0.4-1.2
c-0.3-0.3-0.7-0.5-1.2-0.5c-0.6,0-1.1,0.1-1.4,0.5c-0.3,0.3-0.5,0.8-0.5,1.3l-0.6,0l0,0c0-0.7,0.2-1.2,0.7-1.7
c0.5-0.4,1.1-0.7,1.8-0.6c0.7,0,1.2,0.2,1.6,0.6s0.6,0.9,0.6,1.6c0,0.4-0.2,0.9-0.5,1.3c-0.3,0.4-0.7,0.9-1.2,1.5l-2.3,2.4l0,0
l3.5,0.1l0.1-1.1l0.6,0l-0.1,1.7L141.4,245.7z"/>
</g>
<g>
<path class="st42" d="M148.3,182.8l0.6-1.3l-6-3l-0.5,1.5l-0.4-0.2l0.6-2.2l6.7,3.3l0.7-1.2l0.4,0.2l-1.5,3.2L148.3,182.8z"/>
<path class="st42" d="M151.1,173.5c0.8,0.6,1.3,1.3,1.5,2c0.2,0.7,0,1.3-0.5,1.9c-0.5,0.6-1.1,0.9-1.8,0.9c-0.7,0-1.5-0.3-2.3-0.9
l-1.4-1.1c-0.8-0.6-1.3-1.3-1.5-2c-0.2-0.7,0-1.3,0.4-1.9c0.5-0.6,1.1-0.9,1.8-0.9c0.7,0,1.5,0.3,2.3,0.9L151.1,173.5z
M149.2,172.8c-0.6-0.5-1.2-0.8-1.8-0.8s-1,0.2-1.4,0.7c-0.4,0.5-0.5,1-0.3,1.5s0.6,1,1.2,1.5l1.6,1.2c0.6,0.5,1.2,0.8,1.8,0.8
c0.5,0,1-0.2,1.4-0.7c0.4-0.5,0.5-1,0.3-1.5c-0.2-0.5-0.6-1-1.2-1.5L149.2,172.8z"/>
<path class="st42" d="M155.1,174.1l-0.5,0.5l-0.6-0.7l0.5-0.5L155.1,174.1z"/>
<path class="st42" d="M155.8,172.7l1.1-0.9l-3.9-5.5l-1.2,1.1l-0.3-0.4l1.5-1.7l4.3,6.1l1.2-0.8l0.3,0.4l-2.9,2L155.8,172.7z"/>
<path class="st42" d="M162.8,165.9c0.4,0.9,0.5,1.8,0.4,2.4c-0.2,0.7-0.6,1.2-1.3,1.5c-0.7,0.3-1.4,0.3-2,0
c-0.6-0.3-1.1-1-1.6-1.9l-0.7-1.6c-0.4-0.9-0.5-1.8-0.4-2.4c0.2-0.7,0.6-1.2,1.3-1.5c0.7-0.3,1.4-0.3,2,0c0.6,0.3,1.1,1,1.6,1.9
L162.8,165.9z M161.4,164.4c-0.3-0.7-0.7-1.3-1.2-1.5s-1-0.3-1.5-0.1c-0.5,0.2-0.9,0.6-1,1.1c-0.1,0.5,0,1.2,0.3,1.9l0.8,1.8
c0.3,0.7,0.7,1.3,1.2,1.5c0.5,0.3,1,0.3,1.5,0.1c0.5-0.2,0.9-0.6,1-1.2s0-1.2-0.3-1.9L161.4,164.4z"/>
<path class="st42" d="M165.9,168.3l-0.7,0.2l-0.2-0.9l0.7-0.2L165.9,168.3z"/>
<path class="st42" d="M167.2,167.5l1.4-0.2l-0.8-6.7l-1.5,0.4l-0.1-0.5l2.2-0.7l0.8,7.4l1.4-0.1l0.1,0.5l-3.5,0.4L167.2,167.5z"/>
<path class="st42" d="M176.6,164.9c-0.1,1-0.4,1.8-0.9,2.3s-1.1,0.7-1.9,0.7c-0.8-0.1-1.3-0.4-1.7-1c-0.4-0.6-0.5-1.4-0.4-2.4
l0.2-1.8c0.1-1,0.4-1.8,0.9-2.3c0.5-0.5,1.1-0.7,1.9-0.7c0.8,0.1,1.4,0.4,1.7,1c0.4,0.6,0.5,1.4,0.4,2.4L176.6,164.9z
M176.1,162.9c0.1-0.8,0-1.5-0.3-1.9c-0.3-0.5-0.7-0.7-1.3-0.8c-0.6-0.1-1.1,0.1-1.4,0.5s-0.6,1-0.6,1.8l-0.2,2
c-0.1,0.8,0,1.4,0.3,1.9c0.3,0.5,0.7,0.7,1.3,0.8c0.6,0.1,1.1-0.1,1.4-0.5c0.3-0.4,0.6-1,0.6-1.8L176.1,162.9z"/>
<path class="st42" d="M178.2,168.5l-0.7-0.2l0.2-0.9l0.7,0.2L178.2,168.5z"/>
<path class="st42" d="M179.7,168.4l1.3,0.5l2.5-6.2l-1.5-0.4l0.2-0.4l2.2,0.4l-2.8,6.9l1.3,0.6l-0.2,0.4l-3.3-1.3L179.7,168.4z"/>
</g>
<g>
<path class="st42" d="M224.4,135.7l0.9-1.1l-5.1-4.3l-0.8,1.3l-0.4-0.3l1.1-2l5.7,4.8l1-1l0.4,0.3l-2.3,2.7L224.4,135.7z"/>
<path class="st42" d="M229.1,127.1c0.7,0.8,1.1,1.5,1.1,2.2c0.1,0.7-0.2,1.3-0.8,1.8c-0.6,0.5-1.2,0.7-1.9,0.6
c-0.7-0.1-1.4-0.5-2.1-1.3l-1.2-1.3c-0.7-0.7-1.1-1.5-1.1-2.2s0.2-1.3,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.6c0.7,0.1,1.4,0.5,2.1,1.3
L229.1,127.1z M227.3,126.1c-0.6-0.6-1.1-1-1.6-1.1c-0.5-0.1-1,0-1.4,0.4c-0.4,0.4-0.6,0.9-0.5,1.4c0.1,0.5,0.4,1.1,0.9,1.7
l1.4,1.5c0.6,0.6,1.1,0.9,1.6,1.1c0.5,0.1,1,0,1.4-0.4c0.4-0.4,0.6-0.9,0.5-1.4c-0.1-0.5-0.4-1.1-0.9-1.7L227.3,126.1z"/>
<path class="st42" d="M232.8,128.1l-0.6,0.5l-0.5-0.7l0.6-0.5L232.8,128.1z"/>
<path class="st42" d="M233.7,126.8l1.2-0.8l-3.7-5.6l-1.2,1l-0.2-0.4l1.6-1.6l4,6.2l1.2-0.7l0.3,0.4l-2.9,1.9L233.7,126.8z"/>
<path class="st42" d="M240.8,119.9c0.5,0.9,0.6,1.7,0.5,2.4c-0.1,0.7-0.6,1.2-1.3,1.5c-0.7,0.3-1.4,0.4-2,0.1
c-0.6-0.3-1.2-0.9-1.6-1.8l-0.8-1.6c-0.5-0.9-0.6-1.7-0.5-2.4c0.1-0.7,0.6-1.2,1.3-1.5c0.7-0.3,1.4-0.4,2-0.1
c0.6,0.3,1.2,0.9,1.6,1.8L240.8,119.9z M239.3,118.5c-0.4-0.7-0.8-1.2-1.2-1.5c-0.5-0.3-1-0.3-1.5,0c-0.5,0.3-0.8,0.7-0.9,1.2
c-0.1,0.5,0.1,1.2,0.4,1.9l0.9,1.8c0.4,0.7,0.8,1.2,1.3,1.5s1,0.3,1.5,0c0.5-0.3,0.8-0.7,0.9-1.2c0.1-0.5-0.1-1.2-0.4-1.9
L239.3,118.5z"/>
<path class="st42" d="M244,122l-0.7,0.3l-0.3-0.8l0.7-0.3L244,122z"/>
<path class="st42" d="M245.3,121l1.4-0.5l-1.8-6.5l-1.4,0.6l-0.1-0.4l2-1.1l2,7.1l1.4-0.3l0.1,0.5l-3.4,1L245.3,121z"/>
<path class="st42" d="M254,116.4c0.2,1,0.1,1.8-0.3,2.4c-0.3,0.6-0.9,1-1.7,1.1c-0.8,0.1-1.4-0.1-1.9-0.5c-0.5-0.5-0.9-1.2-1-2.2
l-0.3-1.8c-0.2-1-0.1-1.8,0.3-2.4c0.3-0.6,0.9-1,1.7-1.1c0.8-0.1,1.4,0.1,1.9,0.5c0.5,0.5,0.9,1.2,1,2.2L254,116.4z M253.1,114.7
c-0.1-0.8-0.4-1.4-0.8-1.8c-0.4-0.4-0.9-0.5-1.4-0.4c-0.6,0.1-1,0.4-1.2,0.9s-0.3,1.1-0.2,1.9l0.3,2c0.1,0.8,0.4,1.4,0.8,1.8
c0.4,0.4,0.9,0.5,1.4,0.4c0.6-0.1,1-0.4,1.2-0.9c0.2-0.5,0.3-1.1,0.2-1.9L253.1,114.7z"/>
<path class="st42" d="M256.6,119.4l-0.7,0l-0.1-0.9l0.7,0L256.6,119.4z"/>
<path class="st42" d="M259.6,115l0.8,0c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2
c-0.3-0.3-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.1-1.3,0.4c-0.3,0.3-0.5,0.7-0.5,1.2l-0.6,0l0,0c0-0.6,0.2-1.1,0.7-1.5
c0.5-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.6c0.4,0.4,0.6,1,0.6,1.6c0,0.4-0.1,0.7-0.4,1c-0.2,0.3-0.6,0.6-1,0.7
c0.5,0.2,0.9,0.4,1.1,0.8s0.3,0.7,0.3,1.2c0,0.7-0.3,1.3-0.7,1.6c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7,0-1.3-0.2-1.8-0.7
c-0.5-0.4-0.7-1-0.7-1.7l0,0l0.6,0c0,0.5,0.1,0.9,0.5,1.3c0.3,0.3,0.8,0.5,1.3,0.5c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.7,0.5-1.2
c0-0.6-0.1-1-0.5-1.3s-0.8-0.4-1.4-0.4l-0.8,0L259.6,115z"/>
</g>
<g>
<path class="st42" d="M217.2,240.9l0.9-1.1l-4.9-4.6l-0.9,1.3l-0.3-0.3l1.2-1.9l5.4,5.1l1-1l0.3,0.3l-2.4,2.5L217.2,240.9z"/>
<path class="st42" d="M222.4,232.4c0.7,0.8,1,1.5,1.1,2.2c0,0.7-0.2,1.3-0.8,1.8c-0.6,0.5-1.2,0.7-1.9,0.6
c-0.7-0.1-1.4-0.6-2.1-1.4l-1.2-1.3c-0.7-0.8-1-1.5-1.1-2.2c0-0.7,0.2-1.3,0.8-1.8c0.6-0.5,1.2-0.7,1.9-0.6s1.4,0.6,2.1,1.4
L222.4,232.4z M220.6,231.4c-0.5-0.6-1.1-1-1.6-1.1c-0.5-0.1-1,0-1.5,0.4c-0.4,0.4-0.6,0.8-0.6,1.4s0.3,1.1,0.9,1.7l1.3,1.5
c0.5,0.6,1.1,1,1.6,1.1c0.5,0.1,1,0,1.5-0.4c0.4-0.4,0.6-0.8,0.6-1.4c-0.1-0.5-0.4-1.1-0.9-1.7L220.6,231.4z"/>
<path class="st42" d="M226.1,233.5l-0.6,0.4l-0.5-0.7l0.6-0.4L226.1,233.5z"/>
<path class="st42" d="M227,232.2l1.2-0.8l-3.7-5.6l-1.2,1l-0.2-0.4l1.6-1.6l4.1,6.2l1.2-0.7l0.3,0.4l-2.9,1.9L227,232.2z"/>
<path class="st42" d="M233.9,225.2c0.5,0.9,0.7,1.7,0.5,2.4c-0.1,0.7-0.5,1.2-1.2,1.6c-0.7,0.4-1.4,0.4-2,0.1
c-0.6-0.3-1.2-0.9-1.7-1.8l-0.8-1.6c-0.5-0.9-0.6-1.7-0.5-2.4c0.1-0.7,0.5-1.2,1.2-1.6c0.7-0.4,1.4-0.4,2-0.1
c0.6,0.3,1.2,0.9,1.7,1.8L233.9,225.2z M232.5,223.8c-0.4-0.7-0.8-1.2-1.3-1.5c-0.5-0.2-1-0.2-1.5,0c-0.5,0.3-0.8,0.7-0.9,1.2
c-0.1,0.5,0.1,1.2,0.5,1.9l0.9,1.8c0.4,0.7,0.8,1.2,1.3,1.4s1,0.2,1.5,0c0.5-0.3,0.8-0.7,0.9-1.2c0.1-0.5-0.1-1.2-0.5-1.9
L232.5,223.8z"/>
<path class="st42" d="M237.3,227.1l-0.7,0.3l-0.4-0.8l0.7-0.3L237.3,227.1z"/>
<path class="st42" d="M238.5,226.1l1.3-0.5l-2.3-6.3l-1.4,0.7l-0.2-0.4l1.9-1.2l2.5,7l1.4-0.4l0.2,0.5l-3.3,1.2L238.5,226.1z"/>
<path class="st42" d="M246.9,220.9c0.3,1,0.2,1.8-0.1,2.5c-0.3,0.6-0.8,1.1-1.6,1.3c-0.7,0.2-1.4,0.1-2-0.4
c-0.6-0.4-1-1.1-1.2-2.1l-0.4-1.7c-0.3-1-0.2-1.8,0.1-2.5c0.3-0.6,0.8-1.1,1.6-1.3c0.8-0.2,1.4-0.1,2,0.4s1,1.1,1.2,2.1
L246.9,220.9z M245.8,219.2c-0.2-0.8-0.5-1.4-0.9-1.7c-0.4-0.3-0.9-0.5-1.5-0.3c-0.6,0.1-1,0.5-1.1,1c-0.2,0.5-0.2,1.1,0,1.9
l0.5,1.9c0.2,0.8,0.5,1.4,0.9,1.7c0.4,0.4,0.9,0.5,1.5,0.3c0.6-0.1,1-0.5,1.1-1s0.2-1.2,0-1.9L245.8,219.2z"/>
<path class="st42" d="M249.7,223.5l-0.7,0.1l-0.2-0.9l0.7-0.1L249.7,223.5z"/>
<path class="st42" d="M255,220.3l1.2-0.1l0.1,0.5l-1.2,0.1l0.1,1.5l0.9,0l0,0.5l-2.4,0.2l0-0.5l0.9-0.2l-0.1-1.5l-3.7,0.3l0-0.4
l3.1-5.9l0.7-0.1L255,220.3z M251.5,220.6l2.9-0.3l-0.4-4.5l0,0l-0.2,0.6L251.5,220.6z"/>
</g>
</g>
<g id="deployments">
</g>
<g id="containers_x2F_volumes">
<g>
<g>
<polygon class="st50" points="124,273.8 131.9,269.3 139.8,273.8 131.9,278.4 "/>
<polygon class="st50" points="124,283 124,273.8 131.9,278.4 131.9,287.6 "/>
<polygon class="st50" points="131.9,287.6 131.9,278.4 139.8,273.8 139.8,283 "/>
</g>
<g>
<path class="st51" d="M161.6,282.4C161.6,282.4,161.6,282.4,161.6,282.4C161.6,282.3,161.6,282.3,161.6,282.4v-8h-15.8v7.9
c0,0,0,0,0,0c0,0,0,0,0,0v0.1h0c0.2,2.2,3.6,3.9,7.9,3.9s7.7-1.7,7.9-3.9h0V282.4z"/>
<ellipse class="st51" cx="153.7" cy="274.5" rx="7.9" ry="4.1"/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="163.8,187.9 171.7,183.3 179.7,187.9 171.7,192.5 "/>
<polygon class="st50" points="163.8,197 163.8,187.9 171.7,192.5 171.7,201.6 "/>
<polygon class="st50" points="171.7,201.6 171.7,192.5 179.7,187.9 179.7,197 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="251,148.6 258.9,144 266.9,148.6 258.9,153.2 "/>
<polygon class="st50" points="251,157.8 251,148.6 258.9,153.2 258.9,162.3 "/>
<polygon class="st50" points="258.9,162.3 258.9,153.2 266.9,148.6 266.9,157.8 "/>
</g>
<g>
<polygon class="st50" points="242.1,166 248,162.6 254,166 248,169.5 "/>
<polygon class="st50" points="242.1,172.9 242.1,166 248,169.5 248,176.3 "/>
<polygon class="st50" points="248,176.3 248,169.5 254,166 254,172.9 "/>
</g>
<g>
<path class="st51" d="M277.7,173.4C277.7,173.4,277.7,173.4,277.7,173.4C277.7,173.4,277.7,173.4,277.7,173.4v-8h-15.8v7.9
c0,0,0,0,0,0c0,0,0,0,0,0v0.1h0c0.2,2.2,3.6,3.9,7.9,3.9c4.3,0,7.7-1.7,7.9-3.9h0V173.4z"/>
<ellipse class="st51" cx="269.8" cy="165.5" rx="7.9" ry="4.1"/>
</g>
</g>
<g>
<g>
<path class="st51" d="M241.9,284.5C241.9,284.5,241.9,284.5,241.9,284.5C241.9,284.4,241.9,284.4,241.9,284.5v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V284.5z"/>
<ellipse class="st51" cx="231.3" cy="274" rx="10.6" ry="5.4"/>
</g>
<g>
<path class="st51" d="M285.3,262.8C285.3,262.8,285.3,262.8,285.3,262.8C285.3,262.7,285.3,262.7,285.3,262.8v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2s10.3-2.3,10.5-5.2h0V262.8z"/>
<ellipse class="st51" cx="274.7" cy="252.3" rx="10.6" ry="5.4"/>
</g>
<g>
<polygon class="st50" points="249.7,273.1 260.2,267 270.8,273.1 260.2,279.2 "/>
<polygon class="st50" points="249.7,285.3 249.7,273.1 260.2,279.2 260.2,291.4 "/>
<polygon class="st50" points="260.2,291.4 260.2,279.2 270.8,273.1 270.8,285.3 "/>
</g>
<g>
<polygon class="st50" points="281.3,274.6 289.2,270 297.1,274.6 289.2,279.2 "/>
<polygon class="st50" points="281.3,283.8 281.3,274.6 289.2,279.2 289.2,288.3 "/>
<polygon class="st50" points="289.2,288.3 289.2,279.2 297.1,274.6 297.1,283.8 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="248.8,297.5 243.5,294.4 238.2,297.5 243.5,300.5 "/>
<polygon class="st50" points="248.8,303.6 248.8,297.5 243.5,300.5 243.5,306.6 "/>
<polygon class="st50" points="243.5,306.6 243.5,300.5 238.2,297.5 238.2,303.6 "/>
</g>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M390,257.5l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1v-0.7h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1v-0.7h2.4V257.5z"/>
<path class="st42" d="M394.5,259.9c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V259.9z M395.6,260c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V260z"/>
<path class="st42" d="M400.9,254.7V254h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L400.9,254.7z"/>
<path class="st42" d="M409.4,262.2c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7h0.8
h1.2v5.4l0.7,0.2v0.7h-1.8L409.4,262.2z"/>
<path class="st42" d="M411.9,262.4l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V262.4z"/>
<path class="st42" d="M426.3,263.2c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S426.8,263.2,426.3,263.2z M426.1,257.6c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S426.6,257.6,426.1,257.6z"/>
</g>
<line class="st62" x1="385.3" y1="260.7" x2="274" y2="260.7"/>
<g>
<path class="st42" d="M387.7,348.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V348.8z"/>
<path class="st42" d="M395.5,346.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V346.3z M396.7,346.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V346.5z"/>
<path class="st42" d="M406.5,348.8c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L406.5,348.8z
M403.4,346.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V346.6z"/>
<path class="st42" d="M412.3,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S412.9,349.7,412.3,349.7z M412.2,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S412.6,344,412.2,344z"/>
<path class="st42" d="M418.7,351.2l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V351.2z M423.9,346.5c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V346.5z"/>
<path class="st42" d="M426.2,344v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L426.2,344z"/>
<path class="st42" d="M431,346.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V346.3z M432.2,346.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V346.5z"/>
<path class="st42" d="M440.6,348.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S440,348.8,440.6,348.8z"/>
<path class="st42" d="M447.1,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S447.6,349.7,447.1,349.7z M446.9,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S447.4,344,446.9,344z"/>
<path class="st42" d="M455.5,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L455.5,345.2z"/>
<path class="st42" d="M461.6,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L461.6,345.2z"/>
<path class="st42" d="M465.8,349.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S466.3,349.7,465.8,349.7z M465.6,344c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S466.1,344,465.6,344z"/>
<path class="st42" d="M474.2,345.2h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L474.2,345.2z"/>
</g>
<line class="st62" x1="385.3" y1="347.2" x2="114.1" y2="347.2"/>
<g>
<path class="st42" d="M390.7,283.9c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S390.1,283.9,390.7,283.9z"/>
<path class="st42" d="M394.3,281.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V281.4z M395.5,281.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V281.5z"/>
<path class="st42" d="M400.9,283.9l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V283.9z"/>
<path class="st42" d="M410.8,276.8v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H410.8z"/>
<path class="st42" d="M417.3,284.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H417.3z M415.5,283.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S415.1,283.8,415.5,283.8z"/>
<path class="st42" d="M419.8,283.9l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V283.9z M421.9,276.7h-1.2v-1.2h1.2V276.7z"/>
<path class="st42" d="M423.6,283.9l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V283.9z"/>
<path class="st42" d="M434.3,284.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S434.8,284.8,434.3,284.8z M434.1,279.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S434.6,279.1,434.1,279.1z"/>
<path class="st42" d="M437.8,279v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L437.8,279z"/>
<path class="st42" d="M442.8,283.9l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V283.9z M444.9,276.7h-1.2v-1.2h1.2V276.7z"/>
<path class="st42" d="M448.3,283.7h2.6l0.1-1h1v1.9h-5v-0.8l3.4-4.6H448l-0.1,1h-1v-1.9h4.8v0.8L448.3,283.7z"/>
<path class="st42" d="M455.9,284.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S456.4,284.8,455.9,284.8z M455.7,279.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S456.2,279.1,455.7,279.1z"/>
<path class="st42" d="M463.7,283.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L463.7,283.9z
M460.6,281.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V280c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V281.7z"/>
<path class="st42" d="M473.8,284.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7H470v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H473.8z M471.9,283.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S471.6,283.8,471.9,283.8z"/>
<path class="st42" d="M476.1,286.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V286.3z M481.3,281.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V281.6z"/>
<path class="st42" d="M483.4,286.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V286.3z M488.6,281.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V281.6z"/>
</g>
<line class="st62" x1="385.3" y1="282.2" x2="261.9" y2="282.2"/>
<g>
<path class="st42" d="M391.7,178.9c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H391.7z M389.9,183.1h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V183.1z"/>
<path class="st42" d="M395.4,184.2c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V184.2z M396.6,184.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V184.3z"/>
<path class="st42" d="M406.4,186.6c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L406.4,186.6z
M403.3,184.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V184.5z"/>
</g>
<line class="st62" x1="385.3" y1="185" x2="291" y2="185"/>
<g>
<path class="st42" d="M396.1,59.1v0.7l-1,0.2v7.6H394l-4.1-6.6l0,0v5.7l1,0.2v0.7h-3.1v-0.7l1-0.2V60l-1-0.2v-0.7h1h1.2l4.1,6.6
l0,0V60l-1-0.2v-0.7h2.1H396.1z"/>
<path class="st42" d="M397,64.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V64.4z M398.2,64.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V64.5z"/>
<path class="st42" d="M408,66.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L408,66.9z
M404.9,64.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V63c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V64.7z"/>
<path class="st42" d="M413.8,67.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S414.3,67.7,413.8,67.7z M413.6,62.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S414.1,62.1,413.6,62.1z"/>
</g>
<line class="st62" x1="385.3" y1="65.2" x2="200.7" y2="65.2"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

@@ -0,0 +1,484 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 668 277" style="enable-background:new 0 0 668 277;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
</g>
<g id="service">
</g>
<g id="pods">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="122.1878" y1="127.5093" x2="204.1367" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_1_);" cx="163.2" cy="127.5" r="41"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="238.2856" y1="127.5093" x2="347.5509" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle style="opacity:0.1;fill:url(#SVGID_2_);" cx="292.9" cy="127.5" r="54.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="390.5175" y1="77.3348" x2="517.7111" y2="179.9297">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st30" cx="452.7" cy="127.5" r="71"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="16.3336" y1="127.5093" x2="77.7953" y2="127.5093">
<stop offset="0" style="stop-color:#326DE6"/>
<stop offset="1" style="stop-color:#10FFC6"/>
</linearGradient>
<circle class="st31" cx="47.1" cy="127.5" r="30.7"/>
<circle class="st39" cx="163.2" cy="127.5" r="41"/>
<circle class="st39" cx="47.1" cy="127.5" r="30.7"/>
<circle class="st39" cx="292.9" cy="127.5" r="54.6"/>
<circle class="st39" cx="452.7" cy="127.5" r="71"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M121.7,110.7l0.6-1.4l-6.6-3l-0.5,1.6l-0.4-0.2l0.5-2.4l7.3,3.3l0.7-1.4l0.5,0.2l-1.6,3.4L121.7,110.7z"/>
<path class="st42" d="M124.1,100.5c0.9,0.6,1.5,1.2,1.8,1.9c0.3,0.7,0.2,1.4-0.3,2.1c-0.4,0.7-1,1.1-1.8,1.2
c-0.8,0.1-1.6-0.2-2.5-0.7l-1.6-1c-0.9-0.6-1.5-1.2-1.8-1.9c-0.3-0.7-0.2-1.4,0.3-2.1c0.4-0.7,1-1.1,1.8-1.2
c0.8-0.1,1.6,0.2,2.5,0.7L124.1,100.5z M122,100c-0.7-0.5-1.4-0.7-2-0.6c-0.6,0-1,0.3-1.4,0.9c-0.3,0.5-0.4,1.1-0.2,1.6
c0.2,0.5,0.7,1,1.5,1.5l1.8,1.1c0.7,0.5,1.4,0.7,2,0.6c0.6,0,1-0.3,1.4-0.9c0.3-0.5,0.4-1.1,0.2-1.6c-0.2-0.5-0.7-1-1.5-1.5
L122,100z"/>
<path class="st42" d="M128.3,100.4l-0.5,0.6l-0.8-0.6l0.5-0.6L128.3,100.4z"/>
<path class="st42" d="M128.9,98.8l1-1.2l-5.3-4.8l-1,1.4l-0.4-0.3l1.2-2.1l5.9,5.3l1.1-1.1l0.4,0.3l-2.5,2.8L128.9,98.8z"/>
<path class="st42" d="M134.2,89.8c0.7,0.8,1.1,1.6,1.1,2.4c0,0.8-0.3,1.4-0.9,1.9c-0.6,0.5-1.3,0.7-2.1,0.6
c-0.7-0.1-1.5-0.6-2.2-1.5l-1.2-1.4c-0.7-0.8-1.1-1.6-1.1-2.4c0-0.8,0.3-1.4,0.9-1.9c0.6-0.5,1.3-0.7,2.1-0.6
c0.7,0.1,1.5,0.6,2.2,1.5L134.2,89.8z M132.4,88.7c-0.6-0.7-1.1-1.1-1.7-1.2c-0.6-0.1-1.1,0-1.6,0.4c-0.5,0.4-0.7,0.9-0.6,1.5
c0.1,0.6,0.4,1.2,0.9,1.9l1.4,1.6c0.6,0.7,1.1,1.1,1.7,1.2c0.6,0.1,1.1,0,1.6-0.4c0.5-0.4,0.7-0.9,0.6-1.5
c-0.1-0.6-0.4-1.2-0.9-1.9L132.4,88.7z"/>
<path class="st42" d="M138.3,91l-0.7,0.5l-0.5-0.8l0.7-0.5L138.3,91z"/>
<path class="st42" d="M139.3,89.7l1.3-0.8l-3.6-6.2l-1.3,1.1l-0.2-0.4l1.8-1.6l4,6.9l1.4-0.7l0.3,0.4l-3.3,1.9L139.3,89.7z"/>
<path class="st42" d="M147.2,82.7c0.4,1,0.5,1.9,0.3,2.6c-0.2,0.7-0.7,1.3-1.5,1.6c-0.8,0.3-1.5,0.3-2.1-0.1
c-0.7-0.4-1.2-1.1-1.6-2.1l-0.7-1.8c-0.4-1-0.5-1.9-0.3-2.6s0.7-1.3,1.4-1.6c0.8-0.3,1.5-0.3,2.1,0.1c0.7,0.4,1.2,1.1,1.6,2.1
L147.2,82.7z M145.8,81.1c-0.3-0.8-0.8-1.4-1.2-1.7c-0.5-0.3-1-0.3-1.6-0.1c-0.6,0.2-0.9,0.7-1.1,1.2c-0.1,0.6,0,1.2,0.3,2.1
l0.8,2c0.3,0.8,0.8,1.4,1.2,1.7c0.5,0.3,1,0.3,1.6,0.1c0.6-0.2,0.9-0.7,1.1-1.2c0.1-0.6,0-1.3-0.3-2.1L145.8,81.1z"/>
<path class="st42" d="M150.6,85.2l-0.8,0.2l-0.3-0.9l0.8-0.2L150.6,85.2z"/>
<path class="st42" d="M152,84.7l-0.1-0.5l2.1-3.6c0.4-0.7,0.7-1.2,0.8-1.6s0.2-0.8,0.1-1.2c-0.1-0.5-0.3-0.9-0.7-1.2
c-0.4-0.3-0.8-0.3-1.3-0.2c-0.6,0.1-1.1,0.4-1.3,0.8c-0.3,0.4-0.3,0.9-0.2,1.5l-0.6,0.1l0,0c-0.2-0.7,0-1.3,0.3-1.9
c0.4-0.6,1-0.9,1.8-1.1c0.7-0.1,1.3,0,1.8,0.3s0.8,0.8,1,1.5c0.1,0.5,0,1-0.2,1.5s-0.5,1.1-0.9,1.8l-1.8,3.1l0,0l3.7-0.7l-0.2-1.2
l0.6-0.1l0.3,1.8L152,84.7z"/>
</g>
<g>
<path class="st42" d="M15.9,114.8l0.6-1.4l-6.5-3.1l-0.5,1.6L9,111.7l0.6-2.4l7.2,3.4l0.7-1.3l0.5,0.2l-1.6,3.4L15.9,114.8z"/>
<path class="st42" d="M18.6,104.6c0.9,0.6,1.5,1.3,1.7,2c0.2,0.7,0.1,1.4-0.4,2.1c-0.5,0.7-1.1,1-1.8,1.1s-1.6-0.2-2.5-0.9
l-1.6-1.1c-0.9-0.6-1.5-1.3-1.7-2s-0.1-1.4,0.4-2.1c0.5-0.7,1.1-1,1.9-1.1c0.8,0,1.6,0.2,2.5,0.9L18.6,104.6z M16.6,104
c-0.7-0.5-1.4-0.7-1.9-0.7s-1,0.3-1.4,0.8c-0.4,0.5-0.4,1.1-0.2,1.6s0.7,1.1,1.4,1.6l1.7,1.2c0.7,0.5,1.4,0.7,1.9,0.7
s1.1-0.3,1.4-0.8c0.4-0.5,0.4-1.1,0.2-1.6c-0.2-0.5-0.7-1.1-1.4-1.6L16.6,104z"/>
<path class="st42" d="M22.8,104.9l-0.5,0.6l-0.7-0.6l0.5-0.6L22.8,104.9z"/>
<path class="st42" d="M23.5,103.4l1.1-1.1l-4.8-5.4l-1.1,1.3l-0.3-0.4l1.5-2l5.3,6l1.2-1l0.3,0.4l-2.8,2.5L23.5,103.4z"/>
<path class="st42" d="M30.1,95.2c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.8-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.3s-1.4-0.9-1.9-1.8
l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.3c0.7,0.3,1.4,0.9,1.9,1.8L30.1,95.2z
M28.4,93.8c-0.5-0.7-1-1.2-1.5-1.4c-0.5-0.2-1.1-0.2-1.6,0.2c-0.5,0.3-0.8,0.8-0.9,1.4c0,0.6,0.2,1.2,0.6,2l1.1,1.8
c0.5,0.7,1,1.2,1.5,1.4c0.5,0.2,1.1,0.2,1.6-0.2c0.5-0.3,0.8-0.8,0.9-1.4s-0.2-1.2-0.6-2L28.4,93.8z"/>
<path class="st42" d="M33.8,97.1l-0.7,0.3l-0.4-0.9l0.7-0.3L33.8,97.1z"/>
<path class="st42" d="M35.1,96l1.4-0.5l-2.2-6.8l-1.5,0.7l-0.2-0.5l2.1-1.2l2.4,7.6l1.5-0.4l0.2,0.5l-3.6,1.2L35.1,96z"/>
<path class="st42" d="M44.4,91.1c0.2,1.1,0.1,2-0.3,2.6c-0.4,0.7-1,1-1.8,1.2c-0.8,0.1-1.5-0.1-2.1-0.6s-0.9-1.3-1.1-2.4L38.8,90
c-0.2-1.1,0-2,0.3-2.6c0.4-0.7,1-1,1.8-1.2c0.8-0.1,1.5,0.1,2.1,0.6c0.6,0.5,0.9,1.3,1.1,2.4L44.4,91.1z M43.4,89.2
c-0.1-0.9-0.4-1.5-0.8-1.9s-0.9-0.6-1.5-0.5c-0.6,0.1-1.1,0.4-1.3,0.9c-0.3,0.5-0.3,1.2-0.2,2.1l0.3,2.1c0.1,0.9,0.4,1.5,0.8,1.9
c0.4,0.4,0.9,0.6,1.5,0.5c0.6-0.1,1.1-0.4,1.3-0.9s0.3-1.2,0.2-2.1L43.4,89.2z"/>
<path class="st42" d="M47,94.4l-0.8,0l0-1l0.8,0L47,94.4z"/>
<path class="st42" d="M48.6,93.9l1.5,0.1l0.7-7.2l-1.7,0.1l0-0.5l2.4-0.3L50.8,94l1.5,0.2l-0.1,0.5l-3.7-0.4L48.6,93.9z"/>
</g>
<g>
<path class="st42" d="M246.8,91.7l0.9-1.2l-5.5-4.6l-0.9,1.4l-0.4-0.3l1.1-2.2l6.1,5.1l1-1.1l0.4,0.3l-2.4,2.9L246.8,91.7z"/>
<path class="st42" d="M251.7,82.3c0.8,0.8,1.2,1.5,1.3,2.3c0.1,0.8-0.2,1.4-0.8,2c-0.6,0.6-1.3,0.8-2,0.7
c-0.8-0.1-1.5-0.5-2.3-1.3l-1.3-1.4c-0.8-0.8-1.2-1.5-1.3-2.3c-0.1-0.8,0.2-1.4,0.7-2c0.6-0.6,1.3-0.8,2-0.7
c0.8,0.1,1.5,0.5,2.3,1.3L251.7,82.3z M249.8,81.4c-0.6-0.6-1.2-1-1.8-1.1c-0.6-0.1-1.1,0.1-1.5,0.5c-0.4,0.4-0.6,1-0.5,1.5
c0.1,0.6,0.5,1.2,1.1,1.8l1.5,1.5c0.6,0.6,1.2,1,1.8,1.1c0.6,0.1,1.1-0.1,1.5-0.5c0.4-0.4,0.6-1,0.5-1.5s-0.5-1.2-1.1-1.8
L249.8,81.4z"/>
<path class="st42" d="M255.8,83.2l-0.6,0.5l-0.6-0.7l0.6-0.5L255.8,83.2z"/>
<path class="st42" d="M256.7,81.7l1.2-1l-4.3-5.8l-1.2,1.2l-0.3-0.4l1.6-1.8l4.8,6.4l1.3-0.9l0.3,0.4l-3,2.2L256.7,81.7z"/>
<path class="st42" d="M263.6,73.8c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.7-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.2
c-0.7-0.3-1.3-0.9-1.9-1.8l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.2
c0.7,0.3,1.4,0.9,1.9,1.8L263.6,73.8z M262,72.4c-0.5-0.7-0.9-1.2-1.5-1.5s-1.1-0.2-1.6,0.1c-0.5,0.3-0.8,0.8-0.9,1.4
c0,0.6,0.2,1.2,0.6,2l1.1,1.8c0.4,0.7,0.9,1.2,1.5,1.5c0.5,0.2,1.1,0.2,1.6-0.1c0.5-0.3,0.8-0.8,0.9-1.4c0-0.6-0.2-1.2-0.6-2
L262,72.4z"/>
<path class="st42" d="M267.4,75.6l-0.7,0.4l-0.4-0.9l0.7-0.4L267.4,75.6z"/>
<path class="st42" d="M268.6,74.4l1.4-0.7l-2.8-6.6l-1.5,0.9l-0.2-0.5l2-1.4l3.1,7.3l1.4-0.5l0.2,0.5l-3.5,1.5L268.6,74.4z"/>
<path class="st42" d="M277.3,68.3c0.3,1.1,0.4,1.9,0.1,2.6c-0.3,0.7-0.8,1.2-1.6,1.4c-0.8,0.2-1.5,0.2-2.1-0.3
c-0.6-0.4-1.1-1.2-1.4-2.2l-0.6-1.8c-0.3-1-0.4-1.9-0.1-2.6c0.3-0.7,0.8-1.2,1.6-1.4c0.8-0.2,1.5-0.2,2.1,0.3
c0.6,0.4,1.1,1.2,1.4,2.2L277.3,68.3z M276,66.6c-0.3-0.8-0.6-1.4-1.1-1.8s-1-0.4-1.6-0.2c-0.6,0.2-1,0.6-1.2,1.1
c-0.2,0.6-0.1,1.2,0.1,2.1l0.6,2c0.3,0.8,0.6,1.4,1.1,1.8c0.5,0.4,1,0.4,1.6,0.3c0.6-0.2,1-0.6,1.2-1.1s0.1-1.2-0.1-2.1L276,66.6z
"/>
<path class="st42" d="M280.5,71l-0.8,0.2l-0.2-0.9l0.8-0.2L280.5,71z"/>
<path class="st42" d="M282.9,65.8l0.8-0.1c0.6-0.1,1.1-0.3,1.3-0.7c0.3-0.4,0.4-0.8,0.3-1.3c-0.1-0.5-0.3-0.9-0.6-1.2
c-0.3-0.3-0.8-0.4-1.4-0.3c-0.5,0.1-1,0.3-1.3,0.7c-0.3,0.4-0.4,0.8-0.3,1.3l-0.6,0.1l0,0c-0.1-0.7,0-1.2,0.5-1.7
c0.4-0.5,1-0.8,1.7-0.9c0.8-0.1,1.4,0,1.9,0.4c0.5,0.3,0.8,0.9,0.9,1.6c0.1,0.4,0,0.8-0.2,1.2c-0.2,0.4-0.5,0.7-0.9,0.9
c0.5,0.1,1,0.3,1.3,0.6c0.3,0.3,0.5,0.7,0.6,1.2c0.1,0.7,0,1.4-0.5,1.9c-0.4,0.5-1,0.8-1.8,0.9c-0.7,0.1-1.4,0-2-0.4
c-0.6-0.3-0.9-0.9-1-1.6l0,0l0.6-0.1c0.1,0.5,0.3,0.9,0.8,1.2c0.4,0.3,0.9,0.4,1.5,0.3c0.6-0.1,1-0.3,1.3-0.7s0.4-0.8,0.3-1.4
c-0.1-0.6-0.3-1-0.7-1.2c-0.4-0.2-0.9-0.3-1.6-0.2l-0.8,0.1L282.9,65.8z"/>
</g>
<g>
<path class="st42" d="M397.1,77.6l1-1.2l-5.2-4.9l-1,1.4l-0.4-0.3l1.3-2.1l5.8,5.5l1.1-1.1l0.4,0.4l-2.6,2.7L397.1,77.6z"/>
<path class="st42" d="M402.5,68.5c0.7,0.8,1.1,1.6,1.2,2.4c0.1,0.8-0.2,1.4-0.8,2c-0.6,0.6-1.3,0.8-2,0.7s-1.5-0.6-2.2-1.4
l-1.3-1.4c-0.7-0.8-1.1-1.6-1.2-2.4s0.2-1.4,0.8-2c0.6-0.6,1.3-0.8,2-0.7c0.8,0.1,1.5,0.6,2.2,1.4L402.5,68.5z M400.6,67.4
c-0.6-0.6-1.2-1-1.7-1.2c-0.6-0.1-1.1,0-1.6,0.5c-0.5,0.4-0.7,0.9-0.6,1.5c0.1,0.6,0.4,1.2,1,1.8l1.4,1.6c0.6,0.6,1.2,1,1.7,1.2
c0.6,0.1,1.1,0,1.6-0.4c0.5-0.4,0.7-0.9,0.6-1.5c-0.1-0.6-0.4-1.2-1-1.8L400.6,67.4z"/>
<path class="st42" d="M406.5,69.5l-0.6,0.5l-0.6-0.7l0.6-0.5L406.5,69.5z"/>
<path class="st42" d="M407.5,68l1.2-1l-4.2-5.8l-1.2,1.2L403,62l1.6-1.8l4.7,6.4l1.3-0.8l0.3,0.4l-3,2.2L407.5,68z"/>
<path class="st42" d="M414.5,60c0.6,0.9,0.8,1.8,0.7,2.5c-0.1,0.8-0.5,1.3-1.2,1.8c-0.7,0.4-1.4,0.5-2.1,0.3
c-0.7-0.3-1.4-0.9-1.9-1.8l-1-1.6c-0.6-0.9-0.8-1.8-0.7-2.5c0.1-0.8,0.5-1.3,1.2-1.8c0.7-0.4,1.4-0.5,2.1-0.3
c0.7,0.3,1.4,0.9,1.9,1.8L414.5,60z M412.8,58.7c-0.5-0.7-1-1.2-1.5-1.5c-0.5-0.2-1.1-0.2-1.6,0.2c-0.5,0.3-0.8,0.8-0.9,1.4
c0,0.6,0.2,1.2,0.6,2l1.1,1.8c0.5,0.7,1,1.2,1.5,1.5c0.5,0.2,1.1,0.2,1.6-0.1c0.5-0.3,0.8-0.8,0.9-1.4s-0.2-1.2-0.6-2L412.8,58.7z
"/>
<path class="st42" d="M418.2,61.8l-0.7,0.4l-0.5-0.8l0.7-0.4L418.2,61.8z"/>
<path class="st42" d="M419.5,60.6l1.4-0.7l-3.1-6.5l-1.4,0.9l-0.2-0.4l1.9-1.5l3.4,7.2l1.4-0.6l0.2,0.5l-3.4,1.6L419.5,60.6z"/>
<path class="st42" d="M427.8,54.1c0.4,1,0.5,1.9,0.2,2.6s-0.7,1.2-1.5,1.5c-0.8,0.3-1.5,0.2-2.1-0.1c-0.7-0.4-1.2-1.1-1.6-2.1
l-0.7-1.8c-0.4-1-0.5-1.9-0.2-2.6c0.2-0.7,0.7-1.2,1.5-1.5c0.8-0.3,1.5-0.2,2.1,0.1c0.7,0.4,1.2,1.1,1.6,2.1L427.8,54.1z
M426.4,52.4c-0.3-0.8-0.7-1.4-1.2-1.7c-0.5-0.3-1-0.4-1.6-0.1c-0.6,0.2-1,0.6-1.1,1.2c-0.1,0.6-0.1,1.2,0.2,2.1l0.8,2
c0.3,0.8,0.7,1.4,1.2,1.7s1,0.4,1.6,0.2c0.6-0.2,1-0.6,1.1-1.2s0.1-1.3-0.3-2.1L426.4,52.4z"/>
<path class="st42" d="M431.2,56.5l-0.8,0.2l-0.3-0.9l0.8-0.2L431.2,56.5z"/>
<path class="st42" d="M436.3,52.3l1.3-0.3l0.1,0.6l-1.3,0.3l0.4,1.5l0.9-0.1l0.1,0.5l-2.5,0.6l-0.1-0.5l0.9-0.3l-0.4-1.5l-3.9,0.9
l-0.1-0.4l2.4-6.7l0.7-0.2L436.3,52.3z M432.6,53.2l3.1-0.7l-1.1-4.7l0,0l-0.1,0.7L432.6,53.2z"/>
</g>
</g>
<g id="deployments">
</g>
<g id="containers_x2F_volumes">
<g>
<g>
<polygon class="st50" points="138.1,120.8 148.6,114.7 159.2,120.8 148.6,126.9 "/>
<polygon class="st50" points="138.1,133 138.1,120.8 148.6,126.9 148.6,139.1 "/>
<polygon class="st50" points="148.6,139.1 148.6,126.9 159.2,120.8 159.2,133 "/>
</g>
<g>
<path class="st51" d="M188.2,132.2C188.2,132.2,188.2,132.2,188.2,132.2C188.2,132.1,188.2,132.1,188.2,132.2v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V132.2z"/>
<ellipse class="st51" cx="177.7" cy="121.7" rx="10.6" ry="5.4"/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="36.5,121.4 47.1,115.3 57.6,121.4 47.1,127.5 "/>
<polygon class="st50" points="36.5,133.6 36.5,121.4 47.1,127.5 47.1,139.7 "/>
<polygon class="st50" points="47.1,139.7 47.1,127.5 57.6,121.4 57.6,133.6 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="282.4,108.7 292.9,102.6 303.5,108.7 292.9,114.8 "/>
<polygon class="st50" points="282.4,120.9 282.4,108.7 292.9,114.8 292.9,127 "/>
<polygon class="st50" points="292.9,127 292.9,114.8 303.5,108.7 303.5,120.9 "/>
</g>
<g>
<polygon class="st50" points="270.5,132 278.4,127.4 286.3,132 278.4,136.5 "/>
<polygon class="st50" points="270.5,141.1 270.5,132 278.4,136.5 278.4,145.7 "/>
<polygon class="st50" points="278.4,145.7 278.4,136.5 286.3,132 286.3,141.1 "/>
</g>
<g>
<path class="st51" d="M318,141.8C318,141.8,318,141.8,318,141.8C318,141.8,318,141.8,318,141.8v-10.6h-21.1v10.6c0,0,0,0,0,0
c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V141.8z"/>
<ellipse class="st51" cx="307.4" cy="131.3" rx="10.6" ry="5.4"/>
</g>
</g>
<g>
<g>
<path class="st51" d="M435.6,133.6C435.6,133.5,435.6,133.5,435.6,133.6C435.6,133.5,435.6,133.5,435.6,133.6v-10.6h-21.1v10.6
c0,0,0,0,0,0c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2c5.7,0,10.3-2.3,10.5-5.2h0V133.6z"/>
<ellipse class="st51" cx="425.1" cy="123" rx="10.6" ry="5.4"/>
</g>
<g>
<path class="st51" d="M479,111.8C479,111.8,479,111.8,479,111.8C479,111.8,479,111.8,479,111.8v-10.6h-21.1v10.6c0,0,0,0,0,0
c0,0,0,0,0,0v0.2h0c0.2,2.9,4.9,5.2,10.5,5.2s10.3-2.3,10.5-5.2h0V111.8z"/>
<ellipse class="st51" cx="468.5" cy="101.3" rx="10.6" ry="5.4"/>
</g>
<g>
<polygon class="st50" points="443.4,122.2 454,116.1 464.6,122.2 454,128.3 "/>
<polygon class="st50" points="443.4,134.4 443.4,122.2 454,128.3 454,140.5 "/>
<polygon class="st50" points="454,140.5 454,128.3 464.6,122.2 464.6,134.4 "/>
</g>
<g>
<polygon class="st50" points="475.1,123.7 483,119.1 490.9,123.7 483,128.3 "/>
<polygon class="st50" points="475.1,132.8 475.1,123.7 483,128.3 483,137.4 "/>
<polygon class="st50" points="483,137.4 483,128.3 490.9,123.7 490.9,132.8 "/>
</g>
</g>
<g>
<g>
<polygon class="st50" points="442.6,146.8 437.3,143.8 432,146.8 437.3,149.9 "/>
<polygon class="st50" points="442.6,152.9 442.6,146.8 437.3,149.9 437.3,156 "/>
<polygon class="st50" points="437.3,156 437.3,149.9 432,146.8 432,152.9 "/>
</g>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M150.5,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H150.5z M148.9,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M154.7,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M156.6,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M167,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6v-0.1
c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2v1.2
h-2.6L167,229.4z M164.3,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M173.7,230.3V229l3.1-3.4c0.5-0.5,0.8-1,1-1.3c0.2-0.4,0.3-0.7,0.3-1c0-0.4-0.1-0.7-0.3-1
c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.8,0.2-1,0.5c-0.2,0.3-0.3,0.7-0.3,1.2h-1.9l0,0c0-0.9,0.3-1.6,0.9-2.2
c0.6-0.6,1.4-0.9,2.4-0.9c1,0,1.8,0.3,2.4,0.8s0.9,1.2,0.9,2.1c0,0.6-0.2,1.1-0.5,1.6c-0.3,0.5-0.9,1.1-1.6,1.9l-1.7,1.9l0,0h2.5
l0.1-1h1.5v2.4H173.7z"/>
</g>
<g>
<path class="st42" d="M35.2,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H35.2z M33.5,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M39.3,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M41.3,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M51.6,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6v-0.1
c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2v1.2
h-2.6L51.6,229.4z M48.9,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M58.4,229.1l1.6-0.2v-6.5h-1.7v-1.1l3.6-0.7v8.3l1.6,0.2v1.2h-5.2V229.1z"/>
</g>
<g>
<path class="st42" d="M280.3,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H280.3z M278.7,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M284.5,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M286.4,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M296.8,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6
v-0.1c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2
v1.2h-2.6L296.8,229.4z M294.1,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M305.6,224.6h1.1c0.5,0,0.8-0.1,1-0.4s0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.3-0.9c-0.2-0.2-0.5-0.4-1-0.4
c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.4,0.5-0.4,0.8h-1.9l0,0c0-0.8,0.3-1.4,0.9-1.9c0.6-0.5,1.4-0.7,2.3-0.7c1,0,1.8,0.2,2.4,0.7
c0.6,0.5,0.9,1.2,0.9,2c0,0.4-0.1,0.8-0.4,1.2s-0.6,0.7-1.1,0.9c0.5,0.2,0.9,0.5,1.2,0.9s0.4,0.9,0.4,1.4c0,0.9-0.3,1.6-1,2.1
c-0.6,0.5-1.5,0.8-2.5,0.8c-0.9,0-1.7-0.2-2.3-0.7c-0.6-0.5-1-1.1-0.9-2l0,0h1.9c0,0.4,0.1,0.7,0.4,0.9s0.6,0.4,1,0.4
c0.4,0,0.8-0.1,1.1-0.4c0.3-0.2,0.4-0.6,0.4-1c0-0.5-0.1-0.9-0.4-1.1c-0.3-0.2-0.6-0.4-1.1-0.4h-1.1V224.6z"/>
</g>
<g>
<path class="st42" d="M440.2,220.6c1.1,0,2,0.3,2.6,0.9s1,1.3,1,2.2c0,0.9-0.3,1.7-1,2.2c-0.6,0.6-1.5,0.8-2.6,0.8h-1.6v2.1l1,0.2
v1.2h-4v-1.2l1-0.2V222l-1-0.2v-1.2h1H440.2z M438.6,225.3h1.6c0.5,0,0.9-0.1,1.2-0.4c0.3-0.3,0.4-0.7,0.4-1.1
c0-0.5-0.1-0.8-0.4-1.2c-0.3-0.3-0.7-0.5-1.2-0.5h-1.6V225.3z"/>
<path class="st42" d="M444.4,226.6c0-1.1,0.3-1.9,0.9-2.6c0.6-0.7,1.4-1,2.5-1c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.6,0.9,2.6v0.1
c0,1.1-0.3,2-0.9,2.6c-0.6,0.7-1.4,1-2.5,1c-1.1,0-1.9-0.3-2.5-1c-0.6-0.7-0.9-1.6-0.9-2.6V226.6z M446.3,226.8
c0,0.7,0.1,1.2,0.3,1.6c0.2,0.4,0.6,0.6,1.1,0.6c0.5,0,0.9-0.2,1.1-0.6s0.3-0.9,0.3-1.6v-0.1c0-0.6-0.1-1.2-0.4-1.6
c-0.2-0.4-0.6-0.6-1.1-0.6c-0.5,0-0.9,0.2-1.1,0.6c-0.2,0.4-0.3,0.9-0.3,1.6V226.8z"/>
<path class="st42" d="M456.7,229.4c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.7,0.3-1.1,0.3c-0.9,0-1.6-0.3-2.1-1s-0.7-1.5-0.7-2.6
v-0.1c0-1.1,0.2-2,0.7-2.7c0.5-0.7,1.2-1,2.1-1c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.8,0.7v-2.6l-1-0.2v-1.2h1h1.9v9l0.9,0.2
v1.2h-2.6L456.7,229.4z M454,226.9c0,0.6,0.1,1.1,0.3,1.5s0.6,0.5,1,0.5c0.3,0,0.5-0.1,0.7-0.2s0.4-0.3,0.5-0.5v-3
c-0.1-0.2-0.3-0.4-0.5-0.5c-0.2-0.1-0.4-0.2-0.7-0.2c-0.5,0-0.8,0.2-1,0.6s-0.3,1-0.3,1.6V226.9z"/>
<path class="st42" d="M469.2,226.7h1.1v1.3h-1.1v0.9l1,0.2v1.2h-4v-1.2l1-0.2V228h-3.9l-0.1-0.9l4-6.4h2V226.7z M465,226.7h2.2
v-3.5l0,0l-0.2,0.3L465,226.7z"/>
</g>
<g>
<path class="st42" d="M560.2,131.7c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S559.6,131.7,560.2,131.7z"/>
<path class="st42" d="M563.8,129.2c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V129.2z M565,129.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V129.3z"/>
<path class="st42" d="M570.4,131.7l1-0.2V127l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V131.7z"/>
<path class="st42" d="M580.3,124.6v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H580.3z"/>
<path class="st42" d="M586.8,132.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7H583v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H586.8z M585,131.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S584.6,131.6,585,131.6z"/>
<path class="st42" d="M589.3,131.7l1-0.2V127l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V131.7z M591.4,124.5h-1.2v-1.2h1.2V124.5z"/>
<path class="st42" d="M593.1,131.7l1-0.2V127l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7H597v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V131.7z"/>
<path class="st42" d="M603.8,132.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S604.3,132.6,603.8,132.6z M603.6,126.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S604.1,126.9,603.6,126.9z"/>
<path class="st42" d="M607.3,126.8v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2V127L607.3,126.8z"/>
<path class="st42" d="M612.3,131.7l1-0.2V127l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V131.7z M614.4,124.5h-1.2v-1.2h1.2V124.5z"/>
<path class="st42" d="M617.8,131.5h2.6l0.1-1h1v1.9h-5v-0.8l3.4-4.6h-2.3l-0.1,1h-1v-1.9h4.8v0.8L617.8,131.5z"/>
<path class="st42" d="M625.4,132.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S625.9,132.6,625.4,132.6z M625.2,126.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S625.7,126.9,625.2,126.9z"/>
<path class="st42" d="M633.2,131.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L633.2,131.7z
M630.1,129.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V129.5z"/>
<path class="st42" d="M643.3,132.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H643.3z M641.4,131.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S641.1,131.6,641.4,131.6z"/>
<path class="st42" d="M645.6,134.1l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V134.1z M650.8,129.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V129.4z"/>
<path class="st42" d="M652.9,134.1l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V134.1z M658.1,129.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V129.4z"/>
</g>
<line class="st61" x1="554.8" y1="130" x2="481.7" y2="130"/>
<g>
<path class="st42" d="M559.5,106.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V106h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V106h2.4V106.8z"/>
<path class="st42" d="M564,109.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V109.1z M565.1,109.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V109.3z"/>
<path class="st42" d="M570.4,104v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L570.4,104z"/>
<path class="st42" d="M578.9,111.4c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2V106h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2V106h0.8h1.2
v5.4l0.7,0.2v0.7H579L578.9,111.4z"/>
<path class="st42" d="M581.4,111.6l1-0.2v-4.5l-1-0.2V106h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V111.6z"/>
<path class="st42" d="M595.8,112.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S596.3,112.5,595.8,112.5z M595.6,106.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S596.1,106.8,595.6,106.8z"/>
</g>
<line class="st61" x1="554.8" y1="110" x2="468.4" y2="110"/>
<g>
<path class="st42" d="M557.2,46.7V46h3.1v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L557.2,46.7z"/>
<path class="st42" d="M565,46c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2v0.7
h-3.1v-0.7l1-0.2v-6.7l-1-0.2V46h1H565z M563.2,50.2h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2s-0.7-0.5-1.3-0.5
h-1.8V50.2z"/>
<path class="st42" d="M576,54.5c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H576z M574.1,53.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S573.8,53.6,574.1,53.6z"/>
<path class="st42" d="M582.7,53.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L582.7,53.7z
M579.6,51.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V51.6z"/>
<path class="st42" d="M589.9,53.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L589.9,53.7z
M586.8,51.6c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V51.6z"/>
<path class="st42" d="M592.9,48.9v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L592.9,48.9z"/>
<path class="st42" d="M600.6,54.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S601.1,54.6,600.6,54.6z M600.4,48.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S600.9,48.9,600.4,48.9z"/>
<path class="st42" d="M609,50.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L609,50.1z"/>
<path class="st42" d="M615.1,50.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L615.1,50.1z"/>
</g>
<line class="st61" x1="554.8" y1="52.1" x2="440.6" y2="52.1"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2,.cls-6{fill:#326de6}.cls-3{fill:#06f7c9;opacity:.1}.cls-4,.cls-5{fill:none;stroke:#06f7c9;stroke-miterlimit:10}.cls-4{stroke-width:2.4px;stroke-dasharray:2.41 1.61}.cls-5{stroke-width:.8px}.cls-6{stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:.91px}</style></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><path class="cls-1" d="M175 167.08l-58.1-33.54V66.46L175 32.92l58.1 33.54v67.08L175 167.08z"/><path class="cls-2" d="M175 168a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.46a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79l-58.1 33.54a.91.91 0 0 1-.45.13zm-57.18-35L175 166l57.18-33V67L175 34l-57.18 33z"/><circle class="cls-3" cx="175" cy="100" r="34.13"/><path class="cls-4" d="M175 146.13A46.13 46.13 0 1 1 221.13 100 46.18 46.18 0 0 1 175 146.13z"/><circle class="cls-5" cx="175" cy="100" r="34.13"/><path class="cls-6" d="M163.14 93.15L175 86.31l11.86 6.84L175 100l-11.86-6.85z"/><path class="cls-6" d="M163.14 106.85v-13.7L175 100v13.69l-11.86-6.84zM175 113.69V100l11.86-6.85v13.7L175 113.69z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1,710 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 394 440.4" style="enable-background:new 0 0 394 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="213.8,179.8 155.7,146.2 155.7,79.1 213.8,45.6 271.9,79.1 271.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="86.6,179.7 28.6,146.1 28.6,79.1 86.6,45.5 144.7,79.1 144.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="86.6,401.4 28.6,367.9 28.6,300.8 86.6,267.2 144.7,300.8 144.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st18" d="M85.4,154.7c0.4,0,0.8,0,1.2,0h1.2"/>
<line class="st19" x1="89.4" y1="154.7" x2="235.1" y2="154.7"/>
<path class="st18" d="M235.9,154.7h1.2c0.4,0,0.8,0,1.2,0"/>
<path class="st20" d="M239.9,154.7c24.1-1.5,43.3-21.5,43.3-46c0-25.4-20.7-46.1-46.1-46.1H86.6c-25.4,0-46.1,20.7-46.1,46.1
c0,24.8,19.6,45,44.1,46.1"/>
</g>
</g>
<path class="st21" d="M86,384.5c-25.4,0-46.1-20.7-46.1-46.1c0-25.4,20.7-46.1,46.1-46.1s46.1,20.7,46.1,46.1
C132.1,363.8,111.4,384.5,86,384.5z"/>
</g>
<g id="pods">
<circle class="st26" cx="86" cy="338.3" r="34.1"/>
<circle class="st22" cx="86" cy="338.3" r="34.1"/>
<circle class="st28" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st28" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st28" cx="86.6" cy="108.6" r="34.1"/>
<circle class="st18" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st18" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st18" cx="86.6" cy="108.6" r="34.1"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M171.6,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L171.6,95.3z"/>
<path class="st42" d="M174.5,89.6c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8l-0.8-0.8
c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L174.5,89.6z M173.3,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L173.3,89z"/>
<path class="st42" d="M176.9,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L176.9,90.3z"/>
<path class="st42" d="M177.5,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L177.5,89.4z"/>
<path class="st42" d="M182.1,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L182.1,85.2z M181.3,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L181.3,84.2z"/>
<path class="st42" d="M184.2,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L184.2,86.6z"/>
<path class="st42" d="M185,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L185,86.1z"/>
<path class="st42" d="M190.9,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L190.9,83.7z M190.4,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L190.4,82.5z"/>
<path class="st42" d="M192.3,85.8l-0.5,0l0-0.6l0.5,0L192.3,85.8z"/>
<path class="st42" d="M196.1,84.7l0.8,0.1l-0.1,0.3l-0.8-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5-0.3l0.1-0.3l0.6,0.1l0.2-0.9
l-2.4-0.4l0-0.2l3-3.1l0.5,0.1L196.1,84.7z M193.9,84.3l1.9,0.4l0.5-2.9l0,0l-0.2,0.3L193.9,84.3z"/>
</g>
<g>
<path class="st42" d="M218.1,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L218.1,95.3z"/>
<path class="st42" d="M221,89.6c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8l-0.8-0.8
c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L221,89.6z M219.8,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L219.8,89z"/>
<path class="st42" d="M223.4,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L223.4,90.3z"/>
<path class="st42" d="M224,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L224,89.4z"/>
<path class="st42" d="M228.6,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L228.6,85.2z M227.8,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L227.8,84.2z"/>
<path class="st42" d="M230.7,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L230.7,86.6z"/>
<path class="st42" d="M231.6,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L231.6,86.1z"/>
<path class="st42" d="M237.4,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L237.4,83.7z M236.9,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L236.9,82.5z"/>
<path class="st42" d="M238.8,85.8l-0.5,0l0-0.6l0.5,0L238.8,85.8z"/>
<path class="st42" d="M241.1,83.2l0.5,0.1c0.4,0.1,0.7,0,0.9-0.1s0.4-0.4,0.4-0.7c0.1-0.3,0-0.6-0.1-0.8c-0.1-0.2-0.4-0.4-0.7-0.4
c-0.3-0.1-0.6,0-0.8,0.1s-0.4,0.4-0.4,0.7l-0.4-0.1l0,0c0.1-0.4,0.3-0.7,0.6-0.9c0.3-0.2,0.7-0.3,1.2-0.2c0.4,0.1,0.8,0.3,1,0.6
c0.2,0.3,0.3,0.7,0.2,1.1c0,0.2-0.2,0.4-0.3,0.6c-0.2,0.2-0.4,0.3-0.7,0.4c0.3,0.1,0.5,0.3,0.6,0.6c0.1,0.2,0.1,0.5,0.1,0.8
c-0.1,0.4-0.3,0.8-0.6,1c-0.3,0.2-0.7,0.3-1.2,0.2c-0.4-0.1-0.8-0.3-1.1-0.6c-0.3-0.3-0.4-0.7-0.3-1.1l0,0l0.4,0.1
c-0.1,0.3,0,0.6,0.2,0.8c0.2,0.2,0.5,0.4,0.8,0.5c0.4,0.1,0.7,0,0.9-0.1c0.2-0.1,0.4-0.4,0.4-0.7c0.1-0.4,0-0.6-0.2-0.8
c-0.2-0.2-0.5-0.3-0.9-0.4l-0.5-0.1L241.1,83.2z"/>
</g>
<g>
<path class="st42" d="M53.2,93.2l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L53.2,93.2z"/>
<path class="st42" d="M54.7,87c0.6,0.3,0.9,0.7,1.1,1.2c0.2,0.4,0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.7,87z M53.5,86.7
c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L53.5,86.7z"/>
<path class="st42" d="M57.2,87l-0.3,0.4L56.5,87l0.3-0.4L57.2,87z"/>
<path class="st42" d="M57.6,86l0.5-0.7l-3.3-2.7l-0.5,0.9L54,83.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L57.6,86z"/>
<path class="st42" d="M60.5,80.3c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L60.5,80.3z M59.3,79.8c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0.1-0.9,0.3C57,79.7,56.9,80,57,80.4
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L59.3,79.8z"/>
<path class="st42" d="M62.9,80.9l-0.4,0.3l-0.4-0.4l0.4-0.3L62.9,80.9z"/>
<path class="st42" d="M63.5,80l0.7-0.6L61.5,76l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2l-1.8,1.4L63.5,80z"/>
<path class="st42" d="M67.5,75.1c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1C66.9,78,66.4,78,66,77.9
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1
L67.5,75.1z M66.5,74.3c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L66.5,74.3z"/>
<path class="st42" d="M69.8,76.2l-0.4,0.2l-0.3-0.5l0.4-0.2L69.8,76.2z"/>
<path class="st42" d="M70.6,75.7l-0.1-0.3l0.8-2.4c0.1-0.4,0.2-0.8,0.3-1.1c0-0.3,0-0.5-0.1-0.7c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.2-0.6,0.4-0.7,0.7c-0.1,0.3-0.1,0.6,0.1,0.9l-0.4,0.2l0,0c-0.2-0.4-0.2-0.8-0.1-1.2
c0.1-0.4,0.4-0.7,0.9-0.9c0.4-0.2,0.8-0.2,1.1-0.1s0.6,0.4,0.8,0.8c0.1,0.3,0.1,0.6,0.1,0.9c0,0.3-0.1,0.7-0.3,1.2l-0.7,2l0,0
l2-0.9l-0.3-0.7l0.3-0.1l0.4,1L70.6,75.7z"/>
</g>
<g>
<path class="st42" d="M52.5,322.9l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L52.5,322.9z"/>
<path class="st42" d="M54.1,316.7c0.6,0.3,0.9,0.7,1.1,1.2s0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.1,316.7z
M52.8,316.5c-0.4-0.3-0.8-0.4-1.2-0.4s-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L52.8,316.5z"/>
<path class="st42" d="M56.6,316.7l-0.3,0.4l-0.5-0.3l0.3-0.4L56.6,316.7z"/>
<path class="st42" d="M56.9,315.7l0.5-0.7l-3.3-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L56.9,315.7z"/>
<path class="st42" d="M59.8,310.1c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.5-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L59.8,310.1z M58.7,309.5c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9s-0.3-0.7-0.6-1.1
L58.7,309.5z"/>
<path class="st42" d="M62.3,310.6l-0.4,0.3l-0.4-0.4l0.4-0.3L62.3,310.6z"/>
<path class="st42" d="M62.8,309.7l0.7-0.6l-2.6-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2L63,310L62.8,309.7z"/>
<path class="st42" d="M66.9,304.9c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5c0-0.5,0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2
c0.4,0.2,0.8,0.5,1.2,1.1L66.9,304.9z M65.9,304.1c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8
c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L65.9,304.1
z"/>
<path class="st42" d="M69.2,305.9l-0.4,0.2l-0.3-0.5l0.4-0.2L69.2,305.9z"/>
<path class="st42" d="M69.9,305.2l0.8-0.4l-1.8-3.9l-0.9,0.5l-0.1-0.3l1.2-0.9l2,4.4l0.9-0.3l0.1,0.3l-2.1,0.9L69.9,305.2z"/>
</g>
<g>
<path class="st42" d="M38.2,313.2l-0.4,0.9l-0.9-0.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.2-0.3,0.4-0.4,0.6c-0.2,0.3-0.2,0.6-0.2,0.9
c0.1,0.3,0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.1,0.7,0s0.5-0.4,0.9-0.8c0.5-0.6,1-1,1.5-1.2s1-0.2,1.5,0c0.5,0.2,0.8,0.7,1,1.2
c0.1,0.6,0,1.2-0.3,1.9c-0.2,0.5-0.5,0.9-0.9,1.2s-0.7,0.5-1.1,0.7l-1.3-0.6l0.5-1l0.9,0.3c0.2-0.1,0.3-0.2,0.5-0.4
s0.3-0.4,0.4-0.7c0.2-0.3,0.2-0.6,0.2-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.1-0.7,0c-0.2,0.1-0.5,0.3-0.8,0.7
c-0.6,0.6-1.1,1.1-1.5,1.3s-1,0.2-1.5,0c-0.5-0.2-0.8-0.6-0.9-1.2c-0.1-0.6,0-1.2,0.3-1.8c0.2-0.5,0.5-0.9,0.8-1.2
c0.3-0.3,0.7-0.6,1-0.7L38.2,313.2z"/>
<path class="st42" d="M44,312.7c-0.4,0.6-0.9,1-1.5,1.1c-0.6,0.1-1.2,0-1.9-0.4l-0.2-0.1c-0.6-0.4-1.1-0.9-1.3-1.5
c-0.2-0.6-0.1-1.2,0.2-1.8c0.4-0.6,0.8-0.9,1.4-1s1.1,0,1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2,0.6,0.2,0.9,0.1s0.5-0.2,0.7-0.5
c0.2-0.3,0.3-0.5,0.3-0.7s0.1-0.4,0.1-0.7l0.9,0.1c0,0.3,0,0.6-0.1,0.9C44.4,312,44.2,312.3,44,312.7z M40.3,310.6
c-0.1,0.2-0.2,0.4-0.1,0.7s0.3,0.4,0.5,0.6l0,0l0.9-1.4l-0.1-0.1c-0.2-0.2-0.5-0.2-0.7-0.2C40.7,310.2,40.5,310.4,40.3,310.6z"/>
<path class="st42" d="M44.7,309.9l0.3-0.6l-2.5-1.9l-0.5,0.5l-0.7-0.5l1.2-1.6l0.6,0.4c-0.1-0.3-0.2-0.5-0.2-0.7s0.1-0.5,0.2-0.7
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.2,0,0.3,0.1,0.4l2,1.5l0.5-0.4
l0.7,0.5l-1.6,2.2L44.7,309.9z"/>
<path class="st42" d="M45.9,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3-0.4l-1.2-2l-0.4,0.3l-0.6-0.6l1.5-1.7l0.6,0.5l-0.2,0.4
l2.1,3.9l-0.9,1l-4.1-1.7l-0.3,0.3l-0.6-0.6l1.5-1.7L45.9,302.8z"/>
<path class="st42" d="M48.4,297.4l-1,0.9l-0.7-0.7l1-0.9L48.4,297.4z M50.6,302.8l0.4-0.6l-2.2-2.3l-0.6,0.4l-0.6-0.6l1.5-1.4
l2.8,3l0.6-0.3l0.6,0.6l-2,1.8L50.6,302.8z"/>
<path class="st42" d="M54.7,299c0.2-0.2,0.3-0.3,0.3-0.5c0-0.2,0-0.4-0.2-0.6l1-0.8l0,0c0.3,0.4,0.5,0.8,0.4,1.4
c-0.1,0.5-0.4,1-0.8,1.3c-0.6,0.5-1.2,0.7-1.8,0.5c-0.6-0.1-1.2-0.5-1.6-1.1l-0.1-0.1c-0.5-0.6-0.7-1.2-0.7-1.8
c0-0.6,0.3-1.2,0.9-1.7c0.3-0.3,0.6-0.4,1-0.5c0.3-0.1,0.6-0.1,1-0.1l0.9,1l-0.9,0.7l-0.7-0.5c-0.1,0-0.2,0-0.3,0
s-0.2,0.1-0.3,0.2c-0.3,0.2-0.4,0.5-0.4,0.8c0.1,0.3,0.2,0.7,0.5,1l0.1,0.1c0.3,0.4,0.6,0.6,0.9,0.7
C54.1,299.3,54.4,299.3,54.7,299z"/>
<path class="st42" d="M59.3,297c-0.6,0.4-1.2,0.5-1.9,0.4s-1.1-0.5-1.5-1.1l-0.1-0.2c-0.4-0.6-0.6-1.3-0.5-1.9s0.4-1.1,1-1.5
c0.6-0.4,1.1-0.5,1.7-0.4c0.5,0.1,1,0.5,1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3,0.4,0.4,0.7,0.5s0.6,0,0.9-0.2
c0.3-0.2,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.4,0.4-0.6l0.8,0.5c-0.1,0.3-0.2,0.5-0.5,0.8C59.9,296.5,59.6,296.8,59.3,297z M56.9,293.5
c-0.2,0.1-0.3,0.3-0.3,0.6c0,0.2,0,0.5,0.2,0.8l0,0l1.4-0.9l-0.1-0.1c-0.2-0.2-0.3-0.4-0.6-0.5C57.3,293.4,57.1,293.4,56.9,293.5z
"/>
<path class="st42" d="M62.9,293.7l0.4-0.3l-0.5-6.3l1.3-0.6l4.3,4.6l0.5-0.1l0.3,0.8l-2.1,0.9l-0.3-0.8l0.4-0.3l-0.7-0.7l-2,0.9
l0.1,1l0.5-0.1l0.3,0.8l-2.1,0.9L62.9,293.7z M64.3,290.9l1.4-0.6l-1.7-1.9l0,0L64.3,290.9z"/>
<path class="st42" d="M73.7,289.7l1.1-0.4l-1-4.5l-1.1,0.2l-0.2-0.8l2.4-1l1.2,5.7l1.2-0.1l0.2,0.8l-3.6,0.8L73.7,289.7z"/>
<path class="st42" d="M82.3,286.4c0.1,0.9,0,1.6-0.4,2.1c-0.4,0.5-0.9,0.8-1.6,0.9c-0.7,0.1-1.3-0.1-1.8-0.5
c-0.5-0.4-0.8-1.1-0.9-2l-0.2-1.5c-0.1-0.9,0-1.6,0.4-2.1c0.4-0.5,0.9-0.8,1.6-0.9c0.7-0.1,1.3,0.1,1.8,0.5c0.5,0.4,0.8,1.1,0.9,2
L82.3,286.4z M80.8,284.9c-0.1-0.5-0.2-0.9-0.4-1.2s-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.2-0.7,0.5s-0.2,0.7-0.1,1.2l0.2,1.8
c0.1,0.5,0.2,0.9,0.4,1.2c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.2,0.7-0.5s0.2-0.7,0.1-1.2L80.8,284.9z"/>
<path class="st42" d="M84.9,289l-1.4,0.1l0-1.2l1.4-0.1L84.9,289z"/>
<path class="st42" d="M85.6,288.2l1.2-0.1l0.1-4.6l-1.2,0l0-0.8l2.5-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7-0.1L85.6,288.2z"/>
<path class="st42" d="M94.7,287c-0.1,0.9-0.4,1.6-0.9,2c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7-0.1-1.2-0.4-1.6-0.9s-0.5-1.2-0.4-2.1
l0.2-1.5c0.1-0.9,0.4-1.5,0.9-2c0.5-0.4,1.1-0.6,1.8-0.5c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.5,1.2,0.4,2.1L94.7,287z M93.6,285.2
c0.1-0.5,0-0.9-0.1-1.2c-0.1-0.3-0.3-0.4-0.7-0.5c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.3,0.6-0.4,1.2l-0.2,1.8c-0.1,0.5,0,1,0.1,1.2
c0.1,0.3,0.3,0.4,0.7,0.5c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.6,0.4-1.2L93.6,285.2z"/>
<path class="st42" d="M96.6,290.1l-1.3-0.3l0.2-1.2l1.3,0.3L96.6,290.1z"/>
<path class="st42" d="M99.5,289.9c0.4,0.1,0.7,0,1-0.2s0.5-0.6,0.7-1.1l0-0.1c-0.2,0.1-0.4,0.2-0.7,0.3c-0.2,0-0.5,0-0.7,0
c-0.6-0.2-1-0.5-1.3-1c-0.2-0.5-0.2-1.1,0-1.8c0.2-0.7,0.6-1.2,1.1-1.5c0.5-0.3,1.1-0.4,1.8-0.2c0.7,0.2,1.1,0.6,1.4,1.2
c0.3,0.6,0.3,1.3,0.1,2.1l-0.4,1.4c-0.2,0.9-0.7,1.4-1.3,1.8c-0.6,0.3-1.3,0.4-2,0.2c-0.2-0.1-0.5-0.2-0.7-0.3
c-0.2-0.1-0.4-0.2-0.6-0.4l0.4-0.9c0.2,0.1,0.4,0.2,0.5,0.3C99,289.7,99.2,289.8,99.5,289.9z M100.3,287.8c0.2,0.1,0.4,0.1,0.6,0
c0.2,0,0.3-0.1,0.5-0.2l0.2-0.7c0.1-0.5,0.2-0.9,0.1-1.2c-0.1-0.3-0.3-0.5-0.6-0.6c-0.3-0.1-0.5,0-0.8,0.2
c-0.2,0.2-0.4,0.5-0.5,0.9c-0.1,0.4-0.1,0.7,0,1C99.8,287.6,100,287.8,100.3,287.8z"/>
<path class="st42" d="M103.8,292.3l-1.3-0.5l0.4-1.1l1.3,0.5L103.8,292.3z"/>
<path class="st42" d="M104.8,291.8l1.1,0.3l1.9-4.2l-1.1-0.5l0.3-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3-1.5L104.8,291.8z"/>
</g>
<g>
<path class="st42" d="M115,54.6h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4s-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7V57h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V54.6z"/>
<path class="st42" d="M118.1,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S118.5,59.4,118.1,59.4z M118,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C118.5,55.3,118.3,55.2,118,55.2z"/>
<path class="st42" d="M120.9,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V58.5z
"/>
<path class="st42" d="M127.1,55l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3V55l-0.4,0.1l-1.5,4.2h-1.3
l-1.5-4.2l-0.4-0.1v-0.8h2.3V55z"/>
<path class="st42" d="M130.4,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V58.5z M132.4,53H131v-1h1.4V53z"/>
<path class="st42" d="M135.9,58.3c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3
c-0.4,0.3-0.9,0.5-1.5,0.5c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1v0.1c0,0.5,0.1,0.8,0.2,1.1C135.3,58.2,135.5,58.3,135.9,58.3z"/>
<path class="st42" d="M141,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S141.4,59.4,141,59.4z M140.9,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C141.4,55.3,141.1,55.2,140.9,55.2z"/>
<path class="st42" d="M149,52.5c0.8,0,1.4,0.2,1.9,0.5s0.7,0.8,0.7,1.4c0,0.3-0.1,0.6-0.2,0.8c-0.2,0.2-0.4,0.4-0.7,0.6
c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.8,0.5H146v-0.8l0.7-0.1v-4.9l-0.7-0.1
v-0.8h0.7H149z M148.1,55.3h1c0.4,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.2-0.9-0.2h-0.9V55.3z
M148.1,56.3v2h1.3c0.4,0,0.6-0.1,0.8-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.6-0.2-0.8c-0.2-0.2-0.4-0.3-0.8-0.3H148.1z"/>
<path class="st42" d="M154.8,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M163.8,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M162.4,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M166.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M166.9,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M175.9,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M174.6,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M178.3,59.3H177v-1.2h1.4V59.3z"/>
<path class="st42" d="M181.2,58.3c0.4,0,0.7-0.1,0.9-0.4s0.3-0.7,0.3-1.3v-0.1c-0.2,0.2-0.3,0.3-0.5,0.4s-0.4,0.2-0.7,0.2
c-0.6,0-1.1-0.2-1.5-0.6c-0.4-0.4-0.5-1-0.5-1.7c0-0.7,0.2-1.3,0.6-1.7s1-0.7,1.6-0.7c0.7,0,1.3,0.2,1.7,0.7
c0.4,0.5,0.7,1.2,0.7,2v1.5c0,0.9-0.2,1.6-0.7,2.1c-0.5,0.5-1.1,0.7-1.9,0.7c-0.2,0-0.5,0-0.7-0.1c-0.3,0-0.5-0.1-0.7-0.2l0.2-1
c0.2,0.1,0.4,0.1,0.6,0.2C180.7,58.3,180.9,58.3,181.2,58.3z M181.4,56.2c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3V55
c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4c-0.2,0.3-0.3,0.6-0.3,1c0,0.4,0.1,0.7,0.2,1
C180.9,56,181.1,56.2,181.4,56.2z"/>
<path class="st42" d="M186.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M187,59.3v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H187z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="140.6" cy="241.8" r="14.1"/>
<g>
<g>
<path class="st46" d="M145,233.5c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M135.4,245.5l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V245.5z M139.4,242.3h2.5l-1.2-3.8h0L139.4,242.3z"/>
</g>
</g>
<g>
<circle class="st49" cx="159.9" cy="211.5" r="14.1"/>
<g>
<g>
<path class="st46" d="M164.3,203.2c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M160.1,205.8c1.3,0,2.3,0.2,3,0.7s1.1,1.2,1.1,2.2c0,0.5-0.1,1-0.4,1.3c-0.3,0.4-0.7,0.7-1.2,0.9
c0.7,0.1,1.1,0.4,1.5,0.9s0.5,1,0.5,1.6c0,1-0.3,1.8-1,2.4c-0.7,0.5-1.7,0.8-2.9,0.8h-5.3v-1.3l1.2-0.2v-7.8l-1.2-0.2v-1.3h1.2
H160.1z M158.6,210.3h1.6c0.6,0,1-0.1,1.3-0.4c0.3-0.2,0.5-0.6,0.5-1c0-0.5-0.2-0.9-0.5-1.1c-0.3-0.2-0.8-0.4-1.4-0.4h-1.5
V210.3z M158.6,211.8v3.1h2c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2c-0.3-0.3-0.7-0.4-1.2-0.4H158.6
z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="74.8,101.8 86.6,94.9 98.5,101.8 86.6,108.6 "/>
<polygon class="st51" points="74.8,115.4 74.8,101.8 86.6,108.6 86.6,122.3 "/>
<polygon class="st51" points="86.6,122.3 86.6,108.6 98.5,101.8 98.5,115.4 "/>
</g>
<g>
<polygon class="st51" points="74.2,331.5 86,324.6 97.9,331.5 86,338.3 "/>
<polygon class="st51" points="74.2,345.2 74.2,331.5 86,338.3 86,352 "/>
<polygon class="st51" points="86,352 86,338.3 97.9,331.5 97.9,345.2 "/>
</g>
<g>
<polygon class="st51" points="178.7,101.8 190.6,94.9 202.4,101.8 190.6,108.6 "/>
<polygon class="st51" points="178.7,115.4 178.7,101.8 190.6,108.6 190.6,122.3 "/>
<polygon class="st51" points="190.6,122.3 190.6,108.6 202.4,101.8 202.4,115.4 "/>
</g>
<g>
<polygon class="st51" points="225.2,101.8 237.1,94.9 248.9,101.8 237.1,108.6 "/>
<polygon class="st51" points="225.2,115.4 225.2,101.8 237.1,108.6 237.1,122.3 "/>
<polygon class="st51" points="237.1,122.3 237.1,108.6 248.9,101.8 248.9,115.4 "/>
</g>
</g>
<g id="labels_x2F_selectors">
<polygon class="st53" points="145.5,335.5 110.8,335.5 105.4,326.6 110.8,317.7 145.5,317.7 "/>
<polygon class="st54" points="144,334 109.3,334 103.9,325.1 109.3,316.2 144,316.2 "/>
<g>
<g>
<path class="st42" d="M114.7,328.5c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4c-0.3-0.3-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H114.7z
M113.2,327.8c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5C112.7,327.7,112.9,327.8,113.2,327.8z"/>
<path class="st42" d="M116.7,329.9l0.8-0.1V324l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V329.9z M121,325.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V325.9z"/>
<path class="st42" d="M122.7,329.9l0.8-0.1V324l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V329.9z M127.1,325.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V325.9z"/>
<path class="st42" d="M133.3,324.5h-4.1v-0.8h4.1V324.5z M133.3,326.5h-4.1v-0.8h4.1V326.5z"/>
<path class="st42" d="M134.3,327.9l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2v-0.6l0.5-0.1l-0.5-1.3h-2.8l-0.5,1.3l0.5,0.1v0.6
h-2V327.9z M136.5,325.7h2.3l-1.1-3.1h0L136.5,325.7z"/>
</g>
</g>
<polygon class="st53" points="147,132 112.3,132 106.9,123 112.3,114.1 147,114.1 "/>
<polygon class="st55" points="145.5,130.5 110.8,130.5 105.4,121.5 110.8,112.6 145.5,112.6 "/>
<g>
<g>
<path class="st42" d="M116.2,124.9c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H116.2z M114.7,124.2c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S114.4,124.2,114.7,124.2z"/>
<path class="st42" d="M118.2,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M122.5,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M124.2,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M128.5,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M134.7,120.9h-4.1v-0.8h4.1V120.9z M134.7,122.9h-4.1v-0.8h4.1V122.9z"/>
<path class="st42" d="M138.9,117.8c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5h-3.4
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H138.9z M137.6,120.8h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V120.8z M137.6,121.6v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H137.6z"/>
</g>
</g>
<polygon class="st53" points="241.2,132 206.5,132 201.1,123 206.5,114.1 241.2,114.1 "/>
<polygon class="st55" points="239.7,130.5 205,130.5 199.6,121.5 205,112.6 239.7,112.6 "/>
<g>
<g>
<path class="st42" d="M210.4,124.9c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H210.4z M208.9,124.2c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S208.6,124.2,208.9,124.2z"/>
<path class="st42" d="M212.4,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M216.7,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M218.4,126.3l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V126.3z M222.7,122.4c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V122.4z"/>
<path class="st42" d="M228.9,120.9h-4.1v-0.8h4.1V120.9z M228.9,122.9h-4.1v-0.8h4.1V122.9z"/>
<path class="st42" d="M233.1,117.8c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5H230
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H233.1z M231.8,120.8h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V120.8z M231.8,121.6v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H231.8z"/>
</g>
</g>
<polygon class="st53" points="284.6,107.5 249.9,107.5 244.5,98.5 249.9,89.6 284.6,89.6 "/>
<polygon class="st55" points="283.1,106 248.4,106 243,97 248.4,88.1 283.1,88.1 "/>
<g>
<g>
<path class="st42" d="M253.8,100.4c0-0.1-0.1-0.3-0.1-0.4c0-0.1,0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5c0.4,0.3,0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6
H253.8z M252.3,99.7c0.3,0,0.6-0.1,0.9-0.2c0.3-0.2,0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5S252,99.7,252.3,99.7z"/>
<path class="st42" d="M255.8,101.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1V98c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V101.8z M260.1,97.9c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V97.9z"/>
<path class="st42" d="M261.8,101.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1V98c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V101.8z M266.2,97.9c0-0.6-0.1-1.1-0.4-1.5c-0.2-0.4-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2c-0.2,0.1-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V97.9z"/>
<path class="st42" d="M272.4,96.4h-4.1v-0.8h4.1V96.4z M272.4,98.4h-4.1v-0.8h4.1V98.4z"/>
<path class="st42" d="M276.5,93.3c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.7,0.5h-3.4
v-0.6l0.8-0.1v-5.6l-0.8-0.1v-0.6h0.8H276.5z M275.2,96.3h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8
c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3h-1.4V96.3z M275.2,97.1v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9
c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4H275.2z"/>
</g>
</g>
<polygon class="st53" points="212.9,229.9 171.4,229.9 166,221 171.4,212 212.9,212 "/>
<polygon class="st56" points="211.4,228.4 169.9,228.4 164.5,219.5 169.9,210.5 211.4,210.5 "/>
<g>
<path class="st42" d="M175.6,219.2h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L175.6,219.2z"/>
<path class="st42" d="M177.8,218.5h-1v-1h1V218.5z M177.8,222.8h-1v-1h1V222.8z"/>
<path class="st42" d="M182.1,222.8c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6H179v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H182.1z M180.6,222.1
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S180.3,222.1,180.6,222.1z"/>
<path class="st42" d="M184,224.2l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6H184V224.2z M188.4,220.3c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V220.3z"/>
<path class="st42" d="M190.1,224.2l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V224.2z M194.4,220.3c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V220.3z"/>
<path class="st42" d="M200.6,218.8h-4.1V218h4.1V218.8z M200.6,220.8h-4.1V220h4.1V220.8z"/>
<path class="st42" d="M204.8,215.7c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6s0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5s-1,0.5-1.7,0.5h-3.4v-0.6l0.8-0.1v-5.6
l-0.8-0.1v-0.6h0.8H204.8z M203.4,218.7h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
h-1.4V218.7z M203.4,219.5v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4
H203.4z"/>
</g>
<polygon class="st53" points="194.3,258.7 152.8,258.7 147.4,249.8 152.8,240.8 194.3,240.8 "/>
<polygon class="st57" points="192.8,257.2 151.3,257.2 145.9,248.3 151.3,239.3 192.8,239.3 "/>
<g>
<path class="st42" d="M156.9,248h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L156.9,248z"/>
<path class="st42" d="M159.2,247.3h-1v-1h1V247.3z M159.2,251.6h-1v-1h1V251.6z"/>
<path class="st42" d="M163.5,251.6c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1V248c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H163.5z M161.9,250.9
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S161.6,250.9,161.9,250.9z"/>
<path class="st42" d="M165.4,253l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V253z M169.8,249.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V249.1z"/>
<path class="st42" d="M171.5,253l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V253z M175.8,249.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V249.1z"/>
<path class="st42" d="M182,247.6h-4.1v-0.8h4.1V247.6z M182,249.6h-4.1v-0.8h4.1V249.6z"/>
<path class="st42" d="M183,251l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2V251l0.5-0.1l-0.5-1.3H185l-0.5,1.3l0.5,0.1v0.6h-2V251
z M185.3,248.8h2.3l-1.1-3.1h0L185.3,248.8z"/>
</g>
<polygon class="st53" points="162.4,376.4 120.9,376.4 115.5,367.5 120.9,358.6 162.4,358.6 "/>
<polygon class="st57" points="160.9,374.9 119.4,374.9 114,366 119.4,357.1 160.9,357.1 "/>
<g>
<path class="st42" d="M125,365.8h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6c0.3,0.2,0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1c-0.3-0.1-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L125,365.8z"/>
<path class="st42" d="M127.3,365.1h-1v-1h1V365.1z M127.3,369.4h-1v-1h1V369.4z"/>
<path class="st42" d="M131.5,369.4c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4c-0.3-0.3-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1v-0.6c0-0.3-0.1-0.6-0.3-0.7
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5
c0.3-0.1,0.7-0.2,1.1-0.2c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H131.5z
M130,368.7c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6V367h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.2,0.1,0.4,0.2,0.5C129.5,368.6,129.7,368.7,130,368.7z"/>
<path class="st42" d="M133.5,370.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V370.8z M137.8,366.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V366.9z"/>
<path class="st42" d="M139.5,370.8l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8c-0.4,0.5-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V370.8z M143.9,366.9c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6
c-0.3,0-0.5,0.1-0.7,0.2s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5
s0.4-0.8,0.4-1.3V366.9z"/>
<path class="st42" d="M150.1,365.4H146v-0.8h4.1V365.4z M150.1,367.4H146v-0.8h4.1V367.4z"/>
<path class="st42" d="M151,368.8l0.5-0.1l2.5-6.4h0.8l2.4,6.4l0.5,0.1v0.6h-2v-0.6l0.5-0.1l-0.5-1.3H153l-0.5,1.3l0.5,0.1v0.6h-2
V368.8z M153.3,366.6h2.3l-1.1-3.1h0L153.3,366.6z"/>
</g>
<polygon class="st53" points="304.3,157.7 262.8,157.7 257.4,148.7 262.8,139.8 304.3,139.8 "/>
<g>
<polygon class="st6" points="302.8,156.2 261.3,156.2 255.9,147.2 261.3,138.3 302.8,138.3 "/>
<g>
<polyline class="st18" points="302.8,155 302.8,156.2 301.6,156.2 "/>
<line class="st58" x1="299.9" y1="156.2" x2="263.3" y2="156.2"/>
<polyline class="st18" points="262.5,156.2 261.3,156.2 260.7,155.1 "/>
<line class="st59" x1="260" y1="154" x2="256.9" y2="148.8"/>
<polyline class="st18" points="256.5,148.3 255.9,147.2 256.5,146.2 "/>
<line class="st59" x1="257.2" y1="145.1" x2="260.3" y2="139.9"/>
<polyline class="st18" points="260.7,139.3 261.3,138.3 262.5,138.3 "/>
<line class="st58" x1="264.2" y1="138.3" x2="300.7" y2="138.3"/>
<polyline class="st18" points="301.6,138.3 302.8,138.3 302.8,139.5 "/>
<line class="st60" x1="302.8" y1="141.3" x2="302.8" y2="154"/>
</g>
</g>
<g>
<path class="st42" d="M266.9,147h-0.7l-0.2-0.6c-0.1-0.1-0.3-0.2-0.4-0.3c-0.2-0.1-0.4-0.1-0.6-0.1c-0.3,0-0.6,0.1-0.8,0.2
s-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5s0.4,0.2,0.9,0.3c0.7,0.1,1.2,0.3,1.5,0.6s0.5,0.6,0.5,1c0,0.5-0.2,0.8-0.6,1.1
c-0.4,0.3-0.9,0.4-1.5,0.4c-0.4,0-0.8,0-1.1-0.1s-0.6-0.2-0.9-0.4l0-1.2h0.7l0.2,0.7c0.1,0.1,0.3,0.2,0.5,0.2
c0.2,0,0.4,0.1,0.6,0.1c0.3,0,0.6-0.1,0.8-0.2c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.2-0.5c-0.2-0.1-0.5-0.3-0.9-0.4
c-0.6-0.1-1.1-0.3-1.5-0.6s-0.5-0.6-0.5-1c0-0.4,0.2-0.8,0.5-1.1c0.4-0.3,0.8-0.5,1.4-0.5c0.4,0,0.8,0.1,1.1,0.2s0.6,0.2,0.8,0.4
L266.9,147z"/>
<path class="st42" d="M269.2,146.3h-1v-1h1V146.3z M269.2,150.6h-1v-1h1V150.6z"/>
<path class="st42" d="M273.5,150.6c0-0.1-0.1-0.3-0.1-0.4s0-0.2,0-0.3c-0.2,0.2-0.4,0.4-0.7,0.6c-0.3,0.2-0.6,0.2-0.9,0.2
c-0.5,0-1-0.1-1.3-0.4s-0.4-0.6-0.4-1.1c0-0.5,0.2-0.9,0.6-1.2c0.4-0.3,1-0.4,1.7-0.4h1V147c0-0.3-0.1-0.6-0.3-0.7
s-0.5-0.3-0.8-0.3c-0.2,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.1-0.4,0.3l-0.1,0.6h-0.7v-1c0.2-0.2,0.5-0.3,0.9-0.5s0.7-0.2,1.1-0.2
c0.6,0,1.1,0.2,1.5,0.5s0.6,0.7,0.6,1.3v2.5c0,0.1,0,0.1,0,0.2c0,0.1,0,0.1,0,0.2l0.4,0.1v0.6H273.5z M271.9,149.9
c0.3,0,0.6-0.1,0.9-0.2s0.5-0.3,0.6-0.6v-0.9h-1c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.2,0.5
S271.6,149.9,271.9,149.9z"/>
<path class="st42" d="M275.4,152l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V152z M279.7,148.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V148.1z"/>
<path class="st42" d="M281.5,152l0.8-0.1v-5.8l-0.8-0.1v-0.6h1.6l0.1,0.6c0.2-0.2,0.4-0.4,0.6-0.6c0.3-0.1,0.5-0.2,0.9-0.2
c0.7,0,1.2,0.3,1.5,0.8c0.4,0.5,0.5,1.2,0.5,2.1v0.1c0,0.8-0.2,1.4-0.5,1.8s-0.9,0.7-1.5,0.7c-0.3,0-0.6-0.1-0.9-0.2
c-0.2-0.1-0.5-0.3-0.6-0.5v1.8l0.8,0.1v0.6h-2.6V152z M285.8,148.1c0-0.6-0.1-1.1-0.4-1.5s-0.6-0.6-1-0.6c-0.3,0-0.5,0.1-0.7,0.2
s-0.4,0.3-0.5,0.5v2.6c0.1,0.2,0.3,0.4,0.5,0.5c0.2,0.1,0.4,0.2,0.7,0.2c0.5,0,0.8-0.2,1-0.5s0.4-0.8,0.4-1.3V148.1z"/>
<path class="st42" d="M292,146.6h-4.1v-0.8h4.1V146.6z M292,148.6h-4.1v-0.8h4.1V148.6z"/>
<path class="st42" d="M296.2,143.5c0.7,0,1.3,0.2,1.7,0.5c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8
c-0.2,0.2-0.5,0.4-0.8,0.6c0.4,0.1,0.8,0.3,1,0.6s0.4,0.7,0.4,1.1c0,0.7-0.2,1.1-0.6,1.5s-1,0.5-1.7,0.5H293V150l0.8-0.1v-5.6
l-0.8-0.1v-0.6h0.8H296.2z M294.8,146.5h1.6c0.3,0,0.6-0.1,0.8-0.3c0.2-0.2,0.3-0.5,0.3-0.8c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
h-1.4V146.5z M294.8,147.3v2.6h1.7c0.4,0,0.8-0.1,1-0.3c0.2-0.2,0.4-0.5,0.4-0.9c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.4-0.9-0.4
H294.8z"/>
</g>
</g>
<g id="description">
<g>
<path class="st42" d="M260.8,256.6v-0.7l1-0.2V249l-1-0.2v-0.7h1h1.2h1v0.7l-1,0.2v6.7h3l0.1-1h1v1.9H260.8z"/>
<path class="st42" d="M272.1,256.6c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H272.1z M270.3,255.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S269.9,255.8,270.3,255.8z"/>
<path class="st42" d="M280.4,253.7c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.4-0.8-0.7l-0.1,0.8h-1
v-8.2l-1-0.2v-0.7h2.1v3.6c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,1-0.2c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5V253.7z M279.2,253.6
c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.2-0.7c-0.4,0-0.7,0.1-0.9,0.3s-0.4,0.4-0.6,0.7v2.8c0.1,0.3,0.3,0.5,0.6,0.7s0.5,0.3,0.9,0.3
c0.5,0,0.9-0.2,1.2-0.6s0.4-0.9,0.4-1.5V253.6z"/>
<path class="st42" d="M284.4,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S285,256.7,284.4,256.7z M284.3,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S284.7,251.1,284.3,251.1z"/>
<path class="st42" d="M287.8,248.2v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L287.8,248.2z"/>
<path class="st42" d="M300.8,250.6h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8V254h0.9l0.2,1.2c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V250.6z"/>
<path class="st42" d="M305,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S305.5,256.7,305,256.7z M304.8,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S305.3,251.1,304.8,251.1z"/>
<path class="st42" d="M308.4,248.2v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L308.4,248.2z"/>
<path class="st42" d="M315.2,256.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S315.7,256.7,315.2,256.7z M315,251.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S315.5,251.1,315,251.1z"/>
<path class="st42" d="M321.6,255.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S321,255.8,321.6,255.8z"/>
<path class="st42" d="M327.2,248.7v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H327.2z"/>
<path class="st42" d="M329.5,253.4c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V253.4z M330.6,253.5c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V253.5z"/>
<path class="st42" d="M336.2,251v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L336.2,251z"/>
</g>
<line class="st63" x1="258.9" y1="254.2" x2="189.5" y2="254.2"/>
<g>
<path class="st42" d="M309.7,105.4v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1h1.2h1v0.7l-1,0.2v6.7h3l0.1-1h1v1.9H309.7z"/>
<path class="st42" d="M321,105.4c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2V101c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H321z M319.2,104.5c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S318.8,104.5,319.2,104.5z"/>
<path class="st42" d="M329.3,102.4c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.8-0.1-1.1-0.2s-0.6-0.4-0.8-0.7l-0.1,0.8h-1
v-8.2l-1-0.2v-0.7h2.1v3.6c0.2-0.3,0.4-0.5,0.7-0.6s0.6-0.2,1-0.2c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5V102.4z M328.1,102.3
c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.2-0.7c-0.4,0-0.7,0.1-0.9,0.3s-0.4,0.4-0.6,0.7v2.8c0.1,0.3,0.3,0.5,0.6,0.7s0.5,0.3,0.9,0.3
c0.5,0,0.9-0.2,1.2-0.6s0.4-0.9,0.4-1.5V102.3z"/>
<path class="st42" d="M333.3,105.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V102c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S333.9,105.5,333.3,105.5z M333.2,99.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S333.6,99.8,333.2,99.8z"/>
<path class="st42" d="M336.7,97v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L336.7,97z"/>
</g>
<line class="st62" x1="307.3" y1="103" x2="278" y2="103"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 57 KiB

@@ -0,0 +1,463 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 394 440.4" style="enable-background:new 0 0 394 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="130.9,265.9 106.7,235.6 115.3,197.8 150.2,181 185.1,197.8 193.8,235.6 169.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="213.8,179.8 155.7,146.2 155.7,79.1 213.8,45.6 271.9,79.1 271.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="86.6,179.7 28.6,146.1 28.6,79.1 86.6,45.5 144.7,79.1 144.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="86.6,401.4 28.6,367.9 28.6,300.8 86.6,267.2 144.7,300.8 144.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st18" d="M85.4,154.7c0.4,0,0.8,0,1.2,0v0h1.2"/>
<line class="st19" x1="89.4" y1="154.7" x2="235.1" y2="154.7"/>
<path class="st18" d="M235.9,154.7h1.2v0c0.4,0,0.8,0,1.2,0"/>
<path class="st20" d="M239.9,154.7c24.1-1.5,43.3-21.5,43.3-46c0-25.4-20.7-46.1-46.1-46.1H86.6c-25.4,0-46.1,20.7-46.1,46.1
c0,24.8,19.6,45,44.1,46.1"/>
</g>
</g>
<path class="st21" d="M86,384.5c-25.4,0-46.1-20.7-46.1-46.1c0-25.4,20.7-46.1,46.1-46.1s46.1,20.7,46.1,46.1
C132.1,363.8,111.4,384.5,86,384.5z"/>
</g>
<g id="pods">
<circle class="st26" cx="86" cy="338.3" r="34.1"/>
<circle class="st22" cx="86" cy="338.3" r="34.1"/>
<circle class="st28" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st28" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st28" cx="86.6" cy="108.6" r="34.1"/>
<circle class="st18" cx="190.6" cy="108.6" r="20.5"/>
<circle class="st18" cx="237.1" cy="108.6" r="20.5"/>
<circle class="st18" cx="86.6" cy="108.6" r="34.1"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M38.2,313.2l-0.4,0.9l-0.9-0.2c-0.1,0.1-0.3,0.2-0.4,0.4c-0.1,0.2-0.3,0.4-0.4,0.6c-0.2,0.3-0.2,0.6-0.2,0.9
s0.2,0.4,0.4,0.5c0.2,0.1,0.4,0.1,0.7,0c0.2-0.1,0.5-0.4,0.9-0.8c0.5-0.6,1-1,1.5-1.2s1-0.2,1.5,0c0.5,0.2,0.8,0.7,1,1.2
c0.1,0.6,0,1.2-0.3,1.9c-0.2,0.5-0.5,0.9-0.9,1.2s-0.7,0.5-1.1,0.7l-1.3-0.6l0.5-1l0.9,0.3c0.2-0.1,0.3-0.2,0.5-0.4
c0.2-0.2,0.3-0.4,0.4-0.7c0.2-0.3,0.2-0.6,0.2-0.9c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.1-0.7,0c-0.2,0.1-0.5,0.3-0.8,0.7
c-0.6,0.6-1.1,1.1-1.5,1.3c-0.5,0.2-1,0.2-1.5,0c-0.5-0.2-0.8-0.6-0.9-1.2c-0.1-0.6,0-1.2,0.3-1.8c0.2-0.5,0.5-0.9,0.8-1.2
c0.3-0.3,0.7-0.6,1-0.7L38.2,313.2z"/>
<path class="st42" d="M44,312.7c-0.4,0.6-0.9,1-1.5,1.1c-0.6,0.1-1.2,0-1.9-0.4l-0.2-0.1c-0.6-0.4-1.1-0.9-1.3-1.5
c-0.2-0.6-0.1-1.2,0.2-1.8c0.4-0.6,0.8-0.9,1.4-1c0.5-0.1,1.1,0,1.7,0.4l0.6,0.4l-1.6,2.6l0,0c0.3,0.2,0.6,0.2,0.9,0.1
c0.3-0.1,0.5-0.2,0.7-0.5c0.2-0.3,0.3-0.5,0.3-0.7s0.1-0.4,0.1-0.7l0.9,0.1c0,0.3,0,0.6-0.1,0.9C44.4,312,44.2,312.3,44,312.7z
M40.3,310.6c-0.1,0.2-0.2,0.4-0.1,0.7s0.3,0.4,0.5,0.6h0l0.9-1.4l-0.1-0.1c-0.2-0.2-0.5-0.2-0.7-0.2S40.5,310.4,40.3,310.6z"/>
<path class="st42" d="M44.7,309.9l0.3-0.6l-2.5-1.9l-0.5,0.5l-0.7-0.5l1.2-1.6l0.6,0.4c-0.1-0.3-0.2-0.5-0.2-0.7s0.1-0.5,0.2-0.7
c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.2-0.1l0.9,0.9l-0.3,0.4c-0.1,0.2-0.2,0.3-0.2,0.5c0,0.2,0,0.3,0.1,0.4l2,1.5l0.5-0.4
l0.7,0.5l-1.6,2.2L44.7,309.9z"/>
<path class="st42" d="M45.9,302.8l-0.3,0.4l2.1,1l0.4,0.3l0,0l-0.3-0.4l-1.2-2l-0.4,0.3l-0.6-0.6l1.5-1.7l0.6,0.6l-0.2,0.4
l2.1,3.9l-0.9,1l-4.1-1.7l-0.3,0.3l-0.6-0.6l1.5-1.7L45.9,302.8z"/>
<path class="st42" d="M48.4,297.4l-1,0.9l-0.7-0.7l1-0.9L48.4,297.4z M50.6,302.8l0.4-0.6l-2.2-2.3l-0.6,0.4l-0.6-0.6l1.5-1.4
l2.8,3l0.6-0.3l0.6,0.6l-2,1.8L50.6,302.8z"/>
<path class="st42" d="M54.7,299c0.2-0.2,0.3-0.3,0.3-0.5c0-0.2,0-0.4-0.2-0.6l1-0.8l0,0c0.3,0.4,0.5,0.8,0.4,1.4
c-0.1,0.5-0.4,1-0.8,1.3c-0.6,0.5-1.2,0.7-1.8,0.5c-0.6-0.1-1.2-0.5-1.6-1.1l-0.1-0.1c-0.5-0.6-0.7-1.2-0.7-1.8
c0-0.6,0.3-1.2,0.9-1.7c0.3-0.3,0.6-0.4,1-0.5c0.3-0.1,0.6-0.1,1-0.1l0.9,1l-0.9,0.7l-0.7-0.5c-0.1,0-0.2,0-0.3,0
s-0.2,0.1-0.3,0.2c-0.3,0.2-0.4,0.5-0.4,0.8c0.1,0.3,0.2,0.7,0.5,1l0.1,0.1c0.3,0.4,0.6,0.6,0.9,0.7
C54.1,299.3,54.4,299.3,54.7,299z"/>
<path class="st42" d="M59.3,297c-0.6,0.4-1.2,0.5-1.9,0.4c-0.6-0.2-1.1-0.5-1.5-1.1l-0.1-0.2c-0.4-0.6-0.6-1.3-0.5-1.9
s0.4-1.1,1-1.5c0.6-0.4,1.1-0.5,1.7-0.4c0.5,0.1,1,0.5,1.4,1.1l0.4,0.6l-2.5,1.7l0,0c0.2,0.3,0.4,0.4,0.7,0.5
c0.3,0.1,0.6,0,0.9-0.2c0.3-0.2,0.4-0.3,0.6-0.5c0.1-0.2,0.3-0.4,0.4-0.6l0.8,0.5c-0.1,0.3-0.2,0.5-0.5,0.8
C59.9,296.5,59.6,296.8,59.3,297z M56.9,293.5c-0.2,0.1-0.3,0.3-0.3,0.6c0,0.2,0,0.5,0.2,0.8l0,0l1.4-0.9l-0.1-0.1
c-0.2-0.2-0.3-0.4-0.6-0.5C57.3,293.3,57.1,293.4,56.9,293.5z"/>
<path class="st42" d="M62.9,293.7l0.4-0.3l-0.5-6.3l1.3-0.6l4.3,4.6l0.5-0.1l0.3,0.8l-2.1,0.9l-0.3-0.8l0.4-0.3l-0.7-0.7l-2,0.9
l0.1,1l0.5-0.1l0.3,0.8l-2.1,0.9L62.9,293.7z M64.3,290.9l1.4-0.6l-1.7-1.9l0,0L64.3,290.9z"/>
<path class="st42" d="M73.7,289.7l1.1-0.4l-1-4.5l-1.1,0.2l-0.2-0.8l2.4-1l1.2,5.7l1.2-0.1l0.2,0.8l-3.6,0.8L73.7,289.7z"/>
<path class="st42" d="M82.3,286.4c0.1,0.9,0,1.6-0.4,2.1c-0.4,0.5-0.9,0.8-1.6,0.9c-0.7,0.1-1.3-0.1-1.8-0.5
c-0.5-0.4-0.8-1.1-0.9-2l-0.2-1.5c-0.1-0.9,0-1.6,0.4-2.1s0.9-0.8,1.6-0.9c0.7-0.1,1.3,0.1,1.8,0.5c0.5,0.4,0.8,1.1,0.9,2
L82.3,286.4z M80.8,284.9c-0.1-0.5-0.2-0.9-0.4-1.2c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.5,0.2-0.7,0.5s-0.2,0.7-0.1,1.2l0.2,1.8
c0.1,0.5,0.2,0.9,0.4,1.2s0.4,0.3,0.7,0.3c0.3,0,0.5-0.2,0.7-0.5c0.1-0.3,0.2-0.7,0.1-1.2L80.8,284.9z"/>
<path class="st42" d="M84.9,289l-1.4,0.1l0-1.2l1.4-0.1L84.9,289z"/>
<path class="st42" d="M85.6,288.1l1.2-0.1l0.1-4.6l-1.2,0l0-0.8l2.5-0.4l-0.2,5.9l1.1,0.2l0,0.8l-3.7-0.1L85.6,288.1z"/>
<path class="st42" d="M94.7,287c-0.1,0.9-0.4,1.6-0.9,2c-0.5,0.4-1.1,0.6-1.8,0.5c-0.7-0.1-1.2-0.4-1.6-0.9s-0.5-1.2-0.4-2.1
l0.2-1.5c0.1-0.9,0.4-1.5,0.9-2c0.5-0.4,1.1-0.6,1.8-0.5c0.7,0.1,1.2,0.4,1.6,0.9c0.4,0.5,0.5,1.2,0.4,2.1L94.7,287z M93.6,285.2
c0.1-0.5,0-0.9-0.1-1.2c-0.1-0.3-0.3-0.4-0.7-0.5c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.3,0.6-0.4,1.2l-0.2,1.8c-0.1,0.5,0,1,0.1,1.2
c0.1,0.3,0.3,0.4,0.7,0.5c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.6,0.4-1.2L93.6,285.2z"/>
<path class="st42" d="M96.6,290.1l-1.3-0.3l0.2-1.2l1.3,0.3L96.6,290.1z"/>
<path class="st42" d="M99.5,289.9c0.4,0.1,0.7,0,1-0.2c0.3-0.2,0.5-0.6,0.7-1.1l0-0.1c-0.2,0.1-0.4,0.2-0.7,0.3
c-0.2,0-0.5,0-0.7,0c-0.6-0.2-1-0.5-1.3-1c-0.2-0.5-0.3-1.1,0-1.8c0.2-0.7,0.6-1.2,1.1-1.5c0.5-0.3,1.1-0.4,1.8-0.2
c0.7,0.2,1.1,0.6,1.4,1.2c0.3,0.6,0.3,1.3,0.1,2.1l-0.4,1.4c-0.2,0.9-0.7,1.4-1.3,1.8c-0.6,0.3-1.3,0.4-2,0.2
c-0.2-0.1-0.5-0.2-0.7-0.3c-0.2-0.1-0.4-0.2-0.6-0.4l0.4-0.9c0.2,0.1,0.4,0.2,0.5,0.3C99,289.7,99.2,289.8,99.5,289.9z
M100.3,287.8c0.2,0.1,0.4,0.1,0.6,0c0.2,0,0.3-0.1,0.5-0.2l0.2-0.7c0.1-0.5,0.2-0.9,0.1-1.2c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.3-0.1-0.5,0-0.8,0.2c-0.2,0.2-0.4,0.5-0.5,0.9c-0.1,0.4-0.1,0.7,0,1C99.8,287.6,100,287.8,100.3,287.8z"/>
<path class="st42" d="M103.8,292.3l-1.3-0.5l0.4-1.1l1.3,0.5L103.8,292.3z"/>
<path class="st42" d="M104.8,291.8l1.1,0.3l1.9-4.2l-1.1-0.5l0.3-0.7l2.5,0.6l-2.4,5.4l1,0.6l-0.3,0.7l-3.3-1.5L104.8,291.8z"/>
</g>
<g>
<path class="st42" d="M115,54.6h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4s-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7V57h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V54.6z"/>
<path class="st42" d="M118.1,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S118.5,59.4,118.1,59.4z M118,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C118.5,55.3,118.3,55.2,118,55.2z"/>
<path class="st42" d="M120.9,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V58.5z
"/>
<path class="st42" d="M127.1,55l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3V55l-0.4,0.1l-1.5,4.2h-1.3
l-1.5-4.2l-0.4-0.1v-0.8h2.3V55z"/>
<path class="st42" d="M130.4,58.5l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V58.5z M132.4,53H131v-1h1.4V53z"/>
<path class="st42" d="M135.9,58.3c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3
c-0.4,0.3-0.9,0.5-1.5,0.5c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7
c0.4,0,0.8,0.1,1.1,0.2c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1v0.1c0,0.5,0.1,0.8,0.2,1.1C135.3,58.2,135.5,58.3,135.9,58.3z"/>
<path class="st42" d="M141,59.4c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S141.4,59.4,141,59.4z M140.9,55.2c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C141.4,55.3,141.1,55.2,140.9,55.2z"/>
<path class="st42" d="M149,52.5c0.8,0,1.4,0.2,1.9,0.5s0.7,0.8,0.7,1.4c0,0.3-0.1,0.6-0.2,0.8c-0.2,0.2-0.4,0.4-0.7,0.6
c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1c0,0.7-0.2,1.1-0.6,1.5c-0.4,0.3-1,0.5-1.8,0.5H146v-0.8l0.7-0.1v-4.9l-0.7-0.1
v-0.8h0.7H149z M148.1,55.3h1c0.4,0,0.6-0.1,0.8-0.2c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7s-0.5-0.2-0.9-0.2h-0.9V55.3z
M148.1,56.3v2h1.3c0.4,0,0.6-0.1,0.8-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.6-0.2-0.8c-0.2-0.2-0.4-0.3-0.8-0.3H148.1z"/>
<path class="st42" d="M154.8,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M163.8,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M162.4,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M166.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M166.9,58.5l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V58.5z"/>
<path class="st42" d="M175.9,56.6c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1
v-1.5c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V56.6z M174.6,55
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.6,0.2-1.2V55z"/>
<path class="st42" d="M178.3,59.3H177v-1.2h1.4V59.3z"/>
<path class="st42" d="M181.2,58.3c0.4,0,0.7-0.1,0.9-0.4s0.3-0.7,0.3-1.3v-0.1c-0.2,0.2-0.3,0.3-0.5,0.4s-0.4,0.2-0.7,0.2
c-0.6,0-1.1-0.2-1.5-0.6c-0.4-0.4-0.5-1-0.5-1.7c0-0.7,0.2-1.3,0.6-1.7s1-0.7,1.6-0.7c0.7,0,1.3,0.2,1.7,0.7
c0.4,0.5,0.7,1.2,0.7,2v1.5c0,0.9-0.2,1.6-0.7,2.1c-0.5,0.5-1.1,0.7-1.9,0.7c-0.2,0-0.5,0-0.7-0.1c-0.3,0-0.5-0.1-0.7-0.2l0.2-1
c0.2,0.1,0.4,0.1,0.6,0.2C180.7,58.3,180.9,58.3,181.2,58.3z M181.4,56.2c0.2,0,0.4,0,0.6-0.1c0.2-0.1,0.3-0.2,0.4-0.3V55
c0-0.5-0.1-0.9-0.3-1.1c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4c-0.2,0.3-0.3,0.6-0.3,1c0,0.4,0.1,0.7,0.2,1
C180.9,56,181.1,56.2,181.4,56.2z"/>
<path class="st42" d="M186.1,59.3h-1.4v-1.2h1.4V59.3z"/>
<path class="st42" d="M186.9,59.3v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H186.9z"/>
</g>
<g>
<path class="st42" d="M171.6,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L171.6,95.3z"/>
<path class="st42" d="M174.5,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L174.5,89.6z M173.3,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L173.3,89z"/>
<path class="st42" d="M176.9,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L176.9,90.3z"/>
<path class="st42" d="M177.5,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L177.5,89.4z"/>
<path class="st42" d="M182.1,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L182.1,85.2z M181.3,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L181.3,84.2z"/>
<path class="st42" d="M184.2,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L184.2,86.6z"/>
<path class="st42" d="M185,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L185,86.1z"/>
<path class="st42" d="M190.9,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L190.9,83.7z M190.4,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L190.4,82.5z"/>
<path class="st42" d="M192.3,85.8l-0.5,0l0-0.6l0.5,0L192.3,85.8z"/>
<path class="st42" d="M196.1,84.7l0.8,0.1l-0.1,0.3l-0.8-0.1l-0.2,0.9l0.6,0.2l-0.1,0.3l-1.5-0.3l0.1-0.3l0.6,0.1l0.2-0.9
l-2.4-0.4l0-0.2l3-3.1l0.5,0.1L196.1,84.7z M193.9,84.3l1.9,0.4l0.5-2.9l0,0l-0.2,0.3L193.9,84.3z"/>
</g>
<g>
<path class="st42" d="M218.1,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L218.1,95.3z"/>
<path class="st42" d="M221,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4s-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L221,89.6z M219.8,89
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7
c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L219.8,89z"/>
<path class="st42" d="M223.4,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L223.4,90.3z"/>
<path class="st42" d="M224,89.4l0.8-0.5l-2.3-3.7l-0.8,0.7l-0.2-0.3l1.1-1l2.5,4.1l0.8-0.4l0.2,0.3l-1.9,1.2L224,89.4z"/>
<path class="st42" d="M228.6,85.2c0.3,0.6,0.3,1.1,0.2,1.6s-0.4,0.8-0.9,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.3-1.1-0.2-1.6c0.1-0.4,0.4-0.8,0.9-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L228.6,85.2z M227.8,84.2
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.6,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.6-0.4,0.6-0.7c0.1-0.3,0-0.8-0.2-1.2L227.8,84.2z"/>
<path class="st42" d="M230.7,86.6l-0.5,0.1l-0.2-0.6l0.5-0.1L230.7,86.6z"/>
<path class="st42" d="M231.6,86.1l0.9-0.2l-0.8-4.2l-1,0.3l-0.1-0.3l1.3-0.6l0.9,4.7l0.9-0.1l0.1,0.3l-2.2,0.4L231.6,86.1z"/>
<path class="st42" d="M237.4,83.7c0,0.7-0.1,1.2-0.3,1.5c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5
c-0.3-0.3-0.5-0.8-0.5-1.5l-0.1-1.1c0-0.7,0.1-1.2,0.3-1.5c0.3-0.4,0.6-0.6,1.1-0.6c0.5,0,0.9,0.1,1.2,0.5s0.5,0.8,0.5,1.5
L237.4,83.7z M236.9,82.5c0-0.5-0.1-0.9-0.4-1.2c-0.2-0.3-0.5-0.4-0.9-0.4c-0.4,0-0.7,0.2-0.8,0.5c-0.2,0.3-0.3,0.7-0.2,1.2
l0.1,1.3c0,0.5,0.1,0.9,0.4,1.2s0.5,0.4,0.9,0.4c0.4,0,0.7-0.2,0.8-0.5c0.2-0.3,0.3-0.7,0.2-1.2L236.9,82.5z"/>
<path class="st42" d="M238.8,85.8l-0.5,0l0-0.6l0.5,0L238.8,85.8z"/>
<path class="st42" d="M241.1,83.2l0.5,0.1c0.4,0.1,0.7,0,0.9-0.1s0.4-0.4,0.4-0.7c0.1-0.3,0-0.6-0.1-0.8c-0.1-0.2-0.4-0.4-0.7-0.4
c-0.3-0.1-0.6,0-0.8,0.1s-0.4,0.4-0.4,0.7l-0.4-0.1l0,0c0.1-0.4,0.3-0.7,0.6-0.9c0.3-0.2,0.7-0.3,1.2-0.2c0.4,0.1,0.8,0.3,1,0.6
c0.2,0.3,0.3,0.7,0.2,1.1c0,0.2-0.2,0.4-0.3,0.6c-0.2,0.2-0.4,0.3-0.7,0.4c0.3,0.1,0.5,0.3,0.6,0.6c0.1,0.2,0.1,0.5,0.1,0.8
c-0.1,0.4-0.3,0.8-0.6,1c-0.3,0.2-0.7,0.3-1.2,0.2c-0.4-0.1-0.8-0.3-1.1-0.6c-0.3-0.3-0.4-0.7-0.3-1.1l0,0l0.4,0.1
c-0.1,0.3,0,0.6,0.2,0.8c0.2,0.2,0.5,0.4,0.8,0.5c0.4,0.1,0.7,0,0.9-0.1c0.2-0.1,0.4-0.4,0.4-0.7c0.1-0.4,0-0.6-0.2-0.8
c-0.2-0.2-0.5-0.3-0.9-0.4l-0.5-0.1L241.1,83.2z"/>
</g>
<g>
<path class="st42" d="M53.2,93.2l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L53.2,93.2z"/>
<path class="st42" d="M54.7,87c0.6,0.3,0.9,0.7,1.1,1.2c0.2,0.4,0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.7,87z M53.5,86.7
c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1c-0.1-0.3-0.4-0.6-0.9-0.9L53.5,86.7z"/>
<path class="st42" d="M57.2,87l-0.3,0.4L56.5,87l0.3-0.4L57.2,87z"/>
<path class="st42" d="M57.6,86l0.5-0.7l-3.3-2.7l-0.5,0.9L54,83.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L57.6,86z"/>
<path class="st42" d="M60.5,80.3c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L60.5,80.3z M59.3,79.8c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0.1-0.9,0.3C57,79.7,56.9,80,57,80.4
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L59.3,79.8z"/>
<path class="st42" d="M62.9,80.9l-0.4,0.3l-0.4-0.4l0.4-0.3L62.9,80.9z"/>
<path class="st42" d="M63.5,80l0.7-0.6L61.5,76l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2l-1.8,1.4L63.5,80z"/>
<path class="st42" d="M67.5,75.1c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2
c-0.4-0.2-0.8-0.5-1.2-1.1l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1
L67.5,75.1z M66.5,74.3c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L66.5,74.3z"/>
<path class="st42" d="M69.8,76.2l-0.4,0.2l-0.3-0.5l0.4-0.2L69.8,76.2z"/>
<path class="st42" d="M70.6,75.7l-0.1-0.3l0.8-2.4c0.1-0.4,0.2-0.8,0.3-1.1c0-0.3,0-0.5-0.1-0.7c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.2-0.6,0.4-0.7,0.7c-0.1,0.3-0.1,0.6,0.1,0.9l-0.4,0.2l0,0c-0.2-0.4-0.2-0.8-0.1-1.2
c0.1-0.4,0.4-0.7,0.9-0.9c0.4-0.2,0.8-0.2,1.1-0.1s0.6,0.4,0.8,0.8c0.1,0.3,0.1,0.6,0.1,0.9c0,0.3-0.1,0.7-0.3,1.2l-0.7,2l0,0
l2-0.9l-0.3-0.7l0.3-0.1l0.4,1L70.6,75.7z"/>
</g>
<g>
<path class="st42" d="M52.5,322.9l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L52.5,322.9z"/>
<path class="st42" d="M54.1,316.7c0.6,0.3,0.9,0.7,1.1,1.2s0.1,0.9-0.2,1.3c-0.3,0.4-0.6,0.7-1.1,0.7c-0.5,0.1-1-0.1-1.5-0.4
l-1-0.6c-0.6-0.3-0.9-0.7-1.1-1.2c-0.2-0.4-0.1-0.9,0.2-1.3c0.3-0.4,0.6-0.7,1.1-0.7c0.5-0.1,1,0.1,1.5,0.4L54.1,316.7z
M52.8,316.5c-0.4-0.3-0.8-0.4-1.2-0.4c-0.3,0-0.6,0.2-0.8,0.5c-0.2,0.3-0.2,0.6-0.1,1c0.1,0.3,0.4,0.6,0.9,0.9l1.1,0.7
c0.4,0.3,0.8,0.4,1.2,0.4c0.4,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.1-1s-0.4-0.6-0.9-0.9L52.8,316.5z"/>
<path class="st42" d="M56.6,316.7l-0.3,0.4l-0.5-0.3l0.3-0.4L56.6,316.7z"/>
<path class="st42" d="M56.9,315.7l0.5-0.7l-3.3-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.7L56.9,315.7z"/>
<path class="st42" d="M59.8,310.1c0.5,0.5,0.7,0.9,0.8,1.4c0.1,0.4-0.1,0.9-0.4,1.2c-0.3,0.4-0.8,0.5-1.2,0.5
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c-0.1-0.5,0.1-0.9,0.4-1.2c0.4-0.4,0.8-0.5,1.2-0.5
c0.5,0.1,0.9,0.3,1.4,0.8L59.8,310.1z M58.7,309.5c-0.4-0.4-0.7-0.6-1.1-0.6c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.6c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9s-0.3-0.7-0.6-1.1
L58.7,309.5z"/>
<path class="st42" d="M62.3,310.6l-0.4,0.3l-0.4-0.4l0.4-0.3L62.3,310.6z"/>
<path class="st42" d="M62.8,309.7l0.7-0.6l-2.6-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l2.9,3.8l0.8-0.5l0.2,0.2L63,310L62.8,309.7z"/>
<path class="st42" d="M66.9,304.9c0.4,0.6,0.5,1.1,0.5,1.5c0,0.5-0.3,0.8-0.7,1.1c-0.4,0.3-0.8,0.3-1.3,0.2s-0.8-0.5-1.2-1.1
l-0.6-1c-0.4-0.6-0.5-1.1-0.5-1.5c0-0.5,0.3-0.8,0.7-1.1c0.4-0.3,0.8-0.3,1.3-0.2c0.4,0.2,0.8,0.5,1.2,1.1L66.9,304.9z
M65.9,304.1c-0.3-0.4-0.6-0.7-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.7,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L65.9,304.1z"/>
<path class="st42" d="M69.2,305.9l-0.4,0.2l-0.3-0.5l0.4-0.2L69.2,305.9z"/>
<path class="st42" d="M69.9,305.2l0.8-0.4l-1.8-3.9l-0.9,0.5l-0.1-0.3l1.2-0.9l2,4.4l0.9-0.3l0.1,0.3l-2.1,0.9L69.9,305.2z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="140.6" cy="241.8" r="14.1"/>
<g>
<g>
<path class="st46" d="M145,233.5c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="146.4,236.4 145.4,233.7 148,232.6 146.5,231.9 143.8,233 144.8,235.6 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M135.4,245.5l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V245.5z M139.4,242.3h2.5l-1.2-3.8h0L139.4,242.3z"/>
</g>
</g>
<g>
<circle class="st49" cx="159.9" cy="211.5" r="14.1"/>
<g>
<g>
<path class="st46" d="M164.3,203.2c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4s-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="165.7,206.1 164.6,203.4 167.3,202.4 165.7,201.7 163,202.7 164.1,205.4 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M160.1,205.8c1.3,0,2.3,0.2,3,0.7s1.1,1.2,1.1,2.2c0,0.5-0.1,1-0.4,1.3c-0.3,0.4-0.7,0.7-1.2,0.9
c0.7,0.1,1.1,0.4,1.5,0.9c0.3,0.5,0.5,1,0.5,1.6c0,1-0.3,1.8-1,2.4c-0.7,0.5-1.7,0.8-2.9,0.8h-5.3v-1.3l1.2-0.2v-7.8l-1.2-0.2
v-1.3h1.2H160.1z M158.6,210.3h1.6c0.6,0,1-0.1,1.3-0.4c0.3-0.2,0.5-0.6,0.5-1c0-0.5-0.2-0.9-0.5-1.1c-0.3-0.2-0.8-0.4-1.4-0.4
h-1.5V210.3z M158.6,211.8v3.1h2c0.6,0,1-0.1,1.3-0.4c0.3-0.3,0.5-0.6,0.5-1.1c0-0.5-0.1-0.9-0.4-1.2c-0.3-0.3-0.7-0.4-1.2-0.4
H158.6z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="74.8,101.8 86.6,94.9 98.5,101.8 86.6,108.6 "/>
<polygon class="st51" points="74.8,115.4 74.8,101.8 86.6,108.6 86.6,122.3 "/>
<polygon class="st51" points="86.6,122.3 86.6,108.6 98.5,101.8 98.5,115.4 "/>
</g>
<g>
<polygon class="st51" points="74.2,331.5 86,324.6 97.9,331.5 86,338.3 "/>
<polygon class="st51" points="74.2,345.2 74.2,331.5 86,338.3 86,352 "/>
<polygon class="st51" points="86,352 86,338.3 97.9,331.5 97.9,345.2 "/>
</g>
<g>
<polygon class="st51" points="178.7,101.7 190.6,94.9 202.4,101.7 190.6,108.6 "/>
<polygon class="st51" points="178.7,115.4 178.7,101.7 190.6,108.6 190.6,122.3 "/>
<polygon class="st51" points="190.6,122.3 190.6,108.6 202.4,101.7 202.4,115.4 "/>
</g>
<g>
<polygon class="st51" points="225.2,101.7 237.1,94.9 248.9,101.7 237.1,108.6 "/>
<polygon class="st51" points="225.2,115.4 225.2,101.7 237.1,108.6 237.1,122.3 "/>
<polygon class="st51" points="237.1,122.3 237.1,108.6 248.9,101.7 248.9,115.4 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M315.9,138.6h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8V142h0.9l0.2,1.2c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V138.6z"/>
<path class="st42" d="M320.1,144.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S320.6,144.7,320.1,144.7z M319.9,139c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S320.4,139,319.9,139z"/>
<path class="st42" d="M323.6,139v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L323.6,139z"/>
<path class="st42" d="M330.9,139l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1v-0.7h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1v-0.7h2.4V139z"/>
<path class="st42" d="M335.4,143.8l1-0.2v-4.5l-1-0.2v-0.7h2.1v5.4l1,0.2v0.7h-3.1V143.8z M337.5,136.6h-1.2v-1.2h1.2V136.6z"/>
<path class="st42" d="M342.2,143.8c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S341.6,143.8,342.2,143.8z"/>
<path class="st42" d="M348.7,144.7c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7H347l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S349.2,144.7,348.7,144.7z M348.5,139c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S349,139,348.5,139z"/>
</g>
<line class="st62" x1="307.3" y1="142.2" x2="249.9" y2="142.2"/>
<g>
<path class="st42" d="M313.3,235c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7l-1-0.2
V235h1H313.3z M311.9,235.9v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H311.9z"/>
<path class="st42" d="M321.1,243.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S321.6,243.6,321.1,243.6z M320.9,237.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S321.4,237.9,320.9,237.9z"/>
<path class="st42" d="M324.5,245.2l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V245.2z M329.7,240.4c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V240.4z"/>
<path class="st42" d="M331.7,235.1v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L331.7,235.1z"/>
<path class="st42" d="M335.5,240.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V240.3z M336.6,240.4c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V240.4z"/>
<path class="st42" d="M348.2,237.9l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1v-0.7h2.6
v0.7l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1v-0.7h2.6V237.9z"/>
<path class="st42" d="M348.7,242.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V242.8z"/>
<path class="st42" d="M363.1,243.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S363.6,243.6,363.1,243.6z M362.9,237.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S363.4,237.9,362.9,237.9z"/>
<path class="st42" d="M366.5,242.8l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V242.8z"/>
<path class="st42" d="M376.4,235.6v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3V238h-1v-0.9h1v-1.5H376.4z"/>
</g>
<line class="st62" x1="307.3" y1="241.1" x2="145" y2="241.1"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 350 200"><defs><style>.cls-1{fill:#fff}.cls-2{fill:#326de6}.cls-3,.cls-6{opacity:.1}.cls-3{fill:url(#linear-gradient)}.cls-4,.cls-5{fill:none;stroke-miterlimit:10}.cls-4{stroke:#326de6;stroke-width:1.2px}.cls-5{stroke:#06f7c9;stroke-width:2.48px;stroke-dasharray:2.42 1.62}.cls-6{fill:url(#linear-gradient-2)}</style><linearGradient id="linear-gradient" x1="211.39" y1="99.89" x2="265.46" y2="99.89" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#326de6"/><stop offset="1" stop-color="#10ffc6"/></linearGradient><linearGradient id="linear-gradient-2" x1="84.54" y1="100.11" x2="138.61" y2="100.11" xlink:href="#linear-gradient"/></defs><title>16.07.28_k8s_visual_diagrams</title><g id="nav_bar_closed"><path class="cls-1" d="M238.42 166.97l-58.09-33.54V66.34l58.09-33.54 58.1 33.54v67.09l-58.1 33.54z"/><path class="cls-2" d="M238.42 167.88a.91.91 0 0 1-.46-.12l-58.1-33.54a.91.91 0 0 1-.46-.79V66.34a.91.91 0 0 1 .46-.79L238 32a.91.91 0 0 1 .91 0L297 65.55a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79l-58.1 33.54a.91.91 0 0 1-.48.13zm-57.18-35l57.18 33 57.18-33v-66l-57.18-33-57.18 33z"/><circle class="cls-3" cx="238.42" cy="99.89" r="27.03"/><circle class="cls-4" cx="238.42" cy="99.89" r="27.1"/><path class="cls-1" d="M111.58 167.2l-58.1-33.54V66.57l58.1-33.54 58.09 33.54v67.09l-58.09 33.54z"/><path class="cls-2" d="M111.58 168.11a.91.91 0 0 1-.46-.12L53 134.45a.91.91 0 0 1-.46-.79V66.57a.91.91 0 0 1 .46-.79l58.1-33.54a.91.91 0 0 1 .91 0l58.1 33.54a.91.91 0 0 1 .46.79v67.08a.91.91 0 0 1-.46.79L112 168a.91.91 0 0 1-.42.11zm-57.18-35l57.18 33 57.18-33v-66l-57.18-33L54.4 67.1z"/><rect class="cls-5" x="71.33" y="61.02" width="205.79" height="78.99" rx="39.5" ry="39.5"/><circle class="cls-6" cx="111.58" cy="100.11" r="27.03"/><circle class="cls-4" cx="111.58" cy="100.11" r="27.1"/></g></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

@@ -0,0 +1,313 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path d="M167,70.2l-1-0.3l0.1-1c-0.1-0.1-0.2-0.2-0.4-0.3c-0.2-0.1-0.4-0.2-0.7-0.3c-0.4-0.1-0.7-0.1-0.9,0
c-0.2,0.1-0.4,0.3-0.5,0.5c-0.1,0.2,0,0.4,0.2,0.6c0.2,0.2,0.5,0.5,0.9,0.8c0.7,0.4,1.1,0.8,1.4,1.3s0.3,0.9,0.2,1.5
c-0.2,0.6-0.5,0.9-1,1.1s-1.2,0.2-1.9,0c-0.5-0.1-1-0.4-1.3-0.7c-0.4-0.3-0.7-0.6-0.9-1l0.4-1.4l1,0.3l-0.1,1
c0.1,0.1,0.3,0.3,0.5,0.4c0.2,0.1,0.5,0.2,0.7,0.3c0.4,0.1,0.7,0.1,0.9,0c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.3,0-0.5-0.1-0.7
s-0.4-0.4-0.8-0.7c-0.7-0.4-1.2-0.9-1.5-1.3c-0.3-0.4-0.4-0.9-0.2-1.4c0.2-0.5,0.5-0.9,1-1.1c0.5-0.2,1.2-0.2,1.8,0
c0.5,0.1,0.9,0.4,1.3,0.6c0.4,0.3,0.7,0.6,0.9,0.9L167,70.2z"/>
<path d="M168.3,76c-0.7-0.3-1.1-0.8-1.3-1.4c-0.2-0.6-0.2-1.2,0.1-1.9l0.1-0.2c0.3-0.7,0.8-1.2,1.3-1.4c0.6-0.3,1.2-0.3,1.8,0
c0.6,0.3,1,0.7,1.2,1.2c0.2,0.5,0.1,1.1-0.2,1.8l-0.3,0.7l-2.8-1.2l0,0c-0.1,0.3-0.1,0.6,0,0.9s0.3,0.5,0.6,0.6
c0.3,0.1,0.5,0.2,0.7,0.2c0.2,0,0.4,0,0.7,0l0,0.9c-0.3,0.1-0.6,0.1-0.9,0S168.7,76.1,168.3,76z M169.9,72.1
c-0.2-0.1-0.5-0.1-0.7,0s-0.4,0.3-0.6,0.6l0,0l1.5,0.7l0.1-0.1c0.1-0.3,0.2-0.5,0.1-0.7C170.3,72.4,170.2,72.2,169.9,72.1z"/>
<path d="M171.1,76.3l0.6,0.2l1.6-2.7l-0.5-0.5l0.4-0.7l1.7,1l-0.3,0.7c0.2-0.2,0.5-0.3,0.7-0.3c0.2,0,0.5,0,0.7,0.2
c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.1,0.1l-0.8,1l-0.5-0.3c-0.2-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.3,0-0.4,0.1l-1.3,2.1
l0.5,0.5l-0.4,0.7l-2.3-1.4L171.1,76.3z"/>
<path d="M178.3,77l-0.4-0.2l-0.9,2.2l-0.2,0.4l0,0l0.4-0.3l1.9-1.4l-0.3-0.4l0.5-0.6l1.8,1.4l-0.5,0.6l-0.4-0.2l-3.8,2.3l-1-0.8
l1.4-4.2l-0.3-0.3l0.5-0.6l1.8,1.4L178.3,77z"/>
<path d="M178.6,81.7l0.6,0.4l2.2-2.2l-0.4-0.6l0.6-0.6l1.5,1.5l-2.9,2.9l0.4,0.6l-0.6,0.6l-1.9-1.9L178.6,81.7z M183.9,79.3l-1-1
l0.7-0.7l1,1L183.9,79.3z"/>
<path d="M182.3,85.7c0.2,0.2,0.3,0.3,0.5,0.3c0.2,0,0.4,0,0.6-0.2l0.8,1l0,0c-0.4,0.3-0.8,0.4-1.4,0.4s-1-0.4-1.3-0.8
c-0.5-0.6-0.6-1.2-0.5-1.8c0.1-0.6,0.5-1.2,1.1-1.6l0.1-0.1c0.6-0.5,1.2-0.7,1.8-0.7c0.6,0,1.2,0.3,1.7,1c0.3,0.3,0.4,0.6,0.5,1
c0.1,0.3,0.1,0.6,0.1,1l-1,0.9l-0.7-0.9l0.5-0.7c0-0.1,0-0.2,0-0.3c0-0.1-0.1-0.2-0.2-0.3c-0.2-0.3-0.5-0.4-0.8-0.4
c-0.3,0.1-0.7,0.2-1,0.5l-0.1,0.1c-0.4,0.3-0.6,0.6-0.7,0.9C182,85.1,182.1,85.4,182.3,85.7z"/>
<path d="M184.3,90.4c-0.4-0.6-0.5-1.2-0.3-1.9c0.2-0.6,0.6-1.1,1.2-1.5l0.2-0.1c0.6-0.4,1.3-0.5,1.9-0.4c0.6,0.1,1.1,0.5,1.5,1.1
c0.4,0.6,0.4,1.1,0.3,1.7c-0.2,0.5-0.5,1-1.1,1.3l-0.6,0.4l-1.6-2.6l0,0c-0.3,0.2-0.5,0.4-0.5,0.7s0,0.6,0.1,0.9
c0.2,0.3,0.3,0.5,0.5,0.6c0.2,0.1,0.3,0.3,0.6,0.4l-0.5,0.8c-0.2-0.1-0.5-0.3-0.8-0.5S184.5,90.7,184.3,90.4z M187.8,88.1
c-0.1-0.2-0.3-0.3-0.6-0.4c-0.2,0-0.5,0-0.8,0.2l0,0l0.9,1.4l0.1-0.1c0.2-0.1,0.4-0.3,0.5-0.5C188,88.5,188,88.3,187.8,88.1z"/>
<path d="M187.4,94.1l0.2,0.4l6.3,0.1l0.4,1.3l-5,3.8l0.1,0.5l-0.8,0.3l-0.7-2.2l0.8-0.3l0.2,0.4l0.8-0.6l-0.7-2.1l-1,0l0.1,0.5
l-0.8,0.3l-0.7-2.2L187.4,94.1z M190.1,95.8l0.5,1.5l2-1.5l0,0L190.1,95.8z"/>
<path d="M190.1,105.2l0.2,1.1l4.6-0.2l0-1.2l0.8,0l0.6,2.5l-5.9,0.2l-0.1,1.2l-0.8,0l-0.2-3.7L190.1,105.2z"/>
<path d="M191.7,114.3c-0.9-0.1-1.6-0.3-2-0.8s-0.6-1-0.6-1.7c0.1-0.7,0.3-1.3,0.8-1.6s1.2-0.5,2.1-0.4l1.5,0.1
c0.9,0.1,1.6,0.3,2,0.8s0.6,1,0.6,1.7c-0.1,0.7-0.3,1.2-0.8,1.6s-1.2,0.5-2.1,0.4L191.7,114.3z M193.4,113.1c0.5,0,0.9,0,1.2-0.1
c0.3-0.1,0.4-0.4,0.4-0.7c0-0.3-0.1-0.6-0.3-0.7s-0.6-0.3-1.2-0.3l-1.8-0.2c-0.5,0-1,0-1.2,0.1s-0.4,0.4-0.4,0.7
c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.6,0.3,1.2,0.3L193.4,113.1z"/>
<path d="M188.6,116.2l0.3-1.3l1.2,0.2l-0.3,1.3L188.6,116.2z"/>
<path d="M191.9,119.4l-0.2,0.7c-0.1,0.3-0.1,0.6,0,0.8s0.3,0.3,0.6,0.4c0.3,0.1,0.5,0.1,0.7,0c0.2-0.1,0.3-0.3,0.4-0.6
c0.1-0.2,0.1-0.5,0-0.7c-0.1-0.2-0.3-0.4-0.5-0.4l0.4-1.3l0,0c0.5,0.1,0.9,0.5,1.1,1c0.2,0.5,0.2,1.1,0,1.7
c-0.2,0.7-0.5,1.2-1,1.5c-0.4,0.3-1,0.4-1.6,0.2c-0.3-0.1-0.5-0.3-0.7-0.5c-0.2-0.3-0.3-0.6-0.4-0.9c-0.2,0.3-0.5,0.5-0.8,0.6
c-0.3,0.1-0.7,0.1-1,0c-0.6-0.2-1-0.5-1.2-1.1s-0.2-1.1,0-1.8c0.2-0.6,0.5-1.1,1-1.4c0.5-0.3,1-0.4,1.6-0.2l0,0l-0.4,1.3
c-0.3-0.1-0.5,0-0.7,0.1s-0.4,0.3-0.5,0.6c-0.1,0.3-0.1,0.6,0,0.8c0.1,0.2,0.3,0.4,0.6,0.5c0.3,0.1,0.6,0.1,0.8,0
c0.2-0.1,0.4-0.4,0.5-0.7l0.2-0.7L191.9,119.4z"/>
<path d="M186.3,123.2l0.5-1.3l1.1,0.5l-0.5,1.3L186.3,123.2z"/>
<path d="M186.1,123.8l0.8,0.4l1,3.1c0.2,0.5,0.3,0.8,0.5,1s0.3,0.4,0.5,0.5c0.3,0.1,0.5,0.2,0.7,0.1s0.4-0.2,0.6-0.4
c0.2-0.3,0.2-0.5,0.1-0.8c-0.1-0.2-0.3-0.5-0.6-0.6l0.6-1.2l0,0c0.5,0.3,0.9,0.7,1.1,1.3c0.2,0.6,0.1,1.2-0.3,1.8
c-0.3,0.6-0.8,1-1.3,1.2c-0.5,0.2-1,0.1-1.6-0.2c-0.4-0.2-0.6-0.5-0.8-0.8s-0.4-0.9-0.7-1.6l-0.6-1.7l0,0l-0.9,1.6l0.6,0.4
l-0.5,0.9l-1.5-0.8L186.1,123.8z"/>
<path d="M185.7,134.2l0.4,0.2l1.1-1.5l-1.1-1.1c0,0.2,0,0.3-0.1,0.5c-0.1,0.2-0.1,0.4-0.3,0.5c-0.4,0.5-0.8,0.8-1.4,0.9
c-0.5,0-1.1-0.1-1.7-0.6c-0.5-0.4-0.8-0.9-1-1.5c-0.1-0.6,0.1-1.2,0.5-1.8c0.4-0.5,0.8-0.8,1.4-1c0.5-0.2,1,0,1.5,0.3l0,0
l-0.7,1.1c-0.2-0.2-0.5-0.3-0.7-0.2c-0.2,0-0.4,0.2-0.6,0.4c-0.2,0.3-0.2,0.5-0.1,0.8s0.3,0.5,0.6,0.7c0.3,0.2,0.6,0.4,0.9,0.4
c0.3,0,0.5-0.1,0.7-0.4c0.2-0.2,0.2-0.4,0.2-0.6c0-0.2,0-0.3-0.1-0.5l0.8-0.9l2.8,2.6l-2.3,3.2l-1.2-0.9L185.7,134.2z"/>
<path d="M179.2,137.4c-0.6-0.6-1-1.3-1-1.9s0.2-1.2,0.7-1.7c0.5-0.5,1.1-0.7,1.7-0.7c0.6,0,1.3,0.4,1.9,1l1.1,1.1
c0.6,0.6,1,1.3,1,1.9c0,0.6-0.2,1.2-0.7,1.7c-0.5,0.5-1.1,0.7-1.7,0.7c-0.6,0-1.3-0.4-1.9-1L179.2,137.4z M181.3,137.6
c0.4,0.4,0.7,0.6,1,0.7c0.3,0.1,0.5,0,0.8-0.2c0.2-0.2,0.3-0.5,0.2-0.8c-0.1-0.3-0.3-0.6-0.7-1l-1.3-1.2c-0.4-0.4-0.7-0.6-1-0.7
c-0.3-0.1-0.5,0-0.8,0.2c-0.2,0.2-0.3,0.5-0.2,0.8c0.1,0.3,0.3,0.6,0.7,1L181.3,137.6z"/>
<path d="M175.6,136.9l1.1-0.9l0.8,0.9l-1.1,0.9L175.6,136.9z"/>
<path d="M175.1,137.4l0.5,0.7l-0.5,3.2c-0.1,0.5-0.1,0.9-0.1,1.1c0,0.3,0.1,0.5,0.2,0.7c0.2,0.2,0.4,0.4,0.6,0.5
c0.2,0.1,0.5,0,0.7-0.1c0.3-0.2,0.4-0.4,0.4-0.7c0-0.3-0.1-0.6-0.3-0.8l1.1-0.7l0,0c0.4,0.5,0.5,1.1,0.4,1.6s-0.5,1.1-1.1,1.5
c-0.6,0.4-1.1,0.5-1.7,0.5c-0.5-0.1-1-0.4-1.3-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-1,0.2-1.8l0.3-1.8l0,0l-1.5,1l0.3,0.6
l-0.9,0.6l-1-1.4L175.1,137.4z"/>
<path d="M171.3,144.4l-0.7,0.3c-0.3,0.1-0.5,0.3-0.5,0.5c-0.1,0.2,0,0.5,0.1,0.7c0.1,0.2,0.3,0.4,0.5,0.5
c0.2,0.1,0.5,0.1,0.7-0.1c0.2-0.1,0.4-0.3,0.5-0.5c0.1-0.2,0.1-0.4,0-0.6l1.2-0.6l0,0c0.2,0.5,0.3,1,0,1.5s-0.6,0.9-1.2,1.2
c-0.6,0.3-1.2,0.4-1.7,0.3s-0.9-0.5-1.2-1c-0.1-0.3-0.2-0.6-0.1-0.9c0.1-0.3,0.2-0.6,0.4-0.9c-0.4,0-0.7,0-1-0.2
c-0.3-0.2-0.5-0.4-0.7-0.7c-0.3-0.6-0.3-1.1,0-1.6s0.7-0.9,1.3-1.2c0.6-0.3,1.1-0.4,1.7-0.2c0.6,0.1,1,0.4,1.2,1l0,0l-1.2,0.6
c-0.1-0.2-0.3-0.4-0.5-0.5s-0.5,0-0.8,0.1c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.2-0.1,0.5,0.1,0.8c0.2,0.3,0.3,0.5,0.6,0.6
c0.2,0.1,0.5,0,0.8-0.1l0.7-0.3L171.3,144.4z"/>
<path d="M165.7,149.7c-0.2,0.1-0.5,0.1-0.7,0.1s-0.5,0-0.7,0l-0.1-1c0.2,0,0.4,0,0.6,0c0.2,0,0.4-0.1,0.6-0.1
c0.4-0.1,0.7-0.4,0.8-0.7s0.1-0.8,0-1.4l0,0c-0.1,0.2-0.2,0.4-0.4,0.5c-0.2,0.2-0.4,0.3-0.7,0.4c-0.6,0.2-1.1,0.1-1.6-0.2
s-0.8-0.8-1-1.4c-0.2-0.7-0.2-1.3,0.1-1.8c0.3-0.6,0.7-0.9,1.4-1.1c0.7-0.2,1.3-0.2,1.9,0.2s1,0.9,1.3,1.7l0.4,1.1
c0.3,0.9,0.3,1.7-0.1,2.4C167,149,166.4,149.5,165.7,149.7z M165,146.4c0.2-0.1,0.4-0.2,0.6-0.3c0.1-0.1,0.2-0.3,0.3-0.4
l-0.1-0.4c-0.2-0.5-0.4-0.9-0.7-1.1c-0.3-0.2-0.6-0.3-0.9-0.2c-0.3,0.1-0.4,0.3-0.5,0.6c-0.1,0.3-0.1,0.6,0,1
c0.1,0.4,0.3,0.6,0.5,0.8S164.7,146.5,165,146.4z"/>
</g>
</g>
<path class="st21" d="M153.4,141.2c-18,0-32.6-14.6-32.6-32.6S135.4,76,153.4,76S186,90.6,186,108.6S171.4,141.2,153.4,141.2z"/>
</g>
<g id="pods">
<circle class="st26" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.3z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="141.5,101.7 153.4,94.9 165.3,101.7 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.4 141.5,101.7 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.7 165.3,115.4 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,395 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st23" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V143.4c0-11.7,9.5-21.2,21.2-21.2
h115.4c15.6,0,28.4-12.7,28.4-28.4c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st26" cx="153.8" cy="108.6" r="20.5"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89.1c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89.1z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.4c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.4z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86.1l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86.1z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.3z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st50" points="141.5,101.8 153.4,94.9 165.3,101.8 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.5 141.5,101.8 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.8 165.3,115.5 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7
l1-0.2v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 200"><defs><style>.cls-1,.cls-5,.cls-8{fill:none;stroke-miterlimit:10}.cls-1,.cls-5{stroke:#06f7c9;stroke-width:2.77px}.cls-2{fill:#8115ff}.cls-2,.cls-7,.cls-8{stroke:#011f38}.cls-2,.cls-7{stroke-linecap:round;stroke-linejoin:round}.cls-2,.cls-8{stroke-width:.8px}.cls-3{fill:#fff}.cls-4{fill:#326de6}.cls-5,.cls-6{opacity:.3}.cls-7{fill:#06f7c9;stroke-width:.83px}.cls-9{fill:#011f38}</style></defs><title>16.07.28_k8s_visual_diagrams</title><g id="Graphics"><circle class="cls-1" cx="89.9" cy="118.5" r="28.95"/><path class="cls-2" d="M76.49 110.76l13.41-7.74 13.41 7.74-13.41 7.75-13.41-7.75z"/><path class="cls-2" d="M76.49 126.25v-15.49l13.41 7.75v15.48l-13.41-7.74zM89.9 133.99v-15.48l13.41-7.75v15.49l-13.41 7.74z"/><path class="cls-3" d="M229.63 167.54l-58.49-33.77V66.23l58.49-33.77 58.5 33.77v67.54l-58.5 33.77z"/><path class="cls-4" d="M229.63 168.46a.92.92 0 0 1-.46-.12l-58.49-33.77a.92.92 0 0 1-.46-.8V66.23a.92.92 0 0 1 .46-.8l58.49-33.77a.92.92 0 0 1 .92 0l58.49 33.77a.92.92 0 0 1 .46.8v67.54a.92.92 0 0 1-.46.8l-58.49 33.77a.92.92 0 0 1-.46.12zm-57.58-35.22l57.58 33.24 57.58-33.24V66.76l-57.58-33.24-57.57 33.24z"/><circle class="cls-5" cx="208.95" cy="79.69" r="19.42"/><circle class="cls-1" cx="253.81" cy="118.45" r="19.42"/><path class="cls-2" d="M245.18 113.47l8.63-4.99 8.64 4.99-8.64 4.98-8.63-4.98z"/><path class="cls-2" d="M245.18 123.44v-9.97l8.63 4.98v9.97l-8.63-4.98zM253.81 128.42v-9.97l8.64-4.98v9.97l-8.64 4.98z"/><g class="cls-6"><path class="cls-7" d="M200.32 74.7l8.63-4.98 8.64 4.98-8.64 4.99-8.63-4.99z"/><path class="cls-7" d="M200.32 84.67V74.7l8.63 4.99v9.97l-8.63-4.99zM208.95 89.66v-9.97l8.64-4.99v9.97l-8.64 4.99z"/></g><path class="cls-8" d="M138.29 119.46h78.43"/><path class="cls-9" d="M214.07 122.73l-.55-.59 2.89-2.68-2.89-2.69.55-.58 3.52 3.27-3.52 3.27z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

@@ -0,0 +1,395 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st23" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V143.4c0-11.7,9.5-21.2,21.2-21.2
h115.4c15.6,0,28.4-12.7,28.4-28.4c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.5h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.5z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st26" cx="153.8" cy="108.6" r="20.5"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st22" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g>
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89.1c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89.1z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.4c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.4z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86.1l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86.1z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.3z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st50" points="141.5,101.8 153.4,94.9 165.3,101.8 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.5 141.5,101.8 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.8 165.3,115.5 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9c0.3-0.2,0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7
l1-0.2v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

@@ -0,0 +1,543 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M120.9,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st25" d="M121,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4
h114.2c15.7,0,28.4-12.7,28.4-28.4V93.8c0,0,0,0,0,0c0-15.6-12.7-28.4-28.4-28.4h-169c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st27" cx="153.4" cy="108.6" r="20.5"/>
<circle class="st40" cx="153.4" cy="108.8" r="20.5"/>
<circle class="st22" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="152.8" cy="330.3" r="20.5"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st41" cx="199.9" cy="108.8" r="20.1"/>
<circle class="st26" cx="199.9" cy="108.8" r="20.1"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,95.3z"/>
<path class="st42" d="M183.8,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.8,89.6z M182.6,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,89z"/>
<path class="st42" d="M186.2,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,90.3z"/>
<path class="st42" d="M188.7,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,86.4z
M187.7,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,85.5z"/>
<path class="st42" d="M190.9,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,87.6z"/>
<path class="st42" d="M194.2,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L194.2,84.3z M193.5,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L193.5,83.3z"/>
<path class="st42" d="M196.1,86l-0.5,0.1l-0.1-0.6l0.5-0.1L196.1,86z"/>
<path class="st42" d="M198.5,80.6c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7S198,80.6,198.5,80.6z M198.5,82.7c-0.3,0-0.5,0.1-0.7,0.3s-0.3,0.4-0.4,0.6l0,0.3c0,0.5,0.2,0.9,0.4,1.2
c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4c0.2-0.3,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1C199.1,82.8,198.8,82.7,198.5,82.7z"/>
</g>
<g class="st43">
<path class="st42" d="M134.4,95.3l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L134.4,95.3z"/>
<path class="st42" d="M137.3,89.6c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L137.3,89.6z M136.1,89c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L136.1,89z"/>
<path class="st42" d="M139.7,90.3l-0.4,0.3l-0.3-0.5l0.4-0.3L139.7,90.3z"/>
<path class="st42" d="M142.2,86.4c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L142.2,86.4z
M141.2,85.5c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L141.2,85.5z"/>
<path class="st42" d="M144.4,87.6l-0.4,0.2l-0.2-0.5l0.4-0.2L144.4,87.6z"/>
<path class="st42" d="M147.7,84.3c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L147.7,84.3z M147,83.3c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L147,83.3z"/>
<path class="st42" d="M149.6,86l-0.5,0.1l-0.1-0.6l0.5-0.1L149.6,86z"/>
<path class="st42" d="M152.7,81.4l-0.1-0.4l-1.8,0.1l-0.1,1.8c0.1-0.1,0.3-0.2,0.4-0.3c0.2-0.1,0.4-0.1,0.6-0.1
c0.4,0,0.8,0.1,1.1,0.4c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.3,1.3s-0.6,0.5-1.1,0.5c-0.4,0-0.8-0.1-1.1-0.3s-0.4-0.6-0.5-1
l0,0l0.4,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1c0-0.4-0.1-0.7-0.3-0.9
c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0.1-2.8l2.6-0.2l0.1,0.8L152.7,81.4z"/>
</g>
<g>
<path class="st42" d="M133.8,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L133.8,317z"/>
<path class="st42" d="M136.6,311.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L136.6,311.4z M135.5,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L135.5,310.8z"/>
<path class="st42" d="M139.1,312l-0.4,0.3l-0.3-0.5l0.4-0.3L139.1,312z"/>
<path class="st42" d="M141.5,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L141.5,308.1
z M140.6,307.2c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9c0.3,0.1,0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L140.6,307.2z"/>
<path class="st42" d="M143.8,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L143.8,309.3z"/>
<path class="st42" d="M144.5,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L144.5,308.6z"/>
<path class="st42" d="M147.9,308l-0.5,0.1l-0.1-0.6l0.5-0.1L147.9,308z"/>
<path class="st42" d="M150.8,303.2l-0.1-0.4l-1.8,0.2l0,1.8c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.4-0.1,0.6-0.2
c0.4-0.1,0.8,0.1,1.1,0.3c0.3,0.3,0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.2,0.3-0.6,0.5-1.1,0.6c-0.4,0-0.8,0-1.1-0.2
c-0.3-0.2-0.5-0.5-0.5-1l0,0l0.4,0c0,0.3,0.2,0.6,0.4,0.8c0.2,0.2,0.5,0.2,0.8,0.2c0.4,0,0.7-0.2,0.8-0.4c0.2-0.2,0.2-0.6,0.2-1
c0-0.4-0.2-0.7-0.4-0.9c-0.2-0.2-0.5-0.3-0.8-0.3c-0.3,0-0.6,0.1-0.7,0.2c-0.2,0.1-0.3,0.3-0.3,0.5l-0.3,0l0-2.8l2.6-0.3l0.1,0.8
L150.8,303.2z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.4,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.4,76.6z M273.4,75.9
c-0.3-0.4-0.6-0.7-1-0.8s-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9s0.2,0.7,0.5,1.1l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.9z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.7-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0s-0.7-0.6-1-1.2l-0.5-1
c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1s-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8c0.1-0.3,0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0c-0.2,0.1-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M273.9,79.5c-0.1-0.1-0.2-0.1-0.3-0.2c-0.1-0.1-0.1-0.1-0.2-0.2c0,0.2,0,0.5-0.1,0.7
c-0.1,0.3-0.2,0.5-0.5,0.7c-0.3,0.2-0.6,0.4-0.8,0.4c-0.3,0-0.5-0.1-0.7-0.4c-0.2-0.3-0.3-0.6-0.2-0.9c0.1-0.4,0.3-0.7,0.7-1
l0.6-0.6l-0.3-0.4c-0.2-0.2-0.4-0.3-0.6-0.3c-0.2,0-0.5,0.1-0.7,0.3c-0.2,0.1-0.3,0.3-0.4,0.4c-0.1,0.2-0.2,0.3-0.2,0.5l0.3,0.4
l-0.3,0.2l-0.5-0.6c0-0.2,0.1-0.4,0.3-0.7c0.1-0.2,0.3-0.4,0.5-0.6c0.3-0.3,0.6-0.4,1-0.4c0.3,0,0.6,0.1,0.9,0.4l1.2,1.4
c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.2,0.1l0.3-0.2l0.2,0.2L273.9,79.5z M272.6,80.1c0.2-0.2,0.4-0.4,0.5-0.7
c0.1-0.3,0.1-0.5,0-0.7l-0.5-0.6l-0.6,0.6c-0.3,0.3-0.5,0.5-0.5,0.8c-0.1,0.3,0,0.5,0.1,0.7c0.1,0.2,0.3,0.2,0.5,0.2
C272.3,80.4,272.4,80.3,272.6,80.1z"/>
<path class="st42" d="M275.8,75.1l-0.3,0.2l-0.3-0.4c-0.1,0-0.3,0-0.5,0c-0.2,0-0.3,0.1-0.5,0.2c-0.3,0.2-0.4,0.3-0.5,0.5
c-0.1,0.2-0.1,0.4,0,0.5c0.1,0.2,0.2,0.2,0.4,0.3c0.2,0,0.5,0,0.8-0.1c0.4-0.1,0.8-0.2,1.1-0.2s0.5,0.2,0.7,0.4
c0.2,0.3,0.2,0.6,0.1,0.9c-0.1,0.3-0.4,0.6-0.7,0.8c-0.2,0.1-0.5,0.2-0.7,0.3c-0.2,0-0.5,0.1-0.7,0l-0.4-0.7l0.3-0.2l0.3,0.4
c0.2,0,0.3,0,0.5,0s0.3-0.1,0.5-0.2c0.3-0.2,0.4-0.3,0.5-0.5s0.1-0.4,0-0.6c-0.1-0.2-0.2-0.3-0.4-0.3c-0.2,0-0.5,0-0.8,0.1
c-0.4,0.1-0.8,0.2-1.1,0.2c-0.3,0-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.1-0.8c0.1-0.3,0.3-0.5,0.7-0.8c0.2-0.1,0.5-0.2,0.7-0.3
c0.2,0,0.5,0,0.7,0L275.8,75.1z"/>
<path class="st42" d="M278.4,76.9l-0.4,0.2l-0.2-0.5l0.4-0.2L278.4,76.9z"/>
<path class="st42" d="M279.4,73.6l0.5-0.1c0.4-0.1,0.6-0.3,0.8-0.5s0.2-0.5,0.1-0.8c-0.1-0.3-0.2-0.5-0.5-0.7
c-0.2-0.1-0.5-0.2-0.8-0.1c-0.3,0.1-0.6,0.2-0.7,0.5c-0.2,0.2-0.2,0.5-0.1,0.8l-0.4,0.1l0,0c-0.1-0.4-0.1-0.7,0.2-1.1
c0.2-0.3,0.5-0.5,1-0.7c0.4-0.1,0.8-0.1,1.1,0.1c0.3,0.2,0.5,0.5,0.7,0.9c0.1,0.2,0,0.5,0,0.7c-0.1,0.2-0.3,0.4-0.5,0.6
c0.3,0,0.6,0.1,0.8,0.3c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.4,0.1,0.8-0.2,1.1s-0.6,0.5-1,0.7c-0.4,0.1-0.8,0.1-1.2-0.1
c-0.4-0.2-0.6-0.5-0.7-0.9l0,0l0.4-0.1c0.1,0.3,0.3,0.5,0.5,0.7c0.3,0.1,0.6,0.2,0.9,0.1c0.4-0.1,0.6-0.3,0.8-0.5
c0.2-0.2,0.2-0.5,0.1-0.9c-0.1-0.3-0.3-0.6-0.5-0.7c-0.2-0.1-0.6-0.1-1,0l-0.5,0.1L279.4,73.6z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,101.7 199.9,94.9 211.8,101.7 199.9,108.6 "/>
<polygon class="st51" points="188,115.4 188,101.7 199.9,108.6 199.9,122.3 "/>
<polygon class="st51" points="199.9,122.3 199.9,108.6 211.8,101.7 211.8,115.4 "/>
</g>
<g class="st52">
<polygon class="st50" points="141.5,101.7 153.4,94.9 165.3,101.7 153.4,108.6 "/>
<polygon class="st50" points="141.5,115.4 141.5,101.7 153.4,108.6 153.4,122.3 "/>
<polygon class="st50" points="153.4,122.3 153.4,108.6 165.3,101.7 165.3,115.4 "/>
</g>
<g>
<polygon class="st50" points="140.9,323.5 152.8,316.6 164.6,323.5 152.8,330.3 "/>
<polygon class="st50" points="140.9,337.2 140.9,323.5 152.8,330.3 152.8,344 "/>
<polygon class="st50" points="152.8,344 152.8,330.3 164.6,323.5 164.6,337.2 "/>
</g>
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="153.8" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M8.9,86.2l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.7,0,1.2,0.2,1.6,0.6
s0.6,1,0.6,1.9V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4c-0.3,0-0.6,0.1-0.9,0.2S11.1,82,11,82.3V86
l1,0.2v0.7H8.9V86.2z"/>
<path class="st42" d="M19.6,87c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1V84h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2
s0.5-0.3,0.8-0.5l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S20.1,87,19.6,87z M19.4,81.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9
V83c0-0.5-0.1-0.8-0.4-1.1S19.9,81.4,19.4,81.4z"/>
<path class="st42" d="M25.4,81.3l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4H28l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7h2.4
v0.7l-0.6,0.1L30,86.9H29l-1.2-3.9L27.5,82l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5L23,81.3v-0.7h2.4V81.3z"/>
<path class="st42" d="M35.9,79.1v-0.7H39v0.7l-1,0.2V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L35.9,79.1z"/>
<path class="st42" d="M43.7,78.4c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8V86l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H43.7z M41.9,82.6h1.8c0.6,0,1-0.2,1.3-0.5c0.3-0.3,0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V82.6z"/>
<path class="st42" d="M54.7,86.9c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7C53.4,87,53,87,52.6,87
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H54.7z M52.8,86.1c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S52.5,86.1,52.8,86.1z"/>
<path class="st42" d="M61.4,86.2c-0.2,0.3-0.5,0.5-0.8,0.7S60,87,59.6,87c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2V86l1,0.2v0.7h-2L61.4,86.2z
M58.3,84c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V84z"/>
<path class="st42" d="M68.6,86.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2V86l1,0.2v0.7h-2L68.6,86.2z
M65.5,84c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V84z"/>
<path class="st42" d="M71.5,81.3v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6V86l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L71.5,81.3z"/>
<path class="st42" d="M79.3,87c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1V84h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5c0.3,0.4,0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2
s0.5-0.3,0.8-0.5l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S79.8,87,79.3,87z M79.1,81.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9
V83c0-0.5-0.1-0.8-0.4-1.1S79.6,81.4,79.1,81.4z"/>
<path class="st42" d="M87.7,82.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4H84l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7S83,82.8,83,82.3
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L87.7,82.6z"/>
<path class="st42" d="M93.8,82.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L93.8,82.6z"/>
</g>
<line class="st62" x1="180.9" y1="84.5" x2="97.8" y2="84.5"/>
<g>
<path class="st42" d="M29.1,110.1c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7H25h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7H29h1.2
v5.4l0.7,0.2v0.7h-1.8L29.1,110.1z"/>
<path class="st42" d="M31.7,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M36.9,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
<path class="st42" d="M43.4,110.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L43.4,110.2z
M40.3,108.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V108.1z"/>
<path class="st42" d="M50.4,111c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H50.4z M48.6,110.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S48.2,110.2,48.6,110.2z"/>
<path class="st42" d="M54.9,103.1v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H54.9z"/>
<path class="st42" d="M60.2,111.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S60.7,111.1,60.2,111.1z M60,105.5c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V107
c0-0.5-0.1-0.8-0.4-1.1S60.5,105.5,60,105.5z"/>
<path class="st42" d="M68,110.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L68,110.2z
M64.9,108.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V108.1z"/>
<path class="st42" d="M78.1,111c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H78.1z M76.2,110.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S75.9,110.2,76.2,110.2z"/>
<path class="st42" d="M80.4,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M85.6,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
<path class="st42" d="M87.7,112.7l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V112.7z M92.9,107.9c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V107.9z"/>
</g>
<line class="st62" x1="192.1" y1="108.6" x2="97.8" y2="108.6"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2c0.8,0,1.4,0.3,1.8,0.9
s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2l1,0.2v0.7h-3.1V207z
M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1c0.1,0.3,0.3,0.5,0.6,0.6
s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 44 KiB

@@ -0,0 +1,493 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M167.1,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st24" d="M167.2,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4h68
c15.7,0,28.4-12.7,28.4-28.4V93.8v0c0-15.6-12.7-28.4-28.4-28.4H199.6c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2s0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.5
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2s0.8,0.4,1.1,0.6
V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S223.9,61.5,223.5,61.5z M223.3,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
c0.3,0.1,0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4
s-0.2,0.6-0.2,1.1V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4S246.7,61.5,246.3,61.5z M246.2,57.3c-0.3,0-0.5,0.1-0.6,0.3
c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6c-0.4,0.4-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.7-0.8-0.6-1.4l0,0l1.3-0.1
c0,0.3,0.1,0.5,0.3,0.7s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9
c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1c-0.4,0.5-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.2-0.6-2.1v-1.5
c0-0.9,0.2-1.6,0.6-2.1c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1
c0-0.5-0.1-0.9-0.2-1.2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,1,0.2,1.2
c0.2,0.2,0.4,0.4,0.7,0.4c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.3-0.7-0.3
c-0.3,0-0.6,0.1-0.7,0.3s-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5
s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8c-0.2,0.3-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7c-0.5-0.5-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1s-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2c0.2,0.3,0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<g>
<circle class="st41" cx="199.4" cy="329.9" r="20.1"/>
<circle class="st26" cx="199.4" cy="329.9" r="20.1"/>
</g>
<g>
<circle class="st41" cx="199.4" cy="108.5" r="20.1"/>
<circle class="st26" cx="199.4" cy="108.5" r="20.1"/>
</g>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,317z"/>
<path class="st42" d="M183.8,311.3c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.8,311.3z M182.6,310.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9
c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,310.8z"/>
<path class="st42" d="M186.2,312l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,312z"/>
<path class="st42" d="M188.7,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,308.1
z M187.7,307.2c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,307.2z"/>
<path class="st42" d="M190.9,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,309.3z"/>
<path class="st42" d="M191.7,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L191.7,308.6z"/>
<path class="st42" d="M195,308l-0.5,0.1l-0.1-0.6l0.5-0.1L195,308z"/>
<path class="st42" d="M197.1,302.4c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1s-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.6c-0.2,0.3-0.3,0.8-0.2,1.5l0,0.2c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
s0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.5-0.8-0.6-1.5l-0.1-0.9
c-0.1-0.7,0-1.3,0.3-1.7S196.6,302.4,197.1,302.4z M197.2,304.6c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0.1,0.5,0.2,0.9,0.5,1.2s0.6,0.4,0.9,0.3c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.2-1c0-0.4-0.2-0.7-0.4-1
C197.9,304.6,197.6,304.5,197.2,304.6z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3s0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6l-0.9-0.7
c-0.5-0.4-0.9-0.8-1-1.3c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.5,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.5,76.6z M273.4,75.8
c-0.3-0.4-0.6-0.7-1-0.8c-0.3-0.1-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9c0,0.3,0.2,0.7,0.5,1.2l0.8,1c0.3,0.4,0.6,0.7,1,0.8
s0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.8z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2s0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9c-0.1,0.3-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7
l0.4-0.1l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M285.1,73.9l0.8,0l0,0.4l-0.8,0l0.1,0.9l0.6,0l0,0.3l-1.6,0.1l0-0.3l0.6-0.1l-0.1-0.9l-2.4,0.1l0-0.2
l2.2-3.7l0.5,0L285.1,73.9z M282.8,74l1.9-0.1l-0.2-2.9l0,0l-0.2,0.4L282.8,74z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.6-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
c0,0.3,0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1c-0.3-0.2-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
c0.3,0.2,0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8s0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1c0.1-0.2,0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
s-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
c0.2-0.3,0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8
l0,0l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M326.7,71.6l0-0.4l-1.8-0.3l-0.4,1.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.4,0,0.6,0c0.4,0.1,0.8,0.2,1,0.6
s0.3,0.8,0.2,1.3c-0.1,0.5-0.3,0.9-0.6,1.2c-0.3,0.3-0.7,0.4-1.2,0.3c-0.4-0.1-0.7-0.2-1-0.5c-0.2-0.3-0.3-0.6-0.2-1.1l0,0
l0.4,0.1c0,0.3,0,0.6,0.2,0.8c0.2,0.2,0.4,0.3,0.7,0.4c0.4,0.1,0.7,0,0.9-0.2c0.2-0.2,0.4-0.5,0.4-0.9c0.1-0.4,0-0.7-0.1-1
c-0.2-0.3-0.4-0.4-0.7-0.5c-0.3,0-0.6,0-0.8,0s-0.3,0.2-0.4,0.4l-0.3-0.1l0.7-2.7l2.5,0.4l-0.1,0.8L326.7,71.6z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
</g>
<g>
<path class="st42" d="M180.4,95l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.4,95z"/>
<path class="st42" d="M183.3,89.4c0.5,0.5,0.7,0.9,0.8,1.4c0,0.5-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4
c-0.5-0.1-0.9-0.3-1.4-0.8l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.5,0.1,0.9,0.3,1.4,0.8L183.3,89.4z M182.2,88.8c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9
s0.3,0.7,0.6,1.1l0.9,0.9c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1
L182.2,88.8z"/>
<path class="st42" d="M185.7,90l-0.4,0.3l-0.3-0.5l0.4-0.3L185.7,90z"/>
<path class="st42" d="M188.2,86.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.2,86.1z
M187.2,85.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.2,85.3z"/>
<path class="st42" d="M190.4,87.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.4,87.3z"/>
<path class="st42" d="M193.8,84.1c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6c0.2-0.4,0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2
c0.4,0.3,0.7,0.7,0.8,1.3L193.8,84.1z M193,83.1c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7
c-0.1,0.3-0.1,0.7,0.1,1.2l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1c0.3,0.2,0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7
c0.1-0.3,0.1-0.7-0.1-1.2L193,83.1z"/>
<path class="st42" d="M195.6,85.8l-0.5,0.1l-0.1-0.6l0.5-0.1L195.6,85.8z"/>
<path class="st42" d="M198,80.3c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7S197.5,80.4,198,80.3z M198,82.5c-0.3,0-0.5,0.1-0.7,0.3s-0.3,0.4-0.4,0.6l0,0.3c0,0.5,0.2,0.9,0.4,1.2
c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4c0.2-0.3,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1C198.6,82.6,198.3,82.5,198,82.5z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,323.5 199.9,316.6 211.8,323.5 199.9,330.3 "/>
<polygon class="st51" points="188,337.2 188,323.5 199.9,330.3 199.9,344 "/>
<polygon class="st51" points="199.9,344 199.9,330.3 211.8,323.5 211.8,337.2 "/>
</g>
<g>
<polygon class="st50" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st50" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st50" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st50" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st50" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st50" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st51" points="187.6,101.5 199.4,94.7 211.3,101.5 199.4,108.4 "/>
<polygon class="st51" points="187.6,115.2 187.6,101.5 199.4,108.4 199.4,122.1 "/>
<polygon class="st51" points="199.4,122.1 199.4,108.4 211.3,101.5 211.3,115.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M29.1,332.3c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7H25h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7H29h1.2
v5.4l0.7,0.2v0.7h-1.8L29.1,332.3z"/>
<path class="st42" d="M31.7,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M36.9,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
<path class="st42" d="M43.4,332.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6V325l-1-0.2V324h1h1.2v8.2l1,0.2v0.7h-2L43.4,332.4z
M40.3,330.3c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V330.3z"/>
<path class="st42" d="M50.4,333.2c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H50.4z M48.6,332.3c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S48.2,332.3,48.6,332.3z"/>
<path class="st42" d="M54.9,325.3v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H54.9z"/>
<path class="st42" d="M60.2,333.3c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S60.7,333.3,60.2,333.3z M60,327.6c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S60.5,327.6,60,327.6z"/>
<path class="st42" d="M68,332.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6V325l-1-0.2V324h1h1.2v8.2l1,0.2v0.7h-2L68,332.4z
M64.9,330.3c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V330.3z"/>
<path class="st42" d="M78.1,333.2c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H78.1z M76.2,332.3c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S75.9,332.3,76.2,332.3z"/>
<path class="st42" d="M80.4,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M85.6,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
<path class="st42" d="M87.7,334.9l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V334.9z M92.9,330.1c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V330.1z"/>
</g>
<line class="st62" x1="192.1" y1="330.8" x2="97.8" y2="330.8"/>
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="173.7" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M8.9,308.3l1-0.2v-4.5l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2V305c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7H8.9V308.3z"/>
<path class="st42" d="M19.6,309.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S20.1,309.1,19.6,309.1z M19.4,303.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V305
c0-0.5-0.1-0.8-0.4-1.1S19.9,303.4,19.4,303.4z"/>
<path class="st42" d="M25.4,303.4l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4H28l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7
h2.4v0.7l-0.6,0.1L30,309H29l-1.2-3.9l-0.3-1.1l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5l-0.6-0.1v-0.7h2.4V303.4z"/>
<path class="st42" d="M35.9,301.2v-0.7H39v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L35.9,301.2z"/>
<path class="st42" d="M43.7,300.5c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H43.7z M41.9,304.7h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V304.7z"/>
<path class="st42" d="M54.7,309c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H54.7z M52.8,308.2c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S52.5,308.2,52.8,308.2z"/>
<path class="st42" d="M61.4,308.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L61.4,308.2z
M58.3,306.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V306.1z"/>
<path class="st42" d="M68.6,308.2c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L68.6,308.2z
M65.5,306.1c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V306.1z"/>
<path class="st42" d="M71.5,303.4v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L71.5,303.4z"/>
<path class="st42" d="M79.3,309.1c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S79.8,309.1,79.3,309.1z M79.1,303.4c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9V305
c0-0.5-0.1-0.8-0.4-1.1S79.6,303.4,79.1,303.4z"/>
<path class="st42" d="M87.7,304.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4H84l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L87.7,304.6z"/>
<path class="st42" d="M93.8,304.6h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L93.8,304.6z"/>
</g>
<line class="st62" x1="180.9" y1="306.6" x2="97.8" y2="306.6"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

@@ -0,0 +1,508 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 484 440.4" style="enable-background:new 0 0 484 440.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;stroke:#326DE6;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st1{opacity:0.71;fill:#326CE6;}
.st2{opacity:0.45;fill:#FFFFFF;}
.st3{fill:#FFFFFF;stroke:#006DE9;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st4{fill:#006DE9;}
.st5{fill:#A0CAEA;}
.st6{fill:#FFFFFF;}
.st7{opacity:0.13;}
.st8{fill:url(#SVGID_1_);}
.st9{fill:url(#SVGID_2_);}
.st10{fill:#FFFFFF;stroke:#006DE9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st11{fill:#FFFFFF;stroke:#006DE9;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st12{fill:#FFFFFF;stroke:#326DE6;stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st13{fill:#326DE6;}
.st14{fill:none;stroke:#326DE6;stroke-width:2.4;stroke-miterlimit:10;}
.st15{fill:#A0CAE9;}
.st16{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st17{fill:#FFFFFF;stroke:#326DE6;stroke-width:1.6;stroke-miterlimit:10;}
.st18{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st19{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3749,1.5832;}
.st20{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4006,1.6004;}
.st21{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st22{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st23{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3975,1.5984;}
.st24{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.395,1.5966;}
.st25{fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.3963,1.5976;}
.st26{opacity:0.1;fill:#EEF406;}
.st27{opacity:2.000000e-02;fill:#EEF406;}
.st28{opacity:0.1;fill:#06F7C9;}
.st29{fill:none;stroke:#006DE9;stroke-width:0.8;stroke-miterlimit:10;}
.st30{opacity:0.1;fill:url(#SVGID_3_);}
.st31{opacity:0.1;fill:url(#SVGID_4_);}
.st32{opacity:0.1;fill:url(#SVGID_5_);}
.st33{opacity:0.1;fill:url(#SVGID_6_);}
.st34{fill:none;stroke:#326DE6;stroke-width:1.2;stroke-miterlimit:10;}
.st35{opacity:0.1;fill:url(#SVGID_7_);}
.st36{opacity:0.1;fill:url(#SVGID_8_);}
.st37{opacity:0.1;fill:url(#SVGID_9_);}
.st38{opacity:0.1;fill:url(#SVGID_10_);}
.st39{fill:none;stroke:#326DE6;stroke-width:2;stroke-miterlimit:10;}
.st40{opacity:0.4;fill:none;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st41{fill:none;stroke:#EEF406;stroke-width:2.4596;stroke-miterlimit:10;}
.st42{fill:#011F38;}
.st43{opacity:0.4;}
.st44{opacity:0.1;}
.st45{fill:#326DE6;stroke:#EEF406;stroke-width:2;stroke-miterlimit:10;}
.st46{fill:none;stroke:#FFFFFF;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st47{fill:#06F7C9;stroke:#FFFFFF;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st48{fill:none;stroke:#011F38;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;}
.st49{fill:#326DE6;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;}
.st50{fill:#06F7C9;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st51{fill:#8115FF;stroke:#011F38;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st52{opacity:0.3;}
.st53{opacity:0.2;fill:#6D6E71;}
.st54{fill:#EEF406;}
.st55{fill:#06F7C9;}
.st56{fill:#FFFFFF;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st57{fill:#FFFFFF;stroke:#EEF406;stroke-width:1.6;stroke-miterlimit:10;stroke-dasharray:2.4,1.6;}
.st58{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.4938,1.6626;}
.st59{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.0084,1.3389;}
.st60{fill:none;stroke:#06F7C9;stroke-width:2;stroke-miterlimit:10;stroke-dasharray:2.724,1.816;}
.st61{fill:#011F38;stroke:#414042;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st62{fill:none;stroke:#011F38;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
.st63{fill:none;stroke:#011F38;stroke-width:0.2813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
</style>
<symbol id="node_high_level" viewBox="-81 -93 162 186.1">
<polygon class="st0" points="-80,-46 -80,46 0,92 80,46 80,-46 0,-92 "/>
<g id="Isolation_Mode_3_">
</g>
</symbol>
<symbol id="node_x5F_empty" viewBox="-87.5 -100.6 175.1 201.1">
<use xlink:href="#node_high_level" width="162" height="186.1" id="XMLID_201_" x="-81" y="-93" transform="matrix(1.0808 0 0 1.0808 -3.292006e-05 -3.749943e-05)" style="overflow:visible;"/>
<g>
<polygon class="st1" points="76.8,-28.1 -14,-80.3 0,-88.3 76.7,-44.4 "/>
<polygon class="st2" points="76.8,-28.1 32.1,-53.8 38.8,-66.1 76.7,-44.4 "/>
</g>
</symbol>
<symbol id="node_x5F_new" viewBox="-87.6 -101 175.2 202">
<polygon class="st3" points="0,-100 -86.6,-50 -86.6,50 0,100 86.6,50 86.6,-50 "/>
<polygon class="st4" points="-86.6,-20.2 -86.6,-50 0,-100 25.8,-85.1 "/>
<polygon class="st5" points="-40.8,-70.7 -32.9,-57 15.7,-85.1 0,-94.3 "/>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -33.9256 -70.7388)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Docker</text>
<text transform="matrix(0.866 -0.5 -0.5 -0.866 -76.0668 -46.4087)" class="st6" style="font-family:'RobotoSlab-Regular'; font-size:11.3632px;">Kubelt</text>
</symbol>
<g id="CLUSTER">
</g>
<g id="master">
<g id="master_x5F_level1">
</g>
<polygon class="st12" points="220.9,265.9 196.7,235.6 205.3,197.8 240.2,181 275.1,197.8 283.8,235.6 259.6,265.9 "/>
</g>
<g id="Node">
<g id="Node_x5F_level3_x5F_1">
<g id="Isolation_Mode">
</g>
</g>
<g>
<polygon class="st17" points="303.8,179.8 245.7,146.2 245.7,79.1 303.8,45.6 361.9,79.1 361.9,146.2 "/>
</g>
<g>
<polygon class="st17" points="176.6,179.7 118.6,146.1 118.6,79.1 176.6,45.5 234.7,79.1 234.7,146.1 "/>
</g>
<g>
<polygon class="st17" points="176.6,401.4 118.6,367.9 118.6,300.8 176.6,267.2 234.7,300.8 234.7,367.9 "/>
</g>
</g>
<g id="service">
<g>
<g>
<g>
<path class="st22" d="M167.1,329.1v1.2h0v0c0,0.4,0,0.8,0,1.2"/>
<path class="st24" d="M167.2,333.1c1.4,16.7,15.6,29.8,32.7,29.7c17.9-0.2,32.2-15,32.2-32.9V181.8c0-12.4,10-22.4,22.4-22.4h68
c15.7,0,28.4-12.7,28.4-28.4V93.8v0c0-15.6-12.7-28.4-28.4-28.4H199.6c-17.9,0-32.5,14.5-32.5,32.5v0v230.4"/>
</g>
</g>
</g>
<g>
<path d="M220.4,56.8h-1l-0.2-0.9c-0.1-0.1-0.3-0.1-0.5-0.2c-0.2-0.1-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.2
c-0.2,0.2-0.3,0.4-0.3,0.6c0,0.2,0.1,0.4,0.3,0.6s0.6,0.3,1.1,0.5c0.8,0.2,1.3,0.5,1.7,0.8c0.4,0.3,0.6,0.8,0.6,1.4
c0,0.6-0.2,1-0.7,1.4c-0.5,0.3-1.1,0.5-1.8,0.5c-0.5,0-1-0.1-1.5-0.3s-0.8-0.4-1.1-0.7v-1.4h1.1l0.1,1c0.1,0.1,0.3,0.2,0.6,0.3
c0.2,0.1,0.5,0.1,0.8,0.1c0.4,0,0.7-0.1,0.9-0.2c0.2-0.2,0.3-0.4,0.3-0.6c0-0.3-0.1-0.5-0.3-0.6c-0.2-0.2-0.5-0.3-1-0.4
c-0.8-0.2-1.4-0.5-1.8-0.8c-0.4-0.3-0.6-0.8-0.6-1.3c0-0.6,0.2-1,0.7-1.4s1.1-0.5,1.8-0.5c0.5,0,1,0.1,1.4,0.2
c0.4,0.2,0.8,0.4,1.1,0.6V56.8z"/>
<path d="M223.5,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4C224.2,61.5,223.9,61.5,223.5,61.5z M223.3,57.3
c-0.3,0-0.5,0.1-0.6,0.3c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C223.8,57.4,223.6,57.3,223.3,57.3z"/>
<path d="M226.3,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2l0.1,0.7c0.1-0.3,0.3-0.5,0.5-0.6s0.4-0.2,0.7-0.2c0.1,0,0.1,0,0.2,0
c0.1,0,0.1,0,0.2,0l-0.1,1.2l-0.6,0c-0.2,0-0.4,0-0.5,0.1c-0.1,0.1-0.2,0.2-0.3,0.3v2.5l0.7,0.1v0.8h-2.7V60.6z"/>
<path d="M232.4,57.2l-0.5,0.1l0.7,2.3l0.1,0.5h0l0.1-0.5l0.7-2.3l-0.5-0.1v-0.8h2.3v0.8l-0.4,0.1l-1.5,4.2h-1.3l-1.5-4.2l-0.4-0.1
v-0.8h2.3V57.2z"/>
<path d="M235.7,60.6l0.7-0.1v-3.1l-0.7-0.1v-0.8h2.1v4.1l0.7,0.1v0.8h-2.7V60.6z M237.7,55.2h-1.4v-1h1.4V55.2z"/>
<path d="M241.2,60.5c0.2,0,0.4-0.1,0.6-0.2c0.1-0.1,0.2-0.3,0.2-0.6h1.2l0,0c0,0.5-0.2,0.9-0.6,1.3c-0.4,0.3-0.9,0.5-1.5,0.5
c-0.8,0-1.3-0.2-1.7-0.7c-0.4-0.5-0.6-1.1-0.6-1.8v-0.1c0-0.7,0.2-1.4,0.6-1.8c0.4-0.5,1-0.7,1.8-0.7c0.4,0,0.8,0.1,1.1,0.2
s0.6,0.3,0.8,0.5l0,1.4h-1.1l-0.2-0.8c-0.1-0.1-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.4,0-0.7,0.1-0.8,0.4s-0.2,0.6-0.2,1.1
V59c0,0.5,0.1,0.8,0.2,1.1C240.6,60.4,240.9,60.5,241.2,60.5z"/>
<path d="M246.3,61.5c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.1-0.7-1.8v-0.2c0-0.8,0.2-1.4,0.6-1.9c0.4-0.5,1-0.7,1.7-0.7
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.7v0.7h-3l0,0c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6,0,0.8-0.1
c0.2-0.1,0.4-0.2,0.7-0.3l0.4,0.8c-0.2,0.2-0.5,0.3-0.8,0.4C247.1,61.5,246.7,61.5,246.3,61.5z M246.2,57.3
c-0.3,0-0.5,0.1-0.6,0.3c-0.1,0.2-0.2,0.4-0.3,0.8l0,0h1.7v-0.1c0-0.3-0.1-0.5-0.2-0.7C246.7,57.4,246.5,57.3,246.2,57.3z"/>
<path d="M251.3,60.6l0.5-0.1l2.1-5.9h1.4l2.1,5.9l0.5,0.1v0.8h-2.3v-0.8l0.5-0.1l-0.3-0.9h-2.2l-0.3,0.9l0.5,0.1v0.8h-2.3V60.6z
M253.7,58.6h1.6l-0.8-2.4h0L253.7,58.6z"/>
<path d="M260.6,60.6l1.2-0.1v-4.6h-1.2v-0.8l2.5-0.5v5.9l1.2,0.1v0.8h-3.7V60.6z"/>
<path d="M269.6,58.8c0,0.9-0.2,1.6-0.6,2.1s-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7s-0.6-1.2-0.6-2.1v-1.5c0-0.9,0.2-1.6,0.6-2.1
c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M268.3,57.1c0-0.5-0.1-0.9-0.2-1.2
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2c0.2,0.2,0.4,0.4,0.7,0.4
c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M272,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M274.3,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8s-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M279.7,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M280.5,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H280.5z"/>
<path d="M289.4,56.2l-0.1-0.5h-1.8l-0.2,1.6c0.1-0.1,0.3-0.2,0.5-0.2c0.2-0.1,0.4-0.1,0.6-0.1c0.7,0,1.2,0.2,1.5,0.6
s0.5,1,0.5,1.7c0,0.7-0.2,1.2-0.6,1.6s-1,0.7-1.7,0.7c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.6-1.4l0,0l1.3-0.1c0,0.3,0.1,0.5,0.3,0.7
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3s0.2-0.5,0.2-0.9c0-0.4-0.1-0.7-0.2-0.9c-0.2-0.2-0.4-0.4-0.7-0.4c-0.3,0-0.5,0-0.6,0.1
c-0.1,0.1-0.2,0.2-0.3,0.4l-1.2-0.1l0.4-3.8h3.9v1.6H289.4z"/>
<path d="M295.7,58.8c0,0.9-0.2,1.6-0.6,2.1s-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.7-0.7s-0.6-1.2-0.6-2.1v-1.5c0-0.9,0.2-1.6,0.6-2.1
c0.4-0.5,1-0.7,1.7-0.7c0.7,0,1.3,0.2,1.7,0.7c0.4,0.5,0.6,1.2,0.6,2.1V58.8z M294.3,57.1c0-0.5-0.1-0.9-0.2-1.2
c-0.2-0.3-0.4-0.4-0.7-0.4c-0.3,0-0.5,0.1-0.7,0.4s-0.2,0.6-0.2,1.2v1.8c0,0.5,0.1,0.9,0.2,1.2c0.2,0.2,0.4,0.4,0.7,0.4
c0.3,0,0.5-0.1,0.7-0.4s0.2-0.7,0.2-1.2V57.1z"/>
<path d="M298,61.4h-1.4v-1.2h1.4V61.4z"/>
<path d="M298.9,61.4v-0.9l2.2-2.4c0.3-0.4,0.5-0.7,0.7-0.9c0.1-0.3,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7
c-0.2-0.2-0.4-0.3-0.7-0.3c-0.3,0-0.6,0.1-0.7,0.3c-0.2,0.2-0.2,0.5-0.2,0.9h-1.3l0,0c0-0.6,0.2-1.1,0.6-1.6
c0.4-0.4,1-0.6,1.7-0.6c0.7,0,1.3,0.2,1.7,0.5s0.6,0.9,0.6,1.5c0,0.4-0.1,0.8-0.3,1.1c-0.2,0.3-0.6,0.8-1.1,1.4l-1.2,1.3l0,0h1.8
l0.1-0.7h1v1.7H298.9z"/>
<path d="M305.6,57.4h0.8c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.2-0.4,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.2-0.7-0.2
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.6h-1.3l0,0c0-0.5,0.2-1,0.6-1.3c0.4-0.3,1-0.5,1.6-0.5c0.7,0,1.3,0.2,1.7,0.5
c0.4,0.3,0.6,0.8,0.6,1.4c0,0.3-0.1,0.6-0.3,0.8s-0.4,0.5-0.8,0.6c0.4,0.1,0.7,0.3,0.9,0.6c0.2,0.3,0.3,0.6,0.3,1
c0,0.6-0.2,1.1-0.7,1.5c-0.5,0.4-1,0.5-1.7,0.5c-0.6,0-1.2-0.2-1.6-0.5s-0.7-0.8-0.7-1.4l0,0h1.3c0,0.3,0.1,0.5,0.3,0.6
s0.4,0.3,0.7,0.3c0.3,0,0.6-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.4-0.1-0.6-0.3-0.8c-0.2-0.2-0.4-0.2-0.8-0.2h-0.8V57.4z"/>
<path d="M312.2,54.5c0.3,0,0.5,0,0.7,0.1c0.2,0,0.4,0.1,0.7,0.2l-0.2,1c-0.2-0.1-0.4-0.1-0.5-0.2c-0.2,0-0.4-0.1-0.6-0.1
c-0.4,0-0.7,0.1-1,0.4s-0.4,0.7-0.4,1.3l0,0c0.2-0.2,0.3-0.3,0.6-0.4c0.2-0.1,0.5-0.1,0.8-0.1c0.6,0,1.1,0.2,1.4,0.7
c0.3,0.4,0.5,1,0.5,1.7c0,0.7-0.2,1.3-0.6,1.7c-0.4,0.4-1,0.7-1.7,0.7c-0.7,0-1.3-0.2-1.8-0.7s-0.7-1.2-0.7-2v-1.2
c0-1,0.3-1.7,0.8-2.3C310.7,54.8,311.4,54.5,312.2,54.5z M311.9,57.9c-0.3,0-0.5,0-0.6,0.1c-0.2,0.1-0.3,0.2-0.4,0.3v0.5
c0,0.5,0.1,1,0.3,1.2s0.5,0.4,0.8,0.4c0.3,0,0.5-0.1,0.7-0.4c0.2-0.3,0.3-0.6,0.3-0.9c0-0.4-0.1-0.7-0.3-0.9
S312.2,57.9,311.9,57.9z"/>
</g>
</g>
<g id="pods">
<circle class="st22" cx="285.2" cy="93.8" r="16.4"/>
<circle class="st22" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="322.4" cy="93.8" r="16.4"/>
<circle class="st26" cx="285.2" cy="93.8" r="16.4"/>
<g>
<circle class="st41" cx="199.4" cy="329.9" r="20.1"/>
<circle class="st26" cx="199.4" cy="329.9" r="20.1"/>
</g>
<g>
<circle class="st41" cx="199.4" cy="108.5" r="20.1"/>
<circle class="st26" cx="199.4" cy="108.5" r="20.1"/>
</g>
</g>
<g id="IP">
<g>
<path class="st42" d="M180.9,317l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.9,317z"/>
<path class="st42" d="M183.8,311.4c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4c-0.5-0.1-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L183.8,311.4z M182.6,310.8
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9
c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L182.6,310.8z"/>
<path class="st42" d="M186.2,312l-0.4,0.3l-0.3-0.5l0.4-0.3L186.2,312z"/>
<path class="st42" d="M188.7,308.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.7,308.1
z M187.7,307.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.7,307.3z"/>
<path class="st42" d="M190.9,309.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.9,309.3z"/>
<path class="st42" d="M191.7,308.6l0.9-0.3l-1.3-4.1l-0.9,0.5l-0.1-0.3l1.3-0.7l1.5,4.5l0.9-0.2l0.1,0.3l-2.1,0.7L191.7,308.6z"/>
<path class="st42" d="M195,308l-0.5,0.1l-0.1-0.6l0.5-0.1L195,308z"/>
<path class="st42" d="M197.1,302.4c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1s-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.6c-0.2,0.3-0.3,0.8-0.2,1.4l0,0.2c0.1-0.2,0.3-0.4,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
s0.5,0.7,0.5,1.2c0.1,0.5,0,0.9-0.3,1.3c-0.3,0.4-0.6,0.6-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.4c-0.3-0.3-0.5-0.8-0.6-1.5l-0.1-0.9
c-0.1-0.7,0-1.3,0.3-1.7C196.2,302.7,196.6,302.4,197.1,302.4z M197.2,304.6c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6
l0,0.3c0.1,0.5,0.2,0.9,0.5,1.2s0.6,0.4,0.9,0.3c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.2-0.6,0.2-1c0-0.4-0.2-0.7-0.4-1
C197.9,304.6,197.6,304.5,197.2,304.6z"/>
</g>
<g>
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.2c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M274.5,76.6c0.4,0.5,0.6,1,0.6,1.5s-0.2,0.8-0.6,1.1c-0.4,0.3-0.8,0.4-1.3,0.3c-0.4-0.1-0.9-0.4-1.2-1
l-0.7-0.9c-0.4-0.5-0.6-1-0.6-1.5c0-0.5,0.2-0.8,0.6-1.1c0.4-0.3,0.8-0.4,1.3-0.3c0.4,0.1,0.9,0.4,1.2,1L274.5,76.6z M273.4,75.8
c-0.3-0.4-0.6-0.7-1-0.8c-0.3-0.1-0.6,0-1,0.2c-0.3,0.2-0.5,0.5-0.4,0.9c0,0.3,0.2,0.7,0.5,1.2l0.8,1c0.3,0.4,0.6,0.7,1,0.8
c0.3,0.1,0.7,0.1,1-0.2c0.3-0.2,0.5-0.5,0.4-0.9c0-0.3-0.2-0.7-0.5-1.2L273.4,75.8z"/>
<path class="st42" d="M276.8,77.6l-0.4,0.2l-0.3-0.5l0.4-0.2L276.8,77.6z"/>
<path class="st42" d="M277.5,77.2l-0.1-0.3l0.9-2.4c0.2-0.4,0.3-0.8,0.3-1.1s0-0.5,0-0.7c-0.1-0.3-0.3-0.5-0.5-0.6
c-0.2-0.1-0.5-0.1-0.8,0c-0.4,0.1-0.6,0.3-0.7,0.6s-0.1,0.6,0,0.9l-0.4,0.1l0,0c-0.2-0.4-0.2-0.8,0-1.2c0.2-0.4,0.5-0.6,1-0.8
c0.4-0.2,0.8-0.2,1.1,0c0.3,0.1,0.6,0.4,0.7,0.8c0.1,0.3,0.1,0.6,0,0.9s-0.2,0.7-0.4,1.2l-0.8,2l0,0l2.1-0.8l-0.2-0.7l0.4-0.1
l0.4,1L277.5,77.2z"/>
<path class="st42" d="M281.7,75.9l-0.5,0.1l-0.1-0.6l0.5-0.1L281.7,75.9z"/>
<path class="st42" d="M284,70.4c0.2,0,0.4,0,0.5,0s0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5s0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.3-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5c-0.3-0.3-0.5-0.8-0.5-1.5
l-0.1-0.9c0-0.7,0.1-1.3,0.4-1.7S283.5,70.4,284,70.4z M284,72.5c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0,0.5,0.2,0.9,0.4,1.2c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.5c0.2-0.3,0.3-0.6,0.2-1c0-0.4-0.1-0.7-0.4-1
S284.3,72.5,284,72.5z"/>
</g>
<g>
<path class="st42" d="M307.2,83.1l0.5-0.7l-3.4-2.7l-0.5,0.9l-0.2-0.2l0.6-1.3l3.7,3l0.6-0.7l0.2,0.2l-1.4,1.8L307.2,83.1z"/>
<path class="st42" d="M310.3,77.5c0.4,0.5,0.7,1,0.7,1.4c0,0.5-0.2,0.8-0.5,1.2c-0.4,0.3-0.8,0.4-1.2,0.4
c-0.4-0.1-0.9-0.4-1.3-0.9l-0.8-0.9c-0.4-0.5-0.7-1-0.7-1.4c0-0.5,0.1-0.8,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4
c0.4,0.1,0.9,0.4,1.3,0.9L310.3,77.5z M309.1,76.9c-0.3-0.4-0.7-0.6-1-0.7s-0.6,0-0.9,0.3c-0.3,0.2-0.4,0.5-0.4,0.9
s0.2,0.7,0.6,1.1l0.8,1c0.3,0.4,0.7,0.6,1,0.7s0.7,0,0.9-0.2c0.3-0.2,0.4-0.5,0.4-0.9c0-0.3-0.2-0.7-0.6-1.1L309.1,76.9z"/>
<path class="st42" d="M312.7,78.4l-0.4,0.3l-0.3-0.5l0.4-0.3L312.7,78.4z"/>
<path class="st42" d="M315.5,74.7c0.3,0.6,0.4,1.1,0.3,1.6c-0.1,0.4-0.4,0.8-0.8,1c-0.5,0.2-0.9,0.2-1.3,0c-0.4-0.2-0.7-0.6-1-1.2
l-0.5-1c-0.3-0.6-0.4-1.1-0.3-1.6c0.1-0.4,0.4-0.8,0.8-1c0.5-0.2,0.9-0.2,1.3,0c0.4,0.2,0.7,0.6,1,1.2L315.5,74.7z M314.6,73.8
c-0.2-0.5-0.5-0.8-0.8-1s-0.6-0.2-1,0c-0.3,0.2-0.5,0.4-0.6,0.7c-0.1,0.3,0,0.7,0.2,1.2l0.5,1.2c0.2,0.5,0.5,0.8,0.8,1
s0.6,0.2,1,0c0.3-0.2,0.5-0.4,0.6-0.8c0.1-0.3,0-0.8-0.2-1.2L314.6,73.8z"/>
<path class="st42" d="M317.5,76.2l-0.5,0.1l-0.2-0.6l0.5-0.1L317.5,76.2z"/>
<path class="st42" d="M318.3,75.9l0-0.3l1.4-2.1c0.3-0.4,0.4-0.7,0.5-1s0.1-0.5,0.1-0.7c0-0.3-0.2-0.6-0.4-0.7
c-0.2-0.2-0.5-0.2-0.8-0.2c-0.4,0.1-0.7,0.2-0.8,0.4c-0.2,0.2-0.2,0.5-0.2,0.9l-0.4,0.1l0,0c-0.1-0.4,0-0.8,0.3-1.1
s0.6-0.5,1.1-0.6c0.4-0.1,0.8,0,1.1,0.2c0.3,0.2,0.5,0.5,0.5,1c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.3,0.7-0.6,1.1l-1.2,1.8l0,0
l2.2-0.3l-0.1-0.7l0.4-0.1l0.1,1.1L318.3,75.9z"/>
<path class="st42" d="M322.7,75.5l-0.5,0l0-0.6l0.5,0L322.7,75.5z"/>
<path class="st42" d="M327.5,71.3c-0.6,0.6-1.2,1.2-1.5,1.8c-0.4,0.6-0.7,1.4-0.9,2.2l-0.1,0.4l-0.4-0.1l0.1-0.4
c0.2-0.8,0.5-1.6,1-2.2c0.4-0.6,0.9-1.2,1.5-1.8l-2.5-0.4l-0.1,0.7l-0.4-0.1l0.2-1.1l3.3,0.5L327.5,71.3z"/>
</g>
<g class="st44">
<path class="st42" d="M268.1,86.5l0.4-0.8l-3.9-1.9l-0.3,1l-0.3-0.1l0.4-1.4l4.3,2.1l0.5-0.8l0.3,0.1l-1,2L268.1,86.5z"/>
<path class="st42" d="M269.9,80.4c0.5,0.4,0.9,0.8,1,1.3c0.1,0.4,0,0.9-0.3,1.3c-0.3,0.4-0.7,0.6-1.1,0.6c-0.5,0-0.9-0.2-1.5-0.6
l-0.9-0.7c-0.5-0.4-0.9-0.8-1-1.2c-0.1-0.4,0-0.9,0.3-1.3c0.3-0.4,0.7-0.6,1.1-0.6c0.5,0,0.9,0.2,1.5,0.6L269.9,80.4z M268.7,80.1
c-0.4-0.3-0.8-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.4c-0.2,0.3-0.3,0.6-0.2,1c0.1,0.3,0.4,0.7,0.8,1l1,0.8c0.4,0.3,0.8,0.5,1.2,0.5
c0.4,0,0.6-0.1,0.9-0.4c0.2-0.3,0.3-0.6,0.2-1c-0.1-0.3-0.4-0.7-0.8-1L268.7,80.1z"/>
<path class="st42" d="M272.5,80.7l-0.3,0.3l-0.4-0.4l0.3-0.3L272.5,80.7z"/>
<path class="st42" d="M272.9,79.8l0.7-0.6l-2.7-3.4l-0.7,0.7l-0.2-0.2l0.9-1.1l3,3.8l0.7-0.5l0.2,0.2l-1.8,1.4L272.9,79.8z"/>
<path class="st42" d="M275.8,78.1l-0.4,0.2l-0.3-0.5l0.4-0.3L275.8,78.1z"/>
<path class="st42" d="M276.3,74.7l0.4-0.2c0.3-0.1,0.6-0.3,0.7-0.6c0.1-0.2,0.1-0.5,0-0.8c-0.1-0.3-0.3-0.5-0.6-0.6
c-0.2-0.1-0.5-0.1-0.8,0.1c-0.3,0.1-0.5,0.3-0.6,0.6c-0.1,0.3-0.1,0.5,0,0.8l-0.4,0.2l0,0c-0.2-0.4-0.2-0.7,0-1.1
c0.2-0.4,0.4-0.6,0.9-0.8c0.4-0.2,0.8-0.2,1.1-0.1c0.3,0.1,0.6,0.4,0.8,0.8c0.1,0.2,0.1,0.5,0.1,0.7s-0.2,0.5-0.4,0.7
c0.3,0,0.6,0,0.8,0.1c0.2,0.1,0.4,0.3,0.5,0.6c0.2,0.4,0.2,0.8,0,1.2s-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.2-1.2,0.1
c-0.4-0.1-0.7-0.4-0.8-0.8l0,0l0.4-0.2c0.1,0.3,0.3,0.5,0.6,0.6c0.3,0.1,0.6,0.1,0.9-0.1c0.3-0.1,0.6-0.3,0.7-0.6
c0.1-0.3,0.1-0.5,0-0.9c-0.1-0.3-0.3-0.5-0.6-0.6s-0.6,0-0.9,0.1l-0.4,0.2L276.3,74.7z"/>
</g>
<g>
<path class="st42" d="M180.4,95l0.5-0.8l-3.4-2.6l-0.5,0.9l-0.2-0.2l0.6-1.3l3.8,2.9l0.6-0.7l0.2,0.2l-1.4,1.8L180.4,95z"/>
<path class="st42" d="M183.3,89.4c0.5,0.5,0.7,0.9,0.8,1.4s-0.1,0.8-0.5,1.2c-0.4,0.3-0.8,0.5-1.2,0.4c-0.5-0.1-0.9-0.3-1.4-0.8
l-0.8-0.8c-0.5-0.5-0.7-0.9-0.8-1.4c0-0.5,0.1-0.9,0.5-1.2c0.4-0.3,0.8-0.5,1.2-0.4s0.9,0.3,1.4,0.8L183.3,89.4z M182.2,88.8
c-0.4-0.4-0.7-0.6-1.1-0.7c-0.3-0.1-0.6,0-0.9,0.3c-0.3,0.3-0.4,0.6-0.3,0.9c0.1,0.3,0.3,0.7,0.6,1.1l0.9,0.9
c0.4,0.4,0.7,0.6,1.1,0.7c0.3,0.1,0.7,0,0.9-0.3c0.3-0.3,0.4-0.6,0.3-0.9c-0.1-0.3-0.3-0.7-0.6-1.1L182.2,88.8z"/>
<path class="st42" d="M185.7,90l-0.4,0.3l-0.3-0.5l0.4-0.3L185.7,90z"/>
<path class="st42" d="M188.2,86.1c0.3,0.6,0.5,1.1,0.4,1.5c-0.1,0.4-0.3,0.8-0.7,1.1c-0.4,0.3-0.9,0.3-1.3,0.1
c-0.4-0.2-0.8-0.5-1.1-1.1l-0.6-1c-0.3-0.6-0.5-1.1-0.4-1.5s0.3-0.8,0.7-1.1c0.4-0.3,0.9-0.3,1.3-0.1s0.8,0.5,1.1,1.1L188.2,86.1z
M187.2,85.3c-0.3-0.5-0.6-0.8-0.9-0.9c-0.3-0.1-0.6-0.1-1,0.1c-0.3,0.2-0.5,0.5-0.5,0.8c0,0.3,0.1,0.7,0.4,1.2l0.6,1.1
c0.3,0.4,0.6,0.7,0.9,0.9s0.6,0.1,1-0.1c0.3-0.2,0.5-0.5,0.5-0.8c0-0.3-0.1-0.7-0.4-1.2L187.2,85.3z"/>
<path class="st42" d="M190.4,87.3l-0.4,0.2l-0.2-0.5l0.4-0.2L190.4,87.3z"/>
<path class="st42" d="M193.8,84.1c0.2,0.6,0.2,1.2,0,1.6c-0.2,0.4-0.5,0.7-1,0.8c-0.5,0.1-0.9,0.1-1.3-0.2
c-0.4-0.3-0.7-0.7-0.8-1.3l-0.3-1.1c-0.2-0.6-0.2-1.2,0-1.6s0.5-0.7,1-0.9c0.5-0.1,0.9-0.1,1.3,0.2c0.4,0.3,0.7,0.7,0.8,1.3
L193.8,84.1z M193,83.1c-0.2-0.5-0.4-0.9-0.6-1.1c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.7,0.7c-0.1,0.3-0.1,0.7,0.1,1.2
l0.4,1.2c0.2,0.5,0.4,0.9,0.6,1.1s0.6,0.3,1,0.2c0.4-0.1,0.6-0.3,0.7-0.7s0.1-0.7-0.1-1.2L193,83.1z"/>
<path class="st42" d="M195.6,85.8l-0.5,0.1l-0.1-0.6l0.5-0.1L195.6,85.8z"/>
<path class="st42" d="M198,80.3c0.2,0,0.3,0,0.5,0c0.2,0,0.3,0.1,0.5,0.1l-0.1,0.3c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.5,0
c-0.4,0-0.7,0.2-0.9,0.5c-0.2,0.3-0.3,0.8-0.3,1.4l0,0.2c0.1-0.2,0.3-0.3,0.5-0.5c0.2-0.1,0.4-0.2,0.7-0.2c0.5,0,0.8,0.1,1.1,0.4
c0.3,0.3,0.4,0.7,0.5,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.5-1.1,0.6c-0.5,0-0.9-0.1-1.2-0.5s-0.5-0.8-0.5-1.5l-0.1-0.9
c0-0.7,0.1-1.3,0.4-1.7C197.1,80.6,197.5,80.4,198,80.3z M198,82.5c-0.3,0-0.5,0.1-0.7,0.3c-0.2,0.2-0.3,0.4-0.4,0.6l0,0.3
c0,0.5,0.2,0.9,0.4,1.2c0.2,0.3,0.5,0.4,0.9,0.4c0.3,0,0.6-0.2,0.8-0.4s0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.4-1
C198.6,82.6,198.3,82.5,198,82.5z"/>
</g>
</g>
<g id="deployments">
<g>
<g>
<circle class="st45" cx="249.9" cy="211.2" r="14.1"/>
<g>
<g>
<path class="st46" d="M254.3,202.9c3,1.6,5,4.7,5,8.3c0,5.2-4.2,9.4-9.4,9.4c-5.2,0-9.4-4.2-9.4-9.4c0-4.1,2.6-7.6,6.3-8.9"/>
<g>
<polygon class="st6" points="255.7,205.7 254.6,203.1 257.3,202 255.7,201.3 253,202.4 254.1,205 "/>
</g>
</g>
</g>
<g>
<path class="st6" d="M244.7,214.9l0.8-0.1l3.3-9.5h2.2l3.3,9.5l0.8,0.1v1.3h-3.7v-1.3l0.8-0.1l-0.5-1.5h-3.5l-0.5,1.5l0.8,0.1
v1.3h-3.7V214.9z M248.6,211.7h2.5l-1.2-3.8h0L248.6,211.7z"/>
</g>
</g>
</g>
</g>
<g id="containers_x2F_volumes">
<g>
<polygon class="st51" points="188,323.5 199.9,316.6 211.8,323.5 199.9,330.3 "/>
<polygon class="st51" points="188,337.2 188,323.5 199.9,330.3 199.9,344 "/>
<polygon class="st51" points="199.9,344 199.9,330.3 211.8,323.5 211.8,337.2 "/>
</g>
<g>
<polygon class="st51" points="275.7,88.4 285.2,82.9 294.7,88.4 285.2,93.8 "/>
<polygon class="st51" points="275.7,99.3 275.7,88.4 285.2,93.8 285.2,104.8 "/>
<polygon class="st51" points="285.2,104.8 285.2,93.8 294.7,88.4 294.7,99.3 "/>
</g>
<g>
<polygon class="st51" points="312.9,88.4 322.4,82.9 331.9,88.4 322.4,93.8 "/>
<polygon class="st51" points="312.9,99.3 312.9,88.4 322.4,93.8 322.4,104.8 "/>
<polygon class="st51" points="322.4,104.8 322.4,93.8 331.9,88.4 331.9,99.3 "/>
</g>
<g>
<polygon class="st51" points="187.6,101.5 199.4,94.7 211.3,101.5 199.4,108.4 "/>
<polygon class="st51" points="187.6,115.2 187.6,101.5 199.4,108.4 199.4,122.1 "/>
<polygon class="st51" points="199.4,122.1 199.4,108.4 211.3,101.5 211.3,115.2 "/>
</g>
</g>
<g id="labels_x2F_selectors">
</g>
<g id="description">
<g>
<path class="st42" d="M390.5,100.7c-0.2,0.3-0.5,0.6-0.8,0.8s-0.7,0.3-1.1,0.3c-0.7,0-1.2-0.2-1.6-0.7s-0.6-1.1-0.6-2.1v-2.8
l-0.7-0.2v-0.7h0.7h1.2v3.8c0,0.7,0.1,1.1,0.3,1.4s0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.2s0.5-0.4,0.6-0.7v-3.7l-0.8-0.2v-0.7h0.8
h1.2v5.4l0.7,0.2v0.7h-1.8L390.5,100.7z"/>
<path class="st42" d="M393.1,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M398.3,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
<path class="st42" d="M404.8,100.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L404.8,100.9z
M401.7,98.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V97c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V98.7z"/>
<path class="st42" d="M411.9,101.7c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9V96c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H411.9z M410,100.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S409.7,100.8,410,100.8z"/>
<path class="st42" d="M416.4,93.8v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1v-0.9h1v-1.5H416.4z"/>
<path class="st42" d="M421.6,101.8c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S422.2,101.8,421.6,101.8z M421.5,96.1c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S421.9,96.1,421.5,96.1z"/>
<path class="st42" d="M429.5,100.9c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L429.5,100.9z
M426.3,98.7c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7V97c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V98.7z"/>
<path class="st42" d="M439.5,101.7c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9V96c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H439.5z M437.6,100.8c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1
h-1.2c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S437.3,100.8,437.6,100.8z"/>
<path class="st42" d="M441.8,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M447,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
<path class="st42" d="M449.1,103.3l1-0.2v-7l-1-0.2v-0.7h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V103.3z M454.3,98.6c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V98.6z"/>
</g>
<line class="st62" x1="325.5" y1="99.3" x2="383.9" y2="99.3"/>
<g>
<path class="st42" d="M58.8,130.4h-0.9l-0.2-1.2c-0.2-0.1-0.4-0.3-0.7-0.4s-0.6-0.1-1-0.1c-0.6,0-1.1,0.1-1.4,0.4s-0.5,0.6-0.5,1
c0,0.4,0.2,0.7,0.5,0.9s0.9,0.5,1.6,0.7c0.9,0.2,1.6,0.6,2,1s0.7,1,0.7,1.6c0,0.7-0.3,1.2-0.8,1.7s-1.3,0.6-2.2,0.6
c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.2-0.8v-1.6h0.9L54,135c0.2,0.2,0.5,0.3,0.8,0.5s0.7,0.2,1.1,0.2c0.6,0,1-0.1,1.4-0.4
s0.5-0.6,0.5-1c0-0.4-0.1-0.7-0.4-1s-0.8-0.5-1.6-0.7c-0.9-0.2-1.6-0.5-2.1-0.9s-0.8-0.9-0.8-1.6c0-0.7,0.3-1.2,0.8-1.7
s1.3-0.7,2.2-0.7c0.6,0,1.1,0.1,1.6,0.3s0.9,0.5,1.2,0.7V130.4z"/>
<path class="st42" d="M62.9,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S63.4,136.5,62.9,136.5z M62.7,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S63.2,130.8,62.7,130.8z"/>
<path class="st42" d="M66.4,130.8V130h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0l-0.2,1.1
l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2v-4.5L66.4,130.8z"/>
<path class="st42" d="M73.7,130.8l-0.8,0.1l1.3,3.6l0.1,0.5h0l0.1-0.5l1.3-3.6l-0.8-0.1V130h2.4v0.7l-0.5,0.1l-2.1,5.5h-0.9
l-2.2-5.5l-0.5-0.1V130h2.4V130.8z"/>
<path class="st42" d="M78.2,135.6l1-0.2v-4.5l-1-0.2V130h2.1v5.4l1,0.2v0.7h-3.1V135.6z M80.3,128.4h-1.2v-1.2h1.2V128.4z"/>
<path class="st42" d="M85,135.6c0.4,0,0.7-0.1,1-0.4s0.4-0.5,0.4-0.9h1l0,0c0,0.5-0.2,1-0.7,1.5s-1.1,0.6-1.8,0.6
c-0.9,0-1.6-0.3-2.1-0.9s-0.7-1.4-0.7-2.3v-0.2c0-0.9,0.2-1.7,0.7-2.3s1.2-0.9,2.1-0.9c0.5,0,1,0.1,1.4,0.3s0.7,0.4,1,0.7l0.1,1.4
h-0.9l-0.3-1c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.6,0-1,0.2-1.3,0.7s-0.4,1-0.4,1.6v0.2c0,0.6,0.1,1.2,0.4,1.6
S84.4,135.6,85,135.6z"/>
<path class="st42" d="M91.5,136.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S92,136.5,91.5,136.5z M91.3,130.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S91.8,130.8,91.3,130.8z"/>
</g>
<line class="st62" x1="173.7" y1="134" x2="97.8" y2="134"/>
<g>
<path class="st42" d="M385.8,76.7l1-0.2V72l-1-0.2v-0.7h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3c0.7,0,1.2,0.2,1.6,0.6
s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7
v3.7l1,0.2v0.7h-3.1V76.7z"/>
<path class="st42" d="M396.5,77.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S397.1,77.6,396.5,77.6z M396.4,71.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S396.8,71.9,396.4,71.9z"/>
<path class="st42" d="M402.3,71.9l-0.7,0.1l0.8,3.2l0.1,0.8h0l0.2-0.8l1.3-4h0.9l1.3,4l0.2,0.9h0l0.2-0.9l0.8-3.2l-0.7-0.1v-0.7
h2.4v0.7l-0.6,0.1l-1.6,5.5H406l-1.2-3.9l-0.3-1.1l0,0l-0.2,1.1l-1.2,3.9h-0.9l-1.6-5.5l-0.6-0.1v-0.7h2.4V71.9z"/>
<path class="st42" d="M412.9,69.7v-0.7h3.1v0.7l-1,0.2v6.7l1,0.2v0.7h-3.1v-0.7l1-0.2v-6.7L412.9,69.7z"/>
<path class="st42" d="M420.7,68.9c0.9,0,1.6,0.2,2.1,0.7s0.8,1.1,0.8,1.9c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.7-2.1,0.7h-1.8v2.5l1,0.2
v0.7h-3.1v-0.7l1-0.2v-6.7l-1-0.2v-0.7h1H420.7z M418.9,73.1h1.8c0.6,0,1-0.2,1.3-0.5s0.4-0.7,0.4-1.2s-0.1-0.9-0.4-1.2
s-0.7-0.5-1.3-0.5h-1.8V73.1z"/>
<path class="st42" d="M431.6,77.5c0-0.2-0.1-0.3-0.1-0.5s0-0.3,0-0.4c-0.2,0.3-0.5,0.5-0.8,0.7s-0.7,0.3-1.1,0.3
c-0.7,0-1.2-0.2-1.5-0.5s-0.5-0.8-0.5-1.4c0-0.6,0.2-1.1,0.7-1.4s1.2-0.5,2-0.5h1.2v-0.7c0-0.4-0.1-0.7-0.4-0.9s-0.6-0.3-1-0.3
c-0.3,0-0.5,0-0.8,0.1s-0.4,0.2-0.5,0.3l-0.1,0.7h-0.9v-1.2c0.3-0.2,0.6-0.4,1-0.6s0.9-0.2,1.3-0.2c0.7,0,1.3,0.2,1.7,0.6
s0.7,0.9,0.7,1.6v3.1c0,0.1,0,0.2,0,0.2s0,0.2,0,0.2l0.5,0.1v0.7H431.6z M429.8,76.6c0.4,0,0.7-0.1,1-0.3s0.5-0.4,0.7-0.7v-1h-1.2
c-0.5,0-0.8,0.1-1.1,0.3s-0.4,0.5-0.4,0.8c0,0.3,0.1,0.5,0.3,0.6S429.4,76.6,429.8,76.6z"/>
<path class="st42" d="M438.4,76.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L438.4,76.7z
M435.2,74.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V74.5z"/>
<path class="st42" d="M445.6,76.7c-0.2,0.3-0.5,0.5-0.8,0.7s-0.6,0.2-1,0.2c-0.8,0-1.4-0.3-1.8-0.8s-0.7-1.3-0.7-2.2v-0.1
c0-1,0.2-1.8,0.7-2.5s1-0.9,1.8-0.9c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.6v-2.6l-1-0.2v-0.7h1h1.2v8.2l1,0.2v0.7h-2L445.6,76.7z
M442.4,74.5c0,0.6,0.1,1.1,0.4,1.5s0.7,0.6,1.2,0.6c0.3,0,0.6-0.1,0.9-0.2s0.4-0.4,0.6-0.7v-2.9c-0.1-0.3-0.3-0.5-0.6-0.6
s-0.5-0.2-0.9-0.2c-0.6,0-1,0.2-1.2,0.7s-0.4,1.1-0.4,1.8V74.5z"/>
<path class="st42" d="M448.5,71.9v-0.7h2l0.1,0.9c0.2-0.3,0.4-0.6,0.7-0.8s0.6-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0s0.2,0,0.2,0
l-0.2,1.1l-0.7,0c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.3-0.5,0.6v3.6l1,0.2v0.7h-3.1v-0.7l1-0.2V72L448.5,71.9z"/>
<path class="st42" d="M456.2,77.6c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S456.8,77.6,456.2,77.6z M456.1,71.9c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S456.5,71.9,456.1,71.9z"/>
<path class="st42" d="M464.6,73.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L464.6,73.1z"/>
<path class="st42" d="M470.8,73.1h-0.9l-0.2-0.8c-0.1-0.1-0.3-0.2-0.5-0.3s-0.5-0.1-0.7-0.1c-0.4,0-0.7,0.1-0.9,0.3
s-0.3,0.4-0.3,0.7c0,0.2,0.1,0.4,0.3,0.6s0.5,0.3,1.1,0.4c0.8,0.2,1.4,0.4,1.8,0.7s0.6,0.7,0.6,1.2c0,0.6-0.2,1-0.7,1.4
s-1,0.5-1.8,0.5c-0.5,0-0.9-0.1-1.3-0.2s-0.7-0.3-1-0.5l0-1.4h0.9l0.2,0.8c0.1,0.1,0.3,0.2,0.5,0.3s0.5,0.1,0.7,0.1
c0.4,0,0.7-0.1,1-0.2s0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.6s-0.6-0.3-1.1-0.4c-0.8-0.2-1.3-0.4-1.7-0.7s-0.6-0.7-0.6-1.2
c0-0.5,0.2-1,0.7-1.3s1-0.5,1.7-0.5c0.5,0,0.9,0.1,1.3,0.2s0.7,0.3,1,0.5L470.8,73.1z"/>
</g>
<line class="st62" x1="327.2" y1="75.1" x2="383.9" y2="75.1"/>
<g>
<path class="st42" d="M316.4,196.8c1.1,0,2,0.3,2.7,1s1,1.6,1,2.7v1.2c0,1.1-0.3,2-1,2.7s-1.6,1-2.7,1h-3.6v-0.7l1-0.2v-6.7
l-1-0.2v-0.7h1H316.4z M315,197.7v6.7h1.5c0.8,0,1.4-0.3,1.9-0.8s0.7-1.2,0.7-2v-1.2c0-0.8-0.2-1.5-0.7-2s-1.1-0.8-1.9-0.8H315z"
/>
<path class="st42" d="M324.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S324.7,205.5,324.2,205.5z M324,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S324.5,199.8,324,199.8z"/>
<path class="st42" d="M327.6,207.1l1-0.2v-7l-1-0.2V199h1.9l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2
c0.8,0,1.4,0.3,1.8,0.9s0.7,1.4,0.7,2.5v0.1c0,0.9-0.2,1.7-0.7,2.2s-1,0.8-1.8,0.8c-0.4,0-0.7-0.1-1-0.2s-0.5-0.3-0.8-0.6v2.2
l1,0.2v0.7h-3.1V207.1z M332.8,202.3c0-0.7-0.1-1.3-0.4-1.8s-0.7-0.7-1.3-0.7c-0.3,0-0.6,0.1-0.8,0.2s-0.4,0.4-0.6,0.6v3.1
c0.1,0.3,0.3,0.5,0.6,0.6s0.5,0.2,0.9,0.2c0.5,0,1-0.2,1.2-0.6s0.4-0.9,0.4-1.6V202.3z"/>
<path class="st42" d="M334.8,197v-0.7h2.1v8.2l1,0.2v0.7h-3.1v-0.7l1-0.2v-7.3L334.8,197z"/>
<path class="st42" d="M338.6,202.1c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,2.1-0.9c0.9,0,1.6,0.3,2.1,0.9s0.8,1.4,0.8,2.3v0.1
c0,0.9-0.3,1.7-0.8,2.3s-1.2,0.9-2.1,0.9c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3V202.1z M339.8,202.3c0,0.7,0.1,1.2,0.4,1.7
s0.7,0.7,1.3,0.7c0.5,0,1-0.2,1.2-0.7s0.4-1,0.4-1.7v-0.1c0-0.7-0.1-1.2-0.4-1.7s-0.7-0.7-1.3-0.7s-1,0.2-1.3,0.7s-0.4,1-0.4,1.7
V202.3z"/>
<path class="st42" d="M351.3,199.8l-0.6,0.1l-2.4,6.5c-0.2,0.4-0.4,0.8-0.7,1.1s-0.7,0.5-1.2,0.5c-0.1,0-0.2,0-0.4,0
s-0.3,0-0.3-0.1l0.1-0.9c0,0,0,0,0.2,0s0.3,0,0.3,0c0.2,0,0.4-0.1,0.6-0.3s0.3-0.5,0.4-0.7l0.3-0.7l-2.1-5.4l-0.6-0.1V199h2.6v0.7
l-0.7,0.1l1.1,3.1l0.2,0.8h0l1.3-3.9l-0.7-0.1V199h2.6V199.8z"/>
<path class="st42" d="M351.8,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.8c0.2-0.3,0.5-0.5,0.8-0.7s0.7-0.2,1.1-0.2s0.8,0.1,1.1,0.3
s0.5,0.5,0.7,0.9c0.2-0.4,0.5-0.6,0.8-0.9s0.7-0.3,1.1-0.3c0.6,0,1.2,0.2,1.5,0.7s0.6,1.1,0.6,2v2.9l1,0.2v0.7h-3.1v-0.7l1-0.2
v-2.9c0-0.6-0.1-1.1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4s-0.4,0.6-0.4,1.1v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-2.9
c0-0.6-0.1-1-0.3-1.3s-0.5-0.4-1-0.4c-0.4,0-0.6,0.1-0.9,0.2s-0.4,0.3-0.5,0.6v3.8l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M366.2,205.5c-0.9,0-1.6-0.3-2.1-0.9s-0.8-1.4-0.8-2.3v-0.3c0-0.9,0.3-1.7,0.8-2.3s1.2-0.9,1.9-0.9
c0.9,0,1.5,0.3,1.9,0.8s0.7,1.2,0.7,2.1v0.7h-4.1l0,0c0,0.6,0.2,1.1,0.5,1.5s0.7,0.6,1.2,0.6c0.4,0,0.7-0.1,1-0.2s0.5-0.3,0.8-0.5
l0.5,0.8c-0.2,0.2-0.5,0.4-0.9,0.6S366.7,205.5,366.2,205.5z M366,199.8c-0.4,0-0.7,0.2-1,0.5s-0.4,0.7-0.5,1.2l0,0h2.9v-0.2
c0-0.5-0.1-0.8-0.4-1.1S366.5,199.8,366,199.8z"/>
<path class="st42" d="M369.6,204.6l1-0.2v-4.5l-1-0.2V199h2l0.1,0.9c0.2-0.3,0.5-0.6,0.8-0.8s0.7-0.3,1.1-0.3
c0.7,0,1.2,0.2,1.6,0.6s0.6,1,0.6,1.9v3.1l1,0.2v0.7h-3.1v-0.7l1-0.2v-3.1c0-0.6-0.1-1-0.3-1.2s-0.6-0.4-1-0.4
c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.7v3.7l1,0.2v0.7h-3.1V204.6z"/>
<path class="st42" d="M379.5,197.5v1.5h1.2v0.9h-1.2v3.8c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.5,0.2c0.1,0,0.2,0,0.3,0s0.2,0,0.3-0.1
l0.2,0.8c-0.1,0.1-0.3,0.1-0.5,0.2s-0.4,0.1-0.6,0.1c-0.5,0-0.8-0.1-1.1-0.4s-0.4-0.7-0.4-1.3v-3.8h-1V199h1v-1.5H379.5z"/>
</g>
<line class="st62" x1="310.4" y1="203" x2="249.9" y2="203"/>
</g>
<g id="Layer_14">
</g>
</svg>

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="37" height="36" viewBox="0 0 37 36"><defs><style>.cls-1{fill:#fff;stroke:#4aa3ff;stroke-linejoin:round;stroke-width:2px;fill-rule:evenodd}</style></defs><path id="Многоугольник_1" data-name="Многоугольник 1" class="cls-1" d="M690.538 834.74L694 849.869 684.283 862h-15.577L659 849.858l3.471-15.128 14.035-6.73z" transform="translate(-658 -827)"/></svg>

After

Width:  |  Height:  |  Size: 425 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="34" viewBox="0 0 35 34"><defs><style>.cls-1{fill:#326de6;fill-rule:evenodd}</style></defs><path id="Многоугольник_1_копия" data-name="Многоугольник 1 копия" class="cls-1" d="M730.538 834.74L734 849.869 724.283 862h-15.577L699 849.858l3.471-15.128 14.035-6.73z" transform="translate(-699 -828)"/></svg>

After

Width:  |  Height:  |  Size: 396 B

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="34" viewBox="0 0 35 34"><defs><style>.cls-1{fill:#53a2e5;fill-rule:evenodd}</style></defs><path id="Многоугольник_1_копия" data-name="Многоугольник 1 копия" class="cls-1" d="M730.538 834.74L734 849.869 724.283 862h-15.577L699 849.858l3.471-15.128 14.035-6.73z" transform="translate(-699 -828)"/></svg>

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

@@ -0,0 +1,52 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/explore-interactive.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i>Scaling an app with Kubectl</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_05.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
What are <a href="/docs/tutorials/getting-started/deploy-app.html">Deployments</a> <br>
What are <a href="/docs/tutorials/getting-started/expose-app.html">Services</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/scale-intro.html" role="button">Start Module 5 <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,43 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/scale-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/5" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/update-app.html" role="button">Continue to Module 6<span class="btn__next"></span></a>
</div>
</div>
</main>
<a class="scrolltop" href="#top"></a>
</div>
</body>
</html>
@@ -0,0 +1,118 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/scale-app.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<p>In the previous modules we created a <a href="http://kubernetes.io/docs/user-guide/deployments/"> Deployment</a>, and then exposed it publicly via a <a href="http://kubernetes.io/docs/user-guide/services/"> Service </a>. The Deployment created only one Pod for running our application. When traffic increases, we will need to scale the application to keep up with user demand.</p>
<p><b>Scaling</b> is accomplished by changing the number of replicas in a Deployment</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Scaling a Deployment</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i> You can create from the start a Deployment with multiple instances using the --replicas parameter for the kubectl run command </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Scaling overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-8">
<div id="myCarousel" class="carousel" data-ride="carousel" data-interval="3000">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="/docs/tutorials/getting-started/public/images/module_05_scaling1.svg">
</div>
<div class="item">
<img src="/docs/tutorials/getting-started/public/images/module_05_scaling2.svg">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only ">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Scaling up a Deployment will ensure new Pods are created and scheduled to Nodes with available resources. Scaling down will reduce the number of Pods to the new desired state. Kubernetes also supports <a href="http://kubernetes.io/docs/user-guide/horizontal-pod-autoscaling/"> autoscaling </a> of Pods, but it is outside of the scope of this tutorial. Scaling to zero is also possible, and it will terminate all Pods of the specified Deployment.</p>
<p>Running multiple instances of an application will require a way to distribute the traffic to all of them. Services have an integrated load-balancer that will distribute network traffic to all Pods of an exposed Deployment. Services will monitor continuously the running Pods using endpoints, to ensure the traffic is sent only to available Pods.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i>Scaling is accomplished by changing the number of replicas in a Deployment.</i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p> Once you have multiple instances of an Application running, you would be able to do Rolling updates without downtime. Well cover that in the next module. Now, lets go to the online terminal and scale our application.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/scale-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,54 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/scale-interactive.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<div class="row">
<div class="col-md-8">
<h3>Module overview</h3>
<ul style="color: #3771e3;">
<li><i>Performing Rolling Updates with Kubectl</i></li>
</ul>
<p><img src="/docs/tutorials/getting-started/public/images/module_06.svg?v=1469803628347"></p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>What you need to know first</h3>
<p>
What are <a href="/docs/tutorials/getting-started/deploy-app.html">Deployments</a> <br>
What is <a href="/docs/tutorials/getting-started/scale-app.html">Scaling</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/update-intro.html" role="button">Start Module 6 <span class="btn__next"></span></a>
</div>
</div>
</main>
<a class="scrolltop" href="#top"></a>
</div>
</body>
</html>
@@ -0,0 +1,36 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<script src="https://katacoda.com/embed.js"></script>
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/update-intro.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<div class="katacoda">
<div class="katacoda__alert">
To interact with the Terminal, please use the desktop/tablet version
</div>
<div class="katacoda__box" id="inline-terminal-1" data-katacoda-id="kubernetes-bootcamp/6" data-katacoda-color="326de6" data-katacoda-secondary="273d6d" data-katacoda-hideintro="false" data-katacoda-font="Roboto" data-katacoda-fontheader="Roboto Slab" data-katacoda-prompt="Kubernetes Bootcamp Terminal" style="height: 600px;">
</div>
</div>
</main>
</div>
</body>
</html>
@@ -0,0 +1,133 @@
---
---
<!DOCTYPE html>
<html lang="en">
<body>
<link href="/docs/tutorials/getting-started/public/css/styles.css" rel="stylesheet">
<div class="layout" id="top">
<main class="content">
<div class="row">
<div class="col-md-12 text-left">
<a class="btn btn-default" href="/docs/tutorials/getting-started/update-app.html" role="button"><span class="btn__prev"></span> Back</a>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-8">
<p>Users expect applications to be available all the time and developers are expected to deploy new versions of them several times a day. In Kubernetes this is done with rolling updates. <b>Rolling updates</b> allows Deployments to occur with zero downtime by incrementally updating Pods instances with new ones. The new Pods will be scheduled on Nodes with available resources.</p>
<p>In the previous module we scaled our application to run multiple instances. This is a requirement for performing updates without affecting application availability. By default, the maximum number of Pods that can be unavailable during the update and the maximum number of new Pods that can be created, is one. Both options can be configured to either numbers or percentages (of Pods).
In Kubernetes, updates are versioned and any Deployment update can be reverted to a previously (stable) version.</p>
</div>
<div class="col-md-4">
<div class="content__box content__box_lined">
<h3>Summary:</h3>
<ul>
<li>Updating an app</li>
</ul>
</div>
<div class="content__box content__box_fill">
<p><i>Rolling updates allows Deployments update with zero downtime by incrementally updating Pods instances with new ones. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<h2 style="color: #3771e3;">Rolling updates overview</h2>
</div>
</div>
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-8">
<div id="myCarousel" class="carousel" data-ride="carousel" data-interval="3000">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="/docs/tutorials/getting-started/public/images/module_06_rollingupdates1.svg" >
</div>
<div class="item">
<img src="/docs/tutorials/getting-started/public/images/module_06_rollingupdates2.svg">
</div>
<div class="item">
<img src="/docs/tutorials/getting-started/public/images/module_06_rollingupdates3.svg">
</div>
<div class="item">
<img src="/docs/tutorials/getting-started/public/images/module_06_rollingupdates4.svg">
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="sr-only ">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p>Similar to application Scaling, If a Deployment is exposed publicly, the Service will load-balance the traffic only to available Pods during the update. An available Pod is an instance that is available to the users of the application.</p>
<p>Rolling updates allow the following actions:</p>
<ul>
<li>Promote an application from one environment to another (via container image updates)</li>
<li>Rollback to previous versions</li>
<li>Continuous Integration and Continuous Delivery of applications with zero downtime</li>
</ul>
</div>
<div class="col-md-4">
<div class="content__box content__box_fill">
<p><i>If a Deployment is exposed publicly, the Service will load-balance the traffic only to available Pods during the update. </i></p>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-md-8">
<p> In the following interactive tutorial well update our application to a new version, and also perform a rollback.</p>
</div>
</div>
<br>
<div class="row">
<div class="col-md-12">
<a class="btn btn-lg btn-success" href="/docs/tutorials/getting-started/update-interactive.html" role="button">Start Interactive Tutorial <span class="btn__next"></span></a>
</div>
</div>
</main>
</div>
</body>
</html>
+1 -1
View File
@@ -7,7 +7,7 @@ The Tutorials section of the Kubernetes documentation is a work in progress.
* [Running a Stateless Application Using a Deployment](/docs/tutorials/stateless-application/run-stateless-application-deployment/)
* [Exposing an External IP Address Using a Service](/docs/tutorials/stateless-application/expose-external-ip-address-service/)
* [Using a Service to Access an Application in a Cluster](/docs/tutorials/stateless-application/expose-external-ip-address-service/)
### What's next
@@ -16,4 +16,3 @@ spec:
image: nginx:1.7.9
ports:
- containerPort: 80
Contact GitHub API Training Shop Blog About
@@ -4,9 +4,8 @@
{% capture overview %}
This page shows how to create a Kubernetes Service object that external
clients can use to access an application running in a cluster. The
Service exposes a stable IP address and provides load balancing for
an application that has two running instances.
clients can use to access an application running in a cluster. The Service
provides load balancing for an application that has two running instances.
{% endcapture %}
@@ -28,7 +27,7 @@ an application that has two running instances.
{% capture objectives %}
* Run two instances of a Hello World application.
* Create a Service object that exposes an external IP address.
* Create a Service object that exposes a node port.
* Use the Service object to access the running application.
{% endcapture %}
@@ -55,63 +54,68 @@ an application that has two running instances.
kubectl get deployments hello-world
kubectl describe deployments hello-world
1. Display information about the ReplicaSet:
1. Display information about your ReplicaSet objects:
kubectl get replicasets hello-world
kubectl describe replicasets hello-world
1. List the pods that are running the Hello World application:
kubectl get pods --selector="run=load-balancer-example"
The output is similar to this:
NAME READY STATUS RESTARTS AGE
hello-world-2189936611-8fyp0 1/1 Running 0 6m
hello-world-2189936611-9isq8 1/1 Running 0 6m
kubectl get replicasets
kubectl describe replicasets
1. Create a Service object that exposes the deployment:
kubectl expose deployment hello-world --type="LoadBalancer" --name="example-service"
kubectl expose deployment hello-world --type=NodePort --name=example-service
1. Display the IP addresses for your service:
1. Display information about the Service:
kubectl get services example-service
The output shows the internal IP address and the external IP address of
your service. If the external IP address shows as `<pending>`, repeat the
command.
Note: If you are using Minikube, you don't get an external IP address. The
external IP address remains in the pending state.
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
example-service 10.0.0.160 <pending> 8080/TCP 40s
1. Use your service to access the Hello World application:
curl <your-external-ip-address>:8080
where `<your-external-ip-address>` is the external IP address of your
service.
The output is a hello message from the application:
Hello Kubernetes!
Note: If you are using Minikube, enter these commands:
kubectl cluster-info
kubectl describe services example-service
The output displays the IP address of your Minikube node and the NodePort
value for your service. Enter this command to access the Hello World
application:
The output is similar to this:
curl <minikube-node-ip-address>:<service-node-port>
Name: example-service
Namespace: default
Labels: run=load-balancer-example
Selector: run=load-balancer-example
Type: NodePort
IP: 10.32.0.16
Port: <unset> 8080/TCP
NodePort: <unset> 31496/TCP
Endpoints: 10.200.1.4:8080,10.200.2.5:8080
Session Affinity: None
No events.
where `<minikube-node-ip-address>` us the IP address of your Minikube node,
and `<service-node-port>` is the NodePort value for your service.
Make a note of the NodePort value for the service. For example,
in the preceding output, the NodePort value is 31496.
1. List the pods that are running the Hello World application:
kubectl get pods --selector="run=load-balancer-example" --output=wide
The output is similar to this:
NAME READY STATUS ... IP NODE
hello-world-2895499144-bsbk5 1/1 Running ... 10.200.1.4 worker1
hello-world-2895499144-m1pwt 1/1 Running ... 10.200.2.5 worker2
1. Get the public IP address of one of your nodes that is running
a Hello World pod. How you get this address depends on how you set
up your cluster. For example, if you are using Minikube, you can
see the node address by running `kubectl cluster-info`. If you are
using Google Compute Engine instances, you can use the
`gcloud compute instances list` command to see the public addresses of your
nodes.
1. On your chosen node, create a firewall rule that allows TCP traffic
on your node port. For example, if your Service has a NodePort value of
31568, create a firewall rule that allows TCP traffic on port 31568.
1. Use the node address and node port to access the Hello World application:
curl http://<public-node-ip>:<node-port>
where `<public-node-ip>` us the public IP address of your node,
and `<node-port>` is the NodePort value for your service.
The response to a successful request is a hello message:
Hello Kubernetes!
### Using a service configuration file
@@ -75,7 +75,7 @@ a Deployment that runs the nginx:1.7.9 Docker image:
1. Display information about a pod:
kubectl display pod <pod-name>
kubectl describe pod <pod-name>
where `<pod-name>` is the name of one of your pods.
+2 -1
View File
@@ -451,7 +451,8 @@ nginx-deployment-2035384211 0 0 1h
nginx-deployment-3066724191 0 0 1h
```
Note: A paused Deployment cannot be scaled at this moment, and we will add this feature in 1.3 release, see [issue #20853](https://github.com/kubernetes/kubernetes/issues/20853). You cannot rollback a paused Deployment either, and you should resume a Deployment first before doing a rollback.
Note: You cannot rollback a paused Deployment until you resume it.
## Use Cases
+2 -2
View File
@@ -238,11 +238,11 @@ considering one set of work items that the user wants to manage together &mdash;
There are several different patterns for parallel computation, each with strengths and weaknesses.
The tradeoffs are:
- One Job object for each work item, vs a single Job object for all work items. The latter is
- One Job object for each work item, vs. a single Job object for all work items. The latter is
better for large numbers of work items. The former creates some overhead for the user and for the
system to manage large numbers of Job objects. Also, with the latter, the resource usage of the job
(number of concurrently running pods) can be easily adjusted using the `kubectl scale` command.
- Number of pods created equals number of work items, vs each pod can process multiple work items.
- Number of pods created equals number of work items, vs. each pod can process multiple work items.
The former typically requires less modification to existing code and containers. The latter
is better for large numbers of work items, for similar reasons to the previous bullet.
- Several approaches use a work queue. This requires running a queue service,
@@ -399,3 +399,27 @@ parameters:
* `type`: [VolumeType](http://docs.openstack.org/admin-guide/dashboard-manage-volumes.html) created in Cinder. Default is empty.
* `availability`: Availability Zone. Default is empty.
## Writing Portable Configuration
If you're writing configuration templates or examples that run on a wide range of clusters
and need persistent storage, we recommend that you use the following pattern:
- Do include PersistentVolumeClaim objects in your bundle of config (alongside Deployments, ConfigMaps, etc).
- Do not include PersistentVolume objects in the config, since the user instantiating the config may not have
permission to create PersistentVolumes.
- Give the user the option of providing a storage class name when instantating the template.
- If the user provides a storage class name, and the cluster is version 1.4 or newer, put that value into the `volume.beta.kubernetes.io/storage-class` annotation of the PVC.
This will cause the PVC to match the right storage class if the cluster has StorageClasses enabled by the admin.
- If the user does not provide a storage class name or the cluster is version 1.3, then instead put a `volume.alpha.kubernetes.io/storage-class: default` annotation on the PVC.
- This will cause a PV to be automatically provisioned for the user with sane default characteristics on some clusters.
- Despite the word `alpha` in the name, the code behind this annotation has `beta` level support.
- Do not use `volume.beta.kubernetes.io/storage-class:` with any value including the empty string since it will prevent DefaultStorageClass admission controller
from running if enabled.
- In your tooling, do watch for PVCs that are not getting bound after some time and surface this to the user, as this may indicate that the cluster has no dynamic
storage support (in which case the user should create a matching PV) or the cluster has no storage system (in which case the user cannot deploy config requiring
PVCs).
- In the future, we expect most clusters to have `DefaultStorageClass` enabled, and to have some form of storage available. However, there may not be any
storage class names which work on all clusters, so continue to not set one by default.
At some point, the alpha annotation will cease to have meaning, but the unset `storageClass` field on the PVC
will have the desired effect.