feat(oci:nodes): support red-colored nodes (#121)

pull/129/head
MinJae Kwon 5 years ago committed by GitHub
parent 8808865bbd
commit 75dd2c4956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -319,7 +319,13 @@ ALIASES = {
"oci": {
"compute": {
"Vm": "VirtualMachine",
"Bm": "BareMetal"
"VmGrey": "VirtualMachineGrey",
"Bm": "BareMetal",
"BmGrey": "BareMetalGrey",
},
"database": {
"Databaseservice": "DBService",
"DatabaseserviceGrey": "DBServiceGrey",
}
}
}

@ -8,14 +8,26 @@ class _Compute(_OCI):
_icon_dir = "resources/oci/compute"
class BmGrey(_Compute):
_icon = "bm-grey.png"
class Bm(_Compute):
_icon = "bm.png"
class ContainerGrey(_Compute):
_icon = "container-grey.png"
class Container(_Compute):
_icon = "container.png"
class VmGrey(_Compute):
_icon = "vm-grey.png"
class Vm(_Compute):
_icon = "vm.png"
@ -23,4 +35,6 @@ class Vm(_Compute):
# Aliases
VirtualMachine = Vm
VirtualMachineGrey = VmGrey
BareMetal = Bm
BareMetalGrey = BmGrey

@ -8,22 +8,42 @@ class _Connectivity(_OCI):
_icon_dir = "resources/oci/connectivity"
class BackboneGrey(_Connectivity):
_icon = "backbone-grey.png"
class Backbone(_Connectivity):
_icon = "backbone.png"
class CustomerdatacenterGrey(_Connectivity):
_icon = "customerdatacenter-grey.png"
class Customerdatacenter(_Connectivity):
_icon = "customerdatacenter.png"
class CustomerpremisesequipGrey(_Connectivity):
_icon = "customerpremisesequip-grey.png"
class Customerpremisesequip(_Connectivity):
_icon = "customerpremisesequip.png"
class FastconnectGrey(_Connectivity):
_icon = "fastconnect-grey.png"
class Fastconnect(_Connectivity):
_icon = "fastconnect.png"
class VpnGrey(_Connectivity):
_icon = "vpn-grey.png"
class Vpn(_Connectivity):
_icon = "vpn.png"

@ -8,8 +8,15 @@ class _Database(_OCI):
_icon_dir = "resources/oci/database"
class DatabaseserviceGrey(_Database):
_icon = "databaseservice-grey.png"
class Databaseservice(_Database):
_icon = "databaseservice.png"
# Aliases
DBService = Databaseservice
DBServiceGrey = DatabaseserviceGrey

@ -8,10 +8,18 @@ class _Devops(_OCI):
_icon_dir = "resources/oci/devops"
class ApiserviceGrey(_Devops):
_icon = "apiservice-grey.png"
class Apiservice(_Devops):
_icon = "apiservice.png"
class ResourcemgmtGrey(_Devops):
_icon = "resourcemgmt-grey.png"
class Resourcemgmt(_Devops):
_icon = "resourcemgmt.png"

@ -8,18 +8,34 @@ class _Edge(_OCI):
_icon_dir = "resources/oci/edge"
class CdnGrey(_Edge):
_icon = "cdn-grey.png"
class Cdn(_Edge):
_icon = "cdn.png"
class DnsGrey(_Edge):
_icon = "dns-grey.png"
class Dns(_Edge):
_icon = "dns.png"
class EmaildeliveryGrey(_Edge):
_icon = "emaildelivery-grey.png"
class Emaildelivery(_Edge):
_icon = "emaildelivery.png"
class WafGrey(_Edge):
_icon = "waf-grey.png"
class Waf(_Edge):
_icon = "waf.png"

@ -8,42 +8,82 @@ class _Monitoring(_OCI):
_icon_dir = "resources/oci/monitoring"
class AlarmGrey(_Monitoring):
_icon = "alarm-grey.png"
class Alarm(_Monitoring):
_icon = "alarm.png"
class EventGrey(_Monitoring):
_icon = "event-grey.png"
class Event(_Monitoring):
_icon = "event.png"
class HealthcheckGrey(_Monitoring):
_icon = "healthcheck-grey.png"
class Healthcheck(_Monitoring):
_icon = "healthcheck.png"
class LoggingGrey(_Monitoring):
_icon = "logging-grey.png"
class Logging(_Monitoring):
_icon = "logging.png"
class NotificationsGrey(_Monitoring):
_icon = "notifications-grey.png"
class Notifications(_Monitoring):
_icon = "notifications.png"
class QueuingGrey(_Monitoring):
_icon = "queuing-grey.png"
class Queuing(_Monitoring):
_icon = "queuing.png"
class SearchGrey(_Monitoring):
_icon = "search-grey.png"
class Search(_Monitoring):
_icon = "search.png"
class StreamingGrey(_Monitoring):
_icon = "streaming-grey.png"
class Streaming(_Monitoring):
_icon = "streaming.png"
class TelemetryGrey(_Monitoring):
_icon = "telemetry-grey.png"
class Telemetry(_Monitoring):
_icon = "telemetry.png"
class WorkflowGrey(_Monitoring):
_icon = "workflow-grey.png"
class Workflow(_Monitoring):
_icon = "workflow.png"

@ -8,34 +8,66 @@ class _Network(_OCI):
_icon_dir = "resources/oci/network"
class DrgGrey(_Network):
_icon = "drg-grey.png"
class Drg(_Network):
_icon = "drg.png"
class FirewallGrey(_Network):
_icon = "firewall-grey.png"
class Firewall(_Network):
_icon = "firewall.png"
class InternetgatewayGrey(_Network):
_icon = "internetgateway-grey.png"
class Internetgateway(_Network):
_icon = "internetgateway.png"
class LoadbalanceGrey(_Network):
_icon = "loadbalance-grey.png"
class Loadbalance(_Network):
_icon = "loadbalance.png"
class RoutetableGrey(_Network):
_icon = "routetable-grey.png"
class Routetable(_Network):
_icon = "routetable.png"
class SecuritylistsGrey(_Network):
_icon = "securitylists-grey.png"
class Securitylists(_Network):
_icon = "securitylists.png"
class ServiceGatewayGrey(_Network):
_icon = "service-gateway-grey.png"
class ServiceGateway(_Network):
_icon = "service-gateway.png"
class VcloudnetworkGrey(_Network):
_icon = "vcloudnetwork-grey.png"
class Vcloudnetwork(_Network):
_icon = "vcloudnetwork.png"

@ -8,42 +8,82 @@ class _Security(_OCI):
_icon_dir = "resources/oci/security"
class AuditGrey(_Security):
_icon = "audit-grey.png"
class Audit(_Security):
_icon = "audit.png"
class CompartmentsGrey(_Security):
_icon = "compartments-grey.png"
class Compartments(_Security):
_icon = "compartments.png"
class DdosGrey(_Security):
_icon = "ddos-grey.png"
class Ddos(_Security):
_icon = "ddos.png"
class EncryptionGrey(_Security):
_icon = "encryption-grey.png"
class Encryption(_Security):
_icon = "encryption.png"
class GroupsGrey(_Security):
_icon = "groups-grey.png"
class Groups(_Security):
_icon = "groups.png"
class IdAccessGrey(_Security):
_icon = "id-access-grey.png"
class IdAccess(_Security):
_icon = "id-access.png"
class KeymgmtGrey(_Security):
_icon = "keymgmt-grey.png"
class Keymgmt(_Security):
_icon = "keymgmt.png"
class OcidGrey(_Security):
_icon = "ocid-grey.png"
class Ocid(_Security):
_icon = "ocid.png"
class PoliciesGrey(_Security):
_icon = "policies-grey.png"
class Policies(_Security):
_icon = "policies.png"
class TaggingGrey(_Security):
_icon = "tagging-grey.png"
class Tagging(_Security):
_icon = "tagging.png"

@ -8,30 +8,58 @@ class _Storage(_OCI):
_icon_dir = "resources/oci/storage"
class BackuprestoreGrey(_Storage):
_icon = "backuprestore-grey.png"
class Backuprestore(_Storage):
_icon = "backuprestore.png"
class BlockstorageGrey(_Storage):
_icon = "blockstorage-grey.png"
class Blockstorage(_Storage):
_icon = "blockstorage.png"
class BucketsGrey(_Storage):
_icon = "buckets-grey.png"
class Buckets(_Storage):
_icon = "buckets.png"
class DatatransferGrey(_Storage):
_icon = "datatransfer-grey.png"
class Datatransfer(_Storage):
_icon = "datatransfer.png"
class FilestorageGrey(_Storage):
_icon = "filestorage-grey.png"
class Filestorage(_Storage):
_icon = "filestorage.png"
class ObjectstorageGrey(_Storage):
_icon = "objectstorage-grey.png"
class Objectstorage(_Storage):
_icon = "objectstorage.png"
class StoragegatewayGrey(_Storage):
_icon = "storagegateway-grey.png"
class Storagegateway(_Storage):
_icon = "storagegateway.png"

@ -7,77 +7,127 @@ Node classes list of oci provider.
## oci.database
- **diagrams.oci.database.Databaseservice**
- **diagrams.oci.database.DatabaseserviceGrey**, **DBServiceGrey** (alias)
- **diagrams.oci.database.Databaseservice**, **DBService** (alias)
## oci.devops
- **diagrams.oci.devops.ApiserviceGrey**
- **diagrams.oci.devops.Apiservice**
- **diagrams.oci.devops.ResourcemgmtGrey**
- **diagrams.oci.devops.Resourcemgmt**
## oci.connectivity
- **diagrams.oci.connectivity.BackboneGrey**
- **diagrams.oci.connectivity.Backbone**
- **diagrams.oci.connectivity.CustomerdatacenterGrey**
- **diagrams.oci.connectivity.Customerdatacenter**
- **diagrams.oci.connectivity.CustomerpremisesequipGrey**
- **diagrams.oci.connectivity.Customerpremisesequip**
- **diagrams.oci.connectivity.FastconnectGrey**
- **diagrams.oci.connectivity.Fastconnect**
- **diagrams.oci.connectivity.VpnGrey**
- **diagrams.oci.connectivity.Vpn**
## oci.security
- **diagrams.oci.security.AuditGrey**
- **diagrams.oci.security.Audit**
- **diagrams.oci.security.CompartmentsGrey**
- **diagrams.oci.security.Compartments**
- **diagrams.oci.security.DdosGrey**
- **diagrams.oci.security.Ddos**
- **diagrams.oci.security.EncryptionGrey**
- **diagrams.oci.security.Encryption**
- **diagrams.oci.security.GroupsGrey**
- **diagrams.oci.security.Groups**
- **diagrams.oci.security.IdAccessGrey**
- **diagrams.oci.security.IdAccess**
- **diagrams.oci.security.KeymgmtGrey**
- **diagrams.oci.security.Keymgmt**
- **diagrams.oci.security.OcidGrey**
- **diagrams.oci.security.Ocid**
- **diagrams.oci.security.PoliciesGrey**
- **diagrams.oci.security.Policies**
- **diagrams.oci.security.TaggingGrey**
- **diagrams.oci.security.Tagging**
## oci.network
- **diagrams.oci.network.DrgGrey**
- **diagrams.oci.network.Drg**
- **diagrams.oci.network.FirewallGrey**
- **diagrams.oci.network.Firewall**
- **diagrams.oci.network.InternetgatewayGrey**
- **diagrams.oci.network.Internetgateway**
- **diagrams.oci.network.LoadbalanceGrey**
- **diagrams.oci.network.Loadbalance**
- **diagrams.oci.network.RoutetableGrey**
- **diagrams.oci.network.Routetable**
- **diagrams.oci.network.SecuritylistsGrey**
- **diagrams.oci.network.Securitylists**
- **diagrams.oci.network.ServiceGatewayGrey**
- **diagrams.oci.network.ServiceGateway**
- **diagrams.oci.network.VcloudnetworkGrey**
- **diagrams.oci.network.Vcloudnetwork**
## oci.edge
- **diagrams.oci.edge.CdnGrey**
- **diagrams.oci.edge.Cdn**
- **diagrams.oci.edge.DnsGrey**
- **diagrams.oci.edge.Dns**
- **diagrams.oci.edge.EmaildeliveryGrey**
- **diagrams.oci.edge.Emaildelivery**
- **diagrams.oci.edge.WafGrey**
- **diagrams.oci.edge.Waf**
## oci.storage
- **diagrams.oci.storage.BackuprestoreGrey**
- **diagrams.oci.storage.Backuprestore**
- **diagrams.oci.storage.BlockstorageGrey**
- **diagrams.oci.storage.Blockstorage**
- **diagrams.oci.storage.BucketsGrey**
- **diagrams.oci.storage.Buckets**
- **diagrams.oci.storage.DatatransferGrey**
- **diagrams.oci.storage.Datatransfer**
- **diagrams.oci.storage.FilestorageGrey**
- **diagrams.oci.storage.Filestorage**
- **diagrams.oci.storage.ObjectstorageGrey**
- **diagrams.oci.storage.Objectstorage**
- **diagrams.oci.storage.StoragegatewayGrey**
- **diagrams.oci.storage.Storagegateway**
## oci.compute
- **diagrams.oci.compute.BmGrey**, **BareMetalGrey** (alias)
- **diagrams.oci.compute.Bm**, **BareMetal** (alias)
- **diagrams.oci.compute.ContainerGrey**
- **diagrams.oci.compute.Container**
- **diagrams.oci.compute.VmGrey**, **VirtualMachineGrey** (alias)
- **diagrams.oci.compute.Vm**, **VirtualMachine** (alias)
## oci.monitoring
- **diagrams.oci.monitoring.AlarmGrey**
- **diagrams.oci.monitoring.Alarm**
- **diagrams.oci.monitoring.EventGrey**
- **diagrams.oci.monitoring.Event**
- **diagrams.oci.monitoring.HealthcheckGrey**
- **diagrams.oci.monitoring.Healthcheck**
- **diagrams.oci.monitoring.LoggingGrey**
- **diagrams.oci.monitoring.Logging**
- **diagrams.oci.monitoring.NotificationsGrey**
- **diagrams.oci.monitoring.Notifications**
- **diagrams.oci.monitoring.QueuingGrey**
- **diagrams.oci.monitoring.Queuing**
- **diagrams.oci.monitoring.SearchGrey**
- **diagrams.oci.monitoring.Search**
- **diagrams.oci.monitoring.StreamingGrey**
- **diagrams.oci.monitoring.Streaming**
- **diagrams.oci.monitoring.TelemetryGrey**
- **diagrams.oci.monitoring.Telemetry**
- **diagrams.oci.monitoring.WorkflowGrey**
- **diagrams.oci.monitoring.Workflow**

@ -5,46 +5,6 @@ title: OnPrem
Node classes list of onprem provider.
## onprem.compute
- **diagrams.onprem.compute.Nomad**
- **diagrams.onprem.compute.Server**
## onprem.ci
- **diagrams.onprem.ci.Circleci**, **CircleCI** (alias)
- **diagrams.onprem.ci.Jenkins**
- **diagrams.onprem.ci.Teamcity**, **TC** (alias)
- **diagrams.onprem.ci.Travisci**, **TravisCI** (alias)
## onprem.queue
- **diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias)
- **diagrams.onprem.queue.Celery**
- **diagrams.onprem.queue.Kafka**
- **diagrams.onprem.queue.Rabbitmq**, **RabbitMQ** (alias)
- **diagrams.onprem.queue.Zeromq**, **ZeroMQ** (alias)
## onprem.inmemory
- **diagrams.onprem.inmemory.Aerospike**
- **diagrams.onprem.inmemory.Hazelcast**
- **diagrams.onprem.inmemory.Memcached**
- **diagrams.onprem.inmemory.Redis**
## onprem.etl
- **diagrams.onprem.etl.Embulk**
## onprem.cd
- **diagrams.onprem.cd.Spinnaker**
## onprem.search
- **diagrams.onprem.search.Elasticsearch**
- **diagrams.onprem.search.Solr**
## onprem.database
- **diagrams.onprem.database.Cassandra**
@ -64,6 +24,26 @@ Node classes list of onprem provider.
- **diagrams.onprem.database.Postgresql**, **PostgreSQL** (alias)
- **diagrams.onprem.database.Scylla**
## onprem.security
- **diagrams.onprem.security.Trivy**
- **diagrams.onprem.security.Vault**
## onprem.ci
- **diagrams.onprem.ci.Circleci**, **CircleCI** (alias)
- **diagrams.onprem.ci.Jenkins**
- **diagrams.onprem.ci.Teamcity**, **TC** (alias)
- **diagrams.onprem.ci.Travisci**, **TravisCI** (alias)
## onprem.etl
- **diagrams.onprem.etl.Embulk**
## onprem.mlops
- **diagrams.onprem.mlops.Polyaxon**
## onprem.network
- **diagrams.onprem.network.Apache**
@ -84,11 +64,22 @@ Node classes list of onprem provider.
- **diagrams.onprem.network.Vyos**, **VyOS** (alias)
- **diagrams.onprem.network.Zookeeper**
## onprem.client
## onprem.inmemory
- **diagrams.onprem.client.Client**
- **diagrams.onprem.client.User**
- **diagrams.onprem.client.Users**
- **diagrams.onprem.inmemory.Aerospike**
- **diagrams.onprem.inmemory.Hazelcast**
- **diagrams.onprem.inmemory.Memcached**
- **diagrams.onprem.inmemory.Redis**
## onprem.search
- **diagrams.onprem.search.Elasticsearch**
- **diagrams.onprem.search.Solr**
## onprem.container
- **diagrams.onprem.container.Docker**
- **diagrams.onprem.container.Rkt**, **RKT** (alias)
## onprem.iac
@ -96,15 +87,16 @@ Node classes list of onprem provider.
- **diagrams.onprem.iac.Awx**
- **diagrams.onprem.iac.Terraform**
## onprem.analytics
## onprem.compute
- **diagrams.onprem.analytics.Beam**
- **diagrams.onprem.analytics.Flink**
- **diagrams.onprem.analytics.Hadoop**
- **diagrams.onprem.analytics.Hive**
- **diagrams.onprem.analytics.Norikra**
- **diagrams.onprem.analytics.Spark**
- **diagrams.onprem.analytics.Storm**
- **diagrams.onprem.compute.Nomad**
- **diagrams.onprem.compute.Server**
## onprem.vcs
- **diagrams.onprem.vcs.Git**
- **diagrams.onprem.vcs.Github**
- **diagrams.onprem.vcs.Gitlab**
## onprem.workflow
@ -113,30 +105,21 @@ Node classes list of onprem provider.
- **diagrams.onprem.workflow.Kubeflow**, **KubeFlow** (alias)
- **diagrams.onprem.workflow.Nifi**, **NiFi** (alias)
## onprem.security
- **diagrams.onprem.security.Trivy**
- **diagrams.onprem.security.Vault**
## onprem.container
- **diagrams.onprem.container.Docker**
- **diagrams.onprem.container.Rkt**, **RKT** (alias)
## onprem.logging
## onprem.queue
- **diagrams.onprem.logging.Fluentd**
- **diagrams.onprem.logging.Logstash**, **LogStash** (alias)
- **diagrams.onprem.queue.Activemq**, **ActiveMQ** (alias)
- **diagrams.onprem.queue.Celery**
- **diagrams.onprem.queue.Kafka**
- **diagrams.onprem.queue.Rabbitmq**, **RabbitMQ** (alias)
- **diagrams.onprem.queue.Zeromq**, **ZeroMQ** (alias)
## onprem.mlops
## onprem.cd
- **diagrams.onprem.mlops.Polyaxon**
- **diagrams.onprem.cd.Spinnaker**
## onprem.vcs
## onprem.gitops
- **diagrams.onprem.vcs.Git**
- **diagrams.onprem.vcs.Github**
- **diagrams.onprem.vcs.Gitlab**
- **diagrams.onprem.gitops.Argocd**, **ArgoCD** (alias)
## onprem.monitoring
@ -147,6 +130,23 @@ Node classes list of onprem provider.
- **diagrams.onprem.monitoring.Splunk**
- **diagrams.onprem.monitoring.Thanos**
## onprem.gitops
## onprem.client
- **diagrams.onprem.gitops.Argocd**, **ArgoCD** (alias)
- **diagrams.onprem.client.Client**
- **diagrams.onprem.client.User**
- **diagrams.onprem.client.Users**
## onprem.logging
- **diagrams.onprem.logging.Fluentd**
- **diagrams.onprem.logging.Logstash**, **LogStash** (alias)
## onprem.analytics
- **diagrams.onprem.analytics.Beam**
- **diagrams.onprem.analytics.Flink**
- **diagrams.onprem.analytics.Hadoop**
- **diagrams.onprem.analytics.Hive**
- **diagrams.onprem.analytics.Norikra**
- **diagrams.onprem.analytics.Spark**
- **diagrams.onprem.analytics.Storm**

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 22 KiB

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

Loading…
Cancel
Save