run autogen

pull/517/head
tessier 4 years ago
parent 6119d83e8c
commit fe2f1d5b63

@ -35,6 +35,7 @@ Diagrams lets you draw the cloud system architecture **in Python code**. It was
![generic provider](https://img.shields.io/badge/Generic-orange?color=5f87bf) ![generic provider](https://img.shields.io/badge/Generic-orange?color=5f87bf)
![programming provider](https://img.shields.io/badge/Programming-orange?color=5f87bf) ![programming provider](https://img.shields.io/badge/Programming-orange?color=5f87bf)
![saas provider](https://img.shields.io/badge/SaaS-orange?color=5f87bf) ![saas provider](https://img.shields.io/badge/SaaS-orange?color=5f87bf)
![ibm provider](https://img.shields.io/badge/Ibm-orange?color=5f87bf)
## Getting Started ## Getting Started

@ -4,7 +4,7 @@ set -e
app_root_dir="diagrams" app_root_dir="diagrams"
# NOTE: azure icon set is not latest version # NOTE: azure icon set is not latest version
providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale" ) providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale" "ibm")
if ! [ -x "$(command -v round)" ]; then if ! [ -x "$(command -v round)" ]; then
echo 'round is not installed' echo 'round is not installed'
@ -29,7 +29,7 @@ fi
# preprocess the resources # preprocess the resources
for pvd in "${providers[@]}"; do for pvd in "${providers[@]}"; do
# convert the svg to png for azure provider # convert the svg to png for azure provider
if [ "$pvd" = "onprem" ] || [ "$pvd" = "azure" ]; then if [ "$pvd" = "onprem" ] || [ "$pvd" = "azure" ] || [ "$pvd" = "ibm" ]; then
echo "converting the svg to png using inkscape for provider '$pvd'" echo "converting the svg to png using inkscape for provider '$pvd'"
python -m scripts.resource svg2png "$pvd" python -m scripts.resource svg2png "$pvd"
fi fi
@ -57,5 +57,5 @@ echo "generating the docs for custom"
python -m scripts.generate "custom" python -m scripts.generate "custom"
# run black # run black
echo "linting the all the diagram modules" echo "linting all the diagram modules"
black "$app_root_dir"/**/*.py black "$app_root_dir"/**/*.py

@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates"
PROVIDERS = ( PROVIDERS = (
"base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic", "base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic",
"generic", "openstack", "outscale") "generic", "openstack", "outscale", "ibm")
######################### #########################
# Resource Processing # # Resource Processing #
@ -41,6 +41,7 @@ FILE_PREFIXES = {
"outscale": (), "outscale": (),
"generic": (), "generic": (),
"openstack": (), "openstack": (),
"ibm": (),
} }
######################### #########################
@ -70,6 +71,7 @@ UPPER_WORDS = {
"outscale": ("osc",), "outscale": ("osc",),
"openstack": ("rpm", "loci", "nfv", "ec2api"), "openstack": ("rpm", "loci", "nfv", "ec2api"),
"pve": ("pve"), "pve": ("pve"),
"ibm": ("vpn", "vpc", "dns", "cdn", "db2"),
} }
TITLE_WORDS = { TITLE_WORDS = {
@ -85,6 +87,9 @@ TITLE_WORDS = {
"openstack": { "openstack": {
"openstack": "OpenStack" "openstack": "OpenStack"
}, },
"ibm": {
"vmware": "VMware", "lbaas": "LBaaS"
}
} }
# TODO: check if the classname exists # TODO: check if the classname exists
@ -437,4 +442,5 @@ ALIASES = {
"Tripleo": "TripleO", "Tripleo": "TripleO",
} }
}, },
"ibm": {},
} }

@ -0,0 +1,12 @@
"""
IBM provides a set of general IBM services.
"""
from diagrams import Node
class _IBM(Node):
_provider = "ibm"
_icon_dir = "resources/ibm"
fontcolor = "#ffffff"

@ -0,0 +1,31 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Analytics(_Ibm):
_type = "analytics"
_icon_dir = "resources/ibm/analytics"
class AnalyticsEngine(_Analytics):
_icon = "analytics-engine.png"
class Cognos(_Analytics):
_icon = "cognos.png"
class Match360(_Analytics):
_icon = "match-360.png"
class Powerlytics(_Analytics):
_icon = "powerlytics.png"
class Streaming(_Analytics):
_icon = "streaming.png"
# Aliases

@ -0,0 +1,15 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Blockchain(_Ibm):
_type = "blockchain"
_icon_dir = "resources/ibm/blockchain"
class BlockchainPlatform(_Blockchain):
_icon = "blockchain-platform.png"
# Aliases

@ -0,0 +1,75 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Compute(_Ibm):
_type = "compute"
_icon_dir = "resources/ibm/compute"
class Autoscale(_Compute):
_icon = "autoscale.png"
class BareMetal(_Compute):
_icon = "bare-metal.png"
class Citrix(_Compute):
_icon = "citrix.png"
class CloudFoundry(_Compute):
_icon = "cloud-foundry.png"
class CodeEngine(_Compute):
_icon = "code-engine.png"
class DedicatedHost(_Compute):
_icon = "dedicated-host.png"
class Dizzion(_Compute):
_icon = "dizzion.png"
class Functions(_Compute):
_icon = "functions.png"
class HpVirtualServers(_Compute):
_icon = "hp-virtual-servers.png"
class Hsm(_Compute):
_icon = "hsm.png"
class PowerSystems(_Compute):
_icon = "power-systems.png"
class Satellite(_Compute):
_icon = "satellite.png"
class Skytap(_Compute):
_icon = "skytap.png"
class VirtualServer(_Compute):
_icon = "virtual-server.png"
class VMware(_Compute):
_icon = "vmware.png"
class VPCVirtualServer(_Compute):
_icon = "vpc-virtual-server.png"
# Aliases

@ -0,0 +1,27 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Containers(_Ibm):
_type = "containers"
_icon_dir = "resources/ibm/containers"
class CodeEngine(_Containers):
_icon = "code-engine.png"
class Kubernets(_Containers):
_icon = "kubernets.png"
class Openshift(_Containers):
_icon = "openshift.png"
class Registry(_Containers):
_icon = "registry.png"
# Aliases

@ -0,0 +1,99 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Database(_Ibm):
_type = "database"
_icon_dir = "resources/ibm/database"
class Cloudant(_Database):
_icon = "cloudant.png"
class ComposeEnterprise(_Database):
_icon = "compose-enterprise.png"
class ComposeJanusgraph(_Database):
_icon = "compose-janusgraph.png"
class ComposeMysql(_Database):
_icon = "compose-mysql.png"
class ComposeRethinkdb(_Database):
_icon = "compose-rethinkdb.png"
class ComposeScylladb(_Database):
_icon = "compose-scylladb.png"
class Datastax(_Database):
_icon = "datastax.png"
class DB2Warehouse(_Database):
_icon = "db2-warehouse.png"
class DB2(_Database):
_icon = "db2.png"
class Edb(_Database):
_icon = "edb.png"
class Elasticsearch(_Database):
_icon = "elasticsearch.png"
class Etcd(_Database):
_icon = "etcd.png"
class HyperProtectDbaas(_Database):
_icon = "hyper-protect-dbaas.png"
class Influx(_Database):
_icon = "influx.png"
class Informix(_Database):
_icon = "informix.png"
class Match(_Database):
_icon = "match.png"
class Mongodb(_Database):
_icon = "mongodb.png"
class Portworx(_Database):
_icon = "portworx.png"
class Postgresql(_Database):
_icon = "postgresql.png"
class Rabbitmq(_Database):
_icon = "rabbitmq.png"
class Redis(_Database):
_icon = "redis.png"
class SqlQuery(_Database):
_icon = "sql-query.png"
# Aliases

@ -0,0 +1,155 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Devtools(_Ibm):
_type = "devtools"
_icon_dir = "resources/ibm/devtools"
class Accern(_Devtools):
_icon = "accern.png"
class Alloy(_Devtools):
_icon = "alloy.png"
class ApiGateway(_Devtools):
_icon = "api-gateway.png"
class AppConfiguration(_Devtools):
_icon = "app-configuration.png"
class Bondevalue(_Devtools):
_icon = "bondevalue.png"
class ContinuousDelivery(_Devtools):
_icon = "continuous-delivery.png"
class Difitek(_Devtools):
_icon = "difitek.png"
class DomainNameRegistration(_Devtools):
_icon = "domain-name-registration.png"
class Dwolla(_Devtools):
_icon = "dwolla.png"
class Esri(_Devtools):
_icon = "esri.png"
class GeoWs(_Devtools):
_icon = "geo-ws.png"
class Hazardhub(_Devtools):
_icon = "hazardhub.png"
class HealthScore(_Devtools):
_icon = "health-score.png"
class Hydrogen(_Devtools):
_icon = "hydrogen.png"
class NaturalLanguageGeneration(_Devtools):
_icon = "natural-language-generation.png"
class Nexmo(_Devtools):
_icon = "nexmo.png"
class Powerlytics(_Devtools):
_icon = "powerlytics.png"
class Quovo(_Devtools):
_icon = "quovo.png"
class Rainbow(_Devtools):
_icon = "rainbow.png"
class Relsci(_Devtools):
_icon = "relsci.png"
class RiskEngine(_Devtools):
_icon = "risk-engine.png"
class Schematics(_Devtools):
_icon = "schematics.png"
class Sendgrid(_Devtools):
_icon = "sendgrid.png"
class Sizeup(_Devtools):
_icon = "sizeup.png"
class Splice(_Devtools):
_icon = "splice.png"
class Strands(_Devtools):
_icon = "strands.png"
class Toolchains(_Devtools):
_icon = "toolchains.png"
class TotumRisk(_Devtools):
_icon = "totum-risk.png"
class Tradeit(_Devtools):
_icon = "tradeit.png"
class Twilio(_Devtools):
_icon = "twilio.png"
class Ucloud(_Devtools):
_icon = "ucloud.png"
class Wealthengine(_Devtools):
_icon = "wealthengine.png"
class WireAccountVerificationService(_Devtools):
_icon = "wire-account-verification-service.png"
class Xignite(_Devtools):
_icon = "xignite.png"
class Ylabs(_Devtools):
_icon = "ylabs.png"
class Yodlee(_Devtools):
_icon = "yodlee.png"
# Aliases

@ -0,0 +1,43 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Integration(_Ibm):
_type = "integration"
_icon_dir = "resources/ibm/integration"
class ApiConnect(_Integration):
_icon = "api-connect.png"
class AppConnect(_Integration):
_icon = "app-connect.png"
class EventStreams(_Integration):
_icon = "event-streams.png"
class Lift(_Integration):
_icon = "lift.png"
class Mq(_Integration):
_icon = "mq.png"
class RocketMainframe(_Integration):
_icon = "rocket-mainframe.png"
class SecureGateway(_Integration):
_icon = "secure-gateway.png"
class SimpleCloudIo(_Integration):
_icon = "simple-cloud-io.png"
# Aliases

@ -0,0 +1,43 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Iot(_Ibm):
_type = "iot"
_icon_dir = "resources/ibm/iot"
class BoschRollouts(_Iot):
_icon = "bosch-rollouts.png"
class CarDiagnostic(_Iot):
_icon = "car-diagnostic.png"
class DataPlans(_Iot):
_icon = "data-plans.png"
class Flow(_Iot):
_icon = "flow.png"
class IotPlatform(_Iot):
_icon = "iot-platform.png"
class Portworx(_Iot):
_icon = "portworx.png"
class Skyhook(_Iot):
_icon = "skyhook.png"
class UnificationEngine(_Iot):
_icon = "unification-engine.png"
# Aliases

@ -0,0 +1,15 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Migration(_Ibm):
_type = "migration"
_icon_dir = "resources/ibm/migration"
class CloudMigration(_Migration):
_icon = "cloud-migration.png"
# Aliases

@ -0,0 +1,75 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Ml(_Ibm):
_type = "ml"
_icon_dir = "resources/ibm/ml"
class Annotator(_Ml):
_icon = "annotator.png"
class KnowledgeStudio(_Ml):
_icon = "knowledge-studio.png"
class LanguageTranslator(_Ml):
_icon = "language-translator.png"
class MachineLearning(_Ml):
_icon = "machine-learning.png"
class Match360(_Ml):
_icon = "match-360.png"
class NaturalLanguageClassifier(_Ml):
_icon = "natural-language-classifier.png"
class NaturalLanguageUnderstanding(_Ml):
_icon = "natural-language-understanding.png"
class PersonalityInsights(_Ml):
_icon = "personality-insights.png"
class SpeechToText(_Ml):
_icon = "speech-to-text.png"
class TextToSpeech(_Ml):
_icon = "text-to-speech.png"
class ToneAnalyzer(_Ml):
_icon = "tone-analyzer.png"
class WatsonAssistant(_Ml):
_icon = "watson-assistant.png"
class WatsonDiscovery(_Ml):
_icon = "watson-discovery.png"
class WatsonKnowledgeCatalog(_Ml):
_icon = "watson-knowledge-catalog.png"
class WatsonOpenscale(_Ml):
_icon = "watson-openscale.png"
class WatsonStudio(_Ml):
_icon = "watson-studio.png"
# Aliases

@ -0,0 +1,39 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Mobile(_Ibm):
_type = "mobile"
_icon_dir = "resources/ibm/mobile"
class B2T(_Mobile):
_icon = "b2t.png"
class Bitbar(_Mobile):
_icon = "bitbar.png"
class Match360(_Mobile):
_icon = "match-360.png"
class Phunware(_Mobile):
_icon = "phunware.png"
class PushNotifications(_Mobile):
_icon = "push-notifications.png"
class Telstra(_Mobile):
_icon = "telstra.png"
class Twilio(_Mobile):
_icon = "twilio.png"
# Aliases

@ -0,0 +1,23 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Monitoring(_Ibm):
_type = "monitoring"
_icon_dir = "resources/ibm/monitoring"
class ActivityTracker(_Monitoring):
_icon = "activity-tracker.png"
class LogAnalysis(_Monitoring):
_icon = "log-analysis.png"
class Monitoring(_Monitoring):
_icon = "monitoring.png"
# Aliases

@ -0,0 +1,79 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Network(_Ibm):
_type = "network"
_icon_dir = "resources/ibm/network"
class CDN(_Network):
_icon = "cdn.png"
class DirectLinkVPC(_Network):
_icon = "direct-link-vpc.png"
class DirectLink(_Network):
_icon = "direct-link.png"
class DNS(_Network):
_icon = "dns.png"
class Firewall(_Network):
_icon = "firewall.png"
class GatewayAppliance(_Network):
_icon = "gateway-appliance.png"
class InternetServices(_Network):
_icon = "internet-services.png"
class IpsecVPN(_Network):
_icon = "ipsec-vpn.png"
class LBaaS(_Network):
_icon = "lbaas.png"
class LocalLoadBalancing(_Network):
_icon = "local-load-balancing.png"
class Subnets(_Network):
_icon = "subnets.png"
class TransitGateway(_Network):
_icon = "transit-gateway.png"
class Vlan(_Network):
_icon = "vlan.png"
class VPCEndpoints(_Network):
_icon = "vpc-endpoints.png"
class VPCFlowlogs(_Network):
_icon = "vpc-flowlogs.png"
class VPC(_Network):
_icon = "vpc.png"
class VPN(_Network):
_icon = "vpn.png"
# Aliases

@ -0,0 +1,59 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Security(_Ibm):
_type = "security"
_icon_dir = "resources/ibm/security"
class AppId(_Security):
_icon = "app-id.png"
class CertificateManager(_Security):
_icon = "certificate-manager.png"
class Contrast(_Security):
_icon = "contrast.png"
class Crypto(_Security):
_icon = "crypto.png"
class DataShield(_Security):
_icon = "data-shield.png"
class Fusionauth(_Security):
_icon = "fusionauth.png"
class Hsm(_Security):
_icon = "hsm.png"
class KeyProtect(_Security):
_icon = "key-protect.png"
class Raxak(_Security):
_icon = "raxak.png"
class SecretsManager(_Security):
_icon = "secrets-manager.png"
class SslCertificates(_Security):
_icon = "ssl-certificates.png"
class Twilio(_Security):
_icon = "twilio.png"
# Aliases

@ -0,0 +1,43 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Ibm
class _Storage(_Ibm):
_type = "storage"
_icon_dir = "resources/ibm/storage"
class BlockStorageVolumes(_Storage):
_icon = "block-storage-volumes.png"
class BlockStorage(_Storage):
_icon = "block-storage.png"
class Box(_Storage):
_icon = "box.png"
class CloudBackup(_Storage):
_icon = "cloud-backup.png"
class FileStorage(_Storage):
_icon = "file-storage.png"
class MassDataMigration(_Storage):
_icon = "mass-data-migration.png"
class ObjectStorage(_Storage):
_icon = "object-storage.png"
class Portworx(_Storage):
_icon = "portworx.png"
# Aliases

@ -0,0 +1,215 @@
---
id: ibm
title: Ibm
---
Node classes list of ibm provider.
## ibm.analytics
- **diagrams.ibm.analytics.AnalyticsEngine**
- **diagrams.ibm.analytics.Cognos**
- **diagrams.ibm.analytics.Match360**
- **diagrams.ibm.analytics.Powerlytics**
- **diagrams.ibm.analytics.Streaming**
## ibm.blockchain
- **diagrams.ibm.blockchain.BlockchainPlatform**
## ibm.compute
- **diagrams.ibm.compute.Autoscale**
- **diagrams.ibm.compute.BareMetal**
- **diagrams.ibm.compute.Citrix**
- **diagrams.ibm.compute.CloudFoundry**
- **diagrams.ibm.compute.CodeEngine**
- **diagrams.ibm.compute.DedicatedHost**
- **diagrams.ibm.compute.Dizzion**
- **diagrams.ibm.compute.Functions**
- **diagrams.ibm.compute.HpVirtualServers**
- **diagrams.ibm.compute.Hsm**
- **diagrams.ibm.compute.PowerSystems**
- **diagrams.ibm.compute.Satellite**
- **diagrams.ibm.compute.Skytap**
- **diagrams.ibm.compute.VirtualServer**
- **diagrams.ibm.compute.VMware**
- **diagrams.ibm.compute.VPCVirtualServer**
## ibm.containers
- **diagrams.ibm.containers.CodeEngine**
- **diagrams.ibm.containers.Kubernets**
- **diagrams.ibm.containers.Openshift**
- **diagrams.ibm.containers.Registry**
## ibm.database
- **diagrams.ibm.database.Cloudant**
- **diagrams.ibm.database.ComposeEnterprise**
- **diagrams.ibm.database.ComposeJanusgraph**
- **diagrams.ibm.database.ComposeMysql**
- **diagrams.ibm.database.ComposeRethinkdb**
- **diagrams.ibm.database.ComposeScylladb**
- **diagrams.ibm.database.Datastax**
- **diagrams.ibm.database.DB2Warehouse**
- **diagrams.ibm.database.DB2**
- **diagrams.ibm.database.Edb**
- **diagrams.ibm.database.Elasticsearch**
- **diagrams.ibm.database.Etcd**
- **diagrams.ibm.database.HyperProtectDbaas**
- **diagrams.ibm.database.Influx**
- **diagrams.ibm.database.Informix**
- **diagrams.ibm.database.Match**
- **diagrams.ibm.database.Mongodb**
- **diagrams.ibm.database.Portworx**
- **diagrams.ibm.database.Postgresql**
- **diagrams.ibm.database.Rabbitmq**
- **diagrams.ibm.database.Redis**
- **diagrams.ibm.database.SqlQuery**
## ibm.devtools
- **diagrams.ibm.devtools.Accern**
- **diagrams.ibm.devtools.Alloy**
- **diagrams.ibm.devtools.ApiGateway**
- **diagrams.ibm.devtools.AppConfiguration**
- **diagrams.ibm.devtools.Bondevalue**
- **diagrams.ibm.devtools.ContinuousDelivery**
- **diagrams.ibm.devtools.Difitek**
- **diagrams.ibm.devtools.DomainNameRegistration**
- **diagrams.ibm.devtools.Dwolla**
- **diagrams.ibm.devtools.Esri**
- **diagrams.ibm.devtools.GeoWs**
- **diagrams.ibm.devtools.Hazardhub**
- **diagrams.ibm.devtools.HealthScore**
- **diagrams.ibm.devtools.Hydrogen**
- **diagrams.ibm.devtools.NaturalLanguageGeneration**
- **diagrams.ibm.devtools.Nexmo**
- **diagrams.ibm.devtools.Powerlytics**
- **diagrams.ibm.devtools.Quovo**
- **diagrams.ibm.devtools.Rainbow**
- **diagrams.ibm.devtools.Relsci**
- **diagrams.ibm.devtools.RiskEngine**
- **diagrams.ibm.devtools.Schematics**
- **diagrams.ibm.devtools.Sendgrid**
- **diagrams.ibm.devtools.Sizeup**
- **diagrams.ibm.devtools.Splice**
- **diagrams.ibm.devtools.Strands**
- **diagrams.ibm.devtools.Toolchains**
- **diagrams.ibm.devtools.TotumRisk**
- **diagrams.ibm.devtools.Tradeit**
- **diagrams.ibm.devtools.Twilio**
- **diagrams.ibm.devtools.Ucloud**
- **diagrams.ibm.devtools.Wealthengine**
- **diagrams.ibm.devtools.WireAccountVerificationService**
- **diagrams.ibm.devtools.Xignite**
- **diagrams.ibm.devtools.Ylabs**
- **diagrams.ibm.devtools.Yodlee**
## ibm.integration
- **diagrams.ibm.integration.ApiConnect**
- **diagrams.ibm.integration.AppConnect**
- **diagrams.ibm.integration.EventStreams**
- **diagrams.ibm.integration.Lift**
- **diagrams.ibm.integration.Mq**
- **diagrams.ibm.integration.RocketMainframe**
- **diagrams.ibm.integration.SecureGateway**
- **diagrams.ibm.integration.SimpleCloudIo**
## ibm.iot
- **diagrams.ibm.iot.BoschRollouts**
- **diagrams.ibm.iot.CarDiagnostic**
- **diagrams.ibm.iot.DataPlans**
- **diagrams.ibm.iot.Flow**
- **diagrams.ibm.iot.IotPlatform**
- **diagrams.ibm.iot.Portworx**
- **diagrams.ibm.iot.Skyhook**
- **diagrams.ibm.iot.UnificationEngine**
## ibm.migration
- **diagrams.ibm.migration.CloudMigration**
## ibm.ml
- **diagrams.ibm.ml.Annotator**
- **diagrams.ibm.ml.KnowledgeStudio**
- **diagrams.ibm.ml.LanguageTranslator**
- **diagrams.ibm.ml.MachineLearning**
- **diagrams.ibm.ml.Match360**
- **diagrams.ibm.ml.NaturalLanguageClassifier**
- **diagrams.ibm.ml.NaturalLanguageUnderstanding**
- **diagrams.ibm.ml.PersonalityInsights**
- **diagrams.ibm.ml.SpeechToText**
- **diagrams.ibm.ml.TextToSpeech**
- **diagrams.ibm.ml.ToneAnalyzer**
- **diagrams.ibm.ml.WatsonAssistant**
- **diagrams.ibm.ml.WatsonDiscovery**
- **diagrams.ibm.ml.WatsonKnowledgeCatalog**
- **diagrams.ibm.ml.WatsonOpenscale**
- **diagrams.ibm.ml.WatsonStudio**
## ibm.mobile
- **diagrams.ibm.mobile.B2T**
- **diagrams.ibm.mobile.Bitbar**
- **diagrams.ibm.mobile.Match360**
- **diagrams.ibm.mobile.Phunware**
- **diagrams.ibm.mobile.PushNotifications**
- **diagrams.ibm.mobile.Telstra**
- **diagrams.ibm.mobile.Twilio**
## ibm.monitoring
- **diagrams.ibm.monitoring.ActivityTracker**
- **diagrams.ibm.monitoring.LogAnalysis**
- **diagrams.ibm.monitoring.Monitoring**
## ibm.network
- **diagrams.ibm.network.CDN**
- **diagrams.ibm.network.DirectLinkVPC**
- **diagrams.ibm.network.DirectLink**
- **diagrams.ibm.network.DNS**
- **diagrams.ibm.network.Firewall**
- **diagrams.ibm.network.GatewayAppliance**
- **diagrams.ibm.network.InternetServices**
- **diagrams.ibm.network.IpsecVPN**
- **diagrams.ibm.network.LBaaS**
- **diagrams.ibm.network.LocalLoadBalancing**
- **diagrams.ibm.network.Subnets**
- **diagrams.ibm.network.TransitGateway**
- **diagrams.ibm.network.Vlan**
- **diagrams.ibm.network.VPCEndpoints**
- **diagrams.ibm.network.VPCFlowlogs**
- **diagrams.ibm.network.VPC**
- **diagrams.ibm.network.VPN**
## ibm.security
- **diagrams.ibm.security.AppId**
- **diagrams.ibm.security.CertificateManager**
- **diagrams.ibm.security.Contrast**
- **diagrams.ibm.security.Crypto**
- **diagrams.ibm.security.DataShield**
- **diagrams.ibm.security.Fusionauth**
- **diagrams.ibm.security.Hsm**
- **diagrams.ibm.security.KeyProtect**
- **diagrams.ibm.security.Raxak**
- **diagrams.ibm.security.SecretsManager**
- **diagrams.ibm.security.SslCertificates**
- **diagrams.ibm.security.Twilio**
## ibm.storage
- **diagrams.ibm.storage.BlockStorageVolumes**
- **diagrams.ibm.storage.BlockStorage**
- **diagrams.ibm.storage.Box**
- **diagrams.ibm.storage.CloudBackup**
- **diagrams.ibm.storage.FileStorage**
- **diagrams.ibm.storage.MassDataMigration**
- **diagrams.ibm.storage.ObjectStorage**
- **diagrams.ibm.storage.Portworx**

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:#41D6C3;}
.st1{fill:#FFFFFF;}
.st2{fill:#00639F;}
</style>
<rect x="11.2" y="8.2" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.729 18.1074)" class="st0" width="15.6" height="15.6"/>
<title>DDE_32</title>
<rect x="16" y="20.5" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.5928 18.8213)" class="st1" width="3.9" height="1"/>
<polygon class="st1" points="21.9,13.9 21.2,14.6 22.6,16 21.2,17.4 21.9,18.1 24,16 "/>
<rect x="6.1" y="10.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -5.2894 8.8323)" class="st2" width="3.9" height="1"/>
<polygon class="st2" points="13,6.4 14.4,7.8 15.1,7.1 13,5 10.9,7.1 11.6,7.8 "/>
<polygon class="st2" points="13,25.6 11.6,24.2 10.9,24.9 13,27 15.1,24.9 14.4,24.2 "/>
<polygon class="st2" points="4.1,13.9 2,16 4.1,18.1 4.8,17.4 3.4,16 4.8,14.6 "/>
<rect x="7.5" y="19.1" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.5301 11.8294)" class="st2" width="1" height="3.9"/>
<rect x="17.4" y="9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -2.5132 15.8715)" class="st1" width="1" height="3.9"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@ -1,58 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="MDM" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#_Line_4_);}
.st1{fill:url(#_Line_5_);}
.st2{fill:url(#_Line_6_);}
.st3{fill:url(#_G3__1_);}
.st4{fill:url(#_G2__1_);}
.st5{fill:url(#_G1__1_);}
.st6{fill:#061F80;}
</style>
<linearGradient id="_Line_4_" gradientUnits="userSpaceOnUse" x1="5.1031" y1="794.8531" x2="36.9231" y2="763.1031" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_3_" class="st0" d="M28,26h-2V12c0-1.1-0.9-2-2-2h-2V8h2c2.2,0,4,1.8,4,4V26z"/>
<linearGradient id="_Line_5_" gradientUnits="userSpaceOnUse" x1="2.425" y1="791.275" x2="33.765" y2="759.935" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<rect id="_Line_2_" x="15" y="13" class="st1" width="2" height="13.4"/>
<linearGradient id="_Line_6_" gradientUnits="userSpaceOnUse" x1="-3.6914" y1="784.9086" x2="27.0386" y2="754.0386" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0" style="stop-color:#A66EFA;stop-opacity:0"/>
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_1_" class="st2" d="M6,26H4V12c0-2.2,1.8-4,4-4h2v2H8c-1.1,0-2,0.9-2,2V26z"/>
<linearGradient id="_G3__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2057.7102" x2="-2344.4302" y2="2057.7102" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G3_" x="4" y="20" class="st3" width="2" height="8"/>
<linearGradient id="_G2__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2046.7101" x2="-2344.4302" y2="2046.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G2_" x="15" y="20" class="st4" width="2" height="8"/>
<linearGradient id="_G1__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2035.7101" x2="-2344.4302" y2="2035.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G1_" x="26" y="20" class="st5" width="2" height="8"/>
<path id="circle_1" class="st6" d="M5,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S6.1,26,5,26z"/>
<path id="circle_2" class="st6" d="M16,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,26,16,26z"/>
<path id="circle_3" class="st6" d="M27,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S28.1,26,27,26z"/>
<polygon id="_Star_" class="st6" points="16,2 17.5,5 20.8,5.4 18.4,7.7 19,11 16.1,9.4 13,11 13.6,7.7 11.2,5.4 14.6,5 "/>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16,0A16,16,0,1,0,32,16,16,16,0,0,0,16,0ZM9,22H7V10H9Zm13,3H10V23H22ZM22,9H10V7H22Zm3,13H23V10h2Z" style="fill:#13171a"/></svg>

Before

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Citrix_Virtual_Apps" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#Cloud_2_);}
.st1{fill:url(#Fade_2_);}
.st2{fill:#001D6C;}
</style>
<linearGradient id="Cloud_2_" gradientUnits="userSpaceOnUse" x1="-0.5587" y1="30.1981" x2="29.3067" y2="0.3328">
<stop offset="0.1" style="stop-color:#08BDBA"/>
<stop offset="0.9" style="stop-color:#0F62FE"/>
</linearGradient>
<path id="Cloud_1_" class="st0" d="M16,4L16,4C16,4,16,4,16,4C16,4,16,4,16,4L16,4c-4.3,0-7.9,3-8.8,7.1c-3,0.6-5.2,3.3-5.2,6.4
C2,21.1,4.9,24,8.5,24H19v-2H8.5C6,22,4,20,4,17.5c0-2.3,1.8-4.3,4.1-4.5L9,13l0.1-0.8C9.5,8.6,12.5,6,16,6c3.9,0,7,3.1,7,7h2
C25,8,21,4,16,4z"/>
<linearGradient id="Fade_2_" gradientUnits="userSpaceOnUse" x1="89.0004" y1="-24.4996" x2="100.0004" y2="-24.4996" gradientTransform="matrix(1 0 0 1 -80.0004 46.9996)">
<stop offset="6.597684e-04" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="0.8" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect id="Fade_1_" x="9" y="19" class="st1" width="11" height="7"/>
<path id="Squares_1_" class="st2" d="M19,16h4v4h-4V16z M19,27h4v-4h-4V27z M26,27h4v-4h-4V27z M26,16v4h4v-4H26z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 212 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.3.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:#737373;}
.st1{fill:#F7991C;}
.st2{fill:#A6A6A6;}
.st3{fill:#F7991F;stroke:#404040;stroke-width:1.1862;stroke-miterlimit:10;}
</style>
<path class="st0" d="M17.4,24.2c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4s0.6-1.4,1.4-1.4C16.8,22.8,17.4,23.4,17.4,24.2z"/>
<path class="st1" d="M16.5,31.3c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5C16.3,30.8,16.5,31,16.5,31.3z"
/>
<path class="st0" d="M22.8,21c0.5,0.5,0.5,1.4,0,2c-0.5,0.5-1.4,0.5-2,0c-0.5-0.5-0.5-1.4,0-2C21.4,20.4,22.2,20.4,22.8,21z"/>
<path class="st1" d="M27.1,26.7c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7
C26.6,26.5,26.9,26.5,27.1,26.7z"/>
<path class="st0" d="M11.3,23.2c-0.5,0.5-1.4,0.5-2,0c-0.5-0.5-0.5-1.4,0-2c0.5-0.5,1.4-0.5,2,0C11.8,21.8,11.8,22.7,11.3,23.2z"/>
<path class="st1" d="M5.7,27.6c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0C5.9,27.1,5.9,27.4,5.7,27.6z"
/>
<path class="st2" d="M16.8,28.1c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8c0-0.4,0.4-0.8,0.8-0.8C16.5,27.3,16.8,27.6,16.8,28.1
z"/>
<path class="st2" d="M25.1,24.2c0.3,0.3,0.3,0.8,0,1.1c-0.3,0.3-0.8,0.3-1.1,0c-0.3-0.3-0.3-0.8,0-1.1
C24.3,23.9,24.8,23.9,25.1,24.2z"/>
<path class="st2" d="M8.1,25.6c-0.3,0.3-0.8,0.3-1.1,0c-0.3-0.3-0.3-0.8,0-1.1c0.3-0.3,0.8-0.3,1.1,0C8.4,24.8,8.4,25.3,8.1,25.6z"
/>
<path class="st0" d="M9.5,10.6c-0.5-0.5-0.5-1.4,0-2c0.5-0.5,1.4-0.5,2,0c0.5,0.5,0.5,1.4,0,2C10.9,11.1,10,11.1,9.5,10.6z"/>
<path class="st1" d="M5.1,4.9C5,4.7,5,4.4,5.2,4.2C5.4,4,5.7,4,5.9,4.2c0.2,0.2,0.2,0.5,0,0.7C5.7,5.1,5.3,5.1,5.1,4.9z"/>
<path class="st0" d="M20.6,8.5c0.5-0.5,1.4-0.5,2,0c0.5,0.5,0.5,1.4,0,2c-0.5,0.5-1.4,0.5-2,0C20,9.9,20,9.1,20.6,8.5z"/>
<path class="st2" d="M7.2,7.4c-0.3-0.3-0.3-0.8,0-1.1c0.3-0.3,0.8-0.3,1.1,0c0.3,0.3,0.3,0.8,0,1.1C8,7.7,7.5,7.7,7.2,7.4z"/>
<path class="st2" d="M23.7,6.2c0.3-0.3,0.8-0.3,1.1,0c0.3,0.3,0.3,0.8,0,1.1c-0.3,0.3-0.8,0.3-1.1,0C23.4,7,23.4,6.5,23.7,6.2z"/>
<path class="st1" d="M26.2,4.1c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7c-0.2,0.2-0.5,0.2-0.7,0C26,4.7,26,4.3,26.2,4.1z"/>
<path class="st0" d="M14.6,7.8c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4C15.2,9.2,14.6,8.6,14.6,7.8z"/>
<path class="st1" d="M15.5,0.7c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5C15.7,1.2,15.5,1,15.5,0.7z"/>
<path class="st2" d="M15.2,3.9c0-0.4,0.4-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8C15.6,4.7,15.2,4.4,15.2,3.9z"/>
<path class="st3" d="M19.4,15.9c0,1.9-1.5,3.4-3.4,3.4c-1.9,0-3.4-1.5-3.4-3.4c0-1.9,1.5-3.4,3.4-3.4C17.9,12.5,19.4,14,19.4,15.9z"
/>
<path class="st0" d="M24.2,14.5c0.8,0,1.4,0.6,1.4,1.4c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4C22.8,15.1,23.5,14.5,24.2,14.5
z"/>
<path class="st2" d="M28.1,15.1c0.4,0,0.8,0.4,0.8,0.8c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8C27.3,15.4,27.7,15.1,28.1,15.1
z"/>
<path class="st1" d="M31.3,15.4c0.3,0,0.5,0.2,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5C30.8,15.6,31,15.4,31.3,15.4z"
/>
<path class="st0" d="M7.8,17.4c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C9.2,16.8,8.5,17.4,7.8,17.4z"/>
<path class="st2" d="M3.9,16.8c-0.4,0-0.8-0.4-0.8-0.8c0-0.4,0.4-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8C4.7,16.5,4.3,16.8,3.9,16.8z"/>
<path class="st1" d="M0.7,16.5c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5C1.2,16.3,1,16.5,0.7,16.5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49 (51002) - http://www.bohemiancoding.com/sketch -->
<title>IBM Cloud Functions Logo Primary 32px</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="IBM-Cloud-Functions-Logo-Primary-32px" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="IBM-Cloud-Functions-Logo-Primary">
<path d="M25.28126,4.05048212 C24.7776809,4.16168457 24.146,4.57120859 23.807,5.41520859 C23.417,6.38220859 23.22,7.83720859 23.114,9.33520859 L23.943,9.50020859 C24.419,9.59220859 26.793,10.2022086 26.806,13.2282086 C26.818,16.2582086 24.45,16.8882086 23.997,16.9792086 L22.951,17.1972086 C22.735,23.2962086 20.881,27.9022086 17.428,30.9042086 C17.286,31.0272086 17.142,31.1392086 17,31.2532086 C20.621,30.9782086 24.164,29.4842086 26.934,26.7152086 C33.092,20.5582086 33.092,10.5742086 26.934,4.41620859 C26.843,4.32520859 26.2097095,3.84545804 25.28126,4.05048212 Z" id="Fill-1-Copy-3" fill="#50E3C2"></path>
<path d="M8.5805,17.323 L7.5945,17.122 C7.1185,17.029 4.7465,16.408 4.7465,13.381 C4.7465,10.352 7.1195,9.733 7.5735,9.643 L9.1765,9.316 C9.9905,5.511 11.6505,2.5 14.1265,0.348 C14.2675,0.226 14.4105,0.114 14.5535,0 C10.9325,0.276 7.3875,1.77 4.6185,4.538 C-1.39501171,10.5524883 -1.5361098,20.2136328 4.19520575,26.3973853 C4.98948802,27.1496827 7.39478717,26.7733656 7.9555,25.218 C8.4625,23.394 8.5615,20.397 8.5805,17.323 Z" id="Fill-4-Copy-3" fill="#50E3C2"></path>
<path d="M6.52739858,31.454 C6.58939858,31.464 7.07939858,31.535 7.83839858,31.535 C9.57139858,31.535 12.7073986,31.163 15.3793986,28.842 C18.4523986,26.17 19.9683986,21.754 19.8883986,15.723 L19.8883986,15.382 C19.8883986,15.237 19.8893986,15.1 19.8893986,14.957 L23.3023986,14.244 C23.7073986,14.163 23.7263986,13.842 23.7243986,13.442 C23.7233986,13.043 23.6993986,12.725 23.2943986,12.647 L19.9243986,11.978 C20.0773986,5.595 20.8743986,1.816 24.7623986,1.764 C25.2013986,1.758 25.2573986,1.415 25.2893986,0.977 C25.3193986,0.538 25.3143986,0.149 24.8793986,0.082 C24.8193986,0.072 24.3293986,0 23.5703986,0 C21.8383986,0 18.7003986,0.372 16.0293986,2.692 C13.6643986,4.749 12.2313986,7.852 11.7283986,11.924 L8.10939858,12.662 C7.70439858,12.742 7.68239858,13.06 7.68239858,13.461 C7.68239858,13.86 7.70439858,14.179 8.10939858,14.259 L11.5383986,14.957 C11.5343986,15.246 11.5173986,15.52 11.5203986,15.816 L11.5203986,16.145 C11.5143986,24.584 11.1833986,29.711 6.64539858,29.772 C6.20539858,29.778 6.03539858,30.121 6.00439858,30.558 C5.97439858,30.998 6.09239858,31.387 6.52739858,31.454" id="Fill-7-Copy-2" fill="#236B5B"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<style type="text/css">
.st0{fill:none;stroke:#000000;stroke-linejoin:round;}
</style>
<path id="shield" class="st0" d="M27.7,7.2L16,1C4.3,7.3,16,1,4.3,7.3 M3.3,9.5c1.1,5.9,2.8,10.6,5.2,13.9c2.1,2.9,4.1,4.9,6.1,6
M17.4,29.4c2.5-1.3,4.7-3.5,6.6-6.5c2.1-3.2,3.7-7.7,4.7-13.5"/>
<path d="M29,10 C27.8954305,10 27,9.1045695 27,8 C27,6.8954305 27.8954305,6 29,6 C30.1045695,6 31,6.8954305 31,8 C31,9.1045695 30.1045695,10 29,10 Z M29,9 C29.5522847,9 30,8.55228475 30,8 C30,7.44771525 29.5522847,7 29,7 C28.4477153,7 28,7.44771525 28,8 C28,8.55228475 28.4477153,9 29,9 Z" id="circle" fill="#000000" fill-rule="nonzero"></path>
<path d="M3,10 C1.8954305,10 1,9.1045695 1,8 C1,6.8954305 1.8954305,6 3,6 C4.1045695,6 5,6.8954305 5,8 C5,9.1045695 4.1045695,10 3,10 Z M3,9 C3.55228475,9 4,8.55228475 4,8 C4,7.44771525 3.55228475,7 3,7 C2.44771525,7 2,7.44771525 2,8 C2,8.55228475 2.44771525,9 3,9 Z" id="circle" fill="#000000" fill-rule="nonzero"></path>
<path d="M16,32 C14.8954305,32 14,31.1045695 14,30 C14,28.8954305 14.8954305,28 16,28 C17.1045695,28 18,28.8954305 18,30 C18,31.1045695 17.1045695,32 16,32 Z M16,31 C16.5522847,31 17,30.5522847 17,30 C17,29.4477153 16.5522847,29 16,29 C15.4477153,29 15,29.4477153 15,30 C15,30.5522847 15.4477153,31 16,31 Z" id="circle" fill="#000000" fill-rule="nonzero"></path>
<path d="M20.7187159,8.67649507 L25.0944783,11.136781 C25.4267509,11.3236023 25.4361387,11.7986223 25.111507,11.9984261 L20.7404509,14.6887157 L25.0944783,17.136781 C25.4267509,17.3236023 25.4361387,17.7986223 25.111507,17.9984261 L16.2364725,23.460816 C16.0778314,23.5584562 15.8780641,23.5598103 15.7181138,23.4643297 L6.56745596,18.0019398 C6.24194222,17.8076277 6.242634,17.3358964 6.56871624,17.1425399 L9.2208213,15.5699252 C9.45834508,15.429081 9.76507287,15.5074554 9.90591698,15.7449792 C10.0467611,15.982503 9.96838674,16.2892307 9.73086296,16.4300748 L7.80163072,17.5740488 L15.9704318,22.4503295 L23.863867,17.5920924 L20.0288348,15.4358337 C19.9456383,15.3890563 19.8809933,15.3220288 19.8376029,15.2443989 L16.2364725,17.460816 C16.0778314,17.5584562 15.8780641,17.5598103 15.7181138,17.4643297 L6.56745596,12.0019398 C6.24194222,11.8076277 6.242634,11.3358964 6.56871624,11.1425399 L9.2208213,9.56992515 C9.45834508,9.42908104 9.76507287,9.50745539 9.90591698,9.74497917 C10.0467611,9.98250295 9.96838674,10.2892307 9.73086296,10.4300748 L7.80163072,11.5740488 L15.9704318,16.4503295 L23.863867,11.5920924 L20.0288348,9.43583374 C19.9401754,9.38598471 19.8725837,9.31313905 19.8293311,9.22897224 L15.9831205,11.6182009 L8.24698349,7.12761921 C8.00816027,6.98898992 7.92693704,6.6830042 8.06556633,6.44418098 C8.20419563,6.20535776 8.51018134,6.12413453 8.74900456,6.26276382 L15.9656694,10.4518084 L24.2791114,5.28757907 C24.5136804,5.14186708 24.8219591,5.21389993 24.9676711,5.44846895 C25.1133831,5.68303797 25.0413502,5.99131664 24.8067812,6.13702864 L20.7187159,8.67649507 Z" id="vserver" fill="#000000" fill-rule="nonzero"></path>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@ -1,45 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="IBMPower" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#GradientStroke_1_);}
.st1{fill:url(#RightMask_1_);}
.st2{fill:url(#LeftMask_1_);}
.st3{fill:url(#BottomMask_1_);}
.st4{fill:url(#TopMask_1_);}
.st5{fill:#061F80;}
</style>
<linearGradient id="GradientStroke_1_" gradientUnits="userSpaceOnUse" x1="1.535735e-02" y1="31.9846" x2="31.5974" y2="0.4026">
<stop offset="0.1" style="stop-color:#00BAB6"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="GradientStroke" class="st0" d="M9.1,17h-2C7,16.7,7,16.3,7,16c0-5,4-9,9-9c2.2,0,4.2,0.8,5.8,2.1l-1.3,1.5
C19.3,9.6,17.7,9,16,9c-3.9,0-7,3.1-7,7C9,16.3,9,16.7,9.1,17z M13,4.4C14,4.1,15,4,16,4c6.6,0,12,5.4,12,12c0,3.3-1.3,6.3-3.5,8.5
l1.4,1.4c2.5-2.5,4.1-6,4.1-9.9c0-7.7-6.3-14-14-14c-1,0-2,0.1-3,0.3V4.4z M19,27.6c-1,0.2-2,0.4-3,0.4C9.4,28,4,22.6,4,16
c0-3.3,1.3-6.3,3.5-8.5L6.1,6.1C3.6,8.6,2,12.1,2,16c0,7.7,6.3,14,14,14c1,0,2-0.1,3-0.3V27.6z M23,16c0,3.9-3.1,7-7,7
c-1.7,0-3.3-0.6-4.5-1.7l-1.3,1.5c1.6,1.3,3.6,2.1,5.8,2.1c5,0,9-4,9-9c0-0.3,0-0.7-0.1-1h-2C23,15.3,23,15.7,23,16z"/>
<linearGradient id="RightMask_1_" gradientUnits="userSpaceOnUse" x1="18.6665" y1="1543.7086" x2="22.1365" y2="1530.7585" gradientTransform="matrix(1 0 0 1 0 -1516)">
<stop offset="0.29" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="0.87" style="stop-color:#FFFFFF"/>
</linearGradient>
<path id="RightMask" class="st1" d="M22,14l-6,9l7,2l3-10L22,14z"/>
<linearGradient id="LeftMask_1_" gradientUnits="userSpaceOnUse" x1="-567.3335" y1="792.7086" x2="-563.8635" y2="779.7586" gradientTransform="matrix(-1 0 0 -1 -554 797)">
<stop offset="0.29" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="0.87" style="stop-color:#FFFFFF"/>
</linearGradient>
<path id="LeftMask" class="st2" d="M10,18l6-9L9,7L6,17L10,18z"/>
<linearGradient id="BottomMask_1_" gradientUnits="userSpaceOnUse" x1="-1148.1216" y1="4.5" x2="-1132.8074" y2="4.5" gradientTransform="matrix(-1 0 0 -1 -1124 32)">
<stop offset="0.3931" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path id="BottomMask" class="st3" d="M8,24v7h12v-5L8,24z"/>
<linearGradient id="TopMask_1_" gradientUnits="userSpaceOnUse" x1="7.8785" y1="1520.5" x2="23.1926" y2="1520.5" gradientTransform="matrix(1 0 0 1 0 -1516)">
<stop offset="0.3931" style="stop-color:#FFFFFF"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<path id="TopMask" class="st4" d="M24,8V1H12v5L24,8z"/>
<path id="SolidStroke_1_" class="st5" d="M16,14c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S14.9,14,16,14z M9,4c0.6,0,1,0.4,1,1
S9.6,6,9,6S8,5.6,8,5S8.4,4,9,4z M23,26c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S22.4,26,23,26z M23,11c0.6,0,1,0.4,1,1s-0.4,1-1,1
s-1-0.4-1-1S22.4,11,23,11z M9,19c0.6,0,1,0.4,1,1s-0.4,1-1,1s-1-0.4-1-1S8.4,19,9,19z"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="31px" height="30px" viewBox="0 0 31 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 59.1 (86144) - https://sketch.com -->
<title>elements/logos/grey</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M15.4761022,0.000166058484 C17.8814594,0.000166058484 20.2004661,0.691799644 22.1757318,1.81643073 C20.9734683,1.55696435 19.7712049,1.38384838 18.5689415,1.38384838 C12.90012,1.38384838 8.08982086,4.23880886 7.40275388,8.04486931 C6.9734927,9.86113398 7.83243021,11.5046978 9.55030522,12.4562129 C10.4088276,12.9751457 11.3537004,13.2346121 12.2985731,13.2346121 C14.1023834,13.2346121 15.7347383,12.283097 16.5932607,11.7641642 C16.7651312,11.7641642 16.8506513,11.6773986 16.9370017,11.5910482 C19.512984,10.1206004 21.7468857,9.42855163 23.6362161,9.42855163 C27.4152921,9.42855163 29.8206492,12.0236306 30.2499104,16.0023919 C30.2499104,24.2197959 23.2928902,30.0156522 15.4761022,30.0156522 C13.0715754,30.0156522 10.7525686,29.3236034 8.77688783,28.1993875 C9.9795664,28.5452043 11.1818298,28.6319699 12.3845084,28.6319699 C17.9669795,28.6319699 22.7776938,25.7770094 23.5502809,21.9709489 C23.8940219,20.1546843 23.1210197,18.5111204 21.4027295,17.5596053 C20.5442072,17.1270229 19.5997495,16.8675566 18.6544616,16.8675566 C16.8506513,16.8675566 15.2191267,17.7327213 14.2738388,18.251654 C14.1879035,18.3380044 14.1023834,18.3380044 13.9305129,18.42477 C10.3228923,20.6732019 2.76474042,23.1823456 0.703124346,14.0997768 C0.703124346,5.795192 7.66014453,0.000166058484 15.4761022,0.000166058484 Z M-0.000133333334,15.085583 C1.63512759,21.3032278 5.50844172,24.2391418 14.4598243,19.489454 C15.6645786,18.7986507 18.2463729,17.0720576 20.9149327,18.5400146 C21.2590889,18.7986507 22.9807003,19.7489203 22.5497785,21.8213302 C21.0868032,29.333816 0.774114348,31.5789267 -0.000133333334,15.6041006 L-0.000133333334,15.6041006 Z M18.5627143,2.50158803 L18.8212463,2.50380937 C24.4270322,2.60021127 30.2814615,5.84372259 30.8751206,14.060504 L30.8751206,14.060504 L30.8751206,14.9298201 C29.2390294,8.67190615 25.3653001,5.89084169 16.4965316,10.6712503 C15.2054269,11.2794395 12.7079073,13.0176567 9.95299705,11.5401513 C9.60842569,11.3666202 7.97274963,10.3229426 8.40325625,8.32442877 C9.00604854,4.84799441 13.6556861,2.50158803 18.5627143,2.50158803 L18.5627143,2.50158803 Z" id="path-1"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard" transform="translate(-57.000000, -10.000000)">
<g id="elements/logos/grey" transform="translate(57.000000, 10.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<use id="Combined-Shape" fill="#9A9B9B" xlink:href="#path-1"></use>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" data-name="Layer 1" viewBox="0 0 144 144"><rect width="144" height="144" rx="7.2" ry="7.2" fill="#717073"/><path d="M28.56 54.24a6 6 0 0 0-8-3 5.84 5.84 0 0 0-2.92 8l13.39 29.1c2.1 4.56 4.33 7 8.49 7 4.45 0 6.39-2.61 8.49-7L59.82 62.7a1.69 1.69 0 0 1 1.68-1.09 1.87 1.87 0 0 1 1.85 1.88v24.87c0 3.83 2.13 7 6.22 7s6.3-3.15 6.3-7V67.98c0-3.93 2.81-6.47 6.64-6.47a6.09 6.09 0 0 1 6.38 6.47v20.35c0 3.83 2.14 7 6.22 7s6.31-3.15 6.31-7V67.98c0-3.93 2.8-6.47 6.64-6.47a6.1 6.1 0 0 1 6.39 6.47v20.35c0 3.83 2.13 7 6.22 7s6.3-3.15 6.3-7V65.17c-.02-8.47-6.86-14.47-15.09-14.47a19.34 19.34 0 0 0-13.38 5.69c-2.74-3.55-6.51-5.69-12.9-5.69-6.74 0-12.64 5.69-12.64 5.69a15.13 15.13 0 0 0-11.27-5.69c-6 0-10.72 2.63-13.61 9.25l-8.55 20.16z" fill="#fff"/></svg>

Before

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><path d="M16.04 24.413c0 .576-.408 1.042-.91 1.042-.503 0-.91-.466-.91-1.042s.407-1.041.91-1.041c.502 0 .91.466.91 1.041zm1.502-9.597a.522.522 0 0 0 .35-.647.512.512 0 0 0-.64-.355 1.473 1.473 0 0 1-.654.042.515.515 0 0 0-.59.434.52.52 0 0 0 .428.597 2.467 2.467 0 0 0 1.106-.071zm-1.599-.598a.522.522 0 0 0-.349-.648l-.852-.255a.522.522 0 0 0-.292 1l.852.255a.517.517 0 0 0 .641-.353zm2.67.238l.845-.284a.524.524 0 0 0 .326-.66.515.515 0 0 0-.653-.33l-.844.284a.524.524 0 0 0 .164 1.017.522.522 0 0 0 .163-.027zm-4.588-.811a.523.523 0 0 0-.349-.648l-.851-.254a.515.515 0 0 0-.642.352.523.523 0 0 0 .35.648l.851.255a.516.516 0 0 0 .641-.353zm6.486.172l.843-.285a.524.524 0 0 0 .326-.66.516.516 0 0 0-.653-.33l-.843.285a.524.524 0 0 0 .164 1.017.508.508 0 0 0 .163-.027zm-8.403-.745a.523.523 0 0 0-.349-.648l-.852-.254a.515.515 0 0 0-.641.353.523.523 0 0 0 .348.648l.853.254a.516.516 0 0 0 .641-.353zm10.3.106l.843-.284a.524.524 0 0 0 .327-.66.518.518 0 0 0-.654-.33l-.842.283a.524.524 0 0 0 .163 1.017.521.521 0 0 0 .163-.026zM10.191 12.5a.522.522 0 0 0-.35-.648l-.852-.255a.522.522 0 0 0-.292 1l.852.256a.517.517 0 0 0 .641-.353zm17.908-1.24l.843-.284a.524.524 0 0 0 .326-.66.516.516 0 0 0-.653-.33l-.843.284a.524.524 0 0 0 .163 1.017.508.508 0 0 0 .164-.027zm-23.661-.477a.523.523 0 0 0-.35-.649l-.852-.254a.517.517 0 0 0-.64.353.523.523 0 0 0 .348.648l.852.254a.517.517 0 0 0 .641-.353zm25.557-.162l.843-.284a.524.524 0 0 0 .243-.817.485.485 0 0 0 .277.051.52.52 0 0 0 .466-.568c-.049-.514-.397-.931-.937-1.076-.277-.075-.531.1-.605.378-.073.278.117.57.392.645.073.02.114.07.121.152a.53.53 0 0 0 .108.272.52.52 0 0 0-.392-.027l-.843.283a.524.524 0 0 0 .164 1.017.522.522 0 0 0 .163-.026zM2.52 10.21a.523.523 0 0 0-.349-.648l-.779-.233a.539.539 0 0 1-.085-.262c0-.02.003-.036.008-.05a.516.516 0 1 0-.965-.372c-.051.135-.076.28-.075.426 0 .318.12.665.322.927.051.066.105.132.175.166a.514.514 0 0 0 .255.144l.852.254a.517.517 0 0 0 .641-.353zm-.63-1.398l.859-.233a.523.523 0 0 0-.268-1.008l-.858.233a.523.523 0 0 0 .268 1.008zm28.29-.533a.523.523 0 0 0-.367-.638l-.858-.23a.513.513 0 0 0-.631.371.523.523 0 0 0 .366.638l.86.23a.517.517 0 0 0 .63-.371zm-26.358.008l.858-.234a.523.523 0 0 0 .364-.64.517.517 0 0 0-.633-.368l-.858.234a.523.523 0 0 0 .134 1.026c.045 0 .09-.006.135-.018zm24.425-.525a.522.522 0 0 0-.367-.637l-.859-.23a.522.522 0 0 0-.264 1.009l.859.23a.517.517 0 0 0 .63-.372zm-22.495 0l.858-.234a.523.523 0 0 0-.268-1.008l-.858.233a.523.523 0 0 0 .268 1.008zm20.562-.516a.522.522 0 0 0-.366-.637l-.86-.23a.522.522 0 0 0-.264 1.009l.86.23a.517.517 0 0 0 .63-.372zm-18.631-.01l.858-.234a.523.523 0 0 0-.268-1.008l-.858.233a.523.523 0 0 0 .268 1.008zm16.698-.506a.522.522 0 0 0-.367-.638l-.859-.229a.522.522 0 0 0-.264 1.009l.859.23a.517.517 0 0 0 .631-.372zM9.614 6.71l.858-.234a.523.523 0 0 0 .364-.64.517.517 0 0 0-.633-.368l-.858.234a.523.523 0 0 0 .134 1.026c.045 0 .09-.006.135-.018zm12.834-.496a.522.522 0 0 0-.367-.638l-.86-.229a.522.522 0 0 0-.264 1.009l.86.23a.517.517 0 0 0 .63-.372zm-10.904-.03l.858-.233a.523.523 0 0 0-.268-1.008l-.858.233a.523.523 0 0 0 .268 1.008zm8.971-.486a.522.522 0 0 0-.367-.638l-.86-.23a.522.522 0 0 0-.264 1.009l.86.23a.517.517 0 0 0 .631-.371zm-7.04-.04l.858-.233a.523.523 0 0 0-.268-1.008l-.858.233a.523.523 0 0 0 .268 1.008zm5.107-.477a.522.522 0 0 0-.367-.637l-.86-.23a.522.522 0 0 0-.264 1.009l.86.23a.517.517 0 0 0 .63-.372zm-3.176-.048l.179-.049c.156-.044.32-.053.485-.027.277.044.544-.152.587-.437s-.15-.55-.432-.594a2.204 2.204 0 0 0-.909.05l-.18.05a.523.523 0 0 0 .135 1.025c.045 0 .09-.006.135-.018zM32 17.833v3.889c0 .799-.498 1.499-1.24 1.741l-13.563 4.45a1.746 1.746 0 0 1-1.046.014l-14.87-4.472C.52 23.226-.007 22.496 0 21.682l.036-3.739a1.43 1.43 0 0 1 1.036-1.368l3.522-.918-3.567-1.065a1.205 1.205 0 0 1-.859-1.184 1.204 1.204 0 0 1 .886-1.165l3.56-.969a.514.514 0 0 1 .54-.822l.853.255a.502.502 0 0 1 .209.131l9.1-2.478a2.176 2.176 0 0 1 1.137-.002l9.481 2.53.784-.263a.516.516 0 0 1 .653.33.516.516 0 0 1-.006.316l3.573.954c.516.138.873.596.89 1.14a1.21 1.21 0 0 1-.818 1.198l-3.166 1.067 3.102.815c.62.161 1.054.732 1.054 1.388zm-15.588.264c.294.089.6.084.891-.015l13.38-4.509c.097-.033.115-.113.113-.175 0-.06-.024-.138-.122-.164l-5.188-1.385a.514.514 0 0 1-.338.405l-.844.284a.518.518 0 0 1-.653-.33.523.523 0 0 1 .327-.66l.17-.056-7.96-2.125a1.163 1.163 0 0 0-.603.001L8.124 11.4c.14.13.206.331.149.528a.516.516 0 0 1-.641.353l-.853-.254a.504.504 0 0 1-.257-.19l-5.2 1.415c-.099.027-.12.107-.121.169 0 .062.019.142.118.171l15.093 4.506zM2.12 17.38l14.441 4.46c.064.02.138.018.205-.005l13.398-4.515-4.118-1.083-8.417 2.836a2.476 2.476 0 0 1-1.51.025l-9.597-2.864-4.402 1.146zm28.848.77l-13.88 4.677a1.406 1.406 0 0 1-.823.012L1.066 18.145l-.034 3.547a.783.783 0 0 0 .544.763l14.869 4.471c.143.043.292.04.433-.005l13.563-4.45a.778.778 0 0 0 .527-.75V18.15z" fill="#69a1d6"/></svg>

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

@ -1 +0,0 @@
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1693 1996.66"><path d="M0 584.44c0 26.86 14.78 53.73 44.31 74.11l694.72 479.41c59.08 40.77 155.77 40.78 214.86 0l694.77-479.34c29.55-20.38 44.32-47.26 44.32-74.13v828.13c0 26.87-14.77 53.74-44.32 74.13l-694.77 479.34c-59.09 40.77-155.78 40.76-214.86 0L44.31 1486.67C14.77 1466.29 0 1439.42 0 1412.54z"/><path d="M0 584.44c0 26.86 14.78 53.73 44.31 74.11L537 998.51l202.1-139.43c59.09-40.77 155.78-40.76 214.86 0L1156 998.53l492.67-339.9c29.55-20.39 44.32-47.26 44.32-74.13v-.38c0-26.88-14.77-53.75-44.31-74.13L954 30.58c-59.12-40.75-155.8-40.75-214.89-.01L44.34 509.91C14.79 530.29 0 557.17 0 584.03v818.2z" fill="#0f6fff"/></svg>

Before

Width:  |  Height:  |  Size: 703 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="OpenShiftLogo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="32px" height="32px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:#A30000;}
.st1{fill:#CC0000;}
.st2{fill:#820000;}
</style>
<path id="shadow3" class="st0" d="M9.3,14.46993l-5.13,1.90009c0.06,0.84004,0.19,1.68007,0.41,2.49011l4.89-1.82008
C9.28,16.20001,9.22,15.32997,9.3,14.46993 M32,8.66968c-0.36-0.76003-0.77-1.48007-1.26-2.1901l-5.13,1.90008
c0.6,0.62003,1.1,1.32006,1.51,2.07009L32,8.66968z"/>
<path id="top" class="st1" d="M20.69,7.17961c1.04,0.50002,1.98,1.18005,2.77,2.02009l5.13-1.90008
C23.9,0.53932,14.74-1.02075,8.12,3.78946C3.92,6.8496,1.62,11.91982,2,17.18005l5.13-1.93009
c0.39-5.35024,4.97-9.38041,10.21-8.9604C18.5,6.36957,19.65,6.67959,20.69,7.17961 M4.89,18.72012L0,20.5402
c0.44,1.82008,1.23,3.56016,2.31,5.07022l5.1-1.88008C6.1041,22.33848,5.22889,20.59841,4.89,18.72012"/>
<path id="bottom" class="st1" d="M26.18,16.76003c-0.08,1.18005-0.38,2.3001-0.85,3.36015c-2.25,4.87021-7.9,6.97031-12.71,4.71021
c-1.03979-0.49714-1.97886-1.18198-2.77-2.02009l-5.13,1.91008c1.45,2.10009,3.43,3.78017,5.71,4.87021
c7.36,3.50015,16.11,0.25001,19.54-7.25032c1.07-2.3301,1.54-4.93022,1.32-7.48033L26.18,16.76003z"/>
<path id="right_side" class="st1" d="M27.47,10.34975l-4.88,1.82008c0.91425,1.67888,1.3338,3.58257,1.21,5.49024l5.13-1.90008
C28.76,13.87991,28.27,12.05983,27.47,10.34975"/>
<path id="shadow2" class="st2" d="M9.28,15.49998c0-0.36002,0-0.70003,0.03-1.06005l-5.13,1.90008
c0.03,0.34002,0.06,0.67003,0.11,1.01004C4.29,17.35006,9.28,15.49998,9.28,15.49998z M31.26,7.26961
c-0.16-0.28001-0.33-0.53002-0.52-0.78004l-5.13,1.90008c0.22,0.22001,0.44,0.48002,0.63,0.76003
C26.24,9.1497,31.26,7.26961,31.26,7.26961z"/>
<path id="shadow" class="st0" d="M4.72,24.75039c0.38,0.56002,0.82,1.12005,1.32,1.62007l5.57-2.07009
c-0.63-0.42002-1.23-0.90004-1.76-1.46006C9.85,22.8403,4.72,24.75039,4.72,24.75039z M31.31,14.85995l-5.13,1.90009
c-0.05,0.76003-0.19,1.51007-0.44,2.2401l5.57-2.07009C31.37,16.23001,31.37,15.52998,31.31,14.85995"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

@ -1 +0,0 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" width="64" height="64" xml:space="preserve"><style>.st0{fill:#9e7bff}.st1{fill:#0f3659}</style><path class="st0" d="M15.8 55.6l-11.6-8c.8.5 1.8.6 2.9.2l26.7-10.1c2.3-.9 4.1-3.6 4.1-6V3.2c0-1.2-.5-2.1-1.2-2.7l11.5 7.9c.7.5 1.2 1.4 1.2 2.7v28.5c0 2.4-1.9 5.1-4.1 6L18.7 55.8c-1.2.4-2.2.3-2.9-.2z"/><path class="st0" d="M59.8 16.4l-6.5-4.5c.7.5 1.2 1.4 1.2 2.7v28.5c0 2.4-1.9 5.1-4.1 6L23.7 59.2c-1.1.4-2.2.3-2.9-.2l6.5 4.5c.7.5 1.8.6 2.9.2l26.7-10.1c2.3-.9 4.1-3.6 4.1-6V19c0-1.2-.5-2.1-1.2-2.6z"/><path class="st1" d="M48.2 8.4c-.7-.5-1.8-.6-2.9-.2L18.7 18.4c-2.3.9-4.1 3.6-4.1 6v28.5c0 1.2.5 2.1 1.2 2.7L4.3 47.7C3.5 47.1 3 46.2 3 45V16.5c0-2.4 1.9-5.1 4.1-6L33.8.3c1.1-.4 2.2-.3 2.9.2l11.5 7.9z"/><path class="st1" d="M20.8 59c-.7-.5-1.2-1.4-1.2-2.7V27.8c0-2.4 1.9-5.1 4.1-6l26.7-10.1c1.1-.4 2.2-.3 2.9.2l6.5 4.5c-.7-.5-1.8-.6-2.9-.2L30.2 26.3c-2.3.9-4.1 3.6-4.1 6v28.5c0 1.2.5 2.1 1.2 2.7L20.8 59z"/></svg>

Before

Width:  |  Height:  |  Size: 987 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1.2299" y1="1.4089" x2="29.5689" y2="30.7547" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="0.1" style="stop-color:#4589FF"/>
<stop offset="0.8995" style="stop-color:#0043CE"/>
</linearGradient>
<path class="st0" d="M4.2,7.9H10c1,0,2,0.2,2.8,0.5c0.9,0.3,1.6,0.8,2.2,1.5c0.6,0.7,1.1,1.5,1.4,2.5s0.5,2.2,0.5,3.5
s-0.2,2.5-0.5,3.5s-0.8,1.8-1.4,2.5c-0.6,0.7-1.3,1.2-2.2,1.5S11,23.9,10,23.9H4.2C4.2,23.9,4.2,7.9,4.2,7.9z M10.1,21.3
c1.1,0,2-0.3,2.7-1s1-1.7,1-3.1v-2.5c0-1.4-0.3-2.4-1-3.1s-1.6-1-2.7-1H7.3v10.7H10.1z M23.8,24.3c-1.1,0-2.1-0.2-2.9-0.6
s-1.5-0.9-2.1-1.6l1.8-1.7c0.4,0.5,0.9,0.9,1.5,1.2c0.5,0.3,1.1,0.4,1.8,0.4s1.2-0.1,1.5-0.4s0.5-0.6,0.5-1s-0.1-0.6-0.3-0.8
c-0.2-0.2-0.6-0.3-1.1-0.4l-1.2-0.2C22,19,21,18.6,20.3,18s-1-1.4-1-2.5c0-0.6,0.1-1.1,0.3-1.6c0.2-0.5,0.5-0.9,0.9-1.2
s0.9-0.6,1.4-0.8c0.6-0.2,1.2-0.3,1.9-0.3c0.6,0,1.1,0,1.6,0.1s0.9,0.2,1.2,0.4s0.7,0.4,1,0.6s0.6,0.5,0.9,0.8l-1.7,1.7
c-0.4-0.4-0.8-0.7-1.3-0.9s-1-0.4-1.6-0.4s-1.1,0.1-1.4,0.3s-0.4,0.5-0.4,0.9s0.1,0.7,0.4,0.9c0.2,0.2,0.5,0.3,1.2,0.5
c0.3,0.1,1.3,0.3,1.3,0.3c2.4,0.3,3.7,1.8,3.7,3.3c0,0.6,0,1.1-0.3,1.6c-0.2,0.5-0.5,0.9-0.9,1.3c-0.4,0.4-0.7,0.6-1.5,1
C25.2,24.4,24.6,24.3,23.8,24.3z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Thicker WoC</title>
<g id="Thicker-WoC" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group">
<path d="M17.0939536,3.04308228 C15.5619536,2.16008228 13.6379536,2.05808228 12.0159536,2.77708228 L11.9649536,2.79908228 L11.9289536,2.75808228 C11.5339536,2.31308228 11.0699536,1.93508228 10.5509536,1.63608228 C9.69195356,1.14008228 8.71095356,0.878082275 7.71395356,0.878082275 C6.73695356,0.878082275 5.77595356,1.13408228 4.93495356,1.62008228 C2.64395356,2.94308228 1.58795356,5.72908228 2.42395356,8.24508228 L2.44095356,8.29808228 L2.39695356,8.33008228 C0.951953564,9.38408228 0.0889535645,11.0780823 0.0889535645,12.8610823 C0.0889535645,14.8900823 1.13195356,16.7040823 2.87895356,17.7120823 C3.12095356,17.8520823 3.37695356,17.9750823 3.63895356,18.0780823 C3.71895356,18.1100823 3.80495356,18.1260823 3.89095356,18.1260823 C4.17695356,18.1260823 4.42895356,17.9550823 4.53395356,17.6890823 C4.65795356,17.3740823 4.53095356,17.0080823 4.23695356,16.8380823 C4.20695356,16.8210823 4.17495356,16.8050823 4.14495356,16.7940823 C3.94695356,16.7160823 3.75395356,16.6220823 3.57095356,16.5170823 C2.25495356,15.7570823 1.46895356,14.3900823 1.46895356,12.8610823 C1.46895356,11.3350823 2.29695356,9.92108228 3.62895356,9.17308228 L3.72095356,9.10808228 C3.74295356,9.09108228 3.76095356,9.07408228 3.78095356,9.05408228 C3.80195356,9.03208228 3.80995356,9.02408228 3.81895356,9.01408228 C3.83595356,8.99308228 3.84995356,8.97308228 3.87095356,8.94008228 L3.89395356,8.90408228 C3.90595356,8.88208228 3.91495356,8.86108228 3.93295356,8.81708228 L3.94495356,8.78608228 C3.95395356,8.75908228 3.95895356,8.73408228 3.96895356,8.68708228 L3.97495356,8.65108228 C3.97695356,8.62808228 3.97795356,8.60308228 3.97795356,8.58208228 C3.97895356,8.55008228 3.97895356,8.53408228 3.97695356,8.51808228 C3.97495356,8.49708228 3.97195356,8.47408228 3.96795356,8.44908228 C3.96295356,8.42708228 3.95995356,8.40808228 3.95495356,8.39008228 C3.94795356,8.36408228 3.93895356,8.34108228 3.93195356,8.32708228 L3.91395356,8.27608228 C2.98395356,6.30608228 3.73495356,3.90708228 5.62495356,2.81508228 C6.90595356,2.07708228 8.58195356,2.08608228 9.86195356,2.82608228 C10.4039536,3.13908228 10.8569536,3.55608228 11.2109536,4.06608228 L11.2379536,4.09808228 C11.2529536,4.11708228 11.2689536,4.13608228 11.2849536,4.15308228 C11.3009536,4.17008228 11.3179536,4.18408228 11.3399536,4.20208228 C11.3589536,4.21808228 11.3749536,4.23108228 11.3899536,4.24008228 L11.4379536,4.27008228 C11.4639536,4.28408228 11.4859536,4.29608228 11.5049536,4.30408228 C11.5179536,4.31008228 11.5319536,4.31408228 11.5509536,4.32108228 C11.5899536,4.33408228 11.6119536,4.34008228 11.6339536,4.34508228 C11.6469536,4.34808228 11.6609536,4.35008228 11.6849536,4.35308228 C11.7119536,4.35608228 11.7389536,4.35908228 11.7689536,4.36008228 L11.8139536,4.35808228 C11.8469536,4.35608228 11.8729536,4.35408228 11.9009536,4.34908228 L11.9419536,4.33908228 C11.9789536,4.32908228 12.0019536,4.32308228 12.0289536,4.31308228 L12.1189536,4.27008228 C13.4239536,3.49908228 15.1079536,3.48908228 16.4039536,4.23908228 C17.9169536,5.11208228 18.7289536,6.79408228 18.4709536,8.52408228 C18.4449536,8.70608228 18.4909536,8.88808228 18.5989536,9.03508228 C18.6569536,9.11208228 18.7269536,9.17508228 18.8079536,9.22208228 C18.8819536,9.26508228 18.9639536,9.29408228 19.0529536,9.30808228 C19.4289536,9.36008228 19.7819536,9.09508228 19.8369536,8.72708228 C20.1779536,6.43308228 19.1009536,4.20208228 17.0939536,3.04308228 L17.0939536,3.04308228 Z" id="Path" fill="#1B76BC"></path>
<path d="M14.2976536,17.7193823 L14.2716536,17.7663823 L9.07165356,17.7663823 L10.4106536,15.4443823 L10.4916536,15.4683823 C10.7626536,15.5473823 11.0396536,15.5883823 11.3166536,15.5883823 C12.6686536,15.5883823 13.8376536,14.6693823 14.1586536,13.3533823 L14.1756536,13.2793823 L16.8616536,13.2773823 L14.2976536,17.7193823 Z M10.4956536,9.85238228 L10.4146536,9.87638228 L9.52265356,8.33438228 L9.07565356,7.54938228 L14.2606536,7.54938228 L16.8586536,12.0493823 L14.1786536,12.0493823 L14.1586536,11.9673823 C13.9686536,11.1923823 13.4656536,10.5203823 12.7786536,10.1233823 C12.1016536,9.73138228 11.2766536,9.62438228 10.4956536,9.85238228 L10.4956536,9.85238228 Z M10.1906536,11.5363823 C10.4926536,11.2353823 10.8926536,11.0693823 11.3176536,11.0693823 C11.5976536,11.0693823 11.8726536,11.1423823 12.1126536,11.2823823 C12.6056536,11.5663823 12.9126536,12.0953823 12.9126536,12.6633823 C12.9126536,13.5423823 12.1966536,14.2583823 11.3176536,14.2583823 C11.0396536,14.2583823 10.7646536,14.1843823 10.5236536,14.0453823 C10.0296536,13.7613823 9.72265356,13.2313823 9.72265356,12.6633823 C9.72265356,12.2383823 9.88865356,11.8383823 10.1906536,11.5363823 L10.1906536,11.5363823 Z M5.44465356,12.7123823 L5.41465356,12.6603823 L8.00365356,8.17638228 L8.01165356,8.16038228 L9.31565356,10.4173823 L9.35765356,10.4893823 L9.29665356,10.5473823 C8.71065356,11.1073823 8.38865356,11.8573823 8.38965356,12.6603823 C8.38865356,13.4643823 8.71165356,14.2153823 9.29865356,14.7773823 L9.35965356,14.8333823 L8.01165356,17.1573823 L5.44465356,12.7123823 Z M18.2286536,11.7703823 L15.5426536,7.11938228 C15.3876536,6.84938228 15.1626536,6.62438228 14.8916536,6.46838228 C14.6196536,6.31138228 14.3126536,6.22838228 14.0016536,6.22838228 L13.9986536,6.22838228 L8.63265356,6.22838228 C8.47065356,6.21838228 8.30265356,6.25238228 8.14565356,6.29938228 C7.86665356,6.37738228 7.60765356,6.52538228 7.39565356,6.72838228 C7.27465356,6.84738228 7.17065356,6.98038228 7.08665356,7.12338228 L4.40465356,11.7673823 C4.08765356,12.3193823 4.08765356,13.0023823 4.40465356,13.5513823 L7.08965356,18.2083823 C7.18165356,18.3603823 7.28565356,18.4903823 7.39665356,18.5963823 C7.50365356,18.6983823 7.62165356,18.7853823 7.74565356,18.8573823 C7.86965356,18.9283823 8.00065356,18.9853823 8.13365356,19.0233823 C8.29265356,19.0693823 8.46065356,19.0933823 8.63165356,19.0933823 L14.0036536,19.0933823 C14.6366536,19.0933823 15.2276536,18.7513823 15.5456536,18.2013823 L18.2286536,13.5543823 C18.5466536,13.0043823 18.5466536,12.3203823 18.2286536,11.7703823 L18.2286536,11.7703823 Z" id="Fill-3" fill="#1B76BC"></path>
<rect id="Rectangle" x="0" y="0" width="20" height="20"></rect>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.9096" y1="0.8096" x2="31.1806" y2="31.0807" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="0.1004" style="stop-color:#FA4D56"/>
<stop offset="0.8972" style="stop-color:#0043CE"/>
</linearGradient>
<path class="st0" d="M4.2,24V7.9h10.6v2.7H7.3v3.9H14v2.7H7.3v4.1h7.5V24H4.2z M17.8,24V12h2.9v2h0.1c0.2-0.6,0.6-1.2,1.2-1.6
c0.5-0.4,1.3-0.7,2.2-0.7c1.2,0,2.3,0.5,3,1.3c0.7,0.8,0.9,1.9,0.9,3.4V24h-2.9v-7.3c0-1.3-0.2-1.5-0.5-1.9s-0.8-0.6-1.5-0.6
c-0.3,0-0.6,0-0.9,0.1s-0.5,0.2-0.8,0.4c-0.2,0.2-0.4,0.4-0.5,0.6c-0.1,0.2-0.2,0.5-0.2,0.8V24C20.8,24,17.8,24,17.8,24z"/>
</svg>

Before

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.9903" y1="30.4217" x2="30.1814" y2="1.2305">
<stop offset="9.954491e-02" style="stop-color:#EE5396"/>
<stop offset="0.8983" style="stop-color:#8A3FFC"/>
</linearGradient>
<path class="st0" d="M5.2,24V7.9h10.6v2.7H8.3v3.9H15v2.7H8.3v4.1h7.5V24H5.2z M22.8,24.3c-1.1,0-2.1-0.2-2.9-0.6s-1.5-0.9-2.1-1.6
l1.8-1.7c0.4,0.5,0.9,0.9,1.5,1.2c0.5,0.3,1.1,0.4,1.8,0.4s1.2-0.1,1.5-0.4s0.5-0.6,0.5-1s-0.1-0.6-0.3-0.8
c-0.2-0.2-0.6-0.3-1.1-0.4l-1.2-0.2c-1.3-0.2-2.3-0.5-3-1.1s-1-1.4-1-2.5c0-0.6,0.1-1.1,0.3-1.6c0.2-0.5,0.6-1,1-1.3
s0.8-0.5,1.3-0.7c0.6-0.2,1.2-0.3,1.9-0.3c0.6,0,1.1,0,1.6,0.1s0.8,0.2,1.2,0.4c0.4,0.2,0.7,0.4,1,0.6s0.6,0.5,0.9,0.8l-1.7,1.7
c-0.4-0.4-0.8-0.7-1.3-0.9s-1-0.4-1.6-0.4c-0.7,0-1.1,0.1-1.4,0.3s-0.4,0.5-0.4,0.9s0.1,0.7,0.4,0.9c0.2,0.2,0.6,0.3,1.2,0.4
c0.3,0.1,1.2,0.2,1.2,0.2c2.2,0.3,3.8,1.5,3.8,3.5c0,0.6,0,1.1-0.2,1.6c-0.3,0.5-0.5,1-0.9,1.3s-0.7,0.6-1.5,0.9
C24.2,24.3,23.5,24.3,22.8,24.3z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.8684" y1="0.5684" x2="31.527" y2="31.227" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="0.1004" style="stop-color:#08BDBA"/>
<stop offset="0.9" style="stop-color:#0F62FE"/>
</linearGradient>
<path class="st0" d="M6.7,24V7.9h10.6v2.7H9.7v3.9h6.7v2.7H9.7v4.1h7.5V24H6.7z M24,24c-1,0-1.8-0.3-2.3-0.8s-0.8-1.3-0.8-2.3v-6.6
h-1.8V12H20c0.4,0,0.7-0.1,0.9-0.3s0.2-0.5,0.2-0.9v-2h2.6V12h2.5v2.4h-2.5v7.3H26V24H24z"/>
</svg>

Before

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16 1.08L4.51 7.71 4 6.84 15.75.07a.5.5 0 0 1 .5 0l11.69 6.74-.5.87zM2.76 9.6l1-.18Q5.34 18.23 8.9 23.1a20 20 0 0 0 5.94 5.83l-.49.88a20.91 20.91 0 0 1-6.25-6.12Q4.38 18.61 2.76 9.6zm14.86 20.2l-.47-.89a17.75 17.75 0 0 0 6.43-6.28q3.08-4.77 4.67-13.27l1 .18q-1.62 8.69-4.81 13.63a18.79 18.79 0 0 1-6.82 6.63z"/><path d="M29 10a2 2 0 1 1 2-2 2 2 0 0 1-2 2zm0-1a1 1 0 1 0-1-1 1 1 0 0 0 1 1z"/><path data-name="circle" d="M3 10a2 2 0 1 1 2-2 2 2 0 0 1-2 2zm0-1a1 1 0 1 0-1-1 1 1 0 0 0 1 1z"/><path data-name="circle" d="M16 32a2 2 0 1 1 2-2 2 2 0 0 1-2 2zm0-1a1 1 0 1 0-1-1 1 1 0 0 0 1 1z"/><path d="M8 21.44v.11a.45.45 0 0 1-.33.42.37.37 0 0 1-.21.06.45.45 0 0 1-.39-.25.45.45 0 0 1-.07-.23V9.45a.31.31 0 0 1 0-.1C7.24 7.85 11.07 7 16 7s8.76.85 9 2.35a.31.31 0 0 1 0 .1v12.1a.31.31 0 0 1 0 .1c-.24 1.5-4.07 2.35-9 2.35a31.28 31.28 0 0 1-5.29-.42.53.53 0 0 1-.4-.6.48.48 0 0 1 .53-.45 30.78 30.78 0 0 0 5.16.41 27.83 27.83 0 0 0 6-.57 7.24 7.24 0 0 0 1.72-.58 1.68 1.68 0 0 0 .33-.23v-.11a1.68 1.68 0 0 0-.33-.23 7.24 7.24 0 0 0-1.72-.59 27.83 27.83 0 0 0-6-.57 27.83 27.83 0 0 0-5.95.57 7.24 7.24 0 0 0-1.72.58 1.68 1.68 0 0 0-.33.23zm0-1.19c1.48-.81 4.45-1.25 8-1.25s6.52.44 8 1.25v-3.5c-1.48.81-4.45 1.25-8 1.25a31.28 31.28 0 0 1-5.29-.42.53.53 0 0 1-.4-.6.48.48 0 0 1 .53-.45 30.78 30.78 0 0 0 5.16.41 27.83 27.83 0 0 0 6-.57 7.24 7.24 0 0 0 1.72-.58 1.68 1.68 0 0 0 .33-.23v-.12a1.68 1.68 0 0 0-.33-.23 7.24 7.24 0 0 0-1.72-.58 27.83 27.83 0 0 0-6-.57 27.83 27.83 0 0 0-5.95.57 7.24 7.24 0 0 0-1.72.58 1.68 1.68 0 0 0-.33.23zm0-6c1.48-.81 4.45-1.25 8-1.25s6.52.44 8 1.25v-3.5c-1.48.81-4.45 1.25-8 1.25a31.28 31.28 0 0 1-5.29-.42.53.53 0 0 1-.4-.6.48.48 0 0 1 .53-.45 30.78 30.78 0 0 0 5.16.41 27.83 27.83 0 0 0 6-.57 7.24 7.24 0 0 0 1.72-.58 1.68 1.68 0 0 0 .28-.23v-.11a1.68 1.68 0 0 0-.33-.23A7.24 7.24 0 0 0 22 8.63a27.83 27.83 0 0 0-6-.57 27.83 27.83 0 0 0-5.95.57 7.24 7.24 0 0 0-1.72.58 1.68 1.68 0 0 0-.33.23z"/></svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@ -1,58 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="MDM" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#_Line_4_);}
.st1{fill:url(#_Line_5_);}
.st2{fill:url(#_Line_6_);}
.st3{fill:url(#_G3__1_);}
.st4{fill:url(#_G2__1_);}
.st5{fill:url(#_G1__1_);}
.st6{fill:#061F80;}
</style>
<linearGradient id="_Line_4_" gradientUnits="userSpaceOnUse" x1="5.1031" y1="794.8531" x2="36.9231" y2="763.1031" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_3_" class="st0" d="M28,26h-2V12c0-1.1-0.9-2-2-2h-2V8h2c2.2,0,4,1.8,4,4V26z"/>
<linearGradient id="_Line_5_" gradientUnits="userSpaceOnUse" x1="2.425" y1="791.275" x2="33.765" y2="759.935" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<rect id="_Line_2_" x="15" y="13" class="st1" width="2" height="13.4"/>
<linearGradient id="_Line_6_" gradientUnits="userSpaceOnUse" x1="-3.6914" y1="784.9086" x2="27.0386" y2="754.0386" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0" style="stop-color:#A66EFA;stop-opacity:0"/>
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_1_" class="st2" d="M6,26H4V12c0-2.2,1.8-4,4-4h2v2H8c-1.1,0-2,0.9-2,2V26z"/>
<linearGradient id="_G3__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2057.7102" x2="-2344.4302" y2="2057.7102" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G3_" x="4" y="20" class="st3" width="2" height="8"/>
<linearGradient id="_G2__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2046.7101" x2="-2344.4302" y2="2046.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G2_" x="15" y="20" class="st4" width="2" height="8"/>
<linearGradient id="_G1__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2035.7101" x2="-2344.4302" y2="2035.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G1_" x="26" y="20" class="st5" width="2" height="8"/>
<path id="circle_1" class="st6" d="M5,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S6.1,26,5,26z"/>
<path id="circle_2" class="st6" d="M16,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,26,16,26z"/>
<path id="circle_3" class="st6" d="M27,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S28.1,26,27,26z"/>
<polygon id="_Star_" class="st6" points="16,2 17.5,5 20.8,5.4 18.4,7.7 19,11 16.1,9.4 13,11 13.6,7.7 11.2,5.4 14.6,5 "/>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1.7203" y1="-0.4993" x2="32.0264" y2="29.8067" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="0.1" style="stop-color:#009D9A"/>
<stop offset="0.9" style="stop-color:#24A148"/>
</linearGradient>
<path class="st0" d="M14.3,12.7l-4.6,8.4l-4.6-8.7V24H2.2V7.9h3.4l4.2,7.9l4.1-7.9h3.3V24h-2.9V12.7L14.3,12.7z M31.7,25
c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1.1,1.2c-0.5,0.3-1.2,0.6-2.1,0.8c-0.9,0.2-1.7,0.2-2.8,0.2c-1,0-1.9-0.1-2.6-0.2
s-1.2-0.2-1.7-0.5c-0.5-0.3-0.8-0.6-1-1s-0.3-0.8-0.3-1.2c0-0.7,0.2-1.2,0.6-1.6s0.9-0.6,1.6-0.7v-0.3c-0.5-0.1-0.9-0.4-1.1-0.7
c-0.3-0.4-0.4-0.8-0.4-1.3c0-0.3,0.1-0.6,0.2-0.8c0.1-0.2,0.2-0.4,0.4-0.6s0.5-0.4,0.8-0.5s0.5-0.1,0.8-0.2v-0.1
c-0.7-0.3-1.3-0.8-1.6-1.4s-0.5-1.3-0.5-2.1c0-1.2,0.4-2.2,1.3-3c0.8-0.7,2.1-1.1,3.7-1.1c0.4,0,0.8,0,1.2,0.1
c0.5,0.1,0.6,0.1,0.9,0.2v-0.4c0-1.2,0.6-1.7,1.7-1.7H31v2.3h-2.6v0.3c0.6,0.4,1.1,0.8,1.4,1.4c0.3,0.6,0.5,1.2,0.5,2
c0,1.2-0.4,2.2-1.3,2.9c-0.8,0.7-2.1,1.1-3.7,1.1c-0.7,0-1.3-0.1-1.8-0.2c-0.2,0.1-0.4,0.2-0.6,0.4c-0.2,0.2-0.3,0.4-0.3,0.7
c0,0.6,0.5,0.9,1.6,0.9h3.2c1.5,0,2.5,0.3,3.2,0.9S31.7,23.9,31.7,25z M28.9,25.4c0-0.4-0.2-0.7-0.5-0.9c-0.3-0.2-0.8-0.3-1.6-0.3
h-4.1c-0.4,0.3-0.6,0.7-0.6,1.2s0.2,0.8,0.6,1.1c0.4,0.3,1,0.4,2,0.4h1.5c1,0,1.7-0.1,2.1-0.4S28.9,25.9,28.9,25.4z M25.3,17.8
c1.4,0,2.2-0.6,2.2-1.8v-0.4c0-1.2-0.7-1.8-2.2-1.8c-1.4,0-2.2,0.6-2.2,1.8V16C23.2,17.2,23.9,17.8,25.3,17.8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

@ -1 +0,0 @@
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 32 32" xml:space="preserve"><style></style><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="7.4037185" y1="26.8002033" x2="26.4823322" y2="7.7215896"><stop offset=".1008343" stop-color="#a56eff"/><stop offset=".9" stop-color="#0043ce"/></linearGradient><path d="M15.3212891 9.3144531c-.4130859-.4370117-.9160156-.7739258-1.5058594-1.0117188-.5908203-.237793-1.2539062-.3569336-1.9892578-.3569336H4.6035156V24h3.0361328v-6.1181641h4.1865234c.7353516 0 1.3984375-.1181641 1.9892578-.3564453.5898438-.2373047 1.0927734-.574707 1.5058594-1.0117188.4140625-.4370117.7285156-.9584961.9433594-1.5639648.2148438-.605957.3222656-1.2841797.3222656-2.0356445 0-.7358398-.1074219-1.4106445-.3222656-2.0239258s-.5292968-1.1386719-.9433593-1.5756836zm-1.8857422 4.128418c0 .5830078-.1689453 1.0317383-.5058594 1.3457031-.3369141.3144531-.7978516.4711914-1.3798828.4711914H7.6396484v-4.6689453h3.9101562c.5820312 0 1.0429688.1538086 1.3798828.4599609.3369141.3071289.5058594.7514648.5058594 1.3339844v1.0581055zm14.8466797 9.0512695c-.6669922-.6054688-1.7363281-.9091797-3.2080078-.9091797h-3.2197266c-1.0429688 0-1.5644531-.2988281-1.5644531-.8974609 0-.2597656.0839844-.4785156.2529297-.6542969.1689453-.1767578.3681641-.3183594.5976562-.4257812.5214844.1376953 1.1347656.2070312 1.8408203.2070312 1.640625 0 2.8779297-.3691406 3.7138672-1.1044922S27.9492188 17 27.9492188 15.7890625c0-.7358398-.1533203-1.3876953-.4599609-1.9550781-.3066406-.5668945-.7744141-1.0268555-1.4033203-1.3798828v-.3222656h2.5527344V9.8779297h-1.8623047c-1.1347656 0-1.7021484.5830078-1.7021484 1.7480469v.3911133c-.3066406-.1074219-.640625-.184082-1.0009766-.2299805s-.7246094-.0693359-1.0917969-.0693359c-1.6259766 0-2.8603516.371582-3.703125 1.1152344-.84375.7431641-1.265625 1.7270508-1.265625 2.9526367 0 .796875.1806641 1.4936523.5410156 2.0913086s.9082031 1.0644531 1.6445312 1.4023438v.0917969c-.2919922.0615234-.5673828.1503906-.828125.265625-.2607422.1142578-.4941406.2558594-.7011719.4257812-.2070312.1679688-.3720703.3720703-.4951172.609375-.1230469.2382812-.1835938.5117188-.1835938.8183594 0 .4921875.1337891.9179688.4023438 1.2783203.2675781.3603516.6474609.6025391 1.1386719.7255859v.2529297c-.6748047.1074219-1.2001953.3486328-1.5761719.7246094-.375.3759766-.5634766.9003906-.5634766 1.5751953 0 .4443359.0996094.8427734.2998047 1.1962891.1992188.3525391.5244141.6474609.9775391.8857422.4521484.2373047 1.0302734.4208984 1.7363281.5517578.7050781.1298828 1.5634766.1953125 2.5761719.1953125 1.1494141 0 2.1230469-.0839844 2.9208984-.2529297.796875-.1689453 1.4482422-.4140625 1.9550781-.7363281.5058594-.3212891.8701172-.7246094 1.0917969-1.2070312.2226562-.4833984.3339844-1.0390625.3339844-1.6679688 0-1.0722658-.3339843-1.9121095-1.0009765-2.5175783zm-7.4628907-6.9223633c0-1.2197266.7207031-1.8295898 2.1621094-1.8295898 1.4404297 0 2.1611328.6098633 2.1611328 1.8295898v.3886719c0 1.2192383-.7207031 1.8295898-2.1611328 1.8295898-1.4414062 0-2.1621094-.6103516-2.1621094-1.8295898v-.3886719zm5.0478516 10.9125977c-.4365234.2451172-1.1376953.3671875-2.1044922.3671875h-1.4716797c-.9199219 0-1.5722656-.1298828-1.9550781-.390625-.3837891-.2607422-.5751953-.6210938-.5751953-1.0810547 0-.5214844.2070312-.9355469.6210938-1.2412109h4.09375c.7519531 0 1.2802734.1064453 1.5878906.3212891.3056641.2138672.4599609.5136719.4599609.8974609 0 .5058593-.21875.8808593-.65625 1.1269531z" fill="url(#SVGID_1_)"/></svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.9205" y1="0.3205" x2="31.6234" y2="31.0234" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="9.992285e-02" style="stop-color:#EE5396"/>
<stop offset="0.8986" style="stop-color:#DA1E28"/>
</linearGradient>
<path class="st0" d="M7,24H4V7.9h7.2c0.7,0,1.4,0.1,2,0.3s1.1,0.6,1.5,1s0.7,1,0.9,1.6s0.3,1.3,0.3,2c0,1.1-0.2,2.1-0.7,2.9
S14,17.1,13,17.4l3.3,6.5h-3.4l-3-6.2H7V24z M10.9,15.3c0.6,0,1-0.2,1.4-0.5c0.3-0.3,0.5-0.8,0.5-1.3v-1.1c0-0.6-0.2-1-0.5-1.3
s-0.8-0.5-1.4-0.5H7v4.7C7,15.3,10.9,15.3,10.9,15.3z M27.6,24c-0.6,0-1.2-0.2-1.5-0.6c-0.4-0.4-0.6-0.9-0.7-1.5h-0.1
c-0.2,0.8-0.6,1.4-1.2,1.8s-1.4,0.6-2.3,0.6c-1.2,0-2.2-0.3-2.8-1s-1-1.5-1-2.6c0-1.2,0.4-2.2,1.3-2.8c0.9-0.6,2.2-0.9,3.8-0.9h2
v-0.9c0-0.7-0.2-1.2-0.5-1.6c-0.4-0.4-0.9-0.6-1.7-0.6c-0.7,0-1.2,0.1-1.7,0.4c-0.4,0.3-0.8,0.7-1.1,1.1L18.4,14
c0.4-0.7,1-1.3,1.8-1.7c0.7-0.4,1.7-0.6,2.9-0.6c1.6,0,2.9,0.4,3.7,1.1c0.8,0.7,1.3,1.8,1.3,3.2v5.6h1.2V24C29.3,24,27.6,24,27.6,24
z M22.8,22.1c0.7,0,1.2-0.1,1.7-0.4s0.7-0.7,0.7-1.3v-1.6h-1.9c-1.5,0-2.3,0.5-2.3,1.5v0.4c0,0.5,0.2,0.8,0.5,1.1
S22.2,22.1,22.8,22.1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Padding" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#SVGID_1_);}
</style>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="0.7693" y1="0.7193" x2="31.3456" y2="31.2956" gradientTransform="matrix(1 0 0 -1 0 32)">
<stop offset="0.1004" style="stop-color:#DA1E28"/>
<stop offset="0.8996" style="stop-color:#750E13"/>
</linearGradient>
<path class="st0" d="M6.6,24h-3V7.9h7.2c0.7,0,1.4,0.1,2,0.3s1.1,0.6,1.5,1s0.7,1,0.9,1.6s0.3,1.3,0.3,2c0,1.1-0.2,2.1-0.7,2.9
s-1.2,1.4-2.2,1.7l3.3,6.5h-3.4l-3-6.2H6.6V24z M10.5,15.3c0.6,0,1-0.2,1.4-0.5c0.3-0.3,0.5-0.8,0.5-1.3v-1.1c0-0.6-0.2-1-0.5-1.3
s-0.8-0.5-1.4-0.5H6.6v4.7C6.6,15.3,10.5,15.3,10.5,15.3z M25.7,22h-0.1c-0.2,0.7-0.6,1.2-1.2,1.7c-0.6,0.4-1.3,0.6-2.1,0.6
c-1.5,0-2.7-0.5-3.5-1.6S17.6,20,17.6,18s0.4-3.6,1.2-4.6c0.8-1.1,2-1.6,3.5-1.6c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1,1,1.2,1.6h0.1V7
h2.9v17h-2.9V22z M23.2,21.8c0.7,0,1.3-0.2,1.8-0.5s0.7-0.8,0.7-1.4v-3.8c0-0.6-0.2-1-0.7-1.4s-1.1-0.5-1.8-0.5
c-0.8,0-1.4,0.3-1.9,0.8s-0.7,1.2-0.7,2.1V19c0,0.9,0.2,1.5,0.7,2S22.5,21.8,23.2,21.8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@ -1 +0,0 @@
<svg data-name="Layer 6" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#1d364d" d="M26 26a1 1 0 0 1 0-2 3 3 0 0 0 3-3 1 1 0 0 1 2 0 5 5 0 0 1-5 5z"/><path d="M28.19 19l-.77-.54.85-1.18-1.27-.46.29-.91 1.24.48V15h.94v1.39l1.24-.48.29.91-1.27.46.85 1.18-.77.54-.81-1.17z" fill="#1c374d"/><path fill="#1d364d" d="M6.22 20.75l1-1.05a2.63 2.63 0 0 0 1.94.9c.78 0 1.21-.36 1.21-1s-.29-.79-1-.92l-.8-.13a2.08 2.08 0 0 1-2-2.2c0-1.47 1-2.33 2.76-2.33a3.38 3.38 0 0 1 2.62 1L11 16.07a2.21 2.21 0 0 0-1.68-.73c-.73 0-1.11.31-1.11.92s.31.75 1.06.89l.8.14A2.09 2.09 0 0 1 12 19.45c0 1.44-1 2.49-2.94 2.49a3.53 3.53 0 0 1-2.84-1.19zm12.27 3.16h-1.56c-1.19 0-1.64-.62-1.64-1.58v-.45C13.73 21.57 13 20.17 13 18c0-2.51.95-4 3-4s3 1.46 3 4c0 2.2-.73 3.6-2.29 3.91v.85h1.77zm-1.24-5.28V17.3c0-1.23-.31-2-1.25-2s-1.24.74-1.24 2v1.34c0 1.24.31 2 1.24 2s1.25-.76 1.25-2.01zM20 21.81v-7.68h1.66v6.33H25v1.35z"/><path fill="#1d364d" d="M9 26H6a5 5 0 0 1-5-5 4.89 4.89 0 0 1 2-4v-1a6 6 0 0 1 5.51-6 9 9 0 0 1 15.12.21 6 6 0 0 1 1.93.94 6.12 6.12 0 0 1 1.94 2.42 1 1 0 0 1-1.83.81 4 4 0 0 0-1.3-1.62 3.88 3.88 0 0 0-1.58-.7l-.46-.06-.22-.4a7 7 0 0 0-12.17-.08l-.3.52L9 12a4 4 0 0 0-4 4v2.15l-.5.29A2.93 2.93 0 0 0 3 21a3 3 0 0 0 3 3h3a1 1 0 0 1 0 2z"/></svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 32 32"><defs><style>.a{fill:#fff;}.a,.b{stroke:#061f80;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}.b{fill:none;}.c{fill:url(#a);}.d{fill:url(#b);}</style><linearGradient id="a" x1="9.31477" y1="21.9152" x2="22.68856" y2="8.54141" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#43d1cf"/><stop offset="0.99963" stop-color="#0062ff"/></linearGradient><linearGradient id="b" x1="543.59197" y1="289.16614" x2="549.42984" y2="289.16614" gradientTransform="translate(-383.04935 -268.39087) scale(0.72128 1)" gradientUnits="userSpaceOnUse"><stop offset="0.05429" stop-color="#fff" stop-opacity="0"/><stop offset="1" stop-color="#fff"/></linearGradient></defs><title>apic-gateway-icon-light</title><line class="a" x1="2.9898" y1="16" x2="3.9898" y2="16"/><line class="a" x1="6.97927" y1="16.00513" x2="15.51834" y2="16.00513"/><line class="a" x1="23.94417" y1="16.00513" x2="29.0312" y2="16.00513"/><polyline class="b" points="26.653 18.378 29.031 16 26.653 13.622"/><path class="c" d="M24.258,10.48926l-.06055-.439L16.00017,4.43652,7.80193,10.05029l-.06006.439a17.46735,17.46735,0,0,0-.1051,2.51611H9.62621A18.02009,18.02009,0,0,1,9.67888,11.189l6.32129-4.32861L22.32049,11.189c.16894,1.98584.415,10.13135-6.32032,14.02149a12.00878,12.00878,0,0,1-5.23571-6.20508H8.66411a14.11757,14.11757,0,0,0,6.8722,8.23193l.46386.24317.46387-.24317A14.52056,14.52056,0,0,0,23.9074,16.97119,20.66532,20.66532,0,0,0,24.258,10.48926Z"/><rect class="d" x="9.03404" y="17.53096" width="4.21075" height="6.49024" rx="0.59268" transform="translate(-9.63662 31.91556) rotate(-90.00018)"/></svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

@ -1,34 +0,0 @@
<svg id="schematics-appIcon" xmlns="http://www.w3.org/2000/svg" width="32" height="32">
<style>
.st1{fill:none;stroke:#fff;stroke-width:2;stroke-miterlimit:10}.st5{fill:#061f80}
</style>
<defs>
<filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
<feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/>
</filter>
</defs>
<mask maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32" id="schematicsConnection_1_">
<!-- <g filter="url(#Adobe_OpacityMaskFilter)"> -->
<path class="st1" d="M23 23h6v6h-6z"/>
<circle class="st1" cx="6" cy="6" r="3"/>
<path class="st1" d="M6 9v4c0 1.7 1.3 3 3 3h14c1.7 0 3 1.3 3 3v3M9 6h14M23 26H9"/>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="14" y1="6" x2="23" y2="6">
<stop offset="0" stop-opacity="0"/>
<stop offset=".9"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M14 4h9v4h-9z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-76" y1="-68" x2="-67" y2="-68" gradientTransform="rotate(180 -29 -21)">
<stop offset="0" stop-opacity="0"/>
<stop offset=".9"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M18 24H9v4h9z"/>
<!-- </g> -->
</mask>
<linearGradient id="schematicsConnection_2_" gradientUnits="userSpaceOnUse" y1="32" x2="32">
<stop offset=".1" stop-color="#00bab6"/>
<stop offset=".9" stop-color="#0062ff"/>
</linearGradient>
<path id="schematicsConnection" mask="url(#schematicsConnection_1_)" fill="url(#schematicsConnection_2_)" d="M0 0h32v32H0z"/>
<path class="st5" d="M6 30c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" id="circleBottom"/>
<path class="st5" d="M26 10c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" id="circleTop"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><path d="M21 25H4c-1.1045694 0-2-.8954296-2-2V8c0-1.1045694.8954306-2 2-2h22c.4130859 0 .8050785.2475271.9326172.6391602.1354961.4160671.0458984.8227539-.2597656 1.1005859L15.0284138 18.3255978l-7.7411294-6.4696617 1.2819219-1.5361328 6.4024734 5.3545132L23.4130859 8H4v15h17v2z" fill="#0062ff"/><path fill="#031981" d="M25 17.8300781V27h2v-9.1699219l2.5899658 2.5800781L31 19l-5-5-5 5 1.4099731 1.4101562z"/></svg>

Before

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

@ -1,85 +0,0 @@
<?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" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<path style="fill:#6CA8DB;" d="M50.2,42.1c-4.5,0-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2s8.2-3.7,8.2-8.2S54.7,42.1,50.2,42.1z M50.2,55.8
c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5c3,0,5.5,2.5,5.5,5.5C55.7,53.4,53.2,55.8,50.2,55.8z"/>
<g>
<path style="fill:#91C83E;" d="M25.7,64.4c2.3,3.9,7.3,5.3,11.3,3s5.3-7.3,3-11.3s-7.3-5.3-11.3-3S23.4,60.5,25.7,64.4z M37.6,57.6
c1.5,2.6,0.6,6-2,7.5c-2.6,1.5-6,0.6-7.5-2c-1.5-2.6-0.6-6,2-7.5C32.7,54,36,54.9,37.6,57.6z"/>
<path style="fill:#5DA644;" d="M48.3,51.2l0.1,0.1c0.5,0.8,0.2,1.8-0.6,2.3L36.9,60c-0.8,0.5-1.8,0.2-2.3-0.6l-0.1-0.1
c-0.5-0.8-0.2-1.8,0.6-2.3L46,50.6C46.8,50.2,47.9,50.4,48.3,51.2z"/>
</g>
<g>
<path style="fill:#EE499A;" d="M50,78.5c4.5,0,8.2-3.7,8.2-8.2S54.6,62,50,62s-8.2,3.7-8.2,8.2S45.5,78.5,50,78.5z M50,64.8
c3,0,5.5,2.5,5.5,5.5c0,3-2.5,5.5-5.5,5.5c-3,0-5.5-2.5-5.5-5.5C44.5,67.2,47,64.8,50,64.8z"/>
<path style="fill:#DA2E81;" d="M50,52.3h0.2c0.9,0,1.7,0.8,1.7,1.7v12.6c0,0.9-0.8,1.7-1.7,1.7H50c-0.9,0-1.7-0.8-1.7-1.7V54
C48.3,53,49,52.3,50,52.3z"/>
</g>
<g>
<path style="fill:#875FA8;" d="M74.5,64.4c2.3-3.9,0.9-9-3-11.3s-9-0.9-11.3,3s-0.9,9,3,11.3S72.2,68.4,74.5,64.4z M62.6,57.5
c1.5-2.6,4.9-3.5,7.5-2c2.6,1.5,3.5,4.9,2,7.5c-1.5,2.6-4.9,3.5-7.5,2C62,63.6,61.1,60.2,62.6,57.5z"/>
<path style="fill:#734497;" d="M51.8,51.4l0.1-0.1c0.5-0.8,1.5-1.1,2.3-0.6L65,56.9c0.8,0.5,1.1,1.5,0.6,2.3l-0.1,0.1
c-0.5,0.8-1.5,1.1-2.3,0.6l-10.9-6.3C51.6,53.2,51.3,52.2,51.8,51.4z"/>
</g>
<g>
<path style="fill:#BC9A2F;" d="M50.1,22.1c-4.5,0-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2s8.2-3.7,8.2-8.2S54.7,22.1,50.1,22.1z M50.1,35.8
c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5c3,0,5.5,2.5,5.5,5.5C55.6,33.3,53.2,35.8,50.1,35.8z"/>
<path style="fill:#FCD432;" d="M50.2,48.3H50c-0.9,0-1.7-0.8-1.7-1.7V34c0-0.9,0.8-1.7,1.7-1.7h0.2c0.9,0,1.7,0.8,1.7,1.7v12.6
C51.9,47.5,51.1,48.3,50.2,48.3z"/>
<path style="fill:#BC9A2F;" d="M50.1,2.1c-4.5,0-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2s8.2-3.7,8.2-8.2S54.7,2.1,50.1,2.1z M50.1,15.8
c-3,0-5.5-2.5-5.5-5.5c0-3,2.5-5.5,5.5-5.5c3,0,5.5,2.5,5.5,5.5C55.6,13.3,53.2,15.8,50.1,15.8z"/>
<path style="fill:#FCD432;" d="M50.2,28.3H50c-0.9,0-1.7-0.8-1.7-1.7V14c0-0.9,0.8-1.7,1.7-1.7h0.2c0.9,0,1.7,0.8,1.7,1.7v12.6
C51.9,27.5,51.1,28.3,50.2,28.3z"/>
</g>
<g>
<path style="fill:#F05558;" d="M25.7,36.2c-2.3,3.9-0.9,9,3,11.3s9,0.9,11.3-3s0.9-9-3-11.3S28,32.3,25.7,36.2z M37.6,43.1
c-1.5,2.6-4.9,3.5-7.5,2c-2.6-1.5-3.5-4.9-2-7.5c1.5-2.6,4.9-3.5,7.5-2C38.2,37.1,39.1,40.4,37.6,43.1z"/>
<path style="fill:#E32439;" d="M48.4,49.2l-0.1,0.1c-0.5,0.8-1.5,1.1-2.3,0.6l-10.9-6.3c-0.8-0.5-1.1-1.5-0.6-2.3l0.1-0.1
c0.5-0.8,1.5-1.1,2.3-0.6l10.9,6.3C48.6,47.4,48.9,48.4,48.4,49.2z"/>
<g>
<path style="fill:#F05558;" d="M8.4,26.2c-2.3,3.9-0.9,9,3,11.3s9,0.9,11.3-3s0.9-9-3-11.3S10.7,22.3,8.4,26.2z M20.3,33.1
c-1.5,2.6-4.9,3.5-7.5,2c-2.6-1.5-3.5-4.9-2-7.5c1.5-2.6,4.9-3.5,7.5-2C20.9,27.1,21.8,30.5,20.3,33.1z"/>
<path style="fill:#E32439;" d="M31.2,39.3l-0.1,0.1c-0.5,0.8-1.5,1.1-2.3,0.6l-10.9-6.3c-0.8-0.5-1.1-1.5-0.6-2.3l0.1-0.1
c0.5-0.8,1.5-1.1,2.3-0.6L30.5,37C31.3,37.4,31.6,38.5,31.2,39.3z"/>
<path style="fill:#F05558;" d="M25.7,36.3c-2.3,3.9-0.9,9,3,11.3s9,0.9,11.3-3s0.9-9-3-11.3S27.9,32.3,25.7,36.3z M37.6,43.1
c-1.5,2.6-4.9,3.5-7.5,2c-2.6-1.5-3.5-4.9-2-7.5c1.5-2.6,4.9-3.5,7.5-2C38.2,37.1,39.1,40.5,37.6,43.1z"/>
</g>
</g>
<g>
<path style="fill:#1EB3A0;" d="M74.6,36.2c-2.3-3.9-7.3-5.3-11.3-3s-5.3,7.3-3,11.3s7.3,5.3,11.3,3S76.9,40.1,74.6,36.2z M62.7,43.1
c-1.5-2.6-0.6-6,2-7.5c2.6-1.5,6-0.6,7.5,2c1.5,2.6,0.6,6-2,7.5C67.6,46.6,64.2,45.7,62.7,43.1z"/>
<path style="fill:#168572;" d="M52,49.4l-0.1-0.1c-0.5-0.8-0.2-1.8,0.6-2.3l10.9-6.3c0.8-0.5,1.8-0.2,2.3,0.6l0.1,0.1
c0.5,0.8,0.2,1.8-0.6,2.3L54.3,50C53.5,50.5,52.4,50.2,52,49.4z"/>
<g>
<path style="fill:#1EB3A0;" d="M91.9,26.2c-2.3-3.9-7.3-5.3-11.3-3s-5.3,7.3-3,11.3s7.3,5.3,11.3,3S94.2,30.1,91.9,26.2z M80,33.1
c-1.5-2.6-0.6-6,2-7.5c2.6-1.5,6-0.6,7.5,2c1.5,2.6,0.6,6-2,7.5C84.9,36.6,81.5,35.7,80,33.1z"/>
<path style="fill:#168572;" d="M69.3,39.4l-0.1-0.1c-0.5-0.8-0.2-1.8,0.6-2.3l10.9-6.3c0.8-0.5,1.8-0.2,2.3,0.6l0.1,0.1
c0.5,0.8,0.2,1.8-0.6,2.3L71.6,40C70.8,40.4,69.7,40.2,69.3,39.4z"/>
<path style="fill:#1EB3A0;" d="M74.6,36.2c-2.3-3.9-7.3-5.3-11.3-3s-5.3,7.3-3,11.3s7.3,5.3,11.3,3C75.5,45.2,76.9,40.1,74.6,36.2z
M62.7,43.1c-1.5-2.6-0.6-6,2-7.5c2.6-1.5,6-0.6,7.5,2c1.5,2.6,0.6,6-2,7.5C67.6,46.6,64.2,45.7,62.7,43.1z"/>
</g>
</g>
<g>
<path style="fill:#875FA8;" d="M74.5,64.4c2.3-3.9,0.9-9-3-11.3s-9-0.9-11.3,3s-0.9,9,3,11.3S72.2,68.3,74.5,64.4z M62.6,57.5
c1.5-2.6,4.9-3.5,7.5-2c2.6,1.5,3.5,4.9,2,7.5c-1.5,2.6-4.9,3.5-7.5,2C62,63.5,61.1,60.2,62.6,57.5z"/>
<path style="fill:#875FA8;" d="M91.8,74.4c2.3-3.9,0.9-9-3-11.3c-3.9-2.3-9-0.9-11.3,3s-0.9,9,3,11.3S89.6,78.3,91.8,74.4z M79.9,67.5
c1.5-2.6,4.9-3.5,7.5-2c2.6,1.5,3.5,4.9,2,7.5c-1.5,2.6-4.9,3.5-7.5,2C79.3,73.5,78.4,70.2,79.9,67.5z"/>
<path style="fill:#734497;" d="M69.1,61.4l0.1-0.1c0.5-0.8,1.5-1.1,2.3-0.6l10.9,6.3c0.8,0.5,1.1,1.5,0.6,2.3l-0.1,0.1
c-0.5,0.8-1.5,1.1-2.3,0.6l-10.9-6.3C68.9,63.2,68.6,62.2,69.1,61.4z"/>
</g>
<g>
<path style="fill:#EE499A;" d="M50,98.4c4.5,0,8.2-3.7,8.2-8.2S54.6,82,50,82s-8.2,3.7-8.2,8.2S45.5,98.4,50,98.4z M50,84.7
c3,0,5.5,2.5,5.5,5.5c0,3-2.5,5.5-5.5,5.5c-3,0-5.5-2.5-5.5-5.5C44.5,87.2,47,84.7,50,84.7z"/>
<path style="fill:#DA2E81;" d="M50,72.2h0.2c0.9,0,1.7,0.8,1.7,1.7v12.6c0,0.9-0.8,1.7-1.7,1.7H50c-0.9,0-1.7-0.8-1.7-1.7V73.9
C48.3,73,49,72.2,50,72.2z"/>
</g>
<g>
<path style="fill:#91C83E;" d="M25.7,64.4c2.3,3.9,7.3,5.3,11.3,3s5.3-7.3,3-11.3s-7.3-5.3-11.3-3S23.4,60.5,25.7,64.4z M37.6,57.6
c1.5,2.6,0.6,6-2,7.5c-2.6,1.5-6,0.6-7.5-2c-1.5-2.6-0.6-6,2-7.5C32.7,54,36,54.9,37.6,57.6z"/>
<path style="fill:#91C83E;" d="M8.3,74.4c2.3,3.9,7.3,5.3,11.3,3s5.3-7.3,3-11.3c-2.3-3.9-7.3-5.3-11.3-3S6.1,70.5,8.3,74.4z M20.2,67.6
c1.5,2.6,0.6,6-2,7.5c-2.6,1.5-6,0.6-7.5-2c-1.5-2.6-0.6-6,2-7.5C15.3,64,18.7,64.9,20.2,67.6z"/>
<path style="fill:#5DA644;" d="M31,61.3l0.1,0.1c0.5,0.8,0.2,1.8-0.6,2.3L19.6,70c-0.8,0.5-1.8,0.2-2.3-0.6l-0.1-0.1
c-0.5-0.8-0.2-1.8,0.6-2.3l10.9-6.3C29.5,60.2,30.5,60.4,31,61.3z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="apic-light-small" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="32px" height="32px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:#061F80;}
.st1{fill:url(#outline-left_1_);}
.st2{fill:url(#outline-right_1_);}
.st3{fill:url(#outline-left-2_1_);}
.st4{fill:url(#outline-right-2_1_);}
</style>
<path id="apic-icon" class="st0" d="M24,13c-1.7-2-5.2-2-6.9-0.1c-0.1,0.1-0.2,0.3-0.3,0.4l-2.7-1.4c0.1-0.9-0.2-1.9-0.8-2.6
C12.1,8.2,10.1,8.2,9,9.4c-1.1,1.2-1.1,3,0,4.2c0.2,0.2,0.5,0.4,0.8,0.5l-0.6,4.5c-0.4,0.1-0.8,0.3-1.1,0.6c-0.9,1-0.8,2.6,0.2,3.6
c1,0.9,2.4,0.9,3.4,0c0.5-0.5,0.7-1.1,0.7-1.8l4.2-1.8c0.2,0.3,0.4,0.5,0.6,0.7c2.2,1.8,5.3,1.4,7.1-0.7C25.7,17.4,25.6,14.8,24,13z
M11.6,19.2c-0.1-0.1-0.3-0.2-0.4-0.3l0.6-4.4c0.5-0.1,1-0.4,1.4-0.7l2.7,1.4c-0.2,0.8-0.3,1.6-0.1,2.3L11.6,19.2z M23.4,17.6
c-1.1,2.4-4.3,2.5-5.5,0.2c-0.4-0.8-0.4-2,0-2.8c1-2,3.4-2.2,4.8-0.8l0,0C23.6,15,23.9,16.5,23.4,17.6z"/>
<linearGradient id="outline-left_1_" gradientUnits="userSpaceOnUse" x1="5.9361" y1="8.2758" x2="15.8485" y2="18.1882" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#43D1CF"/>
<stop offset="1" style="stop-color:#418CFF"/>
</linearGradient>
<path id="outline-left" class="st1" d="M16,30C8.3,30,2,23.7,2,16c0-3.7,1.5-7.3,4.1-9.9l1.4,1.4c-4.8,4.6-4.9,12.2-0.2,17
c3.8,3.9,9.9,4.8,14.6,2l1,1.7C20.8,29.4,18.4,30,16,30z"/>
<linearGradient id="outline-right_1_" gradientUnits="userSpaceOnUse" x1="16.2268" y1="17.8104" x2="26.1392" y2="27.7228" gradientTransform="matrix(1 0 0 -1 0 34)">
<stop offset="0" style="stop-color:#43D1CF"/>
<stop offset="1" style="stop-color:#418CFF"/>
</linearGradient>
<path id="outline-right" class="st2" d="M25.9,25.9l-1.4-1.4c4.6-4.7,4.5-12.4-0.2-17c-3.7-3.6-9.4-4.5-14-2l-1-1.8
c6.8-3.7,15.3-1.1,19,5.7C31.3,14.8,30.3,21.5,25.9,25.9z"/>
<linearGradient id="outline-left-2_1_" gradientUnits="userSpaceOnUse" x1="261.0981" y1="-151.328" x2="271.421" y2="-151.328" gradientTransform="matrix(0.3 -0.65 -0.91 -0.42 -213.67 121.6)">
<stop offset="5.000000e-02" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path id="outline-left-2" class="st3" d="M6.9,8.2L5,7.3c-1.6,2-2.6,4.4-2.9,6.9l1.9,0.9C4.2,12.6,5.2,10.1,6.9,8.2z"/>
<circle id="circle-top" class="st0" cx="6.9" cy="6.8" r="2"/>
<linearGradient id="outline-right-2_1_" gradientUnits="userSpaceOnUse" x1="-1264.5785" y1="-590.0347" x2="-1254.2456" y2="-590.0347" gradientTransform="matrix(-0.3 0.65 0.91 0.42 182.86 1095.78)">
<stop offset="5.000000e-02" style="stop-color:#FFFFFF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<path id="outline-right-2" class="st4" d="M29.9,17.6L28,16.7c-0.1,2.5-1.1,5-2.7,6.9l1.9,0.9C28.7,22.5,29.6,20.1,29.9,17.6z"/>
<circle id="cirlce-bottom" class="st0" cx="25.3" cy="25.2" r="2"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="250px" height="250px" viewBox="0 0 250 250" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
<title>App Connect Circle</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="App-Connect-Circle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="IBM-App-Connect-(With-background)-Copy" fill="#FFFFFF" stroke="#7863EC" stroke-width="6">
<circle id="Background" cx="125" cy="125" r="122"></circle>
</g>
<g id="IBM-App-Connect-Copy" transform="translate(47.000000, 25.000000)">
<path d="M78,51 L143,112" id="Line-21" stroke="#7863EC" stroke-width="7" fill="#FFFFFF"></path>
<path d="M114,112 C114,128.568571 127.207571,142 143.5,142 C159.792429,142 173,128.568571 173,112 C173,95.4314286 159.792429,82 143.5,82 C127.207571,82 114,95.4314286 114,112" id="Fill-78" fill="#FFFFFF"></path>
<path d="M73,44 L37,154" id="Line-20" stroke="#7863EC" stroke-width="7" fill="#FFFFFF"></path>
<path d="M30,45 C30,69.8528571 49.9232857,90 74.5,90 C99.0767143,90 119,69.8528571 119,45 C119,20.1471429 99.0767143,0 74.5,0 C49.9232857,0 30,20.1471429 30,45" id="Fill-78" fill="#FFFFFF"></path>
<path d="M0,155 C0,175.434571 16.3415714,192 36.5,192 C56.6584286,192 73,175.434571 73,155 C73,134.565429 56.6584286,118 36.5,118 C16.3415714,118 0,134.565429 0,155" id="Fill-78" fill="#FFFFFF"></path>
<path d="M43,45.5 C43,62.897 56.8791429,77 74,77 C91.1208571,77 105,62.897 105,45.5 C105,28.103 91.1208571,14 74,14 C56.8791429,14 43,28.103 43,45.5" id="Fill-78" stroke="#7863EC" stroke-width="7" fill="#FFFFFF"></path>
<path d="M128,111.5 C128,102.9409 134.9378,96 143.5,96 C152.0591,96 159,102.9409 159,111.5 C159,120.0622 152.0591,127 143.5,127 C134.9378,127 128,120.0622 128,111.5 Z" id="Fill-76" stroke="#7863EC" stroke-width="7" fill="#E9E8FE"></path>
<path d="M16,154.5 C16,166.374143 25.6258571,176 37.5,176 C49.3741429,176 59,166.374143 59,154.5 C59,142.625857 49.3741429,133 37.5,133 C25.6258571,133 16,142.625857 16,154.5" id="Fill-78" stroke="#7863EC" stroke-width="7" fill="#FFFFFF"></path>
<path d="M57,45 C57,54.3888571 64.6111429,62 74,62 C83.3888571,62 91,54.3888571 91,45 C91,35.6111429 83.3888571,28 74,28 C64.6111429,28 57,35.6111429 57,45" id="Fill-80" stroke="#7863EC" stroke-width="7" fill="#E9E8FE"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 78 78"><path fill="#27485d" d="M9.24 45.02l-6.09-6.07L39.47 2.49 75.94 38.8l-6.06 6.09-30.39-30.26L9.24 45.02z"/><path fill="#66808d" d="M21.16 56.89l-6.08-6.06 24.39-24.5 24.56 24.45-6.06 6.09L39.5 38.48 21.16 56.89z"/><path fill="#a7b5bd" d="M33.51 68.83l-6.09-6.06 12.11-12.15 12.15 12.1-6.06 6.09-6.07-6.05-6.04 6.07z"/></svg>

Before

Width:  |  Height:  |  Size: 383 B

Before

Width:  |  Height:  |  Size: 608 B

After

Width:  |  Height:  |  Size: 608 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

@ -1,34 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg viewBox="0 0 29 33" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 45.2 (43514) - http://www.bohemiancoding.com/sketch -->
<title>watson_picto/Watson_APIs/Watson_Knowledge_Studio</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="0 33 28.333 33 28.333 0.418 0 0.418"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="04_APIs" transform="translate(-113.000000, -607.000000)">
<g id="watson_picto/Watson_APIs/Watson_Knowledge_Studio" transform="translate(113.000000, 606.000000)">
<g id="watson_picto-Watson_APIs-Watson_Knowledge_Studio" transform="translate(0.200000, 0.000000)">
<path d="M14.1667,6.7396 L25.2127,6.7396" id="Stroke-1" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M3.1196,17.2909 L12.2306,17.2909" id="Stroke-2" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M23.3447,17.2904 L25.2127,17.2904" id="Stroke-3" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M3.1206,22.5663 L4.9886,22.5663" id="Stroke-4" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M3.1196,12.0155 L25.2136,12.0155" id="Stroke-5" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M14.167,22.5663 L25.213,22.5663" id="Stroke-6" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<path d="M3.1196,27.8422 L21.3416,27.8422" id="Stroke-7" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round"></path>
<g id="Group-16" transform="translate(0.000000, 0.581800)">
<path d="M3.1196,6.1578 C3.1196,6.6548 3.5216,7.0568 4.0186,7.0568 L11.3316,7.0568 C11.8276,7.0568 12.2306,6.6548 12.2306,6.1578 C12.2306,5.6618 11.8276,5.2598 11.3316,5.2598 L4.0186,5.2598 C3.5216,5.2598 3.1196,5.6618 3.1196,6.1578 Z" id="Stroke-8" stroke="#9855D4" stroke-width="0.866" stroke-linejoin="round"></path>
<path d="M21.3413,16.7091 L21.3413,16.7091 C21.3413,16.2121 20.9383,15.8101 20.4423,15.8101 L15.0653,15.8101 C14.5693,15.8101 14.1663,16.2121 14.1663,16.7091 C14.1663,17.2061 14.5693,17.6081 15.0653,17.6081 L20.4423,17.6081 C20.9383,17.6081 21.3413,17.2061 21.3413,16.7091 Z" id="Stroke-10" stroke="#9855D4" stroke-width="0.866" stroke-linejoin="round"></path>
<path d="M6.9922,21.9845 L6.9922,21.9845 C6.9922,22.4815 7.3942,22.8835 7.8912,22.8835 L11.2652,22.8835 C11.7612,22.8835 12.1642,22.4815 12.1642,21.9845 C12.1642,21.4885 11.7612,21.0865 11.2652,21.0865 L7.8912,21.0865 C7.3942,21.0865 6.9922,21.4885 6.9922,21.9845 Z" id="Stroke-12" stroke="#9855D4" stroke-width="0.866" stroke-linejoin="round"></path>
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-15"></g>
<polygon id="Stroke-14" stroke="#9855D4" stroke-width="0.866" stroke-linecap="round" stroke-linejoin="round" mask="url(#mask-2)" points="0.433 32.567 27.9 32.567 27.9 0.851 0.433 0.851"></polygon>
</g>
</g>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#9855D4" d="M25.723 0c-3.46 0-6.274 2.816-6.274 6.277s2.816 6.275 6.275 6.275l-.003.003c3.463 0 6.277-2.816 6.277-6.277S29.182 0 25.723 0zm0 11.702a5.43 5.43 0 0 1-5.424-5.426A5.432 5.432 0 0 1 25.721.849v.003a5.432 5.432 0 0 1 5.427 5.426 5.429 5.429 0 0 1-5.425 5.424z"/><path fill="#9855D4" d="M28.656 8.717l-2.531-6.051a.425.425 0 0 0-.784-.002l-2.548 6.047a.424.424 0 0 0 .225.558l-.002.002a.426.426 0 0 0 .557-.226l.587-1.386h3.134l.578 1.386a.424.424 0 0 0 .556.227.422.422 0 0 0 .228-.555zm-4.141-1.909l1.215-2.88h.002l1.203 2.88h-2.42zm-12.44 12.697l.003-.003H.429a.426.426 0 0 0-.427.424v11.649c0 .234.191.425.425.425h11.649a.423.423 0 0 0 .424-.424V19.927a.425.425 0 0 0-.425-.422zm-.424 11.645H.851V20.353H11.65V31.15z"/><path fill="#9855D4" d="M3.158 24.409h4.277c.012.624-.079 1.917-.922 2.883-.084.091-.188.159-.28.241-.453-.416-.784-.959-.977-1.636a.425.425 0 1 0-.818.234c.181.632.52 1.311 1.083 1.886-.629.315-1.391.494-2.313.494a.425.425 0 0 0-.001.848c1.224 0 2.234-.265 3.037-.766.729.458 1.705.768 3.05.768a.422.422 0 0 0 0-.844c-.935 0-1.71-.171-2.338-.491.06-.06.134-.106.193-.171 1.026-1.17 1.146-2.682 1.135-3.441h1.059a.425.425 0 0 0-.002-.848h-2.67v-.994a.425.425 0 0 0-.426-.424.425.425 0 0 0-.426.424v.996H3.156a.426.426 0 0 0-.426.426c0 .235.191.422.426.422l.002-.007zM.426 16.454a.426.426 0 0 0 .426-.426V6.391c0-.897.727-1.626 1.622-1.626h12.512l-3.188 3.191a.42.42 0 0 0 0 .6.42.42 0 0 0 .302.124.42.42 0 0 0 .298-.124l3.915-3.914a.418.418 0 0 0 .092-.137.39.39 0 0 0 .034-.163.378.378 0 0 0-.034-.163.362.362 0 0 0-.091-.137L12.395.128a.42.42 0 0 0-.6 0 .42.42 0 0 0 0 .6l3.188 3.188H2.474A2.476 2.476 0 0 0 .002 6.39v9.638c0 .235.189.426.424.426zm31.148-.905a.425.425 0 0 0-.424.426v9.638c0 .897-.729 1.626-1.626 1.626H17.012L20.2 24.05a.425.425 0 1 0-.6-.603l-3.917 3.914c-.01.01-.013.023-.023.034-.028.034-.054.064-.07.104a.407.407 0 0 0 0 .327c.017.039.042.07.067.104.01.01.017.025.025.034l3.914 3.914a.432.432 0 0 0 .603-.002.424.424 0 0 0 0-.603l-3.19-3.185h12.514a2.476 2.476 0 0 0 2.474-2.474v-9.638a.427.427 0 0 0-.426-.429l.003.002z"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

@ -1,58 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="MDM" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
<style type="text/css">
.st0{fill:url(#_Line_4_);}
.st1{fill:url(#_Line_5_);}
.st2{fill:url(#_Line_6_);}
.st3{fill:url(#_G3__1_);}
.st4{fill:url(#_G2__1_);}
.st5{fill:url(#_G1__1_);}
.st6{fill:#061F80;}
</style>
<linearGradient id="_Line_4_" gradientUnits="userSpaceOnUse" x1="5.1031" y1="794.8531" x2="36.9231" y2="763.1031" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_3_" class="st0" d="M28,26h-2V12c0-1.1-0.9-2-2-2h-2V8h2c2.2,0,4,1.8,4,4V26z"/>
<linearGradient id="_Line_5_" gradientUnits="userSpaceOnUse" x1="2.425" y1="791.275" x2="33.765" y2="759.935" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<rect id="_Line_2_" x="15" y="13" class="st1" width="2" height="13.4"/>
<linearGradient id="_Line_6_" gradientUnits="userSpaceOnUse" x1="-3.6914" y1="784.9086" x2="27.0386" y2="754.0386" gradientTransform="matrix(1 0 0 1 0 -758)">
<stop offset="0" style="stop-color:#A66EFA;stop-opacity:0"/>
<stop offset="0.1" style="stop-color:#A66EFA"/>
<stop offset="0.9" style="stop-color:#0062FF"/>
</linearGradient>
<path id="_Line_1_" class="st2" d="M6,26H4V12c0-2.2,1.8-4,4-4h2v2H8c-1.1,0-2,0.9-2,2V26z"/>
<linearGradient id="_G3__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2057.7102" x2="-2344.4302" y2="2057.7102" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G3_" x="4" y="20" class="st3" width="2" height="8"/>
<linearGradient id="_G2__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2046.7101" x2="-2344.4302" y2="2046.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G2_" x="15" y="20" class="st4" width="2" height="8"/>
<linearGradient id="_G1__1_" gradientUnits="userSpaceOnUse" x1="-2336.4302" y1="2035.7101" x2="-2344.4302" y2="2035.7101" gradientTransform="matrix(6.123234e-17 1 -1 6.123234e-17 2062.71 2364.4302)">
<stop offset="0.19" style="stop-color:#FFFFFF"/>
<stop offset="0.22" style="stop-color:#FFFFFF;stop-opacity:0.95"/>
<stop offset="0.61" style="stop-color:#FFFFFF;stop-opacity:0.45"/>
<stop offset="0.88" style="stop-color:#FFFFFF;stop-opacity:0.13"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<rect id="_G1_" x="26" y="20" class="st5" width="2" height="8"/>
<path id="circle_1" class="st6" d="M5,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S6.1,26,5,26z"/>
<path id="circle_2" class="st6" d="M16,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S17.1,26,16,26z"/>
<path id="circle_3" class="st6" d="M27,26c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S28.1,26,27,26z"/>
<polygon id="_Star_" class="st6" points="16,2 17.5,5 20.8,5.4 18.4,7.7 19,11 16.1,9.4 13,11 13.6,7.7 11.2,5.4 14.6,5 "/>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

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

Loading…
Cancel
Save